@charset "UTF-8";
/*-------------------------------------------------------
>>> TABLE OF CONTENTS:
---------------------------------------------------------
# GLOBALS VARIABLES
# DEFAULTS CSS
# TYPOGRAPHY CSS
# HEADERS CSS
# BLOG & PAGES CSS
# WIDGETS CSS
# GUTENBERG CSS
# FOOTERS CSS
# FEATURES CSS
# OVERWRITES CSS
-----------------------------------------------------------*/
/*==========================
    GLOBALS VARIABLES
===========================*/
/* $mainmenu_color      : #ffffff;
$mainmenu_hover_color: #0045ff; */
/*
Global
----------------------*/
:root {
  --body_font: CircularStd, sans-serif;
  --heading_font: CircularStd, sans-serif;
  --sub_heading_font: Roboto, sans-serif;
  --white_color: #ffffff;
  --black_color: #000000;
  --body_background: #F4F4FB;
  --body_main_background: #0045ff;
  --theme_main_background: #0045ff;
  --theme_soft_color_and_bg: #e1e6ff;
  --theme_soft_dark_color_and_bg: #25314a;
  --white_background: #ffffff;
  --dark_background: #14212B;
  --body_dark_background: #00152e;
  --body_color: #616669;
  --body_dark_color: #202030;
  --body_main_color: #0045ff;
  --theme_main_color: #0045ff;
  --heading_color: #14212B;
  --link_color: #202030;
  --link_hover_color: #0045ff;
  --border_color: #e1e6ff;
  --theme_border: 1px solid #e1e6ff;
  --theme_border_color: #0045ff;
  --hr_border_color: #e1e6ff;
  --box_shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  --global_box_shadow: 0 16px 32px rgba(0, 0, 0, 0.1);
  --button_box_shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  --theme_gradient: linear-gradient(90deg, #0045FF 0%, #BD29F2 100%);
  --theme_hover_gradient: linear-gradient(270deg, #0045FF 0%, #BD29F2 100%);
}

/*
Header
----------------------*/
:root {
  --header_background: #00152e;
  --mainmenu_dark_color: #202030;
  --mainmenu_color: #ffffff;
  --mainmenu_hover_color: #0045ff;
  --mainmenu_dropdown_color: #ffffff;
  --mainmenu_dropdown_hover_color: #0045ff;
}

/*
Blog Posts
----------------------*/
:root {
  --post_background: #ffffff;
  --post_border: 1px solid #e1e6ff;
  --post_content_border: 1px solid #e1e6ff;
}

/*
Main Sidebar Widgets
----------------------*/
:root {
  --widget_background: #ffffff;
  --widget_colored_background: linear-gradient(90deg, #0045FF 0%, #BD29F2 100%);
  --widget_colored_bg_text_color: #ffffff;
  --widget_border: 0px solid #e1e6ff;
  --widget_colored_border: 1px solid #0045FF;
  --widget_border_radius: 10px;
  --widget_box_shadow: 20px 0 50px rgba(85, 92, 121, 0.08);
  --widget_margin: 50px;
  --widget_padding: 40px 30px;
  --widget_color: #616669;
  --widget_link_color: #202030;
  --widget_link_hover_color: #0045ff;
}

/*
Footer
----------------------*/
:root {
  --footer_background: #00152e;
  --footer_top_color: #cbd7ef;
  --footer_top_link_color: #cbd7ef;
  --footer_top_link_hover_color: #0045ff;
  --footer_top_background: #fcfcfc;
  --footer_top_padding: 100px 0;
  --footer_bottom_color: #cbd7ef;
  --footer_bottom_link_color: #202030;
  --footer_bottom_link_hover_color: #0045ff;
  --footer_bottom_background: #dddddd;
  --footer_bottom_padding: 20px 0;
}

/*
Footer Sidebar Widgets
----------------------*/
:root {
  --footer_widget_background: none;
  --footer_widget_border: 0;
  --footer_widget_border_radius: 0;
  --footer_widget_box_shadow: none;
  --footer_widget_margin: 30px;
  --footer_widget_padding: 0;
  --footer_widget_color: #cbd7ef;
  --footer_widget_link_color: #202030;
  --footer_widget_link_hover_color: #0045ff;
}

body {
  background: var(--bg);
  font-family: var(--sub_heading_font);
}

/*==========================
    DEFAULTS CSS
===========================*/
/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Document Setup
# Clearing
# Base Transitions
# Embed
# Forms
# Accessibility
# Alignments
# Widgets
# Content
	## Posts and pages
	## Comments
# Infinite scroll
# Media
	## Captions
	## Galleries
--------------------------------------------------------------*/
/*
Document Setup
----------------------*/
body {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

*,
*::before,
*::after {
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
  -webkit-font-smoothing: antialiased;
  word-break: break-word;
  word-wrap: break-word;
}

table * {
  word-break: initial;
}

/*
Clearing
----------------------*/
.group::after,
.entry-content::after {
  clear: both;
  content: "";
  display: block;
}

/*
Base Transitions
----------------------*/
a,
path {
  -webkit-transition: all 0.15s linear;
  transition: all 0.15s linear;
}

/*
Embed
----------------------*/
embed,
iframe,
object {
  width: 100%;
  border: 0;
}

/*
Forms
----------------------*/
::-webkit-search-cancel-button {
  -webkit-appearance: none !important;
  appearance: none !important;
}

::search-cancel-button {
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  appearance: none !important;
}

button,
input[type=button],
input[type=reset],
input[type=submit] {
  border: var(--theme_border);
  border-radius: 3px;
  background: var(--theme_soft_color_and_bg);
  color: var(--theme_main_color);
  line-height: 1;
  padding: 0.6em 1em 0.4em;
}

button:hover,
input[type=button]:hover,
input[type=reset]:hover,
input[type=submit]:hover {
  border-color: var(--theme_border_color);
  outline: 0;
}

button:active,
button:focus,
input[type=button]:active,
input[type=button]:focus,
input[type=reset]:active,
input[type=reset]:focus,
input[type=submit]:active,
input[type=submit]:focus {
  border-color: var(--theme_border_color);
  outline: 0;
}

input[type=text],
input[type=email],
input[type=url],
input[type=password],
input[type=search],
input[type=number],
input[type=tel],
input[type=range],
input[type=date],
input[type=month],
input[type=week],
input[type=time],
input[type=datetime],
input[type=datetime-local],
input[type=color],
textarea {
  outline: 0;
  width: 100%;
  color: var(--body_color);
  border: var(--theme_border);
  border-radius: 3px;
}

input[type=text]:focus,
input[type=email]:focus,
input[type=url]:focus,
input[type=password]:focus,
input[type=search]:focus,
input[type=number]:focus,
input[type=tel]:focus,
input[type=range]:focus,
input[type=date]:focus,
input[type=month]:focus,
input[type=week]:focus,
input[type=time]:focus,
input[type=datetime]:focus,
input[type=datetime-local]:focus,
input[type=color]:focus,
textarea:focus,
select:focus {
  outline: 0;
  border-color: var(--theme_border_color);
}

select {
  border: var(--theme_border);
}

textarea {
  width: 100%;
}

.post__item__content input {
  padding: 10px;
  font-size: 12px;
  height: 40px;
  letter-spacing: 3px;
}

.kc-contact-form7 input,
.kc-contact-form7 textarea {
  padding: 10px;
}

/*
Accessibility
----------------------*/
.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  -webkit-clip-path: inset(50%);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute !important;
  width: 1px;
  word-wrap: normal !important;
}

.screen-reader-text:focus {
  background-color: var(--theme_soft_color_and_bg);
  border-radius: 3px;
  -webkit-box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
          box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
  clip: auto !important;
  -webkit-clip-path: none;
  clip-path: none;
  color: var(--theme_main_color);
  display: block;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: bold;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000;
}

#content[tabindex="-1"]:focus {
  outline: 0;
}

/*
Alignments
----------------------*/
.alignleft {
  float: left;
  margin-right: 20px;
  margin-bottom: 20px;
  clear: both;
}

.alignright {
  float: right;
  margin-left: 20px;
  margin-bottom: 20px;
  clear: both;
}

.aligncenter {
  clear: both;
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin: 0 auto 20px;
}

.alignnone {
  margin-bottom: 20px;
  margin-top: 20px;
}

.alignfull,
.alignwide {
  margin-bottom: 20px;
}

/*
Widgets & Select
----------------------*/
.widget {
  margin-bottom: 20px;
}

.widget select {
  max-width: 100%;
}

/*
Posts and pages
----------------------*/
.sticky {
  display: block;
}

.updated:not(.published) {
  display: none;
}

.page__content__area:after,
.post__item__content:after,
.entry-content:after,
.entry-summary:after {
  clear: both;
  content: "";
  display: block;
}

.page-links {
  clear: both;
  margin: 0 0 1.5em;
}

/*
Comments
----------------------*/
.comment-content a {
  word-wrap: break-word;
}

.bypostauthor {
  display: block;
}

/*
Infinite scroll
----------------------*/
.infinite-scroll .posts-navigation,
.infinite-scroll.neverending .site-footer {
  display: none;
}

.infinity-end.neverending .site-footer {
  display: block;
}

/*
Media
----------------------*/
.page__content__area .wp-smiley,
.entry-content .wp-smiley,
.comment-content .wp-smiley {
  border: none;
  margin-bottom: 0;
  margin-top: 0;
  padding: 0;
}

embed,
iframe,
object {
  max-width: 100%;
}

/*
Captions
----------------------*/
.wp-caption {
  margin-bottom: 1.5em;
  max-width: 100%;
}

.wp-caption img[class*=wp-image-] {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.wp-caption .wp-caption-text {
  margin: 0.8075em 0;
}

.wp-caption-text {
  text-align: center;
}

/*
Galleries
----------------------*/
.gallery {
  margin-bottom: 1.5em;
}

.gallery-item {
  display: inline-block;
  text-align: center;
  vertical-align: top;
  width: 100%;
}

.gallery-columns-2 .gallery-item {
  max-width: 50%;
}

.gallery-columns-3 .gallery-item {
  max-width: 33.33%;
}

.gallery-columns-4 .gallery-item {
  max-width: 25%;
}

.gallery-columns-5 .gallery-item {
  max-width: 20%;
}

.gallery-columns-6 .gallery-item {
  max-width: 16.66%;
}

.gallery-columns-7 .gallery-item {
  max-width: 14.28%;
}

.gallery-columns-8 .gallery-item {
  max-width: 12.5%;
}

.gallery-columns-9 .gallery-item {
  max-width: 11.11%;
}

.gallery-caption {
  display: block;
}

/*
Overwrites
----------------------*/
.single .post__item__details figure.gallery-item {
  margin-bottom: 20px;
}

.single .post__item__details figure.gallery-item img {
  margin-bottom: 5px;
}

/*
    .owl-stage-outer { 
        overflow: visible;
    }
    .owl-item {
        opacity: 0;
        transition: opacity 500ms;
    }
    .owl-item.active {
        opacity: 1;
    }
*/
.owl-carousel .owl-item img {
  max-width: 100%;
  width: auto;
}

/*==========================
    TYPOGRAPHY CSS
===========================*/
/*--------------------------------------------------------------------------------------
>>> TABLE OF CONTENT
----------------------------------------------------------------------------------------
========================================================================================
    # TEXT TYPOGRAPHY
    # FONTS
    # FONT WEIGHT
    # DISPLAY
    # CONTENT POSITION
    # MARGIN
    # PADDING
----------------------------------------------------------------------------------------*/
/*
TEXT TYPOGRAPHY
----------------------*/
/* CircularStd @font-face kit */
@font-face {
  font-family: "CircularStd";
  src: url("../fonts/CircularStd-Black.eot");
  src: url("../fonts/CircularStd-Black.eot?#iefix") format("embedded-opentype"), url("../fonts/CircularStd-Black.woff") format("woff"), url("../fonts/CircularStd-Black.ttf") format("truetype"), url("../fonts/CircularStd-Black.svg#bcc26993292869431e54c666aafa8fcd") format("svg");
  font-weight: 800;
  font-style: normal;
}
@font-face {
  font-family: "CircularStd";
  src: url("../fonts/CircularStd-BlackItalic.eot");
  src: url("../fonts/CircularStd-BlackItalic.eot?#iefix") format("embedded-opentype"), url("../fonts/CircularStd-BlackItalic.woff") format("woff"), url("../fonts/CircularStd-BlackItalic.ttf") format("truetype"), url("../fonts/CircularStd-BlackItalic.svg#bcc26993292869431e54c666aafa8fcd") format("svg");
  font-weight: 800;
  font-style: italic;
}
@font-face {
  font-family: "CircularStd";
  src: url("../fonts/CircularStd-Bold.eot");
  src: url("../fonts/CircularStd-Bold.eot?#iefix") format("embedded-opentype"), url("../fonts/CircularStd-Bold.woff") format("woff"), url("../fonts/CircularStd-Bold.ttf") format("truetype"), url("../fonts/CircularStd-Bold.svg#bcc26993292869431e54c666aafa8fcd") format("svg");
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: "CircularStd";
  src: url("../fonts/CircularStd-BoldItalic.eot");
  src: url("../fonts/CircularStd-BoldItalic.eot?#iefix") format("embedded-opentype"), url("../fonts/CircularStd-BoldItalic.woff") format("woff"), url("../fonts/CircularStd-BoldItalic.ttf") format("truetype"), url("../fonts/CircularStd-BoldItalic.svg#bcc26993292869431e54c666aafa8fcd") format("svg");
  font-weight: 600;
  font-style: italic;
}
@font-face {
  font-family: "CircularStd";
  src: url("../fonts/CircularStd-Medium.eot");
  src: url("../fonts/CircularStd-Medium.eot?#iefix") format("embedded-opentype"), url("../fonts/CircularStd-Medium.woff") format("woff"), url("../fonts/CircularStd-Medium.ttf") format("truetype"), url("../fonts/CircularStd-Medium.svg#bcc26993292869431e54c666aafa8fcd") format("svg");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "CircularStd";
  src: url("../fonts/CircularStd-MediumItalic.eot");
  src: url("../fonts/CircularStd-MediumItalic.eot?#iefix") format("embedded-opentype"), url("../fonts/CircularStd-MediumItalic.woff") format("woff"), url("../fonts/CircularStd-MediumItalic.ttf") format("truetype"), url("../fonts/CircularStd-MediumItalic.svg#bcc26993292869431e54c666aafa8fcd") format("svg");
  font-weight: 500;
  font-style: italic;
}
@font-face {
  font-family: "CircularStd";
  src: url("../fonts/CircularStd-Book.eot");
  src: url("../fonts/CircularStd-Book.eot?#iefix") format("embedded-opentype"), url("../fonts/CircularStd-Book.woff") format("woff"), url("../fonts/CircularStd-Book.ttf") format("truetype"), url("../fonts/CircularStd-Book.svg#bcc26993292869431e54c666aafa8fcd") format("svg");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "CircularStd";
  src: url("../fonts/CircularStd-BookItalic.eot");
  src: url("../fonts/CircularStd-BookItalic.eot?#iefix") format("embedded-opentype"), url("../fonts/CircularStd-BookItalic.woff") format("woff"), url("../fonts/CircularStd-BookItalic.ttf") format("truetype"), url("../fonts/CircularStd-BookItalic.svg#bcc26993292869431e54c666aafa8fcd") format("svg");
  font-weight: 400;
  font-style: italic;
}
a {
  color: var(--link_color);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

a:hover {
  color: var(--link_hover_color);
}

a:focus,
a:hover {
  text-decoration: none;
  outline: 0;
}

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

h1,
h2,
h3,
h4,
h5,
h6,
.area__title {
  color: var(--heading_color);
  font-weight: 600;
  line-height: 1.3;
  margin: 0 0 15px;
  font-family: var(--heading_font);
}

h1 {
  font-size: 36px;
}

h2 {
  font-size: 32px;
}

h3 {
  font-size: 24px;
}

h4 {
  font-size: 18px;
}

h5 {
  font-size: 16px;
}

h6 {
  font-size: 14px;
}

body,
html {
  height: 100%;
}

body {
  background: var(--body_background);
  color: var(--body_color);
  font-family: var(--body_font);
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.1px;
  line-height: 1.8em;
  -ms-word-wrap: break-word;
  word-wrap: break-word;
  overflow-x: hidden;
}

p:last-of-type {
  margin-bottom: 0;
}

/* Remove Chrome Input Field's Unwanted Yellow Background Color */
input:-webkit-autofill,
input:-webkit-autofill:focus,
input:-webkit-autofill:hover {
  -webkit-box-shadow: 0 0 0 1000px var(--white_color) inset !important;
}

/*
1. BUTTONS
----------------------*/
button,
input[type=submit],
a.read-more {
  position: relative;
  z-index: 1;
}

button:before,
input[type=submit]:before,
a.read-more:before {
  z-index: -1;
  position: absolute;
  width: 0%;
  height: 100%;
  content: "";
  top: 0;
  right: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

button:hover:before,
input[type=submit]:hover:before,
a.read-more:hover:before {
  right: auto;
  left: 0;
  width: 100%;
}

/*
FONTS
----------------------*/
.uppercase {
  text-transform: uppercase;
}

.lowercase {
  text-transform: lowercase;
}

.capitalize {
  text-transform: capitalize;
}

.font12 {
  font-size: 12px;
}

.font14 {
  font-size: 14px;
}

.font16 {
  font-size: 16px;
}

.font18 {
  font-size: 18px;
}

.font20 {
  font-size: 20px;
}

.font22 {
  font-size: 22px;
}

.font24 {
  font-size: 24px;
}

.font26 {
  font-size: 26px;
}

.font28 {
  font-size: 28px;
}

.font32 {
  font-size: 32px;
}

.font30 {
  font-size: 30px;
}

.font36 {
  font-size: 36px;
}

.font38 {
  font-size: 38px;
}

.font48 {
  font-size: 48px;
}

.font42 {
  font-size: 42px;
}

.font48 {
  font-size: 48px;
}

.font50 {
  font-size: 50px;
}

.font52 {
  font-size: 52px;
}

.font60 {
  font-size: 60px;
}

.font80 {
  font-size: 80px;
}

.font120 {
  font-size: 120px;
}

.font140 {
  font-size: 140px;
}

/*
RESPONSIVE
----------------------*/
@media only screen and (min-width: 1200px) {
  .lg-center {
    text-align: center;
  }

  .lg-left {
    text-align: left;
  }

  .lg-right {
    text-align: right;
  }

  .lg-font12 {
    font-size: 12px;
  }

  .lg-font14 {
    font-size: 14px;
  }

  .lg-font16 {
    font-size: 16px;
  }

  .lg-font18 {
    font-size: 18px;
  }

  .lg-font20 {
    font-size: 20px;
  }

  .lg-font22 {
    font-size: 22px;
  }

  .lg-font24 {
    font-size: 24px;
  }

  .lg-font26 {
    font-size: 26px;
  }

  .lg-font28 {
    font-size: 28px;
  }

  .lg-font32 {
    font-size: 32px;
  }

  .lg-font30 {
    font-size: 30px;
  }

  .lg-font36 {
    font-size: 36px;
  }

  .lg-font38 {
    font-size: 38px;
  }

  .lg-font48 {
    font-size: 48px;
  }

  .lg-font42 {
    font-size: 42px;
  }

  .lg-font48 {
    font-size: 48px;
  }

  .lg-font50 {
    font-size: 50px;
  }

  .lg-font52 {
    font-size: 52px;
  }

  .lg-font60 {
    font-size: 60px;
  }

  .lg-font80 {
    font-size: 80px;
  }

  .lg-font120 {
    font-size: 120px;
  }

  .lg-font140 {
    font-size: 140px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .md-center {
    text-align: center;
  }

  .md-left {
    text-align: left;
  }

  .md-right {
    text-align: right;
  }

  .md-font12 {
    font-size: 12px;
  }

  .md-font14 {
    font-size: 14px;
  }

  .md-font16 {
    font-size: 16px;
  }

  .md-font18 {
    font-size: 18px;
  }

  .md-font20 {
    font-size: 20px;
  }

  .md-font22 {
    font-size: 22px;
  }

  .md-font24 {
    font-size: 24px;
  }

  .md-font26 {
    font-size: 26px;
  }

  .md-font28 {
    font-size: 28px;
  }

  .md-font32 {
    font-size: 32px;
  }

  .md-font30 {
    font-size: 30px;
  }

  .md-font36 {
    font-size: 36px;
  }

  .md-font38 {
    font-size: 38px;
  }

  .md-font48 {
    font-size: 48px;
  }

  .md-font42 {
    font-size: 42px;
  }

  .md-font48 {
    font-size: 48px;
  }

  .md-font50 {
    font-size: 50px;
  }

  .md-font52 {
    font-size: 52px;
  }

  .md-font60 {
    font-size: 60px;
  }

  .md-font80 {
    font-size: 80px;
  }

  .md-font120 {
    font-size: 120px;
  }

  .md-font140 {
    font-size: 140px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .sm-center {
    text-align: center;
  }

  .sm-left {
    text-align: left;
  }

  .sm-right {
    text-align: right;
  }

  .sm-font12 {
    font-size: 12px;
  }

  .sm-font14 {
    font-size: 14px;
  }

  .sm-font16 {
    font-size: 16px;
  }

  .sm-font18 {
    font-size: 18px;
  }

  .sm-font20 {
    font-size: 20px;
  }

  .sm-font22 {
    font-size: 22px;
  }

  .sm-font24 {
    font-size: 24px;
  }

  .sm-font26 {
    font-size: 26px;
  }

  .sm-font28 {
    font-size: 28px;
  }

  .sm-font32 {
    font-size: 32px;
  }

  .sm-font30 {
    font-size: 30px;
  }

  .sm-font36 {
    font-size: 36px;
  }

  .sm-font38 {
    font-size: 38px;
  }

  .sm-font48 {
    font-size: 48px;
  }

  .sm-font42 {
    font-size: 42px;
  }

  .sm-font48 {
    font-size: 48px;
  }

  .sm-font50 {
    font-size: 50px;
  }

  .sm-font52 {
    font-size: 52px;
  }

  .sm-font60 {
    font-size: 60px;
  }

  .sm-font80 {
    font-size: 80px;
  }

  .sm-font120 {
    font-size: 120px;
  }

  .sm-font140 {
    font-size: 140px;
  }
}
@media only screen and (max-width: 767px) {
  .xs-center {
    text-align: center;
  }

  .xs-left {
    text-align: left;
  }

  .xs-right {
    text-align: right;
  }

  .xs-font12 {
    font-size: 12px;
  }

  .xs-font14 {
    font-size: 14px;
  }

  .xs-font16 {
    font-size: 16px;
  }

  .xs-font18 {
    font-size: 18px;
  }

  .xs-font20 {
    font-size: 20px;
  }

  .xs-font22 {
    font-size: 22px;
  }

  .xs-font24 {
    font-size: 24px;
  }

  .xs-font26 {
    font-size: 26px;
  }

  .xs-font28 {
    font-size: 28px;
  }

  .xs-font32 {
    font-size: 32px;
  }

  .xs-font30 {
    font-size: 30px;
  }

  .xs-font36 {
    font-size: 36px;
  }

  .xs-font38 {
    font-size: 38px;
  }

  .xs-font48 {
    font-size: 48px;
  }

  .xs-font42 {
    font-size: 42px;
  }

  .xs-font48 {
    font-size: 48px;
  }

  .xs-font50 {
    font-size: 50px;
  }

  .xs-font52 {
    font-size: 52px;
  }

  .xs-font60 {
    font-size: 60px;
  }

  .xs-font80 {
    font-size: 80px;
  }

  .xs-font120 {
    font-size: 120px;
  }

  .xs-font140 {
    font-size: 140px;
  }
}
@media only screen and (min-width: 480px) and (max-width: 767px) {
  .xsl-center {
    text-align: center;
  }

  .xsl-left {
    text-align: left;
  }

  .xsl-right {
    text-align: right;
  }

  .xsl-font12 {
    font-size: 12px;
  }

  .xsl-font14 {
    font-size: 14px;
  }

  .xsl-font16 {
    font-size: 16px;
  }

  .xsl-font18 {
    font-size: 18px;
  }

  .xsl-font20 {
    font-size: 20px;
  }

  .xsl-font22 {
    font-size: 22px;
  }

  .xsl-font24 {
    font-size: 24px;
  }

  .xsl-font26 {
    font-size: 26px;
  }

  .xsl-font28 {
    font-size: 28px;
  }

  .xsl-font32 {
    font-size: 32px;
  }

  .xsl-font30 {
    font-size: 30px;
  }

  .xsl-font36 {
    font-size: 36px;
  }

  .xsl-font38 {
    font-size: 38px;
  }

  .xsl-font48 {
    font-size: 48px;
  }

  .xsl-font42 {
    font-size: 42px;
  }

  .xsl-font48 {
    font-size: 48px;
  }

  .xsl-font50 {
    font-size: 50px;
  }

  .xsl-font52 {
    font-size: 52px;
  }

  .xsl-font60 {
    font-size: 60px;
  }

  .xsl-font80 {
    font-size: 80px;
  }

  .xsl-font120 {
    font-size: 120px;
  }

  .xsl-font140 {
    font-size: 140px;
  }
}
/*
FONT WEIGHT
----------------------*/
.font300 {
  font-weight: 300;
}

.font400 {
  font-weight: 400;
}

.font500 {
  font-weight: 500;
}

.font600 {
  font-weight: 600;
}

.font700 {
  font-weight: 700;
}

.font800 {
  font-weight: 800;
}

/*
DISPLAY
----------------------*/
.display-table {
  display: table;
}

.display-table-cell {
  display: table-cell;
}

.vertical-align-middle {
  vertical-align: middle;
}

/*
CONTENT POSITION
----------------------*/
.fix {
  overflow: hidden;
}

.relative {
  position: relative;
  overflow: hidden;
}

.absulute {
  position: absolute;
}

.v-center {
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 100%;
  z-index: 9;
}

.h-center {
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.h-center-reverse {
  right: 50%;
  -webkit-transform: translateX(50%);
          transform: translateX(50%);
}

.content-center {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}

.item-center {
  left: 50%;
  position: absolute;
  top: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
          transform: translateX(-50%) translateY(-50%);
  z-index: 1;
}

.flex-v-center {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.display-block {
  display: block;
}

.social-bookmark li {
  display: inline;
}

.social-bookmark li a {
  display: inline-block;
  margin: 0 2px;
  text-align: center;
}

.inline li {
  display: inline;
}

.inline-block li {
  display: inline-block;
}

.inline-block {
  display: inline-block;
}

@media (min-width: 768px) and (max-width: 991px) {
  .sm-width100p {
    width: 100%;
  }

  .flex-v-center {
    display: inherit;
  }
}
@media only screen and (max-width: 767px) {
  .xs-width100p {
    width: 100%;
  }

  .flex-v-center {
    -webkit-box-align: inherit;
        -ms-flex-align: inherit;
            align-items: inherit;
    display: inherit;
  }
}
/*
MARGIN
----------------------*/
.mt100 {
  margin-top: 100px;
}

.mt90 {
  margin-top: 90px;
}

.mt80 {
  margin-top: 80px;
}

.mt70 {
  margin-top: 70px;
}

.mt60 {
  margin-top: 60px;
}

.mt50 {
  margin-top: 50px;
}

.mt40 {
  margin-top: 40px;
}

.mt30 {
  margin-top: 30px;
}

.mt20 {
  margin-top: 20px;
}

.mt10 {
  margin-top: 10px;
}

.no-margin {
  margin: 0;
}

.mb100 {
  margin-bottom: 100px;
}

.mb90 {
  margin-bottom: 90px;
}

.mb80 {
  margin-bottom: 80px;
}

.mb70 {
  margin-bottom: 70px;
}

.mb60 {
  margin-bottom: 60px;
}

.mb50 {
  margin-bottom: 50px;
}

.mb40 {
  margin-bottom: 40px;
}

.mb30 {
  margin-bottom: 30px;
}

.mb20 {
  margin-bottom: 20px;
}

.mb10 {
  margin-bottom: 10px;
}

.mb0 {
  margin-bottom: 0;
}

@media only screen and (min-width: 1200px) {
  /*
  MEDIUM LAYOUT: 1280px
  ----------------------*/
  .lg-mb0 {
    margin-bottom: 0;
  }

  .lg-mb10 {
    margin-bottom: 10px;
  }

  .lg-mb20 {
    margin-bottom: 20px;
  }

  .lg-mb30 {
    margin-bottom: 30px;
  }

  .lg-mb40 {
    margin-bottom: 40px;
  }

  .lg-mb50 {
    margin-bottom: 50px;
  }

  .lg-mb60 {
    margin-bottom: 60px;
  }

  .lg-mb70 {
    margin-bottom: 70px;
  }

  .lg-mb80 {
    margin-bottom: 80px;
  }

  .lg-mb100 {
    margin-bottom: 100px;
  }

  .lg-mt0 {
    margin-top: 0;
  }

  .lg-mt10 {
    margin-top: 10px;
  }

  .lg-mt20 {
    margin-top: 20px;
  }

  .lg-mt30 {
    margin-top: 30px;
  }

  .lg-mt40 {
    margin-top: 40px;
  }

  .lg-mt50 {
    margin-top: 50px;
  }

  .lg-mt60 {
    margin-top: 60px;
  }

  .lg-mt70 {
    margin-top: 70px;
  }

  .lg-mt80 {
    margin-top: 80px;
  }

  .lg-mt100 {
    margin-top: 100px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
  /*
  MEDIUM LAYOUT: 1280px
  ----------------------*/
  .md-mb0 {
    margin-bottom: 0;
  }

  .md-mb10 {
    margin-bottom: 10px;
  }

  .md-mb20 {
    margin-bottom: 20px;
  }

  .md-mb30 {
    margin-bottom: 30px;
  }

  .md-mb40 {
    margin-bottom: 40px;
  }

  .md-mb50 {
    margin-bottom: 50px;
  }

  .md-mb60 {
    margin-bottom: 60px;
  }

  .md-mb70 {
    margin-bottom: 70px;
  }

  .md-mb80 {
    margin-bottom: 80px;
  }

  .md-mb100 {
    margin-bottom: 100px;
  }

  .md-mt0 {
    margin-top: 0;
  }

  .md-mt10 {
    margin-top: 10px;
  }

  .md-mt20 {
    margin-top: 20px;
  }

  .md-mt30 {
    margin-top: 30px;
  }

  .md-mt40 {
    margin-top: 40px;
  }

  .md-mt50 {
    margin-top: 50px;
  }

  .md-mt60 {
    margin-top: 60px;
  }

  .md-mt70 {
    margin-top: 70px;
  }

  .md-mt80 {
    margin-top: 80px;
  }

  .md-mt100 {
    margin-top: 100px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  /*
  TABLET LAYOUT: 768px
  ----------------------*/
  .sm-mb0 {
    margin-bottom: 0;
  }

  .sm-mb10 {
    margin-bottom: 10px;
  }

  .sm-mb20 {
    margin-bottom: 20px;
  }

  .sm-mb30 {
    margin-bottom: 30px;
  }

  .sm-mb40 {
    margin-bottom: 40px;
  }

  .sm-mb50 {
    margin-bottom: 50px;
  }

  .sm-mb60 {
    margin-bottom: 60px;
  }

  .sm-mb70 {
    margin-bottom: 70px;
  }

  .sm-mb80 {
    margin-bottom: 80px;
  }

  .sm-mb100 {
    margin-bottom: 100px;
  }

  .sm-mt0 {
    margin-top: 0;
  }

  .sm-mt10 {
    margin-top: 10px;
  }

  .sm-mt20 {
    margin-top: 20px;
  }

  .sm-mt30 {
    margin-top: 30px;
  }

  .sm-mt40 {
    margin-top: 40px;
  }

  .sm-mt50 {
    margin-top: 50px;
  }

  .sm-mt60 {
    margin-top: 60px;
  }

  .sm-mt70 {
    margin-top: 70px;
  }

  .sm-mt80 {
    margin-top: 80px;
  }

  .sm-mt100 {
    margin-top: 100px;
  }
}
@media only screen and (max-width: 767px) {
  /*
  MOBILE LAYOUT: 320px
  ----------------------*/
  .xs-mb0 {
    margin-bottom: 0;
  }

  .xs-mb10 {
    margin-bottom: 10px;
  }

  .xs-mb20 {
    margin-bottom: 20px;
  }

  .xs-mb30 {
    margin-bottom: 30px;
  }

  .xs-mb40 {
    margin-bottom: 40px;
  }

  .xs-mb50 {
    margin-bottom: 50px;
  }

  .xs-mb60 {
    margin-bottom: 60px;
  }

  .xs-mb70 {
    margin-bottom: 70px;
  }

  .xs-mb80 {
    margin-bottom: 80px;
  }

  .xs-mb100 {
    margin-bottom: 100px;
  }

  .xs-mt0 {
    margin-top: 0;
  }

  .xs-mt10 {
    margin-top: 10px;
  }

  .xs-mt20 {
    margin-top: 20px;
  }

  .xs-mt30 {
    margin-top: 30px;
  }

  .xs-mt40 {
    margin-top: 40px;
  }

  .xs-mt50 {
    margin-top: 50px;
  }

  .xs-mt60 {
    margin-top: 60px;
  }

  .xs-mt70 {
    margin-top: 70px;
  }

  .xs-mt80 {
    margin-top: 80px;
  }

  .xs-mt100 {
    margin-top: 100px;
  }
}
/*
PADDING
----------------------*/
.section-padding {
  padding: 100px 0;
}

.padding-top {
  padding-top: 100px;
}

.padding-bottom {
  padding-bottom: 100px;
}

.padding-100-70 {
  padding-top: 100px;
  padding-bottom: 70px;
}

.padding-100-50 {
  padding-top: 100px;
  padding-bottom: 50px;
}

.padding-100-40 {
  padding-top: 100px;
  padding-bottom: 40px;
}

.padding-100-30 {
  padding-top: 100px;
  padding-bottom: 30px;
}

.padding-50-50 {
  padding: 50px 0;
}

.padding-150-150 {
  padding: 150px 0;
}

/*
PADDING TOP
----------------------*/
.padding-top-10 {
  padding-top: 10px;
}

.padding-top-20 {
  padding-top: 20px;
}

.padding-top-30 {
  padding-top: 30px;
}

.padding-top-40 {
  padding-top: 40px;
}

.padding-top-50 {
  padding-top: 50px;
}

.padding-top-60 {
  padding-top: 60px;
}

.padding-top-70 {
  padding-top: 70px;
}

.padding-top-80 {
  padding-top: 80px;
}

.padding-top-90 {
  padding-top: 90px;
}

.padding-top-100 {
  padding-top: 100px;
}

/*
PADDING BOTTOM
----------------------*/
.padding-bottom-10 {
  padding-bottom: 10px;
}

.padding-bottom-20 {
  padding-bottom: 20px;
}

.padding-bottom-30 {
  padding-bottom: 30px;
}

.padding-bottom-40 {
  padding-bottom: 40px;
}

.padding-bottom-50 {
  padding-bottom: 50px;
}

.padding-bottom-60 {
  padding-bottom: 60px;
}

.padding-bottom-70 {
  padding-bottom: 70px;
}

.padding-bottom-80 {
  padding-bottom: 80px;
}

.padding-bottom-90 {
  padding-bottom: 90px;
}

.padding-bottom-100 {
  padding-bottom: 100px;
}

/*
PADDING
----------------------*/
.padding100 {
  padding: 100px;
}

.padding90 {
  padding: 90px;
}

.padding80 {
  padding: 80px;
}

.padding70 {
  padding: 70px;
}

.padding60 {
  padding: 60px;
}

.padding50 {
  padding: 50px;
}

.padding40 {
  padding: 40px;
}

.padding30 {
  padding: 30px;
}

.padding20 {
  padding: 20px;
}

.padding10 {
  padding: 10px;
}

.no-padding {
  padding: 0;
}

/*
RESPONSIVE
----------------------*/
@media only screen and (min-width: 1200px) {
  .lg-padding-top-10 {
    padding-top: 10px;
  }

  .lg-padding-top-20 {
    padding-top: 20px;
  }

  .lg-padding-top-30 {
    padding-top: 30px;
  }

  .lg-padding-top-40 {
    padding-top: 40px;
  }

  .lg-padding-top-50 {
    padding-top: 50px;
  }

  .lg-padding-top-60 {
    padding-top: 60px;
  }

  .lg-padding-top-70 {
    padding-top: 70px;
  }

  .lg-padding-top-80 {
    padding-top: 80px;
  }

  .lg-padding-top-90 {
    padding-top: 90px;
  }

  .lg-padding-top-100 {
    padding-top: 100px;
  }

  .lg-padding-bottom-10 {
    padding-bottom: 10px;
  }

  .lg-padding-bottom-20 {
    padding-bottom: 20px;
  }

  .lg-padding-bottom-30 {
    padding-bottom: 30px;
  }

  .lg-padding-bottom-40 {
    padding-bottom: 40px;
  }

  .lg-padding-bottom-50 {
    padding-bottom: 50px;
  }

  .lg-padding-bottom-60 {
    padding-bottom: 60px;
  }

  .lg-padding-bottom-70 {
    padding-bottom: 70px;
  }

  .lg-padding-bottom-80 {
    padding-bottom: 80px;
  }

  .lg-padding-bottom-90 {
    padding-bottom: 90px;
  }

  .lg-padding-bottom-100 {
    padding-bottom: 100px;
  }

  /*------------------*/
  .lg-padding100 {
    padding: 100px;
  }

  .lg-padding90 {
    padding: 90px;
  }

  .lg-padding80 {
    padding: 80px;
  }

  .lg-padding70 {
    padding: 70px;
  }

  .lg-padding60 {
    padding: 60px;
  }

  .lg-padding50 {
    padding: 50px;
  }

  .lg-padding40 {
    padding: 40px;
  }

  .lg-padding30 {
    padding: 30px;
  }

  .lg-padding20 {
    padding: 20px;
  }

  .lg-padding10 {
    padding: 10px;
  }

  .lg-padding0 {
    padding: 0px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .md-padding-top-10 {
    padding-top: 10px;
  }

  .md-padding-top-20 {
    padding-top: 20px;
  }

  .md-padding-top-30 {
    padding-top: 30px;
  }

  .md-padding-top-40 {
    padding-top: 40px;
  }

  .md-padding-top-50 {
    padding-top: 50px;
  }

  .md-padding-top-60 {
    padding-top: 60px;
  }

  .md-padding-top-70 {
    padding-top: 70px;
  }

  .md-padding-top-80 {
    padding-top: 80px;
  }

  .md-padding-top-90 {
    padding-top: 90px;
  }

  .md-padding-top-100 {
    padding-top: 100px;
  }

  .md-padding-bottom-10 {
    padding-bottom: 10px;
  }

  .md-padding-bottom-20 {
    padding-bottom: 20px;
  }

  .md-padding-bottom-30 {
    padding-bottom: 30px;
  }

  .md-padding-bottom-40 {
    padding-bottom: 40px;
  }

  .md-padding-bottom-50 {
    padding-bottom: 50px;
  }

  .md-padding-bottom-60 {
    padding-bottom: 60px;
  }

  .md-padding-bottom-70 {
    padding-bottom: 70px;
  }

  .md-padding-bottom-80 {
    padding-bottom: 80px;
  }

  .md-padding-bottom-90 {
    padding-bottom: 90px;
  }

  .md-padding-bottom-100 {
    padding-bottom: 100px;
  }

  /*------------------*/
  .md-padding100 {
    padding: 100px;
  }

  .md-padding90 {
    padding: 90px;
  }

  .md-padding80 {
    padding: 80px;
  }

  .md-padding70 {
    padding: 70px;
  }

  .md-padding60 {
    padding: 60px;
  }

  .md-padding50 {
    padding: 50px;
  }

  .md-padding40 {
    padding: 40px;
  }

  .md-padding30 {
    padding: 30px;
  }

  .md-padding20 {
    padding: 20px;
  }

  .md-padding10 {
    padding: 10px;
  }

  .md-padding0 {
    padding: 0px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .sm-padding-top-10 {
    padding-top: 10px;
  }

  .sm-padding-top-20 {
    padding-top: 20px;
  }

  .sm-padding-top-30 {
    padding-top: 30px;
  }

  .sm-padding-top-40 {
    padding-top: 40px;
  }

  .sm-padding-top-50 {
    padding-top: 50px;
  }

  .sm-padding-top-60 {
    padding-top: 60px;
  }

  .sm-padding-top-70 {
    padding-top: 70px;
  }

  .sm-padding-top-80 {
    padding-top: 80px;
  }

  .sm-padding-top-90 {
    padding-top: 90px;
  }

  .sm-padding-top-100 {
    padding-top: 100px;
  }

  .sm-padding-bottom-10 {
    padding-bottom: 10px;
  }

  .sm-padding-bottom-20 {
    padding-bottom: 20px;
  }

  .sm-padding-bottom-30 {
    padding-bottom: 30px;
  }

  .sm-padding-bottom-40 {
    padding-bottom: 40px;
  }

  .sm-padding-bottom-50 {
    padding-bottom: 50px;
  }

  .sm-padding-bottom-60 {
    padding-bottom: 60px;
  }

  .sm-padding-bottom-70 {
    padding-bottom: 70px;
  }

  .sm-padding-bottom-80 {
    padding-bottom: 80px;
  }

  .sm-padding-bottom-90 {
    padding-bottom: 90px;
  }

  .sm-padding-bottom-100 {
    padding-bottom: 100px;
  }

  /*------------------*/
  .sm-padding100 {
    padding: 100px;
  }

  .sm-padding90 {
    padding: 90px;
  }

  .sm-padding80 {
    padding: 80px;
  }

  .sm-padding70 {
    padding: 70px;
  }

  .sm-padding60 {
    padding: 60px;
  }

  .sm-padding50 {
    padding: 50px;
  }

  .sm-padding40 {
    padding: 40px;
  }

  .sm-padding30 {
    padding: 30px;
  }

  .sm-padding20 {
    padding: 20px;
  }

  .sm-padding10 {
    padding: 10px;
  }

  .sm-padding0 {
    padding: 0px;
  }

  /*-----------------*/
  .section-padding {
    padding: 80px 0;
  }

  .padding-top {
    padding-top: 80px;
  }

  .padding-bottom {
    padding-bottom: 80px;
  }

  .padding-100-50 {
    padding-top: 80px;
    padding-bottom: 30px;
  }

  .padding-100-70 {
    padding-top: 80px;
    padding-bottom: 50px;
  }

  .padding-100-30 {
    padding-top: 80px;
    padding-bottom: 10px;
  }
}
@media only screen and (max-width: 767px) {
  .xs-padding-top-10 {
    padding-top: 10px;
  }

  .xs-padding-top-20 {
    padding-top: 20px;
  }

  .xs-padding-top-30 {
    padding-top: 30px;
  }

  .xs-padding-top-40 {
    padding-top: 40px;
  }

  .xs-padding-top-50 {
    padding-top: 50px;
  }

  .xs-padding-top-60 {
    padding-top: 60px;
  }

  .xs-padding-top-70 {
    padding-top: 70px;
  }

  .xs-padding-top-80 {
    padding-top: 80px;
  }

  .xs-padding-top-90 {
    padding-top: 90px;
  }

  .xs-padding-top-100 {
    padding-top: 100px;
  }

  .xs-padding-bottom-10 {
    padding-bottom: 10px;
  }

  .xs-padding-bottom-20 {
    padding-bottom: 20px;
  }

  .xs-padding-bottom-30 {
    padding-bottom: 30px;
  }

  .xs-padding-bottom-40 {
    padding-bottom: 40px;
  }

  .xs-padding-bottom-50 {
    padding-bottom: 50px;
  }

  .xs-padding-bottom-60 {
    padding-bottom: 60px;
  }

  .xs-padding-bottom-70 {
    padding-bottom: 70px;
  }

  .xs-padding-bottom-80 {
    padding-bottom: 80px;
  }

  .xs-padding-bottom-90 {
    padding-bottom: 90px;
  }

  .xs-padding-bottom-100 {
    padding-bottom: 100px;
  }

  /*------------------*/
  .xs-padding100 {
    padding: 100px;
  }

  .xs-padding90 {
    padding: 90px;
  }

  .xs-padding80 {
    padding: 80px;
  }

  .xs-padding70 {
    padding: 70px;
  }

  .xs-padding60 {
    padding: 60px;
  }

  .xs-padding50 {
    padding: 50px;
  }

  .xs-padding40 {
    padding: 40px;
  }

  .xs-padding30 {
    padding: 30px;
  }

  .xs-padding20 {
    padding: 20px;
  }

  .xs-padding10 {
    padding: 10px;
  }

  .xs-padding0 {
    padding: 0px;
  }

  /*----------------*/
  .section-padding {
    padding: 50px 0;
  }

  .padding-top {
    padding-top: 50px;
  }

  .padding-bottom {
    padding-bottom: 50px;
  }

  .padding-100-50 {
    padding-top: 50px;
    padding-bottom: 0;
  }

  .padding-100-70 {
    padding-top: 50px;
    padding-bottom: 20px;
  }

  .padding-100-30 {
    padding-top: 50px;
    padding-bottom: 0px;
  }
}
/*==========================
    HEADERS CSS
===========================*/
/*
Hamberger
----------------------*/
.mainmenu__area svg.ham {
  display: none;
  position: absolute;
  right: 0;
  top: 0;
  width: 60px;
  height: 60px;
}
.mainmenu__area .ham {
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  -webkit-transition: -webkit-transform 400ms;
  transition: -webkit-transform 400ms;
  transition: transform 400ms;
  transition: transform 400ms, -webkit-transform 400ms;
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.mainmenu__area .ham.hamRotate.active {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.mainmenu__area .ham.hamRotate180.active {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.mainmenu__area .ham .line {
  fill: none;
  -webkit-transition: stroke-dasharray 400ms, stroke-dashoffset 400ms;
  transition: stroke-dasharray 400ms, stroke-dashoffset 400ms;
  stroke: var(--body_dark_color);
  stroke-width: 3.5;
  stroke-linecap: round;
}
.mainmenu__area .ham.ham1 .top {
  stroke-dasharray: 40 139;
}
.mainmenu__area .ham.ham1 .bottom {
  stroke-dasharray: 40 180;
}
.mainmenu__area .ham.ham1.active .top {
  stroke-dashoffset: -98px;
}
.mainmenu__area .ham.ham1.active .bottom {
  stroke-dashoffset: -138px;
}
.mainmenu__area .ham.ham4 .top,
.mainmenu__area .ham.ham4 .bottom {
  stroke-dasharray: 40 121;
}
.mainmenu__area .ham.ham4.active .top,
.mainmenu__area .ham.ham4.active .bottom {
  stroke-dashoffset: -68px;
}
.mainmenu__area .ham.ham6 .top {
  stroke-dasharray: 40 172;
}
.mainmenu__area .ham.ham6 .middle {
  stroke-dasharray: 40 111;
}
.mainmenu__area .ham.ham6 .bottom {
  stroke-dasharray: 40 172;
}
.mainmenu__area .ham.ham6.active .top {
  stroke-dashoffset: -132px;
}
.mainmenu__area .ham.ham6.active .middle {
  stroke-dashoffset: -71px;
}
.mainmenu__area .ham.ham6.active .bottom {
  stroke-dashoffset: -132px;
}
.mainmenu__area .ham.ham7 .top {
  stroke-dasharray: 40 82;
}
.mainmenu__area .ham.ham7 .middle {
  stroke-dasharray: 40 111;
}
.mainmenu__area .ham.ham7 .bottom {
  stroke-dasharray: 40 161;
}
.mainmenu__area .ham.ham7.active .top {
  stroke-dasharray: 17 82;
  stroke-dashoffset: -62px;
}
.mainmenu__area .ham.ham7.active .middle {
  stroke-dashoffset: 23px;
}
.mainmenu__area .ham.ham7.active .bottom {
  stroke-dashoffset: -83px;
}
.mainmenu__area .ham.ham8 .line.top {
  stroke-dasharray: 20 160;
}
.mainmenu__area .ham.ham8 .line.middle {
  stroke-dasharray: 40 142;
  -webkit-transform-origin: 50%;
          transform-origin: 50%;
  -webkit-transition: -webkit-transform 400ms;
  transition: -webkit-transform 400ms;
  transition: transform 400ms;
  transition: transform 400ms, -webkit-transform 400ms;
}
.mainmenu__area .ham.ham8 .line.bottom {
  stroke-dasharray: 40 85;
  -webkit-transform-origin: 50%;
          transform-origin: 50%;
  -webkit-transition: stroke-dashoffset 400ms, -webkit-transform 400ms;
  transition: stroke-dashoffset 400ms, -webkit-transform 400ms;
  transition: transform 400ms, stroke-dashoffset 400ms;
  transition: transform 400ms, stroke-dashoffset 400ms, -webkit-transform 400ms;
}
.mainmenu__area .ham.ham8.active .line.top {
  stroke-dashoffset: -64px;
}
.mainmenu__area .ham.ham8.active .line.middle {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
.mainmenu__area .ham.ham8.active .line.bottom {
  stroke-dashoffset: -64px;
}

@media only screen and (max-width: 991px) {
  .mainmenu__area svg.ham {
    display: block !important;
  }
  .mainmenu__area .line {
    stroke: var(--white_color);
  }

  .is__sticky .mainmenu__area .line {
    stroke: var(--body_dark_color);
  }
}
/*
Topbar
----------------------*/
.top__bar {
  background: var(--white_background);
  padding: 10px 0;
}

.top-left-contact p {
  display: inline-block;
  margin-right: 20px;
  margin-bottom: 0;
  line-height: 1;
}
.top-left-contact p i {
  margin-right: 5px;
  font-size: 16px;
  position: relative;
  top: 2px;
}
.top-left-contact p:last-child {
  margin-right: 0;
}

.top__bar .social__profiles {
  text-align: right;
}
.top__bar .social__profiles ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.top__bar .social__profiles ul li {
  display: inline-block;
}
.top__bar .social__profiles ul li a {
  display: inline-block;
  width: 30px;
  height: 30px;
  text-align: center;
  padding-top: 0;
  color: var(--theme_main_color);
  border-radius: 3px;
  margin: 0 3px;
}
.top__bar .social__profiles ul li a:hover {
  background: var(--white_background);
  color: var(--theme_main_color);
}

/*
HEADER WIDGETS
----------------------*/
.header__widgets__area {
  position: fixed;
  right: -350px;
  top: 0;
  background: var(--white_background);
  z-index: 9999;
  height: 100vh;
  text-align: center;
  max-width: 500px;
  width: 350px;
  padding: 50px 20px 20px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  overflow-x: hidden;
}

.header__widgets__area.open_widget {
  right: 0;
}

span.close__header__widget {
  position: absolute;
  left: 20px;
  font-size: 25px;
  top: 50px;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

span.close__header__widget:hover {
  color: var(--theme_main_color);
}

.header__widgets__area .single__widgets {
  padding: 0;
  border: 0;
  padding-top: 40px;
  background: inherit;
  -webkit-box-shadow: 0 0 0;
          box-shadow: 0 0 0;
}

.header__widgets__area .single__widgets:first-child {
  margin-top: 40px;
}

.header__widgets__area .single__widgets .widget-title h3 {
  margin-bottom: 20px;
}

.header__widgets__area .single__widgets h3:after {
  display: none;
}

.header__widgets__area .widget_social_profile {
  text-align: center;
}

.header__widgets__area .widget_archive ul,
.header__widgets__area .widget_categories ul,
.header__widgets__area .widget_pages ul,
.header__widgets__area .widget_meta ul,
.header__widgets__area .widget_recent_comments ul,
.header__widgets__area .widget_recent_entries ul,
.header__widgets__area .widget_nav_menu ul {
  text-align: left;
}

@media only screen and (min-width: 992px) {
  .stellarnav ul li ul {
    -webkit-transition: 0.3s ease-in-out !important;
    transition: 0.3s ease-in-out !important;
    opacity: 0;
    visibility: hidden;
    display: block !important;
    margin-top: 5px;
    -webkit-transform-origin: left center;
            transform-origin: left center;
  }

  .stellarnav ul li.drop-left ul {
    -webkit-transform-origin: right center;
            transform-origin: right center;
  }

  .stellarnav ul li:hover > ul {
    opacity: 1;
    visibility: visible;
    margin-top: 0;
  }
}
/*
Menu Toggle
-----------------------*/
.mainmenu__area .menu-toggle.full {
  border: 0;
  font-size: 20px;
  height: 40px;
  letter-spacing: 2px;
  line-height: 1;
  padding-top: 8px;
  position: absolute;
  right: 15px;
  text-align: center;
  text-indent: -999px;
  top: 20px;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  width: 50px;
  z-index: 9999;
}

.is__sticky .mainmenu__area .menu-toggle.full {
  border-color: var(--body_dark_color);
  color: var(--body_dark_color);
}

.mainmenu__area .menu-toggle span.bars {
  display: none;
}

.stellarnav .dd-toggle {
  background: var(--white_background) !important;
}

.stellarnav.mobile li a {
  border-bottom: 1px solid rgba(0, 0, 0, 0.15) !important;
}

@media only screen and (min-width: 993px) {
  .stellarnav .dd-toggle {
    display: none !important;
  }
}
@media only screen and (max-width: 991px) {
  .mainmenu__area .menu-toggle.full {
    color: var(--white_color);
  }
}
/*
Header Logo
-----------------------*/
.mainmenu__area .navbar-header {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  left: 0;
  /*position: absolute;*/
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  z-index: 9999;
}

.is__sticky .mainmenu__area .navbar-header {
  margin-top: 0;
}

.mainmenu__area .navbar-header h3 {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 30px;
  font-weight: 600;
  height: 100px;
  margin-bottom: 0;
  /* padding-left: 30px; */
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  margin-right: 50px;
  width: 100%;
  white-space: nowrap;
}

.is__sticky .mainmenu__area .navbar-header h3 {
  height: 60px;
}

.mainmenu__area .navbar-header h3 a {
  color: var(--white_color);
}

.is__sticky .mainmenu__area .navbar-header h3 a {
  color: var(--body_dark_color);
}

.mainmenu__area .navbar-brand > img {
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.mainmenu__area .custom__logo__link {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  min-height: 100px;
  position: relative;
}

.is__sticky .mainmenu__area .custom__logo__link {
  min-height: 80px;
  margin: 0;
  padding: 0;
}

.mainmenu__area .custom__logo__link img {
  max-width: 200px;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.mainmenu__area .custom__logo__link.sticky__logo {
  opacity: 0;
  position: absolute;
  visibility: hidden;
  left: 15px !important;
}

.is__sticky .mainmenu__area .custom__logo__link.sticky__logo {
  opacity: 1;
  visibility: visible;
}

.is__sticky .mainmenu__area .custom__logo__link.default__logo {
  opacity: 0;
  visibility: hidden;
}

@media only screen and (max-width: 991px) {
  .mainmenu__area .navbar-header {
    float: none;
    height: 80px;
    margin: 0;
    padding: 0;
    position: static;
  }

  .is__sticky .mainmenu__area .navbar-header {
    margin: 0;
    padding: 5px 0;
  }

  .mainmenu__area .navbar-header h3 {
    padding-left: 0;
  }

  .mainmenu__area .navbar-header h3 a {
    color: var(--white_color);
  }

  .mainmenu__area .navbar-brand {
    padding: 8px;
  }

  .is__sticky .mainmenu__area .navbar-brand {
    margin-top: -3px;
  }

  .is__sticky .mainmenu__area .navbar-brand img {
    margin-top: 5px;
  }

  .mainmenu__area .custom__logo__link,
.is__sticky .mainmenu__area .custom__logo__link {
    left: 0;
    margin-top: 0;
    padding: 0;
  }

  .mainmenu__area .custom__logo__link img {
    max-width: 150px;
  }
}
@media only screen and (max-width: 767px) {
  .mainmenu__area .navbar-brand {
    margin-top: -3px;
    padding: 8px;
  }

  .is__sticky .mainmenu__area .navbar-brand {
    margin-top: -3px;
  }

  .mainmenu__area .navbar-brand > img {
    margin-top: 2px;
    width: 90%;
  }

  .is__sticky .mainmenu__area .navbar-brand > img {
    max-width: 100%;
  }
}
/*
MENU CSS
----------------------*/
.header__top__area {
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 9;
}

.mainmenu__area {
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  position: relative;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.is__sticky .mainmenu__area {
  background: var(--white_background);
  -webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.03), 0 3px 6px rgba(0, 0, 0, 0.06);
          box-shadow: 0 2px 4px rgba(0, 0, 0, 0.03), 0 3px 6px rgba(0, 0, 0, 0.06);
  z-index: 9 !important;
}

.mainmenu__area__bg {
  background: var(--white_background);
  height: 100%;
  left: 0;
  opacity: 0;
  position: absolute;
  top: 0;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  width: 100%;
}

.is__sticky .mainmenu__area__bg {
  opacity: 0.8;
}

.stellarnav {
  display: inline-block;
  margin: 0 auto;
  width: auto;
}

.stellarnav.light {
  background: inherit;
}

.stellarnav.dark {
  background: rgba(0, 0, 0, 0);
}

ul#nav {
  float: right;
}

.stellarnav ul ul {
  -webkit-box-shadow: 0 16px 32px rgba(0, 0, 0, 0.1);
          box-shadow: 0 16px 32px rgba(0, 0, 0, 0.1);
}

ul#nav li a {
  background: rgba(0, 0, 0, 0);
  color: var(--mainmenu_color);
  letter-spacing: 0.5px;
  padding: 40px 15px;
  text-transform: capitalize;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

ul#nav li a {
  font-weight: 500;
  letter-spacing: 0;
  text-transform: capitalize;
}

ul#nav li li a {
  color: var(--mainmenu_dark_color);
}

.is__sticky ul#nav li a {
  padding: 30px 15px;
  color: var(--mainmenu_dark_color);
}

ul#nav li ul a,
.is__sticky ul#nav li ul a {
  border-bottom: var(--theme_border);
  padding: 12px 12px 12px 15px;
}

ul#nav li ul li:last-child a,
.is__sticky ul#nav li ul li:last-child a {
  border-bottom: 0;
}

ul#nav li a:hover,
ul#nav li.active > a,
ul#nav li.current-menu-item > a,
ul#nav li.current-menu-parent > a,
ul#nav li.hover > a,
.is__sticky ul#nav li > a:hover,
.is__sticky ul#nav li ul li > a:hover,
.is__sticky ul#nav li.active > a,
.is__sticky ul#nav li.current-menu-item > a,
.is__sticky ul#nav li.current-menu-parent > a,
.is__sticky ul#nav li.hover > a {
  color: var(--mainmenu_hover_color);
}

ul#nav li ul a:hover,
.is__sticky ul#nav li ul a:hover {
  color: var(--mainmenu_hover_color);
}

.stellarnav li.has-sub > a:after {
  content: "";
  /* "\e61a" */
  font-family: themify;
  margin-left: 5px;
  font-size: 12px;
  border: 0;
  -webkit-transition: 0.8s;
  transition: 0.8s;
  font-weight: 800;
  margin-left: 12px;
}

.stellarnav li.has-sub:hover > a:after {
  -webkit-transform: rotateX(180deg);
          transform: rotateX(180deg);
}

.stellarnav li li.has-sub > a::after {
  margin-left: 0;
  position: absolute;
  right: 0;
  border: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.stellarnav li li.has-sub > a::after {
  font-family: "themify";
  content: "";
  margin-left: 0;
  position: absolute;
  right: 0;
  font-size: 12px;
  top: 16px;
}

.stellarnav li.drop-left li.has-sub > a::after {
  font-family: "themify";
  content: "";
  font-size: 12px;
  display: inline-block !important;
  /* top: 4px; */
  border: 0;
}

/*
MENU BEDGE
-----------------------*/
#main-nav ul#nav > li.has-sub.current_menu_bedge > a:after {
  display: none !important;
}

span.mainmenu__bedge {
  position: relative;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  display: inline-block;
  line-height: 1;
  background: var(--theme_main_background);
  font-size: 12px;
  padding: 3px 7px;
  border-radius: 3px;
  color: var(--white_background);
  margin-left: 7px;
  font-weight: 400;
  letter-spacing: 0.3px;
}

@media only screen and (max-width: 992px) {
  span.mainmenu__bedge {
    display: none;
  }
}
/*
MAGIC LINE ANIMATION
----------------------*/
@media only screen and (min-width: 992px) {
  .stellarnav ul ul {
    border-bottom: 3px solid var(--theme_border_color);
  }

  /*ul#nav li ul li a:hover {
      background: v( theme_soft_color_and_bg );
  }*/
  ul#nav > li {
    position: relative;
  }

  ul#nav > li.menu-item .wee {
    height: 2px;
    width: 100%;
    background-color: var(--theme_main_background);
    position: absolute;
    left: 0;
    bottom: 0;
    -webkit-transition: 0.75s;
    transition: 0.75s;
  }
}
@media only screen and (min-width: 992px) {
  ul#nav li ul {
    padding: 20px;
    border-radius: 10px;
    background: var(--body_dark_background);
    min-width: 220px;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
  }

  ul#nav li ul li a,
.is__sticky ul#nav li ul li a {
    padding: 10px;
    border: 0;
  }

  ul#nav li ul ul {
    left: calc(100% + 20px);
  }

  ul#nav li.drop-left ul ul {
    right: calc(100% + 20px);
    left: auto;
  }

  ul#nav li ul li:hover > a:after {
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
  }

  ul#nav li ul li.drop-left:hover > a:after {
    -webkit-transform: rotate(-90deg);
            transform: rotate(-90deg);
  }

  ul#nav > li.menu-item .wee {
    display: none;
  }
}
/*==========================
    RESPONSIVE
============================*/
/*
LARGE: 1920px
----------------------*/
@media only screen and (min-width: 1920px) {
  .is__sticky .mainmenu__area {
    padding-top: 0;
  }

  ul#nav li a {
    padding: 40px 20px;
  }

  .is__sticky ul#nav li a {
    padding: 30px 20px;
  }
}
/*
MEDIUM: 1280px
----------------------*/
@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .is__sticky .mainmenu__area .navbar-header {
    margin-top: 2px;
  }

  ul#nav li a {
    padding: 40px 10px;
  }

  .is__sticky ul#nav li a {
    padding: 25px 10px;
  }
}
/*
TABLET & MOBILE: 768px
----------------------*/
@media only screen and (max-width: 991px) {
  ul#nav {
    background: var(--white_background);
    border: var(--theme_border);
    width: 100%;
    max-height: 500px;
    overflow-x: hidden;
    overflow-y: auto;
  }

  ul#nav li {
    float: none;
  }

  ul#nav li a {
    color: var(--body_dark_color) !important;
    font-weight: 400 !important;
    height: 40px;
  }

  ul#nav li a,
.is__sticky ul#nav li a {
    color: var(--mainmenu_color);
    padding: 10px 15px;
  }

  ul#nav li a::after {
    display: none !important;
  }

  .stellarnav > ul > li:last-child {
    margin-right: inherit;
  }

  .stellarnav ul ul {
    -webkit-box-shadow: inherit;
            box-shadow: inherit;
  }

  ul.sub-menu a {
    border: 0 none !important;
    font-size: 14px !important;
    font-weight: 400 !important;
    height: 40px;
    padding-left: 30px !important;
    text-transform: capitalize !important;
  }

  ul.sub-menu .sub-menu a {
    padding-left: 45px !important;
  }

  .current-menu-parent > a,
ul#nav .current-menu-parent > a,
ul#nav li a:hover,
ul#nav li.active > a,
ul#nav li.current-menu-item > a,
ul#nav li.has-sub.open > a,
ul#nav li.hover > a,
ul#nav li.open.menu-item-has-children > a {
    background: var(--white_background) !important;
    color: var(--mainmenu_hover_color) !important;
  }
}
/*
MOBILE & TABLET: 992px
----------------------*/
@media only screen and (max-width: 991px) {
  .stellarnav {
    display: block;
    margin: 0 auto;
    width: 100%;
  }

  .stellarnav.mobile.active {
    padding-bottom: 15px;
  }
}
@media only screen and (max-width: 992px) {
  .stellarnav.left.mobile.active,
.stellarnav.right.mobile.active {
    padding-bottom: 0;
  }

  .mainmenu__area .menu-toggle {
    position: absolute;
    right: 15px;
    top: 12px;
    display: none;
    width: 60px;
    height: 60px;
  }

  .stellarnav a.call-btn-mobile.third,
.stellarnav a.location-btn-mobile.third {
    display: none;
  }

  .stellarnav.left a.call-btn-mobile.third,
.stellarnav.left a.location-btn-mobile.third,
.stellarnav.right a.call-btn-mobile.third,
.stellarnav.right a.location-btn-mobile.third {
    display: inline-block;
  }

  .stellarnav.mobile.left .close-menu.third span,
.stellarnav.mobile.right .close-menu.third span {
    display: none;
  }

  .stellarnav.left ul#nav,
.stellarnav.right ul#nav {
    max-height: inherit;
  }

  .stellarnav .dd-toggle .icon-plus:after,
.stellarnav .dd-toggle .icon-plus:before {
    border-bottom: solid 1px #777777;
  }

  .admin-bar .stellarnav.left ul#nav,
.admin-bar .stellarnav.right ul#nav {
    top: 46px;
  }

  ul#nav li a,
ul#nav li li a,
.is__sticky ul#nav li a,
.is__sticky ul#nav li li a {
    height: auto !important;
    padding: 10px 12px;
  }

  .stellarnav.mobile li .dd-toggle {
    padding: 10px 0 !important;
  }

  .stellarnav.mobile li .dd-toggle i {
    position: relative;
    left: inherit;
    right: inherit;
    top: inherit;
  }
}
.mainmenu__area.sticky__layout__2.is__sticky {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
}

.header__top__area {
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
}

.mainmenu__area.sticky__layout__3 {
  background: #fff;
  -webkit-box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.2);
          box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.2);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9998;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.mainmenu__area.sticky__layout__3.scrollUp {
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
}

/*
Header Style 1
----------------------*/
.header__style__1 .push__menu__button {
  margin-left: 30px;
  font-size: 20px;
  width: 30px;
  text-align: center;
}

/*
Header Style 2
----------------------*/
.header__style__2 .header__quick__actions a {
  width: 60px;
  height: 60px;
  overflow: hidden;
  text-align: center;
  padding-top: 22px;
  margin-left: 10px;
  background: transparent;
  color: var(--white_color);
}
.header__style__2 .header__quick__actions a:hover {
  background: var(--white_background);
  border-color: var(--white_color);
  color: var(--body_dark_color);
}
.header__style__2 .is__sticky .header__quick__actions a {
  background: var(--theme_main_background);
  border-color: var(--theme_border_color);
  color: var(--white_color);
}
.header__style__2 .is__sticky .header__quick__actions a:hover {
  background: var(--white_background);
  border-color: var(--white_color);
  color: var(--theme_main_color);
}

/*
Header Style 3
----------------------*/
.header__style__3 .mainmenu__area {
  margin-top: 20px;
  border: 0;
}
.header__style__3 .is__sticky .mainmenu__area {
  margin-top: 0;
}
.header__style__3 .mainmenu__area .container {
  position: relative;
  border: 4px solid var(--border_color);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.header__style__3 .is__sticky .mainmenu__area .container {
  border: 4px solid var(--white_color);
}
.header__style__3 .menu__bg__with__layer {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: var(--white_background);
}
.header__style__3 .menu__bg__with__layer:after {
  position: absolute;
  width: calc(100% - 30px);
  content: "";
  height: 100%;
  top: 25px;
  background: var(--border_color);
  left: 15px;
  z-index: -1;
}
.header__style__3 .header__quick__actions {
  margin-left: 50px;
}
.header__style__3 .header__quick__actions a {
  margin-left: 0;
  border: 0;
  width: auto;
  height: auto;
  background: transparent;
  color: var(--body_dark_color);
  -webkit-box-shadow: inherit;
          box-shadow: inherit;
  padding-top: 8px;
  margin-right: 10px;
  width: 30px;
  height: 30px;
}
.header__style__3 .header__quick__actions a:hover {
  color: var(--theme_main_color);
}

/*
Header Style 4
----------------------*/
.header__style__4 .header__quick__actions {
  margin-left: 50px;
}
.header__style__4 .header__quick__actions a {
  background: transparent;
  border: 0;
  width: 40px;
  height: 40px;
  padding-top: 12px;
  margin-left: 5px;
}
.header__style__4 .header__quick__actions a:hover {
  background: var(--white_background);
  color: var(--theme_main_color);
}
.header__style__4 .is__sticky .header__quick__actions a {
  color: var(--body_dark_color);
}
.header__style__4 .is__sticky .header__quick__actions a:hover {
  background: var(--theme_main_background);
  color: var(--white_color);
}

/*
Header Style 5
----------------------*/
.topbar__single__action {
  display: inline-block;
  position: relative;
  padding-left: 50px;
}

.topbar__single__action:first-child {
  margin-right: 50px;
}

.topbar__single__action .topbar-contact-icon {
  position: absolute;
  left: 0;
  font-size: 30px;
  margin-top: 9px;
  color: var(--theme_main_color);
}

.topbar__single__action:first-child .topbar-contact-icon {
  color: var(--theme_main_color);
}

.topbar__single__action h4 {
  margin-bottom: 0;
}

.header__style__5 .mainmenu__area .navbar-header.topbar-logo {
  width: 100%;
}

.header__style__5 .mainmenu__area .navbar-header.topbar-logo h3 {
  margin-right: 0;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.header__style__5 .header__quick__actions {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.header__style__5 .header__quick__actions a {
  background: inherit;
  border: 0;
  border-radius: 0;
  -webkit-box-shadow: inherit;
          box-shadow: inherit;
  color: #899EB3;
  font-size: 24px;
  margin-left: 20px;
  width: auto;
}

.header__style__5 .header__quick__actions a.action__button {
  border: 2px solid rgba(255, 255, 255, 0.3);
  -webkit-box-shadow: 0 16px 32px rgba(0, 0, 0, 0.2);
          box-shadow: 0 16px 32px rgba(0, 0, 0, 0.2);
  color: var(--body_dark_color);
  margin-left: 40px;
  margin-right: -10px;
  font-size: 16px;
  font-weight: 700;
  position: relative;
  z-index: 1;
  border: 0;
  height: 55px;
  padding-top: 20px;
}

.header__style__5 .header__quick__actions a.action__button:hover {
  background: var(--white_background);
  color: var(--body_dark_color);
}

.header__style__5 .header__quick__actions a.action__button:before {
  background: var(--theme_gradient);
  z-index: -1;
  position: absolute;
  width: 0%;
  height: 100%;
  content: "";
  top: 0;
  right: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.header__style__5 .header__quick__actions a.action__button:hover:before {
  right: auto;
  left: 0;
  width: 100%;
}

.header__style__5 .header__banner__area {
  padding-top: 220px;
}

.header__style__5 .top__bar {
  padding-bottom: 60px;
}

.header__style__5 .mainmenu__area {
  border: 0;
}

.header__style__5 .header__top__area .navbar > .container,
.header__style__5 .header__top__area .navbar > .container-fluid,
.header__style__5 .header__top__area .navbar > .container__full {
  background: var(--white_background);
  -webkit-box-shadow: 4px 4px 12px rgba(25, 63, 92, 0.2);
          box-shadow: 4px 4px 12px rgba(25, 63, 92, 0.2);
  margin-top: -50px;
  padding-left: 50px;
  padding-right: 50px;
}

.header__style__5 .header__top__area .is__sticky .navbar > .container,
.header__style__5 .header__top__area .is__sticky .navbar > .container-fluid,
.header__style__5 .header__top__area .is__sticky .navbar > .container__full {
  margin-top: 0;
  -webkit-box-shadow: 0 0 0;
          box-shadow: 0 0 0;
}

/*.header__style__5 ul#nav li a {
    color: v( body_dark_color );
}
.header__style__5 ul#nav li a:hover{
    color: v( theme_main_color );
}*/
.header__style__5 .social__profiles ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.header__style__5 .social__profiles ul li {
  display: inline-block;
}

.header__style__5 .social__profiles ul li a {
  margin-left: 0;
  width: 30px;
  height: 30px;
  padding-top: 5px;
  background: inherit;
  color: #B8CCE0;
  font-size: 20px;
  margin-right: 20px;
}

.header__style__5 .social__profiles ul li a:hover {
  color: var(--theme_main_color);
}

@media only screen and (min-width: 992px) {
  .header__style__5 .mainmenu__area .custom__logo__link {
    min-height: 80px;
  }

  .header__banner__area {
    padding-top: 150px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .header__style__5 .header__top__area .navbar > .container {
    background: inherit;
    margin-top: 0;
    padding-left: 15px;
    padding-right: 15px;
    -webkit-box-shadow: 0 0 0;
            box-shadow: 0 0 0;
  }

  .header__style__5 .mainmenu__area .navbar-header h3 {
    height: 80px;
  }

  .header__style__5 .is__sticky .mainmenu__area .navbar-header h3 {
    height: 70px;
  }

  .header__style__5 .header__banner__area {
    padding-top: 80px;
  }

  .header__style__5 .mainmenu__area .custom__logo__link {
    min-height: 80px;
  }
}
@media only screen and (max-width: 767px) {
  .header__style__5 .header__top__area .navbar > .container {
    background: inherit;
    margin-top: 0;
    padding-left: 15px;
    padding-right: 15px;
    -webkit-box-shadow: 0 0 0;
            box-shadow: 0 0 0;
  }

  .header__style__5 .mainmenu__area .navbar-header h3 {
    height: 80px;
  }

  .header__style__5 .header__banner__area {
    padding-top: 80px;
  }

  .header__style__5 .mainmenu__area .custom__logo__link {
    min-height: 80px;
  }
}
/*
Header Style 6
----------------------*/
.header__style__6 .top__bar {
  background: var(--theme_main_background);
  color: var(--white_color);
  padding: 0;
  z-index: 1;
  overflow: hidden;
}

.header__style__6 .top__bar .col-md-6 {
  position: relative;
  height: 50px;
}

.top__left__curve,
.top__right__curve {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: -1;
}

.top__left__curve:after,
.top__right__curve:before {
  position: absolute;
  content: "";
  width: 50%;
  height: 100%;
  background: var(--white_background);
  z-index: 9;
  bottom: 0;
}

.top__left__curve:after {
  right: -40px;
  -webkit-transform: skewX(-40deg);
          transform: skewX(-40deg);
}

.top__right__curve:before {
  -webkit-transform: skewX(40deg);
          transform: skewX(40deg);
  left: -40px;
}

.header__style__6 .top-left-contact {
  padding: 10px 0;
}

.header__style__6 .social__profiles {
  padding: 10px 0;
}

.header__style__6 .mainmenu__area__bg {
  opacity: 1;
}

.header__style__6 .top__bar .social__profiles a {
  height: 28px;
  color: var(--white_color);
}

@media only screen and (max-width: 992px) {
  .top__left__curve:after,
.top__right__curve:before {
    width: 30%;
  }

  .top__left__curve:after {
    -webkit-transform: skewX(40deg);
            transform: skewX(40deg);
  }
}
@media only screen and (max-width: 520px) {
  .top__bar {
    display: none;
  }
}
/*
Header Style 7
----------------------*/
/*----------------------------
    HEDER 7 STYLE CENTER LOGO
------------------------------*/
.expanding__nav__social__action ul {
  margin: 0;
  padding: 0;
  list-style: none;
  margin-right: 30px;
}

.expanding__nav__social__action ul li {
  display: inline;
}

.expanding__nav__social__action ul li a {
  display: inline-block;
  width: 40px;
  height: 40px;
  background: var(--theme_main_background);
  text-align: center;
  padding-top: 6px;
  border-radius: 5px;
  color: var(--body_dark_color);
  font-size: 15px;
}

.expanding__nav__social__action > div {
  float: left;
}

.expanding__nav__social__action .contact__address {
  position: relative;
  padding-left: 60px;
  text-transform: uppercase;
  line-height: 1;
  text-transform: uppercase;
  color: var(--theme_main_color);
  font-weight: 500;
}

.expanding__nav__social__action .contact__address span {
  display: block;
}

span.contact__text {
  margin-bottom: 6px;
  font-weight: 300;
  font-size: 13px;
}

span.contact__phone {
  font-size: 18px;
}

.expanding__nav__social__action .contact__address__icon {
  color: var(--body_dark_color);
  position: absolute;
  left: 0;
  width: 40px;
  height: 40px;
  background: var(--theme_main_background);
  text-align: center;
  padding-top: 11px;
  border-radius: 5px;
}

.center__fixed__logo {
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  width: 200px;
  height: 180px;
  background: var(--white_background);
  border-radius: 0 0 10px 10px;
  text-align: center;
  z-index: 9999;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  overflow: hidden;
  top: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  transition: 0.3s;
  -webkit-transform-origin: top;
          transform-origin: top;
}

.is__sticky .center__fixed__logo {
  -webkit-transform: scale(0.6);
          transform: scale(0.6);
}

.admin-bar .center__fixed__logo {
  top: 0;
}

.menu__expand .center__fixed__logo {
  -webkit-transform: translateY(100px);
          transform: translateY(100px);
  opacity: 0;
  visibility: hidden;
}

.center__fixed__logo h3 {
  height: 120px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 0;
}

.expanding__nav__toggle {
  height: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: var(--white_background);
  cursor: pointer;
}

.colse__expanding__nav__toggle {
  width: 40px;
  height: 40px;
  padding-top: 7px;
  cursor: pointer;
  color: var(--white_color);
  text-align: center;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  opacity: 0;
  visibility: hidden;
}

.menu__expand .colse__expanding__nav__toggle {
  visibility: visible;
  opacity: 1;
}

.header__quick__actions.expanding__nav___action a {
  border-radius: 4px;
  border: 0;
  background: var(--theme_main_background);
  color: var(--body_dark_color);
  font-weight: 500;
}

.header__center__logo .mainmenu__area .navbar-header {
  display: none;
}

.center__logo__toggle {
  height: 120px;
  padding: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: var(--theme_main_background);
}

.center__fixed__logo img {
  max-width: 100%;
  max-height: 120px;
}

.center__logo__toggle .sticky__logo {
  text-align: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  left: 0 !important;
  width: calc(100% - 20px);
  left: 10px !important;
}

@media only screen and (min-width: 992px) {
  .expanding__main__menu {
    -webkit-transform: translateY(-100px);
            transform: translateY(-100px);
    opacity: 0;
    visibility: hidden;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }

  .menu__expand .expanding__main__menu {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    visibility: visible;
    opacity: 1;
  }
}
@media only screen and (max-width: 992px) {
  .header__center__logo .mainmenu__area .navbar-header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  .center__fixed__logo,
.colse__expanding__nav__toggle {
    display: none;
  }
}
/*
Header Style 8
----------------------*/
/* ----------------------------------
    HEADER 8 CENTER LOGO & DOTS TOGGLE
-----------------------------------*/
.dots__toggle .expanding__nav__toggle {
  border-radius: 50%;
  width: 80px;
  height: 80px;
  background: var(--white_background);
}

.dots__toggle .center__fixed__logo {
  height: 150px;
  border-radius: 0 0 50% 50%;
}

.dots__toggle .center__logo__toggle {
  height: 100%;
  background: inherit;
}

@media only screen and (max-width: 992px) {
  .dots__toggle .expanding__nav__toggle {
    display: none;
  }
}
/*
Header Four
----------------------*/
/* ----------------------------------
    HEADER 9 STYLE
-----------------------------------*/
.header__style__9 div#mainmenu__area {
  border-bottom: 0;
}

.header__style__9 .header__cart__widget__content a.cart-contents.action__cart__button {
  border-radius: 50px;
  margin-left: 0;
  background: inherit;
  border: 2px solid rgba(201, 224, 255, 0.3);
  color: var(--theme_main_color);
}

.header__style__9 .is__sticky .header__cart__widget__content a.cart-contents.action__cart__button {
  color: var(--theme_main_color);
}

.header__style__9 .header__cart__widget__content {
  width: 100px;
  margin-left: 50px;
}

.author__menu {
  padding-top: 0;
  margin-left: 30px;
  border-radius: 50%;
  padding: 2px;
  position: relative;
  cursor: pointer;
}

.author__menu img {
  border-radius: 50%;
}

#author__menu__wrap {
  position: absolute;
  right: 0;
  z-index: 9;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  padding-top: 40px;
  opacity: 0;
  visibility: hidden;
}

.author__menu:hover div#author__menu__wrap {
  padding-top: 15px;
  opacity: 1;
  visibility: visible;
}

#author__menu__list {
  margin: 0;
  padding: 0;
  list-style: none;
  text-align: center;
  width: 200px;
  -webkit-box-shadow: 0 2px 6px rgba(201, 224, 255, 0.3);
          box-shadow: 0 2px 6px rgba(201, 224, 255, 0.3);
}

#author__menu__list li {
  display: block;
}

#author__menu__list li a {
  width: auto;
  border: inherit;
  text-align: left;
  display: block;
  padding: 12px 15px;
  margin: inherit;
  height: auto;
  border-radius: 0;
  color: #00274e;
  background: var(--white_background);
}

#author__menu__list li a:hover {
  background: var(--theme_main_background);
  color: var(--white_color);
}

.header__category__search {
  background: var(--white_background);
  position: relative;
  border-top: var(--theme_border);
  clear: both;
  width: 100%;
}

.admin-bar .header__category__search {
  top: 29px;
}

#header__search__form .download__search__cats .nice-select.wide {
  width: 100%;
  border-radius: 0;
  border: 0;
  line-height: 80px;
}

#header__search__form input {
  height: 80px;
  border: 0;
  border-radius: 0;
  padding: 10px 20px;
  /* margin-left: 20px; */
  border-left: var(--theme_border);
}

#header__search__form button {
  background: var(--theme_main_background);
  color: var(--white_color);
  width: 100%;
  height: 80px;
  border: 0;
  border-radius: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

#header__search__form button:hover {
  background: var(--theme_main_background);
}

.header__search__form .search__categories {
  background: #002776;
  padding-right: 20px;
}

.header__search__form .search__categories .nice-select {
  background: inherit;
  font-weight: 700;
}

.header__search__form .search__categories .nice-select span.current {
  color: var(--white_color);
}

/* ----- Header Promo Menu ---- */
.promotion__menu {
  margin: 0 inherit 0 auto;
  display: inline-block;
  width: auto;
}

ul#promo-menu li {
  margin-right: 20px;
}

ul#promo-menu li a {
  font-weight: 700;
  padding-left: 25px;
  padding-right: 25px;
  border-radius: 3px;
  background: #f1f8ff;
  color: #005eb6;
}

ul#promo-menu li:nth-child(2) a {
  background: transparent;
  color: #ff647a;
  padding-left: 0;
  padding-right: 0;
}

ul#promo-menu li a:before {
  position: relative;
  display: inline-block;
  margin-right: 5px;
  font-family: FontAwesome;
  content: "";
}

ul#promo-menu li.wordpress a:before {
  content: "";
}

ul#promo-menu li.html a:before {
  content: "";
}

ul#promo-menu li.joomla a:before {
  content: "";
}

ul#promo-menu li.code a:before {
  content: "";
}

ul#promo-menu li.psd a:before {
  content: "";
}

ul#promo-menu li.magic a:before {
  content: "";
}

/*
Header Style 10
----------------------*/
.header__style__10 .push__header__action {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background: var(--theme_main_background);
  color: var(--white_color);
  padding: 22px 50px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.header__style__10 .topbar__contact__heading {
  text-transform: uppercase;
  font-size: 14px;
  line-height: 1;
  margin-bottom: 15px;
}

.header__style__10 .topbar__contact__details {
  font-size: 18px;
  font-weight: 500;
  line-height: 1;
}

.header__style__10 .topbar__single__action:first-child {
  margin-right: 0;
}

.header__style__10 .header__quick__actions {
  padding-right: 50px;
}

/*------------------------------------
    OFFCANVAS NAVIGATION
-------------------------------------*/
/*-----------------------
    OPEN TRIGGER
-------------------------*/
.offcanvas__menu__open__trigger {
  cursor: pointer;
}

.offcanvas__menu__open__trigger img {
  width: 40px;
}

.offcanvas__menu__open__trigger.header__style__1 {
  background: transparent;
  border-color: var(--border_color);
}

/*-----------------------
    CLOSE TRIGGER
-------------------------*/
.offcanvas__menu__close__trigger {
  position: absolute;
  left: 0;
  top: 0;
  background: #343538;
  z-index: 9;
  width: 60px;
  height: 60px;
  color: var(--white_color);
  line-height: 1.5;
  text-align: center;
  font-size: 30px;
  cursor: pointer;
}

.offcanvas__menu__close__trigger img {
  width: 25px;
}

.offcanvas__menu__close__trigger:focus,
.offcanvas__menu__close__trigger:hover {
  color: var(--white_color);
}

.offcanvas__menu__close__trigger img {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  -webkit-transform: rotate(0);
          transform: rotate(0);
}

.offcanvas__menu__close__trigger:hover img {
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
}

@media only screen and (max-width: 479px) {
  .offcanvas__menu__close__trigger {
    width: 50px;
    height: 50px;
    line-height: 42px;
    left: 10px;
    font-size: 25px;
  }
}
/*-----------------------
    OFFCANVAS WRAPPER
-------------------------*/
.offcanvas__mobile__menu__main__wrapper {
  position: fixed;
  right: 0;
  top: 0;
  width: 400px;
  max-width: 100%;
  height: 100vh;
  z-index: 9999;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  padding-left: 60px;
  -webkit-transition: 0.6s;
  transition: 0.6s;
}

.admin-bar .offcanvas__mobile__menu__main__wrapper {
  top: 32px;
}

.offcanvas__mobile__menu__main__wrapper.active {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.offcanvas__mobile__menu__main__wrapper.inactive {
  -webkit-transform: translateX(calc(100% + 60px));
          transform: translateX(calc(100% + 60px));
}

.offcanvas__menu__wrapper {
  overflow: auto;
  height: 100%;
  -webkit-box-shadow: 0 0 87px 0 rgba(0, 0, 0, 0.09);
          box-shadow: 0 0 87px 0 rgba(0, 0, 0, 0.09);
  background-color: var(--white_color);
}

.offcanvas__search__area {
  background-color: var(--theme_soft_color_and_bg);
  padding: 10px;
  position: relative;
  top: 0;
  left: 0;
  z-index: 9;
  margin-bottom: 50px;
}

.offcanvas__search__area input {
  width: 100%;
  font-size: 16px;
  display: block;
  padding: 9px 35px 9px 25px;
  color: #222;
  background: var(--theme_soft_color_and_bg);
  border: none;
}

@media only screen and (max-width: 479px) {
  .offcanvas__search__area input {
    font-size: 14px;
    padding: 5px 35px 5px 15px;
  }
}
.offcanvas__search__area button {
  background: none;
  border: none;
  position: absolute;
  right: 20px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  color: var(--theme_soft_color_and_bg);
  padding: 0;
}

.offcanvas__search__area button i {
  font-size: 18px;
  line-height: 40px;
}

.offcanvas__menu__inner__content {
  padding: 25px 30px 0;
  min-height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background: var(--body_dark_background);
}

.offcanvas__navigation {
  margin-bottom: 50px;
}

.offcanvas__navigation ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.offcanvas__navigation > ul > li > a {
  line-height: 20px;
  font-weight: 500;
  padding: 12px 0;
  color: var(--theme_soft_color_and_bg);
  display: block;
  background: transparent !important;
}

.offcanvas__navigation > ul > li > a:hover {
  color: var(--theme_main_color);
}

@media only screen and (max-width: 479px) {
  .offcanvas__navigation > ul > li > a {
    font-size: 14px;
    line-height: 20px;
  }
}
.offcanvas__navigation ul.sub-menu {
  margin-left: 20px;
  margin-left: 0;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 15px;
  border-left: 1px solid;
  margin-top: -10px;
}

.offcanvas__navigation ul.sub-menu > li > a {
  font-size: 15px !important;
  line-height: 20px;
  font-weight: 400;
  padding: 10px 0;
  color: var(--theme_soft_color_and_bg);
  text-transform: capitalize;
  padding-left: 0 !important;
}

.offcanvas__navigation li li a:before {
  content: "";
  height: 1px;
  width: 10px;
  display: inline-block;
  left: -15px;
  bottom: 4px;
  background: var(--theme_soft_color_and_bg);
  position: relative;
}

.offcanvas__navigation ul.sub-menu > li > a:hover {
  color: var(--theme_main_color);
}

@media only screen and (max-width: 479px) {
  .offcanvas__navigation ul.sub-menu > li > a {
    font-size: 13px;
    line-height: 18px;
  }
}
.offcanvas__navigation ul li.menu-item-has-children {
  position: relative;
  display: block;
}

.offcanvas__navigation ul li.menu-item-has-children a {
  display: block;
}

.offcanvas__navigation ul li.menu-item-has-children.active > .menu-expand i:before {
  -webkit-transform: rotate(0);
          transform: rotate(0);
}

/* .offcanvas__navigation ul li.menu-item-has-children .menu-expand {
  position: absolute;
  right: auto;
  left: 95%;
  top: -5px;
  width: 30px;
  height: 50px;
  line-height: 50px;
  cursor: pointer;
  text-align: center;
  color: v( white_color );
} */
.offcanvas__navigation ul li.menu-item-has-children .menu-expand {
  position: absolute;
  /* left: 95%; */
  top: -5px;
  width: 40px;
  height: 50px;
  line-height: 50px;
  cursor: pointer;
  text-align: right;
  color: var(--white_color);
  right: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.offcanvas__navigation ul li.menu-item-has-children .menu-expand i {
  display: block;
  margin-top: 25px;
  border-bottom: 1px solid;
  position: relative;
  width: 10px;
  -webkit-transition: all 250ms ease-out;
  transition: all 250ms ease-out;
  display: none;
}

.offcanvas__navigation ul li.menu-item-has-children .menu-expand i:before {
  width: 100%;
  content: "";
  border-bottom: 1px solid;
  display: block;
  position: absolute;
  top: 0;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}

.admin-bar.header__style__10 .mainmenu__area {
  top: 32px;
}

/* .offcanvas__navigation > ul > li {
    border-bottom: 1px solid;
}
.offcanvas__navigation>ul>li.active:before {
    content: "";
    width: 100%;
    height: 1px;
    background: #37424b;
    position: absolute;
    top: 45px;
} */
.offcanvas__navigation ul li.menu-item-has-children .menu-expand:before {
  content: "";
  font-family: "themify";
  -webkit-transition: 0.3s;
  transition: 0.3s;
  position: absolute;
  right: 50%;
  -webkit-transform-origin: center;
          transform-origin: center;
  line-height: 1;
  -webkit-transform: translateX(50%);
          transform: translateX(50%);
}

.offcanvas__navigation ul li.active > .menu-expand:before {
  -webkit-transform: translateX(50%) rotate(90deg) !important;
          transform: translateX(50%) rotate(90deg) !important;
}

@media only screen and (max-width: 991px) {
  .admin-bar .offcanvas__mobile__menu__main__wrapper {
    top: 45px;
  }

  .admin-bar.header__style__10 .mainmenu__area {
    top: 46px;
  }

  .offcanvas__menu__open__trigger {
    display: block;
    left: 13px;
  }

  .header__style__10 .push__header__action {
    padding: 22px 0;
    max-width: 120px;
    width: 100%;
  }

  .flex-v-center.offcanvas__mobile__nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  .header__style__10 .header__quick__actions {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    margin: auto;
    padding-right: 15px;
  }

  .header__style__1 .push__menu__button {
    position: absolute;
    right: 15px;
    top: 50%;
    background: #202030;
    width: 50px !important;
    height: 40px;
    padding-top: 6px;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    z-index: 1;
  }

  .header__style__1 .push__menu__button .offcanvas__menu__open__trigger {
    color: var(--white_color);
  }
}
.offcanvas__social {
  margin-bottom: 50px;
}

.offcanvas__social ul {
  margin: 0;
  padding: 0;
  list-style: none;
  text-align: center;
}

.offcanvas__social ul li {
  display: inline;
}

.offcanvas__social ul li a {
  display: inline-block;
  color: var(--theme_soft_color_and_bg);
  width: 45px;
  height: 45px;
  border: 2px solid;
  padding-top: 8px;
  border-radius: 50px;
  margin: 0 5px;
}

.offcanvas__social ul li a:hover {
  background: #ff3366;
  color: var(--white_color);
  border-color: #ff3366;
}

.offcanvas__logo__wrap {
  margin-top: 30px;
  margin-bottom: 50px;
  text-align: center;
}

.offcanvas__description {
  text-align: center;
  margin-bottom: 50px;
  color: var(--theme_soft_color_and_bg);
}

/*
Header Style 11
----------------------*/
.header__style__11 .push__header__action {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background: var(--theme_main_background);
  color: var(--white_color);
  padding: 22px 50px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  height: 100px;
}

.header__style__11 .header__quick__actions {
  padding-right: 50px;
}

.header__style__11 .mainmenu__area .navbar-header {
  margin-left: 50px;
}

.header__style__11 .mainmenu__area .navbar-header h3 {
  height: auto;
  margin-right: 0;
}

.admin-bar.header__style__11 .mainmenu__area {
  top: 32px;
}

@media only screen and (max-width: 991px) {
  .admin-bar .offcanvas__mobile__menu__main__wrapper {
    top: 45px;
  }

  .admin-bar.header__style__11 .mainmenu__area {
    top: 46px;
  }

  .header__style__11 .push__header__action {
    padding: 22px 0;
    max-width: 100%;
    width: 100%;
  }

  .header__style__11 .push__menu__button {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    padding-left: 30px;
  }

  .header__style__11 .mainmenu__area .navbar-header {
    margin-left: 0;
    padding-right: 30px;
  }
}
@media only screen and (max-width: 767px) {
  .admin-bar.header__style__11 .mainmenu__area {
    top: 46px;
  }
}
/*
Header Style 12
----------------------*/
.header__style__12 .push__header__action {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
}

.header__style__12 .offcanvas__menu__open__trigger img {
  width: auto;
}

.header__style__12 .mainmenu__area .custom__logo__link.sticky__logo {
  left: 0 !important;
}

a.action__button__alt {
  background: inherit;
  border: 0;
  -webkit-box-shadow: 0 0 0;
          box-shadow: 0 0 0;
  width: auto;
  color: inherit;
}

a.action__button__alt:hover {
  background: inherit;
}

.header__style__12 a.action__search__button {
  background: inherit;
  width: inherit;
  height: inherit;
  -webkit-box-shadow: 0 0 0;
          box-shadow: 0 0 0;
  color: inherit;
}

/*
Header Style 13
----------------------*/
.header__style__13 .header__top__area .navbar > .container,
.header__style__13 .header__top__area .navbar > .container-fluid {
  background: var(--white_background);
  border-radius: 14px;
}

@media only screen and (min-width: 993px) {
  .header__style__13 .header__top__area .navbar > .container,
.header__style__13 .header__top__area .navbar > .container-fluid {
    margin-top: 30px;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    padding-left: 30px;
  }

  .header__style__13 .header__top__area .is__sticky .navbar > .container,
.header__style__13 .header__top__area .is__sticky .navbar > .container-fluid {
    margin-top: 0;
  }
}
/*
MEGAMENU FEATURES
----------------------*/
@media only screen and (min-width: 993px) {
  .stellarnav.desktop > ul > li.mega {
    position: inherit !important;
  }

  .stellarnav ul li.mega ul ul.sub-menu {
    left: -1px !important;
    right: 0 !important;
    width: auto !important;
    padding: 0 !important;
    border: 0;
    background: inherit !important;
    -webkit-box-shadow: 0 0 0;
            box-shadow: 0 0 0;
    margin-top: 10px;
  }

  .stellarnav ul li.mega:hover ul ul.sub-menu {
    opacity: 1;
    visibility: visible;
  }

  ul#nav li.mega ul li {
    padding-left: 0;
  }

  .stellarnav ul li.mega > ul > li > a {
    display: block;
    border-bottom: 1px solid #4d545c !important;
    padding-bottom: 10px !important;
    cursor: default;
    font-weight: 600;
    margin-bottom: 10px;
  }

  .stellarnav ul li.drop-left.mega > ul > li > a:after,
.stellarnav ul li.mega > ul > li > a:after {
    display: none !important;
  }

  .stellarnav.desktop > ul > li.mega > ul.sub-menu {
    margin-top: 5px !important;
    opacity: 0;
    visibility: hidden;
  }

  .stellarnav.desktop > ul > li.mega:hover > ul.sub-menu {
    margin-top: 0 !important;
    opacity: 1;
    visibility: visible;
  }

  .stellarnav.desktop > ul > li.mega > ul > li {
    padding-bottom: 15px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    display: inline-block !important;
    padding-left: 0 !important;
    margin-bottom: 0 !important;
  }

  .stellarnav.desktop li.mega li.has-sub a:after {
    display: block;
  }

  .elementor__megamenu__content {
    position: absolute;
    width: 100%;
    left: 0;
    right: 0;
    margin: 0;
    top: 100%;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    opacity: 0;
    visibility: hidden;
    margin-top: 5px;
  }

  .stellarnav ul li.mega:hover .elementor__megamenu__content {
    opacity: 1;
    visibility: visible;
    margin-top: 0;
  }
}
@media only screen and (max-width: 992px) {
  .elementor__megamenu__content {
    display: none;
  }
}
/*
Admin Bar
----------------------*/
.admin-bar .top__bar,
.admin-bar .elementor__top__bar {
  position: relative;
  top: 31px;
}

.admin-bar .mainmenu__area {
  top: 30px;
}

.admin-bar .is__sticky .mainmenu__area {
  top: 32px !important;
}

@media (min-width: 768px) and (max-width: 991px) {
  .admin-bar .top__bar {
    position: relative;
    top: 46px;
  }

  .admin-bar .mainmenu__area {
    top: 46px;
  }

  .admin-bar .is__sticky .mainmenu__area {
    top: 46px !important;
  }
}
@media only screen and (max-width: 767px) {
  .admin-bar .top__bar {
    position: relative;
    top: 46px;
  }

  .admin-bar .mainmenu__area {
    top: 46px;
  }

  .admin-bar .is__sticky .mainmenu__area {
    top: 0 !important;
  }

  .admin-bar .stellarnav.left ul#nav,
.admin-bar .stellarnav.right ul#nav {
    top: 46px;
  }

  .admin-bar .is__sticky .stellarnav.left ul#nav,
.admin-bar .is__sticky .stellarnav.right ul#nav {
    top: 0;
  }
}
/*==========================
    ACTIONS CSS
===========================*/
/*
Header Quick Action
----------------------*/
.header__quick__actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.header__quick__actions > a {
  background: var(--theme_main_background);
  border-radius: 50px;
  -webkit-box-shadow: var(--button_box_shadow);
          box-shadow: var(--button_box_shadow);
  color: var(--white_color);
  display: inline-block;
  height: 50px;
  width: 50px;
  letter-spacing: 1px;
  text-align: center;
  text-transform: capitalize;
  line-height: 1;
  margin-left: 30px;
  padding-top: 16px;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  margin-left: 20px;
  background: var(--white_background);
  color: var(--theme_main_color);
  border-radius: 3px;
  padding-left: 30px;
  padding-right: 30px;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.header__quick__actions > a.action__button {
  margin-left: 50px;
  padding: 16px 40px;
  width: auto;
}
.header__quick__actions > a:hover {
  background: var(--white_background);
  color: var(--theme_main_color);
}
.header__quick__actions > a.action__button {
  margin-left: 20px;
  background: var(--white_background);
  color: var(--theme_main_color);
  border-radius: 3px;
  padding-left: 30px;
  padding-right: 30px;
  position: relative;
  overflow: hidden;
  z-index: 1;
  white-space: nowrap;
}
.header__quick__actions > a:before {
  content: "";
  width: 100%;
  height: 100%;
  background: var(--theme_gradient);
  position: absolute;
  left: 0;
  top: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  z-index: -1;
  opacity: 0;
}
.header__quick__actions > a.action__button:before {
  content: "";
  width: 100%;
  height: 100%;
  background: var(--theme_gradient);
  position: absolute;
  left: 0;
  top: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  z-index: -1;
  opacity: 0;
}
.header__quick__actions > a.action__button:hover {
  color: var(--white_color);
}
.header__quick__actions > a:hover {
  color: var(--white_color);
}

.is__sticky .header__quick__actions > a {
  background: none;
  color: var(--white_color);
}
.is__sticky .header__quick__actions > a.action__button {
  background: none;
  color: var(--white_color);
}

.header__quick__actions > a.action__button:hover, .header__quick__actions > a:hover {
  background: none;
  color: var(--white_color);
}

.is__sticky .header__quick__actions > a:before, .is__sticky .header__quick__actions > a.action__button:before {
  opacity: 1;
}

.header__quick__actions > a.action__search__button {
  padding: 16px 0 0;
}
.header__quick__actions > a:hover:before, .header__quick__actions > a.action__button:hover:before {
  opacity: 1;
}

/*
Language Action
----------------------*/
body {
  position: inherit !important;
}

.action__language__button {
  margin-left: 30px;
  position: relative;
}
.action__language__button a {
  display: inherit;
  border-radius: 0;
  border: 0;
  background: var(--white_background);
  margin: 0;
  padding-top: 12px;
}
.action__language__button img {
  max-width: 40px;
}
.action__language__button .language__list {
  position: absolute;
  display: none;
  left: 0;
  right: 0;
  margin: auto;
  text-align: center;
  border-radius: 3px;
  overflow: hidden;
}
.action__language__button .language__list a {
  padding: 6px;
}

.switcher.notranslate {
  width: 50px;
  padding: 0;
  margin-left: 35px;
  border-radius: 50px;
}
.switcher.notranslate a {
  margin: 0;
  width: 50px;
}

.gt_white_content .gt_languages {
  padding-top: 20px;
}

.gt_languages a {
  color: var(--body_dark_color);
  width: auto;
  background: inherit;
  border-radius: 0;
  margin: 0;
  text-align: inherit;
  margin-top: 10px;
  padding: 6px 0 6px 5px !important;
  height: auto;
  -webkit-box-shadow: 0 0 0;
          box-shadow: 0 0 0;
  border-bottom: var(--theme_border);
}

.switcher-popup span {
  display: none;
}

.language__popup_button,
.language__selector {
  border-radius: 50px;
  padding: 5px;
  background: var(--white_background);
  cursor: pointer;
  -webkit-box-shadow: var(--button_box_shadow);
          box-shadow: var(--button_box_shadow);
}

.language__popup_button img,
.language__selector img {
  border-radius: 50px;
}

.gt_black_overlay {
  z-index: 99999 !important;
}

.language__popup a.glink.nturl.notranslate {
  display: none;
}

/*
Header Cart Action
----------------------*/
.header__quick__actions .action__cart__button {
  background: transparent;
  width: auto;
  color: var(--white_color);
  -webkit-box-shadow: 0 0 0;
          box-shadow: 0 0 0;
  padding: 15px;
  padding-right: 15px;
  font-size: 20px;
  line-height: 1;
}
.header__quick__actions .action__cart__button .cart-count {
  position: absolute;
  right: 4px;
  top: -10px;
  background: var(--white_background);
  color: var(--body_dark_color);
  padding: 1px 4px;
  border-radius: 2px !important;
  font-size: 14px;
  position: relative;
}
.header__quick__actions .action__cart__button .quick__link__text {
  display: none;
}

.header__cart__widget__content {
  width: auto !important;
}
.header__cart__widget__content .cart-contents.action__cart__button {
  width: 90px;
  background: var(--theme_main_background);
}

.is__sticky .header__cart__widget__content .cart-contents.action__cart__button {
  color: var(--white_color);
}

.edd__header__cart .cart-contents.action__cart__button {
  background: no-repeat;
  width: inherit;
  color: var(--white_color);
  padding: 0;
  width: 30px;
  padding-top: 16px;
  position: relative;
}
.edd__header__cart .items.edd-cart-quantity {
  position: absolute;
  top: 5px;
  right: -12px;
  background: var(--theme_main_background);
  padding: 2px;
  width: 20px;
  height: 20px;
  border-radius: 50px;
  font-size: 12px;
  padding-top: 5px;
  color: var(--white_color);
}

.is__sticky .edd__header__cart .cart-contents.action__cart__button {
  color: var(--body_dark_color);
}

/*
Currency Switcher
----------------------*/
.currency__switcher {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-left: 30px;
}
.currency__switcher .nice-select {
  border: 0;
  padding: 0 20px 0 5px;
  background: inherit;
  line-height: 3.5;
}
.currency__switcher .nice-select .list {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}

/*
Elementor Content
--------------------------*/
.offcanvas__content__main__wrap {
  position: fixed;
  right: -100%;
  top: 0;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  min-width: 200px;
  height: 100vh;
  z-index: 9999;
  background: var(--white_background);
  -webkit-transition: 0.5s cubic-bezier(0.65, 0.05, 0.36, 1);
  transition: 0.5s cubic-bezier(0.65, 0.05, 0.36, 1);
  max-width: 100%;
}
.offcanvas__content__main__wrap.active {
  right: 0;
}

.admin-bar .offcanvas__content__main__wrap {
  top: 32px;
}

.offcanvas__content__open__trigger {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 50px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-left: 30px;
  cursor: pointer;
}

/*
Close Trigger
--------------------------*/
.offcanvas__content__close__trigger {
  position: absolute;
  left: 0;
  top: 0;
  background: var(--body_dark_background);
  z-index: 9;
  width: 60px;
  height: 60px;
  color: var(--white_color);
  line-height: 1.5;
  text-align: center;
  font-size: 30px;
  cursor: pointer;
}
.offcanvas__content__close__trigger img {
  width: 25px;
}
.offcanvas__content__close__trigger:focus, .offcanvas__content__close__trigger:hover {
  color: var(--white_color);
}
.offcanvas__content__close__trigger img {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  -webkit-transform: rotate(0);
          transform: rotate(0);
}
.offcanvas__content__close__trigger:hover img {
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
}

@media only screen and (max-width: 479px) {
  .offcanvas__content__close__trigger {
    width: 50px;
    height: 50px;
    line-height: 42px;
    left: 10px;
    font-size: 25px;
  }
}
/*
Poup Content
---------------------*/
.popup__content__main__wrap {
  position: fixed;
  left: 0;
  top: 0;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  min-width: 200px;
  height: 100vh;
  z-index: 9999;
  background: var(--white_background);
  -webkit-transition: 0.5s cubic-bezier(0.65, 0.05, 0.36, 1);
  transition: 0.5s cubic-bezier(0.65, 0.05, 0.36, 1);
  max-width: 100%;
  width: 100%;
  opacity: 0;
  visibility: hidden;
}
.popup__content__main__wrap.active {
  opacity: 1;
  visibility: visible;
}
.popup__content__main__wrap.default__popup__main__wrap {
  background: var(--dark_background);
  overflow: auto;
}
.popup__content__main__wrap.default__popup__main__wrap .popup__content__wrap {
  max-width: 780px;
  margin: 80px auto 0;
  padding: 30px;
  padding: 30px;
  background: var(--white_background);
  border-radius: 10px;
}
.popup__content__main__wrap.default__popup__main__wrap .popup__content__wrap label {
  width: 100%;
  text-transform: capitalize;
  margin-bottom: 25px;
}
.popup__content__main__wrap.default__popup__main__wrap .popup__content__wrap input,
.popup__content__main__wrap.default__popup__main__wrap .popup__content__wrap textarea {
  padding: 10px 15px;
  max-height: 145px;
}
.popup__content__main__wrap.default__popup__main__wrap .popup__content__wrap input[type=submit] {
  padding: 13px 30px;
  display: inline-block;
  min-width: 180px;
}

.admin-bar .popup__content__main__wrap {
  top: 32px;
}

.header__quick__actions .popup__content__open__trigger {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 50px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-left: 30px;
  cursor: pointer;
  padding: 0;
}

/*
Close Trigger
--------------------------*/
.popup__content__close__trigger {
  position: absolute;
  right: 0;
  top: 0;
  background: var(--body_dark_background);
  z-index: 9;
  width: 60px;
  height: 60px;
  color: var(--white_color);
  line-height: 1.5;
  text-align: center;
  font-size: 30px;
  cursor: pointer;
}
.popup__content__close__trigger img {
  width: 25px;
}
.popup__content__close__trigger:focus, .popup__content__close__trigger:hover {
  color: var(--white_color);
}
.popup__content__close__trigger img {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  -webkit-transform: rotate(0);
          transform: rotate(0);
}
.popup__content__close__trigger:hover img {
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
}

@media only screen and (max-width: 479px) {
  .popup__content__close__trigger {
    width: 50px;
    height: 50px;
    line-height: 42px;
    left: 10px;
    font-size: 25px;
  }
}
/*
Animations
-----------------------*/
@-webkit-keyframes border-transform {
  0%, 100% {
    border-radius: 63% 37% 54% 46%/55% 48% 52% 45%;
  }
  14% {
    border-radius: 40% 60% 54% 46%/49% 60% 40% 51%;
  }
  28% {
    border-radius: 54% 46% 38% 62%/49% 70% 30% 51%;
  }
  42% {
    border-radius: 61% 39% 55% 45%/61% 38% 62% 39%;
  }
  56% {
    border-radius: 61% 39% 67% 33%/70% 50% 50% 30%;
  }
  70% {
    border-radius: 50% 50% 34% 66%/56% 68% 32% 44%;
  }
  84% {
    border-radius: 46% 54% 50% 50%/35% 61% 39% 65%;
  }
}
@keyframes border-transform {
  0%, 100% {
    border-radius: 63% 37% 54% 46%/55% 48% 52% 45%;
  }
  14% {
    border-radius: 40% 60% 54% 46%/49% 60% 40% 51%;
  }
  28% {
    border-radius: 54% 46% 38% 62%/49% 70% 30% 51%;
  }
  42% {
    border-radius: 61% 39% 55% 45%/61% 38% 62% 39%;
  }
  56% {
    border-radius: 61% 39% 67% 33%/70% 50% 50% 30%;
  }
  70% {
    border-radius: 50% 50% 34% 66%/56% 68% 32% 44%;
  }
  84% {
    border-radius: 46% 54% 50% 50%/35% 61% 39% 65%;
  }
}
@-webkit-keyframes scrollup {
  0% {
    -webkit-transform: translateY(5px);
            transform: translateY(5px);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 0;
  }
}
@keyframes scrollup {
  0% {
    -webkit-transform: translateY(5px);
            transform: translateY(5px);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 0;
  }
}
@-webkit-keyframes scrolldown {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    -webkit-transform: translateY(5px);
            transform: translateY(5px);
    opacity: 0;
  }
}
@keyframes scrolldown {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    -webkit-transform: translateY(5px);
            transform: translateY(5px);
    opacity: 0;
  }
}
/*==========================
    BLOG & PAGES CSS
===========================*/
/*
Page Baner
----------------------*/
.header__banner__area {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  width: 100%;
  position: relative;
}

.header__banner__area {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 400px;
  width: 100%;
  position: relative;
  padding-top: 100px;
  overflow: hidden;
}

@media only screen and (min-width: 1920px) {
  .header__banner__area {
    height: 500px;
  }
}
.banner__area__bg {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  left: 0;
  top: 0;
  position: absolute;
  height: 100%;
  width: 100%;
}

.banner__area__bg::after {
  background: var(--header_background);
  content: "";
  opacity: 0.6;
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
}

.header__banner__title h1 {
  font-size: 48px;
  line-height: 1.1;
}

.breadcrumb {
  padding: 0;
}

.breadcumb {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 600;
  text-transform: capitalize;
  letter-spacing: 0;
}
.breadcumb a span {
  color: var(--white_color);
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.breadcumb a:hover span {
  color: var(--white_color);
  margin: 0 3px;
  display: inline-block;
}
.breadcumb span {
  color: var(--white_color);
  margin: 0 3px;
  display: inline-block;
}
.breadcumb ul.info {
  list-style: outside none none;
  margin: 0;
  padding: 0;
}
.breadcumb ul.info li {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-right: 15px;
}
.breadcumb ul.info li :last-child {
  margin-right: 0;
}
.breadcumb ul.info li i {
  margin-right: 5px;
}

.single__post__item ul.info {
  margin-bottom: 30px;
  border-bottom: var(--theme_border);
  padding-bottom: 20px;
  font-size: 14px;
  font-weight: 500;
  opacity: 0.7;
}

@media (min-width: 768px) and (max-width: 991px) {
  .header__banner__title h1 {
    font-size: 60px;
    line-height: 1.1;
  }
}
@media only screen and (max-width: 767px) {
  .header__banner__title h1 {
    font-size: 26px;
  }
}
@media only screen and (min-width: 480px) and (max-width: 767px) {
  .header__banner__title h1 {
    font-size: 28px;
  }
}
/*------------------------
    SEARCH FORM STYLE
-------------------------- */
.search__form__control {
  width: 100%;
  height: 100vh;
  overflow: hidden;
  position: fixed;
  left: 0;
  top: 0;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.search__control__bg {
  position: absolute;
  background: var(--theme_main_background);
  width: 50px;
  height: 50px;
  -webkit-transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 50%;
  margin-left: 29px;
  opacity: 0;
  z-index: -1;
  right: 0;
  top: 0;
  -webkit-transform: scale(0);
          transform: scale(0);
}

.mode-search .search__form__control {
  opacity: 1;
  visibility: visible;
  z-index: 9;
}

.mode-search .search__control__bg {
  -webkit-transform: scale(100);
          transform: scale(100);
  opacity: 1;
  z-index: 1;
}

.mode-search #mainmenu__area {
  opacity: 0;
  visibility: hidden;
}

.action__search__button.close {
  opacity: 0;
}

.search__mode__close {
  position: absolute;
  right: 80px;
  top: 80px;
  z-index: 999;
  background: transparent;
  font-size: 50px;
  padding: 0;
  border: 0;
  width: 50px;
  height: 50px;
  text-align: center;
  line-height: 1;
  color: var(--white_color);
  -webkit-transition: 0.3s;
  transition: 0.3s;
  opacity: 0;
  visibility: hidden;
}

.mode-search .search__mode__close {
  opacity: 1;
  visibility: visible;
}

.search__form__layout__1 {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  opacity: 0;
  visibility: hidden;
}

.search__form__layout__1 input {
  width: 100%;
  padding: 50px;
  background: transparent;
  border: 0;
  color: var(--white_color);
  font-size: 63px;
  border-bottom: 2px solid;
}

.mode-search .search__form__layout__1 {
  z-index: 999;
  opacity: 1;
  visibility: visible;
}

.search__form__layout__1 form ::-webkit-input-placeholder {
  color: var(--white_color);
}
.search__form__layout__1 form :-moz-placeholder, .search__form__layout__1 form ::-moz-placeholder {
  color: var(--white_color);
  opacity: 1;
}
.search__form__layout__1 form :-ms-input-placeholder {
  color: var(--white_color);
}

/*
404 Page
----------------------*/
.error404 {
  background: url(../img/404-bg.png) no-repeat scroll left center;
}
.error404 .error__page__img {
  margin-bottom: 40px;
}

.page__content__header h3 {
  font-size: 36px;
  margin-bottom: 30px;
}

.page__search__form form {
  position: relative;
  height: 60px;
  background: #e1e6ff;
  margin-top: 20px;
  margin-bottom: 50px;
}
.page__search__form form input {
  height: 100%;
  padding: 20px;
  width: calc(100% - 60px);
  background: transparent;
  border: 0;
  position: absolute;
  left: 0;
  top: 0;
}
.page__search__form button {
  width: 60px;
  height: 60px;
  position: absolute;
  right: 0;
  top: 0;
  background: var(--theme_main_background);
  font-size: 20px;
  color: var(--white_color);
  -webkit-transition: 0.3s;
  transition: 0.3s;
  border: 0;
  border-radius: 0;
}
.page__search__form button:hover, .page__search__form button:focus {
  background: var(--body_dark_background);
  color: var(--white_color);
  outline: 0;
}
.page__search__form .search-form a {
  text-transform: capitalize;
  background: var(--theme_main_background);
  padding: 15px 30px;
  border-radius: 50px;
  color: var(--white_color);
  -webkit-box-shadow: 0 16px 32px rgba(0, 0, 0, 0.1);
          box-shadow: 0 16px 32px rgba(0, 0, 0, 0.1);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.page__search__form .search-form a:hover {
  color: var(--theme_main_color);
  background: var(--white_background);
}

/* ========================================================
    PAGES STYLE - ARCHIVE / SEARCH / ERROR / PAGE
==========================================================*/
/* ---------------------
    SEARCH PAGE
----------------------- */
.search-results .post__item__details {
  padding: 30px;
}

/*
Global Posts Style
---------------------*/
.entry-content > :last-child,
.entry-summary > :last-child,
body:not(.search-results) .entry-summary > :last-child,
.page__content__area > :last-child,
.comment-content > :last-child,
.textwidget > :last-child {
  margin-bottom: 0;
}

.page__content__area .alignright {
  margin-top: 20px;
  display: inline-block;
}

.page__content__area blockquote,
.post__item__details blockquote,
.comments__area blockquote {
  border-radius: 10px;
  line-height: 1.8;
  margin-bottom: 30px;
  margin-top: 31px;
  padding: 110px 30px 30px;
  position: relative;
  text-align: center;
  background: var(--white_background) url("../img/blog/quote_bg.png") no-repeat scroll 95% center;
  border: 0 none;
  margin: 50px 0;
  padding: 50px;
}

.page__content__area blockquote h2,
.post__item__details blockquote h2,
.comments__area blockquote h2 {
  letter-spacing: 1px;
  line-height: 1.6;
  margin-top: 20px;
  text-transform: capitalize;
}

table,
.page__content__area table,
.post__item__details table,
.comments__area table {
  width: 100%;
  border-left: var(--theme_border);
  border-top: var(--theme_border);
  margin-bottom: 30px;
}

table th,
table tr,
.page__content__area table th,
.page__content__area table tr,
.page__content__area table td,
.post__item__details table th,
.post__item__details table tr,
.post__item__details table td,
.comments__area table th,
.comments__area table tr,
.comments__area table td {
  border-bottom: var(--theme_border);
  border-right: var(--theme_border);
  padding: 10px;
  color: var(--body_dark_color);
}

.page__content__area dl,
.post__item__details dl,
.comments__area dl {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.page__content__area dl dd,
.post__item__details dl dd,
.comments__area dl dd {
  margin-bottom: 20px;
}

.page__content__area dd,
.post__item__details dd,
.comments__area dd,
.page__content__area dt,
.post__item__details dt,
.comments__area dt {
  line-height: inherit;
}

.kingcomposer .page__content__area img {
  margin: auto;
}

.page__content__area > ul,
.page__content__area > ol,
.post__item__content > ul,
.post__item__content > ol {
  margin-bottom: 30px;
}

.comment-content > ul,
.comment-content > ol {
  margin-bottom: 30px;
}

.post__item__content ul,
.post__item__content ol {
  clear: both;
}

.post__item__content ul li,
.post__item__content ol li {
  margin-bottom: 5px;
}

figure.wp-block-audio {
  margin-bottom: 20px;
}

p.has-large-font-size,
p.has-large-font-size + p {
  line-height: 1.2;
}

.page-links p {
  margin-bottom: 20px !important;
  font-size: 20px;
  text-transform: capitalize;
  letter-spacing: 1px;
}

.post__item__content form {
  width: 100%;
  border: var(--theme_border);
  padding: 30px;
  text-align: center;
  border-radius: 5px;
}

.comment-respond form {
  margin-top: 20px;
}

.post__item__content form input {
  border-radius: 50px;
  width: auto;
  min-width: 120px;
  display: inline-block;
  padding: 10px 20px;
  margin: 0 5px;
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 2px;
  border-color: var(--theme_border_color);
}

.post__item__content form span {
  display: block;
  width: 100%;
  margin-bottom: 20px;
}

.post__item__content form br {
  display: none;
}

.post__item__content form input[type=submit] {
  background: var(--theme_main_background);
  color: var(--white_color);
  border-color: var(--theme_border_color);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.post__item__content form input[type=submit]:hover {
  -webkit-box-shadow: 0 16px 32px rgba(0, 0, 0, 0.1);
          box-shadow: 0 16px 32px rgba(0, 0, 0, 0.1);
  background: var(--white_background);
  color: var(--theme_main_color);
}

.wp-block-button {
  margin-bottom: 20px;
}

.wp-block-cover.has-background-dim {
  color: var(--white_color);
}

.wp-block-latest-posts,
.wp-block-latest-posts,
.wp-block-latest-posts,
.wp-block-latest-comments,
.wp-block-latest-comments,
.wp-block-categories,
.wp-block-archives {
  margin: 0;
  list-style: none;
  padding: 0;
  margin-bottom: 40px;
}

.wp-block-latest-posts li,
.wp-block-latest-posts li,
.wp-block-latest-posts li,
.wp-block-latest-comments li,
.wp-block-latest-comments li,
.wp-block-categories li,
.wp-block-archives li {
  margin-top: 15px;
}

.wp-block-latest-posts .children,
.wp-block-latest-posts .children,
.wp-block-latest-posts .children,
.wp-block-latest-comments .children,
.wp-block-latest-comments .children,
.wp-block-categories .children,
.wp-block-archives .children {
  margin-left: 15px;
}

.wp-block-archives select {
  width: 100%;
  padding: 10px;
  margin-bottom: 20px;
}

.post__item__details > [class^=wp-block-] {
  margin-bottom: 30px;
  display: inline-block;
  width: 100%;
}

.wp-block-archives-dropdown {
  margin-bottom: 30px;
}

pre {
  background: var(--white_background);
}

code {
  background: var(--white_background);
  display: inline-block;
  padding: 5px 15px;
  margin-top: 20px;
  margin-bottom: 20px;
}

pre.wp-block-code {
  background: var(--white_background);
  padding: 10px;
}

pre.wp-block-preformatted {
  background: var(--white_background);
  padding: 15px;
  margin-top: 10px;
}

pre.wp-block-verse {
  background: var(--white_background);
  padding: 10px;
}

.wp-block-table .has-fixed-layout {
  background: var(--white_background);
}

.wp-block-table .has-fixed-layout * {
  border-color: #ece3e3 !important;
}

.wp-block-calendar {
  background: var(--white_background);
  margin-bottom: 30px;
}

.wp-block-calendar nav.wp-calendar-nav {
  padding: 7px;
}

.wp-block-search__inside-wrapper input {
  border-radius: 0 !important;
}

form.wp-block-search__button-outside.wp-block-search__text-button.wp-block-search {
  background: var(--white_background);
  margin-bottom: 30px;
  text-align: left;
}

form.wp-block-search__button-outside label {
  line-height: 1;
  font-size: 18px;
  margin-bottom: 15px;
}

.wp-block-search .wp-block-search__input {
  margin: 0;
  padding: 20px;
  border: var(--theme_border);
  -webkit-transition: 0.3s;
  transition: 0.3s;
  border-radius: 3px 0 0 3px;
}

.wp-block-search .wp-block-search__button {
  width: 130px;
  margin: 0;
  border-radius: 0 3px 3px 0;
  padding: 12px;
  background: var(--white_background);
  border: var(--theme_border);
  border-left: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.wp-block-search .wp-block-search__button:hover {
  color: var(--white_color);
  background: var(--theme_main_background);
  border-color: var(--theme_border_color);
}

.wp-block-media-text__content .has-large-font-size + p {
  line-height: 1.6;
}

.wp-block-group.has-background {
  padding: 20px;
  margin-bottom: 30px;
}

@media only screen and (max-width: 767px) {
  .post__item__details blockquote h2,
.comments__area blockquote h2,
.page__content__area blockquote h2 {
    font-size: 18px;
  }

  .post__item__details blockquote,
.comments__area blockquote,
.page__content__area blockquote {
    padding: 30px;
  }

  .post__item__content form input[type=submit] {
    margin-top: 20px;
  }
}
/*==============================
    POST FORMATS
================================*/
/*
FORMAT STANDARD
-----------------------*/
/* .single .format-standard .post__item__content > p:first-of-type {
    overflow: hidden;
}

.single .format-standard .post__item__content > p:first-of-type::first-letter {
    color: v( theme_main_color );
    float: left;
    font-size: 90px;
    font-weight: 600;
    margin-right: 10px;
    line-height: 1;
    overflow: hidden;
    clear: both;
} */
/*
FORMAT STICKY
-----------------------*/
.post.sticky {
  background: var(--white_background);
  border-radius: 5px;
  padding: 20px 20px 20px 0;
  border: 4px double var(--theme_border_color);
}

@media only screen and (max-width: 991px) {
  .post.sticky {
    padding: 20px;
  }
}
.post.sticky {
  padding: 0;
}

/*
FORMAT LINK
-----------------------*/
.format-link .post__item__content a {
  background: #f6f9ff;
  padding: 30px;
  display: block;
  text-align: center;
  border-radius: 5px;
  text-decoration: underline;
  position: relative;
}
.format-link .post__item__content a:before {
  content: "";
  position: absolute;
  right: 30px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  font-size: 36px;
  opacity: 0.3;
  font-family: themify;
}

/*
FORMAT CHAT
-----------------------*/
.format-chat .post__item__content p {
  background: #f6f9ff;
  padding: 15px;
  margin-right: 20px;
}
.format-chat .post__item__content p:nth-child(2n) {
  margin-left: 20px;
  margin-right: 0;
}

/*
FORMAT GALLERY
-----------------------*/
.format-gallery .owl-carousel .owl-item img {
  max-width: 100%;
  width: 100%;
}
.format-gallery .owl-carousel .owl-nav > div {
  background: var(--white_background);
  border-radius: 50%;
  -webkit-box-shadow: 0 16px 32px rgba(0, 0, 0, 0.2);
          box-shadow: 0 16px 32px rgba(0, 0, 0, 0.2);
  color: var(--body_dark_color);
  height: 60px;
  left: 60px;
  opacity: 0;
  padding-top: 17px;
  position: absolute;
  text-align: center;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  width: 60px;
}
.format-gallery .owl-carousel .owl-nav > div:hover {
  background: var(--theme_main_background);
  color: var(--white_color);
}
.format-gallery .owl-carousel .owl-nav > div.owl-next {
  left: auto;
  right: 60px;
}
.format-gallery .owl-carousel:hover .owl-nav > div.owl-next {
  opacity: 1;
  right: 20px;
  visibility: visible;
}
.format-gallery .owl-carousel:hover .owl-nav > div.owl-prev {
  left: 20px;
  opacity: 1;
  visibility: visible;
}
.format-gallery .owl-carousel .owl-dots {
  position: absolute;
  right: 20px;
  bottom: 20px;
}
.format-gallery .owl-carousel .owl-dots > div {
  display: inline-block;
  width: 20px;
  height: 10px;
  border-radius: 3px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  background: var(--white_background);
}
.format-gallery .owl-carousel .owl-dots > div.active {
  background: var(--theme_main_background);
  width: 30px;
}

/*
FORMAT VIDEO
-----------------------*/
.post-video-popup {
  background: var(--theme_main_background);
  border-radius: 50%;
  -webkit-box-shadow: 0 16px 32px rgba(0, 0, 0, 0.2);
          box-shadow: 0 16px 32px rgba(0, 0, 0, 0.2);
  color: var(--white_color);
  cursor: pointer;
  font-size: 18px;
  height: 80px;
  line-height: 1;
  margin-right: 30px;
  padding-left: 10px;
  padding-top: 2px;
  position: relative;
  text-align: center;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  width: 80px;
  border: 0;
}
.post-video-popup:hover {
  background: var(--white_background);
  color: var(--theme_main_color);
  -webkit-box-shadow: 0 0 0 20px rgba(255, 255, 255, 0.3);
          box-shadow: 0 0 0 20px rgba(255, 255, 255, 0.3);
}

.format-video .post-video-popup {
  left: 50%;
  position: absolute;
  top: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
          transform: translateX(-50%) translateY(-50%);
}

/*
FORMAT QUOTE
-----------------------*/
.format-quote.single__post__item {
  background: #f8f8ff;
  font-size: 18px;
  padding: 50px;
  text-align: center;
}
.format-quote .post__item__details {
  padding: 0;
  padding: 30px;
}
.format-quote .post__item__details::before, .format-quote .post__item__details::after {
  display: none;
}
.format-quote .post__item__quote {
  background: var(--theme_main_background);
  border-radius: 50%;
  -webkit-box-shadow: 0 16px 32px rgba(83, 104, 253, 0.2);
          box-shadow: 0 16px 32px rgba(83, 104, 253, 0.2);
  color: var(--white_color);
  height: 50px;
  margin: 0 auto 30px;
  padding-top: 11px;
  width: 50px;
}
.format-quote .post__author {
  margin-top: 30px;
}
.format-quote .post__author img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-right: 20px;
}

/*
Blog Posts
----------------------*/
.blog__posts__list {
  padding-right: 20px;
}

@media only screen and (max-width: 767px) {
  .blog__posts__list {
    padding: 0;
  }
}
/*
Post Author
----------------------*/
.post__author img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-right: 5px;
  background: #E5E9F2;
}

/*
Blog Post Item
----------------------*/
.single__post__item {
  position: relative;
}

.single__post__item .post__top__meta__alt img {
  border: var(--post_border);
  border-radius: 50%;
  height: 40px;
  margin-bottom: 0;
  margin-right: 5px;
  margin-top: 0;
  width: 40px;
}

.single__post__item .meta__comment__tag {
  font-size: 14px;
}

.single__post__item .meta__comment__tag ul {
  list-style: outside none none;
  margin: 0;
  padding: 0;
}

.single__post__item .meta__comment__tag ul li {
  display: inline-block;
  margin-left: 30px;
}

.single__post__item .meta__comment__tag ul li a {
  display: inline-block;
  margin-left: 5px;
}

.single__post__item .post__top__meta__alt {
  margin-bottom: 30px;
  border-bottom: var(--post_border);
  padding-bottom: 15px;
}

.single__post__item .post__top__meta__alt > div {
  display: inline-block;
}

.meta__comment__tag {
  font-weight: 300;
}

.post__date__and__category__alt {
  border-top: var(--post_border);
  font-size: 14px;
  font-weight: 300;
  margin-top: 30px;
  padding-top: 30px;
}

.post__date__and__category__alt ul {
  list-style: outside none none;
  margin: 0;
  padding: 0;
}

.post__date__and__category__alt ul li {
  display: inline-block;
  margin-right: 30px;
}

.post__date__and__category__alt ul li a {
  margin-left: 5px;
}

.single__post__item .post__top__meta__alt .post-author a,
.single__post__item h2 a {
  color: var(--body_dark_color);
}

.single__post__item .post__top__meta__alt .post-author a:hover,
.single__post__item h2 a:hover {
  color: var(--theme_main_color);
}

/* --------------- */
.single__post__item .post__item__media {
  margin-bottom: 40px;
  margin-bottom: 30px;
  position: relative;
}

.single__post__item .post__item__details {
  padding-left: 40px;
  position: relative;
  overflow: hidden;
}

.post.sticky .post__item__details:before {
  position: absolute;
  right: 0;
  top: 0;
  width: 100px;
  height: 100px;
  content: "";
  font-family: "themify";
  display: block;
  font-size: 80px;
  color: var(--theme_main_color);
  left: auto;
  padding-top: 14px;
  line-height: 1;
  text-align: center;
  border-radius: 50%;
  opacity: 0.3;
}

.post__item__title {
  font-size: 32px;
  margin-bottom: 20px;
}

.post__item__title a {
  color: var(--body_dark_color);
}

.post__item__title a:hover {
  color: var(--theme_main_color);
}

@media only screen and (max-width: 991px) {
  .single__post__item {
    padding-left: 0;
  }

  .single__post__item .post__item__details {
    padding-left: 0;
  }

  .single__post__item .post__item__details:before,
.single__post__item .post__item__details:after {
    display: none;
  }
}
@media only screen and (max-width: 767px) {
  .post__item__title {
    font-size: 24px;
  }

  .format-quote {
    padding: 20px !important;
  }
}
/* -----------------------------
    BLOG COLUMNS VARIANT
------------------------------- */
.single__post__item .post__item__media {
  margin-bottom: 0;
}

.single__post__item .post__item__details {
  background: var(--white_background);
  border: var(--post_border);
  padding: 30px;
}

.single__post__item .post__item__details:before,
.single__post__item .post__item__details:after {
  display: none;
}

/*
Readmore Button
----------------------*/
a.post_readmore {
  color: var(--theme_main_color);
  font-size: 14px;
  margin-top: 30px;
  display: inline-block;
  line-height: 1;
  position: relative;
  min-height: 15px;
  font-weight: 400;
}
a.post_readmore:before {
  width: 10px;
  height: 10px;
  border-top: 2px solid var(--theme_border_color);
  border-right: 2px solid var(--theme_border_color);
  content: "";
  position: absolute;
  right: -11px;
  top: 0;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transform-origin: 0 0;
          transform-origin: 0 0;
}
a.post_readmore:after {
  display: inline-block;
  position: relative;
  content: "";
  height: 2px;
  width: 10px;
  background: var(--theme_main_background);
  right: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  left: 8px;
  opacity: 0;
  margin: 3px;
}
a.post_readmore:hover:after {
  width: 40px;
  opacity: 1;
}

/*
Read More
----------------------*/
.posts__readmore a {
  color: var(--body_color);
  text-transform: capitalize;
  letter-spacing: 1px;
  font-weight: 500;
  font-size: 14px;
  position: relative;
  padding-left: 10px;
  display: inline-block;
}
.posts__readmore a:hover {
  padding-right: 20px;
  padding-left: 0;
  color: var(--theme_main_color);
}
.posts__readmore a i {
  line-height: 1;
  font-weight: 700;
  position: relative;
  top: 0;
  position: absolute;
  right: 100%;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  bottom: 0;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.posts__readmore a:hover i {
  right: 0%;
}

/*
Read More
----------------------*/
.post__item__readmore {
  color: var(--white_color);
  display: inline-block;
  padding: 8px 25px;
  border-radius: 3px;
  margin-top: 30px;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.post__item__readmore:hover {
  color: var(--white_color);
}
.post__item__readmore:before {
  content: "";
  background: var(--theme_gradient);
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.post__item__readmore:hover:before {
  background: var(--theme_hover_gradient);
}

/*-------------------------
    POSTS PAGE PAGINATION
---------------------------*/
/*
    .posts__pagination {
        padding-top: 50px;
        text-align: center;
    }

    .blog .posts__pagination,
    .home .posts__pagination {
        border-bottom: v( theme_border );
        border-top: v( theme_border );
        margin-bottom: 0;
        padding-bottom: 50px;
    }
*/
.posts__pagination {
  text-align: center;
  overflow: hidden;
  clear: both;
}
.posts__pagination .navigation {
  border-bottom: var(--theme_border);
  border-top: var(--theme_border);
  margin: 50px 0;
  padding: 50px 0;
  text-align: center;
  display: block;
  margin-bottom: 0;
}
.posts__pagination h3 {
  line-height: 1;
  margin: 5px 0 0;
}
.posts__pagination ul {
  list-style: outside none none;
  margin: 0;
  padding: 0;
}
.posts__pagination ul li {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: var(--white_background);
  border-radius: 50%;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  margin: 5px;
  place-content: center;
  text-align: center;
}
.posts__pagination ul li a,
.posts__pagination ul li span {
  background: var(--white_background);
  border: var(--theme_border);
  border-radius: 3px;
  -webkit-box-shadow: 0 16px 32px rgba(0, 0, 0, 0.1);
          box-shadow: 0 16px 32px rgba(0, 0, 0, 0.1);
  color: var(--body_color);
  display: block;
  height: 50px;
  padding-top: 11px;
  width: 50px;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.posts__pagination ul li a:hover,
.posts__pagination ul li span.current {
  /* background: v( theme_main_background );
  border-color: v( theme_main_color ); */
  color: var(--white_color);
}
.posts__pagination ul li a:before,
.posts__pagination ul li span:before {
  background: var(--theme_gradient);
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  opacity: 0;
}
.posts__pagination ul li a:hover:before,
.posts__pagination ul li span.current:before {
  opacity: 1;
}

@media only screen and (max-width: 991px) {
  .posts__pagination {
    margin-bottom: 50px;
  }
}
/*----------------------------
    SPECIFIC PAGINATION STYLE
----------------------------*/
nav.navigation.comments-pagination {
  border-top: var(--theme_border);
  padding-top: 50px;
}

.page-links.posts__pagination {
  padding-top: 50px;
}

nav.navigation.comments-pagination {
  margin-bottom: 50px;
  border-top: 0;
  padding-top: 0;
}

.single-posts__pagination {
  border-bottom: var(--theme_border);
  border-top: var(--theme_border);
  overflow: hidden;
  padding-bottom: 50px;
  padding-top: 50px;
  position: relative;
}

/*----------------------------
    POSTS NAVIGATION
----------------------------*/
.posts-navigation,
.comment-navigation {
  border: 2px solid var(--border_color);
  padding: 30px;
  overflow: hidden;
  background: var(--white_background);
}

.comment-navigation {
  margin-top: 50px;
}

.posts-navigation .screen-reader-text,
.comment-navigation .screen-reader-text {
  display: none;
}

.posts-navigation .nav-links > div,
.comment-navigation .nav-links > div {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-line-pack: center;
      align-content: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 14px;
  height: 18px;
  line-height: 1;
}

.posts-navigation .nav-links > div.nav-previous,
.comment-navigation .nav-links > div.nav-previous {
  float: left;
}

.posts-navigation .nav-links > div.nav-next,
.comment-navigation .nav-links > div.nav-next {
  float: right;
}

.posts-navigation .nav-links > div i,
.comment-navigation .nav-links > div i {
  line-height: 1;
  font-size: 14px;
}

/*----------------------------
    SINGLE PAGE NAVIGATION
----------------------------*/
.sigle__page__nvaigation {
  margin-top: 50px;
  position: relative;
  z-index: 9;
}
.sigle__page__nvaigation::after {
  background: var(--body_dark_color);
  content: "";
  display: block;
  height: 1px;
  opacity: 0.3;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 100%;
  z-index: -1;
}
.sigle__page__nvaigation ul {
  list-style: outside none none;
  margin: 0;
  overflow: hidden;
  padding: 0;
}
.sigle__page__nvaigation ul li {
  overflow: hidden;
}
.sigle__page__nvaigation ul li:first-child {
  float: left;
}
.sigle__page__nvaigation ul li:last-child {
  float: right;
}
.sigle__page__nvaigation ul li a {
  background: #e1e6ff;
  border: var(--theme_border);
  border-radius: 5px;
  display: block;
  height: 40px;
  letter-spacing: 1px;
  padding: 7px 20px;
  text-transform: capitalize;
}
.sigle__page__nvaigation ul li a:hover {
  background: var(--theme_main_background);
  border-color: var(--theme_main_color);
  color: var(--white_color);
}

/*---------------------------
    SINGLE POST NAVGATION
-----------------------------*/
.single__post__navigation {
  background: var(--white_background);
  -webkit-box-shadow: 20px 0 50px rgba(85, 92, 121, 0.08);
          box-shadow: 20px 0 50px rgba(85, 92, 121, 0.08);
  overflow: hidden;
  padding: 30px;
  position: relative;
  word-break: break-word;
  margin-top: 50px;
}
.single__post__navigation h3 {
  font-size: 18px;
  margin-bottom: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.single__post__navigation .prev-post {
  float: left;
  max-width: calc(50% - 50px);
}
.single__post__navigation .next-post {
  float: right;
  text-align: right;
  max-width: calc(50% - 50px);
}
.single__post__navigation .prev-post a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}
.single__post__navigation .next-post a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}
.single__post__navigation .next-post .arrow-link {
  position: absolute;
}
.single__post__navigation .prev-post .arrow-link {
  position: absolute;
}
.single__post__navigation .next-post .arrow-link {
  left: 0;
  top: 50%;
}
.single__post__navigation .prev-post .arrow-link {
  display: none;
  left: 0;
  opacity: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: all 0.6s ease 0s;
  transition: all 0.6s ease 0s;
}
.single__post__navigation .next-post .arrow-link {
  display: none;
  left: 0;
  opacity: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: all 0.6s ease 0s;
  transition: all 0.6s ease 0s;
  left: auto;
  right: 0;
}
.single__post__navigation .prev-post:hover .arrow-link,
.single__post__navigation .next-post:hover .arrow-link {
  opacity: 1;
}
.single__post__navigation .title-with-link {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  overflow: hidden;
}
.single__post__navigation .title-with-link span {
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.single__post__navigation__center__grid {
  font-size: 50px;
  left: 50%;
  position: absolute;
  top: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
          transform: translateX(-50%) translateY(-50%);
}
.single__post__navigation__center__grid a {
  color: var(--border_color);
}
.single__post__navigation__center__grid a:hover, .single__post__navigation__center__grid a:focus {
  color: var(--theme_main_color);
}

@media only screen and (max-width: 991px) {
  .single__post__navigation {
    padding: 20px;
    margin-bottom: 50px;
  }
  .single__post__navigation .prev-post,
.single__post__navigation .next-post {
    display: inline-block;
  }
  .single__post__navigation .prev-post h3,
.single__post__navigation .next-post h3 {
    display: none;
  }
}
@media only screen and (max-width: 767px) {
  .single__post__navigation .prev-post,
.single__post__navigation .next-post {
    display: inline-block;
    width: 30%;
  }
}
/*--------------------------
    SINGLE POST DETAILS
---------------------------*/
.single .post__item__details {
  margin: 0;
  padding: 30px;
}
.single .post__item__details p {
  margin-bottom: 20px;
}
.single .post__item__details p:last-of-type {
  margin-bottom: 0;
}
.single .post__item__details img {
  margin-bottom: 30px;
}
.single .post__item__details img:last-of-type {
  margin-bottom: 0;
}

.post__bottom__meta {
  margin-top: 50px;
  /* margin-bottom: 50px; */
  overflow: hidden;
  border-top: var(--theme_border);
  padding-top: 50px;
}

.post__bottom__meta ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.post__social__share {
  float: right;
  text-align: right;
}

.post__item__tags {
  float: left;
}

.post__bottom__meta > div {
  float: none;
  text-align: left;
}

.post__social__share h4,
.post__item__tags h4 {
  letter-spacing: 1px;
  margin-bottom: 30px;
  margin-right: 20px;
}

.post__social__share h4,
.post__social__share ul,
.post__item__tags h4,
.post__item__tags ul {
  display: inline-block;
}

.post__social__share li,
.post__item__tags li {
  display: inline-block;
}

.post__item__tags li {
  margin-left: 5px;
}

.post__item__tags li:first-child {
  margin-left: 0;
}

.post__social__share li a {
  display: block;
  font-size: 14px;
  margin-right: 10px;
  text-align: center;
  width: 30px;
  width: 35px;
  background: var(--white_background);
  height: 35px;
  padding-top: 3px;
  border-radius: 50%;
  border: var(--theme_border);
}

.post__social__share li a:hover {
  background: var(--theme_main_background);
  border-color: var(--theme_border_color);
  color: var(--white_color);
}

.post__item__tags li a {
  display: block;
  font-size: 14px;
  font-weight: 500;
  text-transform: capitalize;
  margin-right: 0;
  color: var(--theme_main_color);
  margin-bottom: 8px;
  border: solid 1px var(--theme_border_color);
  padding: 3px 10px;
  margin-left: 5px;
  border-radius: 3px;
}

.post__item__tags li a:hover {
  background: var(--theme_main_background);
  border-color: var(--theme_border_color);
  color: var(--white_color);
}

@media only screen and (max-width: 767px) {
  .post__social__share {
    margin-top: 50px;
    text-align: center;
    width: 100%;
  }

  .post__item__tags {
    text-align: center;
    width: 100%;
  }
}
/*----------------------
    RELATED POST
-----------------------*/
.related__post__warapper {
  margin-top: 50px;
}

.related__posts {
  margin-top: 50px;
  /* padding-bottom: 50px; */
}

.single__related__post {
  position: relative;
  min-height: 350px;
  background-repeat: no-repeat !important;
  background-position: center center !important;
  background-size: cover !important;
}

.single__related__post img {
  width: 100%;
}

.related__post__details {
  background: rgba(0, 0, 0, 0.65);
  color: var(--body_color);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  left: 0;
  padding: 30px;
  position: absolute;
  top: 0;
  width: 100%;
}

.related__post__details a {
  color: var(--body_color);
}

.related__post__details a:hover {
  color: var(--white_color);
}

.related__posts .post__item__details h4 {
  font-size: 20px;
}

.single .related__posts .single__post__item {
  -webkit-box-shadow: 0 10px 80px rgba(54, 65, 90, 0.1);
          box-shadow: 0 10px 80px rgba(54, 65, 90, 0.1);
}

@media only screen and (max-width: 767px) {
  .related__posts {
    padding-bottom: 0;
  }
}
/*-----------------------------
    POST AUTHOR
----------------------------*/
.author__biography {
  border-top: var(--theme_border);
  margin-top: 50px;
}
.author__biography .author__biography__details {
  background: var(--white_background);
  border: var(--theme_border);
  margin-top: 50px;
  overflow: hidden;
  padding: 30px;
}
.author__biography .author__biography__details img.alignleft {
  border: var(--theme_border);
  margin-top: 0;
  margin-bottom: 10px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  padding: 5px;
  background: var(--white_background);
}
.author__biography .author__biography__details .writen-by {
  color: var(--theme_main_color);
  letter-spacing: 1px;
  text-transform: uppercase;
}
.author__biography .author__biography__details h3 {
  font-size: 20px;
}

@media only screen and (max-width: 767px) {
  .author__biography .author__biography__details {
    text-align: center;
  }
  .author__biography .author__biography__details img {
    float: none;
    margin-bottom: 30px;
  }
}
/*-------------------
    COMMENTS LIST
--------------------*/
.comments__area {
  background: transparent;
}

.all-comments {
  border-top: var(--theme_border);
  margin-top: 50px;
  padding-top: 50px;
}

.comment-list {
  margin-top: 50px;
}

.comment-list > ul,
ul.children {
  margin: 0;
  padding: 0;
  list-style: none;
}

.single-comment {
  border-top: var(--theme_border);
  margin-top: 50px;
  padding-left: 100px;
  padding-top: 50px;
  position: relative;
  list-style-type: none;
}

.single-comment .single-comment {
  margin-left: -50px;
}

.single-comment.pingback-comment {
  padding-left: 0;
}

.comment-author {
  border-radius: 50%;
  -webkit-box-shadow: 0 16px 32px rgba(0, 0, 0, 0.12);
          box-shadow: 0 16px 32px rgba(0, 0, 0, 0.12);
  height: 80px;
  left: 0;
  overflow: hidden;
  position: absolute;
  top: auto;
  width: 80px;
}

.comment-meta {
  overflow: hidden;
  padding-bottom: 15px;
}

.comment-left-meta {
  float: left;
}

.comment-reply {
  float: none;
  margin-top: 20px;
}

.comment-list #reply-title {
  margin-top: 50px;
}

.comment-reply-title small {
  margin-left: 10px;
}

.comment-reply a {
  display: inline-block;
}

.comment-reply a i {
  margin-right: 5px;
}

.comment-reply a:hover {
  color: var(--theme_main_color);
}

.comment-meta h4 {
  font-size: 16px;
  margin-bottom: 5px;
  margin-right: 10px;
  display: inline-block;
}

.comment-meta .comment-date {
  color: var(--theme_main_color);
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: capitalize;
  display: inline-block;
}

.no-comments.mt50 {
  border-top: var(--theme_border);
  border-bottom: var(--theme_border);
  padding-top: 25px;
  padding-bottom: 25px;
  text-align: center;
  text-transform: capitalize;
  letter-spacing: 1px;
  font-weight: 700;
}

/*-------------------
    COMMENT FORM
----------------------*/
.comment__box {
  margin-top: 50px;
}

.comment__box {
  border-top: var(--theme_border);
  margin-top: 50px;
  padding-top: 50px;
}

.comment-form {
  margin-top: 50px;
}

.comment-form {
  padding: 30px;
  background: var(--white_background);
  padding-bottom: 20px;
  border-radius: 3px;
}

.comment-form input,
.comment-form textarea {
  border: var(--theme_border);
  border-radius: 0;
  margin-bottom: 15px;
  max-height: 140px;
  padding: 10px 20px;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  width: 100%;
}

.comment-form input:focus,
.comment-form textarea:focus {
  border-color: var(--theme_main_color);
}

.comment-form input[type=submit] {
  background: var(--theme_main_background);
  border: 0 none;
  color: var(--white_color);
  font-weight: 500;
  letter-spacing: 2px;
  margin-top: 0;
  padding: 13px 30px;
  text-transform: uppercase;
  width: auto;
  min-height: 50px;
  font-family: "Barlow Condensed";
}

.comment-form input[type=submit]:hover {
  background: var(--white_background);
  -webkit-box-shadow: 0 16px 32px rgba(83, 104, 253, 0.2);
          box-shadow: 0 16px 32px rgba(83, 104, 253, 0.2);
  color: var(--theme_main_color);
}

.comments-title,
.reply-title {
  letter-spacing: 1px;
  position: relative;
  text-transform: capitalize;
  z-index: 1;
}

.comments-title span,
.reply-title span {
  background: var(--white_background);
  overflow: hidden;
  padding: 10px 20px;
  position: relative;
}

@media (min-width: 768px) and (max-width: 991px) {
  .comment__box {
    margin-bottom: 50px;
  }

  .no-comments.mt50 {
    margin-bottom: 50px;
  }
}
@media only screen and (max-width: 767px) {
  .comments__area {
    border-top: 0;
    margin-top: 0;
    background: inherit;
    padding: 0;
  }

  .single-comment .single-comment {
    margin-left: -100px;
  }

  .comment-reply {
    display: inline-block !important;
  }

  .comment__box {
    margin-bottom: 50px;
  }

  .no-comments.mt50 {
    margin-bottom: 50px;
  }
}
/*
Top Meta
------------------------*/
.post__comments__author {
  position: absolute;
  left: 30px;
  text-align: center;
}
.post__comments__author .post__author img {
  display: block;
  margin: 0 auto 5px;
}

.post__comments__author .post__comment__count {
  margin-top: 25px;
}
.post__comments__author .post__comment__count a {
  display: block;
}
.post__comments__author .post__comment__count i {
  font-size: 24px;
  color: var(--body_dark_color);
}
.post__comments__author .author__link {
  color: var(--body_dark_color);
  font-size: 14px;
  font-weight: 500;
}

/*
Post Date & Category
------------------------*/
.post__date__and__category {
  margin-bottom: 15px;
  font-size: 15px;
  line-height: 1;
}
.post__date__and__category > div {
  display: inline-block;
  margin-right: 5px;
}
.post__date__and__category > div.single__category {
  margin-left: 10px;
  margin-right: 0;
}
.post__date__and__category a {
  color: var(--theme_main_color);
}

/*
Single Post Top Meta
------------------------*/
.single__post__top__meta {
  position: relative;
  padding-left: 140px;
  min-height: 90px;
  margin-bottom: 30px;
}
.single__post__top__meta .post__author {
  position: absolute;
  left: 30px;
  text-align: center;
}
.single__post__top__meta .post__author img {
  display: block;
  margin: 0 auto 5px;
}

/*
Post Meta Ago
------------------------*/
.post__ago__meta {
  margin-top: 20px;
  font-size: 14px;
  font-weight: 600;
  opacity: 0.7;
}
.post__ago__meta .author {
  margin-left: 10px;
}
.post__ago__meta .author-link {
  font-style: italic;
}
.post__ago__meta .edit-link {
  margin-left: 15px;
}

/*
Single Post Multimeta
------------------------*/
.single__post__multimeta {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background: rgba(0, 0, 0, 0.5);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.single__post__multimeta .single__multimeta {
  float: left;
  width: 25%;
  height: 100%;
  text-align: left;
  line-height: 1;
}
.single__post__multimeta .multimeta__text {
  font-size: 18px;
  font-weight: 600;
}
.single__post__multimeta .multimeta__text a {
  color: var(--white_color);
}
.single__post__multimeta .multimeta__text i {
  display: none;
}
.single__post__multimeta .multimeta__title {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  color: var(--theme_main_color);
  letter-spacing: 1px;
  position: relative;
  margin-bottom: 10px;
  display: block;
}
.single__post__multimeta .multimeta__title:before {
  position: absolute;
  content: "";
  background: var(--theme_main_background);
  width: 6px;
  height: 6px;
  left: -15px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

@media only screen and (max-width: 992px) {
  .single__post__multimeta {
    display: none;
  }
}
/*
Post Author Header Meta
------------------------*/
.single__post__author {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: left;
  margin-top: 30px;
}
.single__post__author .author__thumb__wrap {
  width: 60px;
  border-radius: 50px;
  overflow: hidden;
  margin-right: 13px;
  border: 3px solid;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.single__post__author .author__thumb__wrap img {
  border-radius: 50%;
}
.single__post__author .author__link {
  font-weight: 600;
  font-size: 16px;
  line-height: 1;
}

/*
Single Post Top Meta
-------------------------*/
.single__post__top__meta {
  position: relative;
  margin-bottom: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: inherit;
  padding: 0;
  margin-top: -15px;
  height: auto;
  min-height: auto;
}
.single__post__top__meta .post__author {
  position: inherit;
  left: inherit;
  text-align: inherit;
}
.single__post__top__meta .post__author a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
  float: left;
}
.single__post__top__meta .post__author a.author__thumbnail img {
  width: 45px;
  height: 45px;
  margin-right: 15px;
  margin-bottom: 0;
}
.single__post__top__meta .post__date__publish,
.single__post__top__meta .single__category,
.single__post__top__meta .post__social__share {
  display: inline-block;
  min-height: 50px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-right: 20px;
  margin-bottom: 0;
  padding-top: 15px;
}
.single__post__top__meta a.author__link {
  margin-top: 7px;
  font-weight: 500;
}

/*
Blog Posts Top Meta
-----------------------*/
.post__top__meta {
  position: absolute;
  left: 0;
  top: 20px;
  display: inline-block;
  background: var(--theme_gradient);
  line-height: 1;
  padding: 8px 15px;
  border-radius: 0 50px 50px 0;
  font-size: 14px;
  font-weight: 500;
}
.post__top__meta .post__date__and__category {
  margin-bottom: 0;
}
.post__top__meta i {
  display: none;
}
.post__top__meta a {
  color: var(--white_color);
}

.single__post__item .single__random__category {
  display: none;
}

/*
Blog Posts Bottom Meta
-----------------------*/
.single__random__category a {
  padding: 10px 20px;
  display: inline-block;
  background: var(--theme_main_background);
  color: var(--white_color);
  font-size: 12px;
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 30px;
  font-weight: 500;
  letter-spacing: 1px;
}

.posts__bottom__meta {
  margin-top: 40px;
  overflow: hidden;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: block;
}
.posts__bottom__meta .post__author {
  float: left;
}
.posts__bottom__meta .posts__readmore {
  float: right;
  margin-top: 6px;
}
.posts__bottom__meta a.author__link {
  letter-spacing: 0;
  font-weight: 600;
  font-size: 14px;
}

@media only screen and (max-width: 767px) {
  .posts__bottom__meta {
    margin-top: 20px;
  }
  .posts__bottom__meta .post__author {
    display: none;
  }
  .posts__bottom__meta .posts__readmore {
    float: none;
  }
}
/*============================
    Overwrites Here
==============================*/
/*
Blog Posts Overwrite
-------------------------*/
.single__post__item {
  position: relative;
  -webkit-box-shadow: 0 10px 80px rgba(54, 65, 90, 0.1);
          box-shadow: 0 10px 80px rgba(54, 65, 90, 0.1);
  background: var(--white_background);
  border-radius: 10px;
  overflow: hidden;
}

.single__post__item .post__item__media {
  border-radius: 10px;
  overflow: hidden;
}

.single__post__item .post__item__details {
  border: 0;
}

.single .single__post__item {
  -webkit-box-shadow: 0 0 0;
          box-shadow: 0 0 0;
  background: inherit;
  border-radius: 0;
  overflow: inherit;
}

.single .single__post__item .post__item__media {
  border-radius: 0;
  overflow: inherit;
}

.single .single__post__item .post__item__details {
  padding: 0;
  border: 0;
  background: inherit;
}

.single .post.single__post__item .post__item__media {
  margin-bottom: 40px;
  border-radius: 10px;
  overflow: hidden;
}

.related__posts .single__post__item .post__item__details {
  background: var(--white_background);
  padding: 30px;
}

/*
Comments Area Overwrite
-------------------------*/
.comments__area {
  padding: 0;
  padding-top: 1px;
}

/*
    .comments__area {
        padding: 50px;
        margin-top: 50px;
    }
    .comment__box {
        border-top: 0;
        margin-top: 0;
        padding-top: 0;
    }
    .all-comments {
        border-bottom: v( theme_border );
        border-top: 0;
        padding-top: 0;
        margin-top: 0;
        padding-bottom: 50px;
        margin-bottom: 50px;
    }

    @media only screen and (max-width: 767px){
        .comments__area {
            padding: 0;
        }
    }
*/
/*
Meta Overwrite in Single Post
-------------------------*/
.single__post__top__meta {
  margin-top: 0;
}
.single__post__top__meta a {
  background: var(--white_background);
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 15px;
  color: var(--body_dark_color);
  display: inline-block;
}
.single__post__top__meta a:hover {
  background: var(--theme_main_background);
  color: var(--white_color);
}
.single__post__top__meta .post__date__and__category {
  padding: 0;
  margin-right: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.single__post__top__meta .post__date__and__category ul {
  margin: 0;
  padding-left: 20px;
}
.single__post__top__meta .post__social__share li a {
  display: inline-block;
  font-size: 14px;
  margin-right: 5px;
  text-align: center;
  width: 35px;
  background: var(--white_background);
  height: 35px;
  padding: 10px 0 0;
  border-radius: 50px;
  border: 0;
}
.single__post__top__meta .post__social__share li a:hover {
  background: var(--theme_main_background);
  color: var(--white_color);
}

@media only screen and (max-width: 767px) {
  .single__post__top__meta .post__date__and__category {
    display: block;
    text-align: center;
  }
  .single__post__top__meta .post__date__and__category .post__social__share {
    margin-top: 25px;
  }
}
/*
Give Forms Overwrites
------------------------*/
.single-give_forms .main__widgets__area .widget {
  margin-bottom: 50px;
}
.single-give_forms .main__widgets__area .widget:last-child {
  margin-bottom: 0;
}

/*==========================
    WIDGETS CSS
===========================*/
/*==========================================================
    WIDGETS STYLE
===========================================================*/
.main__widgets__area {
  position: relative;
  z-index: 1;
}

/* ---------------------
    GLOBAL WIDGET STYLE
----------------------- */
.nice-select .option {
  word-break: break-word;
  white-space: normal;
}

.single-download .single__widgets {
  margin-bottom: 30px;
}

.single__widgets {
  background: var(--widget_background);
  border: var(--widget_border);
  border-radius: var(--widget_border_radius);
  -webkit-box-shadow: var(--widget_box_shadow);
          box-shadow: var(--widget_box_shadow);
  color: var(--widget_color);
  margin-bottom: var(--widget_margin);
  padding: var(--widget_padding);
  position: relative;
}

.single__widgets:last-child {
  margin: 0;
}

.single__widgets:before {
  width: 0%;
  height: 4px;
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  background: var(--theme_gradient);
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.single__widgets:hover:before {
  width: 0%;
}

.single__widgets ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.single__widgets h3 {
  font-size: 20px;
  margin-bottom: 30px;
  position: relative;
  text-transform: capitalize;
  padding: 0;
  line-height: 1;
}

.single__widgets h4 {
  font-size: 20px;
  margin-bottom: 40px;
  text-align: center;
}

.single__widgets h3:before {
  width: 3px;
  height: 18px;
  background: var(--theme_main_background);
  content: "";
  display: inline-block;
  z-index: 1;
  margin-right: 20px;
  position: relative;
  top: 2px;
}

/* .single__widgets h3:after {
    bottom: 5px;
    position: relative;
    width: 35px;
    height: 4px;
    background: v(  theme_main_background  );
    content: "";
    display: inline-block;
    margin-left: 10px;
    border-radius: 5px;
} */
/*----------------------
    ABOUT
-----------------------*/
.widget_about {
  text-align: center;
}
.widget_about img {
  margin: 0 auto 30px;
  width: 140px;
}
.widget_about .about__widget__content h4 {
  font-size: 18px;
  margin-bottom: 20px;
}
.widget_about .social-bookmark {
  margin-top: 30px;
}
.widget_about .social-bookmark li a {
  display: inline-block;
  width: 40px;
  color: #b3bed3;
}
.widget_about .social-bookmark li a.facebook:hover {
  color: #3b5999;
}
.widget_about .social-bookmark li a.twitter:hover {
  color: #55acee;
}
.widget_about .social-bookmark li a.google-plus:hover {
  color: #dd4b39;
}
.widget_about .social-bookmark li a.youtube:hover {
  color: #cd201f;
}
.widget_about .social-bookmark li a.linkedin:hover {
  color: #0077B5;
}
.widget_about .social-bookmark li a.instagram:hover {
  color: #e4405f;
}

/*----------------------
    SEARCH
-----------------------*/
.single__widgets .search-form {
  background: var(--theme_soft_color_and_bg);
  height: 60px;
  padding: 20px;
  position: relative;
  width: 100%;
  border-radius: 5px;
  overflow: hidden;
  margin-bottom: -8px;
}

.single__widgets .search-form input {
  background: rgba(0, 0, 0, 0);
  border: 0 none;
  height: 100%;
  left: 0;
  padding: 20px;
  position: absolute;
  top: 0;
  width: calc(100% - 60px);
}

.single__widgets .search-form button {
  background: var(--theme_main_background);
  border: 0 none;
  border-radius: 0;
  color: var(--white_color);
  height: 60px;
  position: absolute;
  right: 0;
  top: 0;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  width: 60px;
}

.single__widgets .search-form button:hover {
  background: var(--theme_main_background);
  color: var(--white_color);
}

/*---------------------
    CATEGORIES / PAGES / MENU / ARCHIVE
---------------------*/
.widget_archive ul li:first-child,
.widget_categories ul li:first-child,
.widget_pages ul li:first-child,
.widget_nav_menu ul li:first-child {
  border: 0 none;
}

.widget_archive ul li li,
.widget_categories ul li li,
.widget_pages ul li li,
.widget_nav_menu ul li li {
  border: 0 none;
}

.widget_archive ul li a,
.widget_categories ul li a,
.widget_pages ul li a,
.widget_nav_menu ul li a {
  display: block;
  padding: 5px 0 5px 0;
  position: relative;
  margin-bottom: 10px;
  text-transform: capitalize;
  line-height: 1.3;
  position: relative;
}

.widget_archive > ul > li:last-child a,
.widget_categories > ul > li:last-child a,
.widget_pages > ul > li:last-child a,
.widget_nav_menu > ul > li:last-child a {
  margin-bottom: 0;
  padding-bottom: 0;
}

.widget_archive ul li a:before,
.widget_categories ul li a:before {
  content: "";
  background: url(../img/right__arrow.png) no-repeat scroll center center;
  width: 30px;
  height: 10px;
  display: inline-block;
  position: relative;
  margin-right: 10px;
  -webkit-filter: grayscale(1);
  filter: grayscale(1);
}

.widget_archive ul li a:hover,
.widget_categories ul li a:hover,
.widget_pages ul li a:hover,
.widget_nav_menu ul li a:hover {
  color: var(--theme_main_color);
}

.widget_archive ul li a span,
.widget_categories ul li a span,
.widget_pages ul li a span,
.widget_nav_menu ul li a span {
  font-size: 13px;
  text-align: center;
  /* background: v(  white_background  );
  color: v( body_dark_color ); */
  height: calc(100% - 2px);
  position: absolute;
  right: 1px;
  top: 1px;
  width: 50px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  border-radius: 50px 0 0 50px;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.widget_archive ul li a span:before,
.widget_categories ul li a span:before,
.widget_pages ul li a span:before,
.widget_nav_menu ul li a span:before {
  content: "(";
}

.widget_archive ul li a span:after,
.widget_categories ul li a span:after,
.widget_pages ul li a span:after,
.widget_nav_menu ul li a span:after {
  content: ")";
}

/* --------------------
    EXTRAS
---------------------- */
.widget_pages ul li a,
.widget_nav_menu ul li a {
  margin: 0;
  background: transparent;
  height: inherit;
  padding: 10px 0;
  color: var(--body_dark_color);
  font-size: inherit;
}

.widget_pages ul li a:hover,
.widget_nav_menu ul li a:hover {
  color: var(--theme_main_color);
}

.widget_pages ul.children,
.widget_nav_menu ul.sub-menu {
  padding-left: 15px;
}

/*----------------------
    RECENT
-----------------------*/
.widget_recent_entries li {
  border-bottom: var(--theme_border);
  padding-bottom: 15px;
  margin-bottom: 15px;
}

.widget_recent_entries li:last-child {
  padding-bottom: 0;
  border-bottom: 0;
  margin-bottom: 0;
}

.widget_recent_entries li a {
  display: block;
  margin-bottom: 5px;
  font-weight: 500;
}

.widget_recent_entries li .post-date {
  display: block;
  font-size: 14px;
  letter-spacing: 0;
}

/*-----------------------
    RECENT WITH THUMB
------------------------*/
.widget_post_with_thumb li {
  margin-bottom: 20px;
  border-bottom: var(--theme_border);
  padding-bottom: 20px;
  overflow: hidden;
}

.widget_post_with_thumb li:last-child {
  border-bottom: 0;
  margin-bottom: 0;
  padding-bottom: 0;
}

.widget_post_with_thumb li img {
  -webkit-box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  height: 80px;
  width: 110px;
  float: left;
  margin-right: 20px;
  border-radius: 5px;
}

.widget_post_with_thumb li a {
  font-weight: 500;
  display: block;
  margin-bottom: 5px;
  line-height: 1.5;
  font-family: "Barlow Condensed";
  font-size: 20px;
}

.widget_post_with_thumb li .post-date {
  display: block;
  font-size: 14px;
  letter-spacing: 0;
}

.widget_post_with_thumb li .post-date i {
  margin-right: 5px;
}

/*-----------------------
    RECENT COMMENTS
-------------------------*/
.widget_recent_comments li {
  border-bottom: var(--theme_border);
  padding-bottom: 15px;
  margin-bottom: 15px;
}

.widget_recent_comments li:last-child {
  padding-bottom: 0;
  border-bottom: 0;
  margin-bottom: 0;
}

.widget_recent_comments li span {
  display: block;
}

.widget_recent_comments li span {
  font-weight: 700;
  font-size: 14px;
}

.widget_recent_comments li a {
  display: block;
  margin-bottom: 5px;
}

.widget_recent_comments li > a {
  font-weight: 500;
  display: inline-block;
}

.widget_recent_comments li .post-date {
  font-size: 14px;
}

/*---------------------
    INSTAGRAM OR GALLEY
-----------------------*/
.widget_instagram {
  overflow: hidden;
}

.widget_instagram li {
  float: left;
  padding: 5px;
  width: 33.33%;
}

.widget_instagram li img {
  border-radius: 0;
}

.widget_instagram ul {
  margin-left: -5px;
  margin-right: -5px;
}

ul.instagram {
  margin: 0;
  padding: 0;
  list-style: none;
}

ul.instagram li {
  width: 33.33%;
  float: left;
  padding: 2.5px;
}

/*---------------------
    POST SHARE
-----------------------*/
.widget_social_profile li {
  display: inline-block;
}

.widget_social_profile li a {
  display: block;
  height: 40px;
  margin: 0 5px;
  padding-top: 8px;
  text-align: center;
  width: 40px;
  border: 1px solid var(--theme_border_color);
  color: var(--theme_main_color);
  padding-top: 6px;
}

.widget_social_profile li a:hover {
  background: var(--theme_main_background);
  border-color: var(--theme_main_color);
  color: var(--white_color);
}

/*-------------------
    TAGCLOUD
--------------------*/
.tagcloud a {
  background: var(--white_background);
  border: var(--theme_border);
  display: inline-block;
  font-size: 16px !important;
  margin: 5px;
  padding: 6px 10px;
}

.tagcloud a:hover {
  background: var(--theme_main_background);
  border-color: var(--theme_main_color);
  color: var(--white_color);
}

/*-----------------------
    CALENDAR
------------------------*/
#wp-calendar {
  margin: 0;
  width: 100%;
}

#wp-calendar > caption {
  background: var(--theme_main_background);
  background: var(--theme_gradient);
  color: var(--white_color);
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 2px;
  caption-side: top;
}

#wp-calendar th {
  background: var(--theme_soft_color_and_bg);
  padding: 5px 0;
  text-align: center;
  color: var(--body_dark_color);
  font-size: 14px;
}

#wp-calendar tfoot td {
  border: medium none;
  padding-top: 5px;
}

#wp-calendar tfoot td#next {
  text-align: right;
}

#wp-calendar tbody td {
  border: var(--theme_border);
  padding: 5px 0;
  text-align: center;
}

#wp-calendar tbody td a {
  position: relative;
}

#wp-calendar tbody td a:before {
  background: var(--theme_soft_color_and_bg);
  content: "";
  position: absolute;
  z-index: -1;
  left: 0;
  margin: 0;
  top: 0;
  width: 100%;
  border-radius: 50%;
  height: 100%;
}

#wp-calendar tbody td#today {
  border: 1px solid var(--theme_border_color);
}

#wp-calendar tfoot tr {
  border: var(--theme_border);
}

#wp-calendar tfoot tr td {
  padding: 10px;
  padding-bottom: 5px;
  padding-top: 5px;
}

#wp-calendar tbody td#today {
  position: relative;
}

#wp-calendar tbody td#today:before {
  height: calc(100% + 2px);
  width: calc(100% + 2px);
  position: absolute;
  left: -1px;
  top: -1px;
  content: "";
  z-index: 1;
  border-top: 1px solid var(--theme_border_color);
  border-left: 1px solid var(--theme_border_color);
}

.footer__area #wp-calendar tbody td a:before {
  display: none;
}

/*-----------------------
    RSS
------------------------*/
.widget_rss li {
  margin-bottom: 20px;
  border-bottom: var(--theme_border);
  padding-bottom: 20px;
}

.widget_rss li:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: 0;
}

.widget_rss li a {
  font-weight: 500;
}

.widget_rss li .rss-date {
  display: block;
  margin-bottom: 10px;
  font-size: 14px;
  color: var(--theme_main_color);
}

.widget_rss li cite {
  color: var(--body_dark_color);
  letter-spacing: 1px;
  margin-top: 5px;
  display: block;
}

.widget_rss li cite:before {
  display: inline-block;
  width: 20px;
  height: 2px;
  background: var(--theme_main_background);
  content: "";
  position: relative;
  top: -5px;
  margin-right: 10px;
}

/*-----------------------
    TEXT
------------------------*/
.widget_text p {
  margin-bottom: 20px;
}

/*-----------------------
    META
------------------------*/
.widget_meta ul li li {
  border: 0 none;
}

.widget_meta ul li a {
  display: block;
  margin-bottom: 10px;
  padding: 3px 0 3px 0px;
  position: relative;
}

.widget_meta ul li:last-child a {
  margin-bottom: 0;
}

.widget_meta ul li a:before {
  font-family: "themify";
  position: relative;
  display: inline-block;
  font-size: 14px;
  margin-right: 10px;
}

.widget_meta > ul > li:first-child a:before {
  content: "";
}

.widget_meta > ul > li:nth-child(2) a:before {
  content: "";
}

.widget_meta > ul > li:nth-child(3) a:before {
  content: "";
}

.widget_meta > ul > li:nth-child(4) a:before {
  content: "";
}

.widget_meta > ul > li:last-child a:before {
  content: "";
}

/*-----------------------
    BARNER
------------------------*/
.single__widgets.widget_banner {
  padding: 0;
}

/* -----------------------
    CONTACT WIDGET
------------------------- */
.contact_widget p {
  margin-bottom: 10px;
}

.contact_widget p:last-child {
  margin-bottom: 0;
}

.contact_widget .fa {
  margin-right: 10px;
}

.contact_widget i {
  bottom: -3px;
  font-size: 20px;
  margin-right: 10px;
  position: relative;
}

/*-------------------------
    MEDIA GALLERY WIDGET
--------------------------*/
.widget_media_gallery figure img {
  border: var(--theme_border);
  border-radius: 3px;
}

.widget_media_gallery figure > div {
  padding: 5px;
}

/* -------------------------
    WIDGET SUBSCRIBER
-------------------------- */
.widget_mailchimp_subscribe .subscriber-form-group {
  height: 60px;
  position: relative;
  background: var(--theme_soft_color_and_bg);
}

.widget_mailchimp_subscribe input {
  left: 0;
  padding-right: 110px;
  position: absolute;
  top: 0;
  height: 100%;
  padding: 10px 20px;
  background: transparent;
  border: 0 !important;
  border-radius: 0 !important;
}

.widget_mailchimp_subscribe button {
  background: var(--theme_main_background);
  border: 0 none;
  color: var(--white_color);
  height: 100%;
  padding: 10px;
  position: absolute;
  right: 0;
  top: 0;
  min-width: 60px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  border-radius: 0 !important;
}

.widget_mailchimp_subscribe button:hover {
  background: var(--theme_main_background);
  color: var(--white_color);
}

.widget_mailchimp_subscribe .subscrier_msg {
  text-align: center;
  width: 100%;
  display: none;
}

.widget_mailchimp_subscribe .subscrier_msg.valid {
  position: absolute;
  left: 0;
}

/*==========================
    GUTENBERG CSS
===========================*/
/*==========================
    FEATURES CSS
===========================*/
/*==========================
    FEATURES LISTS
============================*/
/*
Custom Cursor Effect
----------------------*/
.custom__cursor__effect {
  z-index: 9;
}
.custom__cursor__effect .cursor__inner {
  z-index: 9999;
  pointer-events: none;
  position: absolute;
  top: 0;
  left: 0;
  mix-blend-mode: difference;
  border-radius: 50%;
}
.custom__cursor__effect .cursor__inner.cursor__inner--dot {
  width: 6px;
  height: 6px;
  background: var(--white_background);
}
.custom__cursor__effect .cursor__inner.cursor__inner--circle {
  width: 20px;
  height: 20px;
  border: 1px solid var(--white_color);
}
.custom__cursor__effect.cursor__dot__only .cursor__inner--dot {
  width: 10px;
  height: 10px;
}
.custom__cursor__effect.cursor__dot__only .cursor__inner--circle {
  display: none;
}
.custom__cursor__effect.cursor__circle__only .cursor__inner--dot {
  display: none;
}
.custom__cursor__effect.cursor__circle__with__bg .cursor__inner--dot {
  display: none;
}
.custom__cursor__effect.cursor__circle__with__bg .cursor__inner--circle {
  background: var(--theme_soft_color_and_bg);
  mix-blend-mode: soft-light;
  background-blend-mode: soft-light;
}
.custom__cursor__effect.cursor__circle__with__zoom .cursor__inner--dot {
  display: none;
}
.custom__cursor__effect.cursor__circle__zoom__with__hover .cursor__inner--dot {
  display: none;
}
.custom__cursor__effect.cursor__circle__zoom__with__hover .cursor__inner--circle {
  background: var(--white_background);
  background-blend-mode: difference;
  border: 0;
  opacity: 0.5;
}

@media screen and (max-width: 780px) {
  .custom__cursor__effect {
    visibility: hidden;
  }
}
/*
Custom Cursor Effect 2
----------------------*/
.be__custom__cursor__effect {
  z-index: 9;
}
.be__custom__cursor__effect .be__cursor__effect {
  position: fixed;
  left: 0;
  top: 0;
  pointer-events: none;
  border-radius: 50%;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  visibility: hidden;
}
.be__custom__cursor__effect .be__cursor__effect.cursor__inner__content {
  z-index: 1001;
  margin-left: -3px;
  margin-top: -3px;
  width: 6px;
  height: 6px;
  background: var(--black_color);
  -webkit-transition: width 0.3s ease-in-out, height 0.3s ease-in-out, margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
  transition: width 0.3s ease-in-out, height 0.3s ease-in-out, margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
}
.be__custom__cursor__effect .be__cursor__effect.cursor__inner__content.cursor__hover {
  margin-left: -40px;
  margin-top: -40px;
  width: 80px;
  height: 80px;
  background: var(--black_color);
  opacity: 0.3;
}
.be__custom__cursor__effect .be__cursor__effect.cursor__outer__content {
  z-index: 1000;
  margin-left: -15px;
  margin-top: -15px;
  width: 30px;
  height: 30px;
  border: 2px solid var(--black_color);
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  opacity: 0.5;
  -webkit-transition: all 0.08s ease-out;
  transition: all 0.08s ease-out;
}
.be__custom__cursor__effect .be__cursor__effect.cursor__outer__content.cursor__hover {
  opacity: 0;
}

/*
PRELOADER ONE
----------------------*/
.preeloader {
  background: var(--white_background);
  height: 100%;
  position: fixed;
  width: 100%;
  z-index: 999999;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.preeloader img,
.preeloader svg {
  max-width: 150px;
}
.preeloader.preloader__style__one img {
  max-width: inherit;
}
.preeloader .preloader-spinner {
  -webkit-animation: 1s ease-out 0s normal none infinite running pulsate;
  animation: 1s ease-out 0s normal none infinite running pulsate;
  border: 5px solid var(--body_dark_color);
  border-radius: 40px;
  display: block;
  height: 40px;
  left: 50%;
  margin: -20px 0 0 -20px;
  opacity: 0;
  position: fixed;
  top: 50%;
  width: 40px;
  z-index: 10;
}

@-webkit-keyframes pulsate {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.1);
    transform: scale(0.1);
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
  }
}
@keyframes pulsate {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.1);
    transform: scale(0.1);
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
  }
}
/*
PORTFOLIO CAT
----------------------*/
.portfolio.type-portfolio {
  margin-bottom: 50px;
}
.portfolio.type-portfolio .post__item__details {
  padding: 30px;
  border: 2px solid var(--border_color);
}

/*
PRELOADER TWO
----------------------*/
.percent__preloader__wrap {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 99999;
  display: block;
  overflow: hidden;
}
.percent__preloader__wrap .percent_loader_overlay_top {
  z-index: 3000;
  left: 0;
  top: 0;
  width: 100%;
  height: 50%;
  position: fixed;
  background: var(--white_background);
  -webkit-transition: top 500ms ease-out;
  transition: top 500ms ease-out;
}
.percent__preloader__wrap .percent_loader_overlay_bottom {
  z-index: 3000;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 50%;
  position: fixed;
  background: var(--white_background);
  -webkit-transition: bottom 500ms ease-out;
  transition: bottom 500ms ease-out;
}
.percent__preloader__wrap .percent_loader_bar {
  z-index: 3001;
  height: 5px;
  width: 1%;
  background: var(--theme_main_background);
  position: absolute;
  top: 50%;
}
.percent__preloader__wrap .percent_loader_text {
  z-index: 3002;
  top: 50%;
  left: 50%;
  position: absolute;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

/*
SCROLL TO TOP
----------------------*/
.scrolltotop {
  background: var(--white_background);
  border-radius: 50%;
  bottom: 20px;
  -webkit-box-shadow: 0 16px 32px rgba(0, 0, 0, 0.2);
          box-shadow: 0 16px 32px rgba(0, 0, 0, 0.2);
  color: var(--theme_main_color);
  display: none;
  font-size: 20px;
  height: 45px;
  padding-top: 10px;
  position: fixed;
  right: 20px;
  text-align: center;
  width: 45px;
  z-index: 99;
}
.scrolltotop:hover {
  background: var(--white_background);
  color: var(--theme_main_color);
}
.scrolltotop:focus {
  background: var(--white_background);
  color: var(--theme_main_color);
}

/*
Progress Circle
----------------------*/
.progress__scrolltop__wrap {
  position: fixed;
  right: 50px;
  bottom: 50px;
  height: 46px;
  width: 46px;
  cursor: pointer;
  display: block;
  border-radius: 50px;
  -webkit-box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.2);
          box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.2);
  z-index: 9;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(15px);
          transform: translateY(15px);
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
  padding: 3px;
}
.progress__scrolltop__wrap.active__scrolltop__progress {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.progress__scrolltop__wrap::after {
  font-family: "fontawesome";
  content: "";
  position: absolute;
  text-align: center;
  line-height: 42px;
  font-size: 20px;
  color: var(--white_color);
  left: 0;
  top: 0;
  height: 46px;
  width: 46px;
  cursor: pointer;
  z-index: 1;
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
}
.progress__scrolltop__wrap.p__scroll__2::after {
  top: 5px;
  font-size: inherit;
  line-height: 30px;
  font-family: "themify";
  content: "";
  -webkit-animation: scrollup 1.5s infinite;
          animation: scrollup 1.5s infinite;
}
.progress__scrolltop__wrap::before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
  background: var(--dark_background);
  border-radius: 50%;
  z-index: -2;
}
.progress__scrolltop__wrap:hover::before {
  opacity: 1;
}
.progress__scrolltop__wrap svg path {
  fill: none;
}
.progress__scrolltop__wrap svg.scrolltop__progress__circle path {
  stroke: var(--white_color);
  stroke-width: 4;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
}

/*
Percent Scroll
----------------------*/
.percent__scroll__leftright {
  position: fixed;
  left: 0;
  bottom: 0;
  height: 4px;
  width: 0%;
  background: var(--theme_main_background);
  -webkit-transition: width 200ms ease;
  transition: width 200ms ease;
  text-align: right;
  color: var(--theme_main_color);
  font-size: 2em;
  z-index: 9;
}
.percent__scroll__leftright.top__progress {
  top: 0;
  bottom: auto;
}
.percent__scroll__leftright.bottom__progress {
  bottom: 0;
}
.percent__scroll__leftright span {
  position: absolute;
  top: -23px;
  right: 15px;
  font-size: 0.7em;
  font-weight: 500;
  display: block;
  text-align: center;
  white-space: nowrap;
}
.percent__scroll__leftright span::after {
  content: "%";
  font-size: 0.8em;
  position: absolute;
  right: -15px;
  bottom: 0;
  font-weight: 700;
  opacity: 0.6;
}

.percent__scroll__topbottom {
  background-blend-mode: difference;
  mix-blend-mode: difference;
  position: fixed;
  top: 0;
  right: 0;
  height: 0%;
  width: 5px;
  background: var(--theme_main_background);
  -webkit-transition: height 200ms ease;
  transition: height 200ms ease;
  text-align: right;
  color: var(--theme_main_color);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 2em;
  z-index: 99991;
}
.percent__scroll__topbottom span {
  position: absolute;
  bottom: 3px;
  left: 2px;
  font-size: 0.7em;
  font-weight: 500;
  display: inline-block;
  text-align: left;
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
  -webkit-transform-origin: bottom left;
          transform-origin: bottom left;
  white-space: nowrap;
}
.percent__scroll__topbottom span::after {
  content: "%";
  font-size: 0.8em;
  position: absolute;
  right: -15px;
  bottom: 0;
  font-weight: 700;
  opacity: 0.6;
}

/*==========================
    FOOTERS CSS
===========================*/
/*
Footer Area
----------------------*/
.footer__area {
  position: relative;
  z-index: -1;
  color: var(--footer_top_color);
}
.footer__area a {
  color: var(--footer_top_link_color);
}
.footer__area a:hover {
  color: var(--footer_top_link_hover_color);
}
.footer__area .footer__area__bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: var(--footer_background);
}
.footer__area .footer__area__bg:after {
  position: absolute;
  left: 0;
  top: 0;
  content: "";
  width: 100%;
  height: 100%;
}
.footer__area .footer__bottom {
  position: relative;
  border-top: 2px solid rgba(121, 113, 175, 0.1);
  padding: 30px 0;
}
.footer__area .footer__bottom .footer__bottom__bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.footer__area .footer__bottom .footer-logo {
  margin-bottom: 35px;
}

/*
Footer Social
----------------------*/
.footer__area .social__profiles ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer__area .social__profiles ul li {
  display: inline-block;
}

.footer__area .social__profiles ul li a {
  display: block;
  width: 40px;
  height: 40px;
  line-height: 2.4;
  border: 2px solid;
  border-radius: 50%;
  margin: 0 5px;
  text-align: center;
}

/*
Footer Copyright Social
----------------------*/
.footer__area .footer__bottom .social__profiles ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer__area .footer__bottom .social__profiles ul li {
  display: inline-block;
}

.footer__area .footer__bottom .social__profiles ul li a {
  display: block;
  width: 40px;
  height: 40px;
  line-height: 2.4;
  border: 0;
  border-radius: 50%;
  text-align: center;
  font-size: 16px;
  margin: 0;
  padding-top: 3px;
}

/*
Footer Menu
----------------------*/
.footer_menu {
  text-align: right;
}

.footer_menu ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer_menu ul li {
  display: inline-block;
  position: relative;
  margin-right: 20px;
}

.footer_menu ul li a {
  display: block;
}

.footer_menu ul li:after {
  width: 2px;
  height: 15px;
  background: var(--white_background);
  content: "";
  top: 5px;
  bottom: 0;
  right: -14px;
  -webkit-transform: rotate(15deg);
          transform: rotate(15deg);
  position: absolute;
  opacity: 0.3;
  display: none;
}

.footer_menu ul li:last-child {
  margin: 0;
}

.footer_menu ul li:last-child:after {
  display: none;
}

@media only screen and (max-width: 991px) {
  .footer-logo {
    text-align: center;
  }

  .footer_menu {
    text-align: center;
    margin-bottom: 19px;
  }

  .footer-copyright {
    margin-bottom: 20px;
  }
}
/* --------------------------
    BLOG PAGE FOOTER
---------------------------*/
.footer__area .single__widgets {
  background: var(--footer_widget_background);
  border: var(--footer_widget_border);
  border-radius: var(--footer_widget_border_radius);
  -webkit-box-shadow: var(--footer_widget_box_shadow);
          box-shadow: var(--footer_widget_box_shadow);
  color: var(--footer_widget_color);
  margin-bottom: var(--footer_widget_margin);
  padding: var(--footer_widget_padding);
}

/*
    .footer__area .single__widgets:last-child{
        margin-bottom: 0;
    }
*/
.footer__area .single__widgets h3 {
  text-align: left;
  line-height: 1;
  color: var(--white_color);
}

.footer__area .single__widgets h3:after {
  display: none;
}

.footer__area .single__widgets ul {
  list-style: outside none none;
  margin: 0;
  padding: 0;
}

.footer__area .single__widgets ul li a {
  display: block;
}

.footer__area .widget_social_profile {
  text-align: inherit;
}

.footer__area .widget_social_profile ul li {
  display: inline-block;
}

/* --------------------------
    FOOTER WIDGETS
----------------------------- */
.widget ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer__area .nice-select {
  color: var(--theme_soft_dark_color_and_bg);
}

.footer__area .single__widgets .sbSelector {
  color: var(--body_dark_background);
}

.footer__area .single__widgets .sbHolder ul li a {
  background: var(--white_background);
  border-color: var(--border_color);
  color: var(--theme_soft_dark_color_and_bg) !important;
}

.footer__area .single__widgets .sbHolder ul li a:hover {
  color: var(--theme_main_color);
}

.footer__area .sbOptions a:hover {
  color: var(--theme_main_color);
}

.footer__area .sbHolder ul li a {
  background: inherit;
}

/* ---------------
    WIDGET RSS
------------------ */
.footer__area .widget_rss li {
  border-color: var(--theme_soft_dark_color_and_bg);
}
.footer__area .widget_rss li .rss-date {
  font-size: 12px;
  color: var(--white_color);
}
.footer__area .widget_rss li cite {
  color: var(--white_color);
}
.footer__area .widget_rss li cite:before {
  background: var(--white_background);
}

/* --------------------------
MENU / PAGES / META / ARCHIVE
----------------------------*/
.footer__area .widget_nav_menu ul.sub-menu,
.footer__area .widget_pages ul.children {
  padding-left: 15px;
}

.footer__area .tagcloud a,
.footer__area .widget_meta ul li a,
.footer__area .widget_archive ul li a,
.footer__area .widget_categories ul li a,
.footer__area .widget_pages ul li a,
.footer__area .widget_nav_menu ul li a {
  border: inherit;
}

.footer__area .tagcloud a {
  background: var(--theme_soft_dark_color_and_bg);
  border-color: var(--theme_soft_dark_color_and_bg);
}

.footer__area .widget_archive ul li a:before,
.footer__area .widget_categories ul li a:before {
  -webkit-filter: brightness(100);
  filter: brightness(100);
}

.footer__area .widget_archive ul li a:hover,
.footer__area .widget_categories ul li a:hover {
  color: var(--white_color);
}

.footer__area .tagcloud a:hover {
  background: var(--white_background);
  border-color: var(--white_color);
  color: var(--theme_main_color);
}

.footer__area .widget_pages ul li,
.footer__area .widget_nav_menu ul li {
  margin-bottom: 0;
}

.footer__area .widget_pages ul li a,
.footer__area .widget_nav_menu ul li a {
  background: transparent;
  padding: 0;
  height: auto;
  text-transform: capitalize;
  position: relative;
  margin-bottom: 15px;
  color: #b9c9ff;
}

.footer__area .widget_pages ul li a:hover,
.footer__area .widget_nav_menu ul li a:hover {
  color: var(--white_color);
}

.widget_pages ul li a:before,
.widget_nav_menu ul li a:before,
.footer__area .widget_pages ul li a:before,
.footer__area .widget_nav_menu ul li a:before {
  display: inline-block;
  content: "...";
  top: -4px;
  position: relative;
  margin-right: 10px;
  opacity: 0.5;
  font-size: 20px;
  line-height: 1;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.footer__area .widget_pages ul li a:hover:before,
.footer__area .widget_nav_menu ul li a:hover:before {
  opacity: 1;
}

/* -------------------
    WIDGET CONTACT
---------------------- */
.footer__area .contact_widget {
  font-size: 18px;
  text-transform: capitalize;
}

/* ------------------
    COMMENTS
--------------------- */
.footer__area .widget_recent_comments li {
  border-color: var(--theme_soft_dark_color_and_bg);
}
.footer__area .widget_recent_comments li > a {
  display: inline-block !important;
}

/* -------------------
    POST WITH THUMB
-------------------- */
.footer__area .single__widgets.widget_post_with_thumb li {
  border: 0;
  padding: 0;
  margin-bottom: 30px;
}
.footer__area .single__widgets.widget_post_with_thumb li:last-child {
  margin-bottom: 0;
}
.footer__area .widget_post_with_thumb li img {
  border-radius: 50%;
}
.footer__area .widget_post_with_thumb li a {
  font-size: 18px;
  text-transform: capitalize;
  letter-spacing: inherit;
  color: var(--white_color);
}
.footer__area .widget_post_with_thumb li a:hover {
  color: var(--theme_soft_dark_color_and_bg);
}
.footer__area .single__widgets ul li .post-date {
  font-size: 12px;
  letter-spacing: unset;
  color: var(--theme_main_color);
  text-transform: uppercase;
}

/* --------------------
    WIDGET SUBSCRIBER
----------------------- */
.footer__area .widget_mailchimp_subscribe {
  overflow: hidden;
}
.footer__area .widget_mailchimp_subscribe input {
  background: rgba(0, 0, 0, 0);
  border-radius: 50px 0 0 50px;
  -webkit-box-shadow: 0 0 0 rgba(0, 0, 0, 0);
          box-shadow: 0 0 0 rgba(0, 0, 0, 0);
  border: 2px solid var(--border_color);
  border-radius: 5px;
}
.footer__area .widget_mailchimp_subscribe button {
  background: var(--theme_main_background);
  border: 0 none;
  border-radius: 5px;
  color: var(--white_color);
  font-weight: 600;
  height: calc(100% + 4px);
  letter-spacing: 1px;
  right: -2px;
  text-transform: uppercase;
  top: -2px;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  width: auto;
  padding: 10px 20px;
}
.footer__area .widget_mailchimp_subscribe button:hover {
  background: var(--white_background);
  color: var(--theme_main_color);
}
.footer__area .widget_mailchimp_subscribe .subscrier_msg {
  display: none;
  overflow: hidden;
  position: inherit;
}
.footer__area .widget_mailchimp_subscribe .subscrier_msg.error {
  display: block;
}
.footer__area .widget_mailchimp_subscribe .subscrier_msg.valid {
  display: block;
  overflow: hidden;
  position: inherit;
}

/* ---------------------
    FOOTER SOCIAL WIDGET
---------------------- */
.footer__area .social_widget li a {
  border: 2px solid var(--border_color);
  border-radius: 50px;
  color: var(--white_color);
  display: block;
  font-size: 16px;
  height: 40px;
  margin: 0 5px 0 0;
  padding-top: 8px;
  text-align: center;
  width: 40px;
}
.footer__area .social_widget li a.facebook:hover, .footer__area .social_widget li a.twitter:hover, .footer__area .social_widget li a.google-plus:hover, .footer__area .social_widget li a.pinterest:hover, .footer__area .social_widget li a.instagram:hover {
  background: var(--white_background);
  border-color: var(--white_color);
  color: var(--theme_main_color);
}

/*==========================
    OVERWRITES CSS
===========================*/
/*
Counter Class
---------------------*/
.font10 {
  font-size: 10px;
}

.font20 {
  font-size: 20px;
}

.font30 {
  font-size: 30px;
}

.font40 {
  font-size: 40px;
}

.font50 {
  font-size: 50px;
}

.font60 {
  font-size: 60px;
}

/*
Nav Bar Bootstrap 4 Compitable
---------------------*/
.header__top__area .navbar {
  border-bottom: 0 none;
  border-top: 0 none;
  margin-bottom: 0;
}

.header__top__area .navbar {
  padding: 0;
}

.header__top__area .navbar > .container {
  display: block;
}

ul#nav {
  float: right;
  display: initial;
  -webkit-box-orient: initial;
  -webkit-box-direction: initial;
      -ms-flex-direction: initial;
          flex-direction: initial;
}

@media only screen and (max-width: 1023px) {
  .mainmenu__area .col-md-12.flex-v-center {
    display: block;
  }

  .mainmenu__area .navbar-header {
    width: 100%;
    z-index: 9;
  }
}
/*
Menu Container
---------------------*/
.container.container__full,
.header__top__area .navbar > .container.container__full {
  width: 95%;
  max-width: 1600px;
}

@media only screen and (min-width: 1920px) {
  .container.container__full,
.header__top__area .navbar > .container.container__full {
    width: 90%;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .container.container__full,
.header__top__area .navbar > .container.container__full {
    width: 100%;
  }
}
/*# sourceMappingURL=components.css.map */