/*
TABLE OF CONTENTS
1.	Reset
2.	Layouts
3.	Header
4.	Page Title
5.	Footer
6.	Blog Layout
	6.1 Style 1
	6.2 Style 2
	6.3 Style 3
	6.4 Style 4
	6.5 Style 5
	6.6 Style 6
	6.7 Style 7
	6.8 Post Formats
	6.9 Single Post
	6.10 Post Navigation
	6.11 Author Template
7.	Comments
8.	Typography
9.	WordPress Defaults
10.	Forms
11.	Widgets
12. Language Switcher
13. Back To Top Button
14. Global Buttons
15.	Pagination
16. Page Loaders
17. Helper Classes
18. Media Queries
*/

/**
 * CSS Reset
 */
html {
  box-sizing: border-box;
}
*,
*:before,
*:after {
  box-sizing: inherit;
}

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
font,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
  word-wrap: break-word;
  -ms-word-wrap: break-word;
}

html {
  font-size: 100%;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

body {
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
ol,
ul {
  list-style: none;
}
blockquote,
q {
  quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

:focus {
  outline: 0;
}

ins {
  text-decoration: none;
}
del {
  text-decoration: line-through;
}

/* tables still need 'cellspacing="0"' in the markup */
table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
  table-layout: fixed;
}
td {
  vertical-align: top;
}

img {
  max-width: 100%;
  border: 0;
  -ms-interpolation-mode: bicubic;
  vertical-align: middle;
  height: auto;
}

svg:not(:root) {
  overflow: hidden;
}

figure {
  margin: 0;
}

.chromeframe {
  margin: 0.2em 0;
  background: #ccc;
  color: black;
  padding: 0.2em 0;
}

::selection {
  background: rgb(0, 0, 0);
  color: #fff;
}
::-moz-selection {
  background: rgb(255, 255, 158);
}
img::selection {
  background: transparent;
}
img::-moz-selection {
  background: transparent;
}

/** HTML Display Definitions */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
nav,
section {
  display: block;
}
audio,
canvas,
video {
  display: inline-block;
  *display: inline;
  *zoom: 1;
}
audio:not([controls]) {
  display: none;
}
[hidden] {
  display: none;
}

/**
 * Layouts
 */

/** Global */
html.hide-overflow {
  overflow: hidden !important;
}

html.show-overflow {
  overflow-y: scroll;
}
.emb-img-object-fit {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.emb-archive-content-pad {
  padding: 80px 0;
}

.be-row {
  display: flex;
  align-items: flex-start;
}

.be-col {
  flex: 0 0 auto;
  padding: 0 15px;
  width: 33.33%;
  box-sizing: border-box;
  margin-bottom: 30px;
}

.be-themes-content-padding > :last-child {
  margin-bottom: 0;
}

/** Grid Layout */
.be-grid {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
}
.be-grid[data-layout="metro"],
.be-grid[data-layout="masonry"] {
  visibility: hidden;
}
.be-grid.be-grid-initialized {
  visibility: visible;
}

.be-col {
  flex: 0 0 auto;
  padding: 0 15px;
  width: 33.33%;
  box-sizing: border-box;
  margin-bottom: 30px;
}
.be-cols-2 .be-col {
  width: 50%;
}
.be-cols-2 .be-double-width-height-cell,
.be-cols-2 .be-double-width-cell {
  width: 100%;
}

.be-cols-3 .be-col {
  width: 33.33%;
}
.be-cols-3 .be-double-width-height-cell,
.be-cols-3 .be-double-width-cell {
  width: 66.66%;
}

.be-cols-4 .be-col {
  width: 25%;
}
.be-cols-4 .be-double-width-height-cell,
.be-cols-4 .be-double-width-cell {
  width: 50%;
}

.be-cols-5 .be-col {
  width: 20%;
}
.be-cols-5 .be-double-width-height-cell,
.be-cols-5 .be-double-width-cell {
  width: 40%;
}

.be-cols-6 .be-col {
  width: 16.66%;
}
.be-cols-6 .be-double-width-height-cell,
.be-cols-6 .be-double-width-cell {
  width: 33.32%;
}

.be-lazy-load {
  opacity: 0;
  transition: opacity 0.5s;
}
.be-lazy-loaded {
  opacity: 1;
}

.be-col-hide {
  opacity: 0;
  transform: translate3d(0, 100px, 0);
}
.be-col-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition: opacity 0.5s;
}

/** Gutter */
.be-grid-gutter-tiny {
  margin: 0 -5px;
}
.be-grid-with-margin.be-grid-gutter-tiny {
  margin: 0;
  padding: 0 5px;
}
.be-grid-gutter-tiny .be-col {
  padding: 0 5px;
  margin-bottom: 10px;
}

.be-grid-gutter-small {
  margin: 0 -10px;
}
.be-grid-with-margin.be-grid-gutter-small {
  margin: 0;
  padding: 0 10px;
}
.be-grid-gutter-small .be-col {
  padding: 0 10px;
  margin-bottom: 20px;
}

.be-grid-gutter-medium {
  margin: 0 -25px;
}
.be-grid-with-margin.be-grid-gutter-medium {
  margin: 0;
  padding: 0 25px;
}
.be-grid-gutter-medium .be-col {
  padding: 0 25px;
  margin-bottom: 50px;
}

.be-grid-gutter-large {
  margin: 0 -35px;
}
.be-grid-with-margin.be-grid-gutter-large {
  margin: 0;
  padding: 0 35px;
}
.be-grid-gutter-large .be-col {
  padding: 0 35px;
  margin-bottom: 70px;
}

/** content Wrapper */
.emb-wrap {
  max-width: 1160px;
  margin: 0 auto;
}

/** Sidebar layout */
.be-row-wrap > .be-sidebar-layout {
  margin: 0 -30px;
}
.be-row-wrap > .be-sidebar-with-margin {
  margin: 0;
  padding: 0 30px;
}
.be-sidebar-left {
  flex-direction: row-reverse;
}
.be-sidebar-layout > * {
  padding: 0 30px;
}
.be-sidebar-layout > *:first-child {
  flex: 1 0 auto;
  width: 65%;
}
.be-sidebar-layout > *:last-child {
  flex: 0 0 auto;
  width: 35%;
  max-width: 340px;
}
.be-themes-content-padding {
  padding: 70px 0;
}

/** Slider */
.be-slider {
  visibility: hidden;
  position: relative;
}
.be-slide {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
}
.be-slider-with-shadow .be-slide {
  margin-bottom: 30px;
}
.be-slider-with-shadow .flickity-page-dots {
  bottom: 0;
}
.be-slide:first-child {
  position: relative;
}
.be-slide-lazy-load {
  opacity: 0;
  transition: opacity 0.3s;
}
.be-slide-lazy-load.flickity-lazyloaded {
  opacity: 1;
}
.be-slider-cols-2 .be-slide {
  width: 50%;
}
.be-slider-cols-3 .be-slide {
  width: 33.33%;
}
.be-slider-cols-4 .be-slide {
  width: 25%;
}
.be-slider-cols-5 .be-slide {
  width: 20%;
}
.be-slider-cols-6 .be-slide {
  width: 16.66%;
}
.be-equal-height-slider .be-slide-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.be-slider.flickity-enabled {
  visibility: visible;
}
.be-slider[data-dots="1"] .flickity-viewport {
  margin-bottom: 30px;
}
.emb-posts-loop .be-slider[data-dots="1"] .flickity-viewport {
  margin-bottom: 0;
}
.be-slider .flickity-page-dots {
  left: 0;
}
.be-slider .flickity-page-dots .dot {
  width: 7px;
  height: 7px;
}
.be-slider .flickity-prev-next-button {
  padding: 0;
  background: transparent;
  width: 25px;
  height: 25px;
  transition: all 0.3s;
}
.be-slider .flickity-button-icon {
  fill: #979797;
}
.be-slider .flickity-button:hover {
  background: transparent;
}
.be-slider .flickity-button:focus {
  outline: none;
  box-shadow: none;
}
.be-slider .flickity-prev-next-button.next {
  right: 0;
  opacity: 0;
}
.be-slider:hover .flickity-prev-next-button.next {
  right: 15px;
  opacity: 1;
}
.be-slider .flickity-prev-next-button.previous {
  left: 0;
  opacity: 0;
}
.be-slider:hover .flickity-prev-next-button.previous {
  left: 15px;
  opacity: 1;
}
.be-slider .flickity-button:focus {
  outline: none;
  box-shadow: none;
}
.be-slider-hide-nav .flickity-prev-next-button,
.be-slider-hide-nav .flickity-page-dots {
  display: none;
}

.emb-slider {
  position: relative;
  visibility: hidden;
  display: block;
}
.emb-slider-initialized {
  visibility: visible;
}
.emb-slide {
  position: absolute;
  top: 0;
  left: 0;
  margin-bottom: 0;
}
.emb-slide:first-child {
  position: relative;
}
.emb-slider-initialized .emb-slide {
  position: relative;
}

/**
 * Header
 */
.tp-simpleresponsive > ul li {
  z-index: 1 !important;
}

.tatsu-frame #header {
  transform: translateZ(0px);
}

/** Exponent Header */
#exponent-header-container {
  position: relative;
}

.exponent-header {
  width: 100%;
  padding: 30px 0px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  border-style: solid;
  border-color: transparent;
}

.exponent-header-row {
  flex-basis: 100%;
  display: flex;
  align-items: stretch;
}

.exponent-wrap {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
}

.exponent-header-column {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.exponent-header-column.left {
  flex-basis: 25%;
  justify-content: flex-start;
}
.exponent-header-column.right {
  flex-basis: 75%;
  justify-content: flex-end;
}

.exponent-header-logo span {
  font-size: 28px;
  font-weight: 700;
  color: #313233;
  letter-spacing: 0.01em;
}

/* Main Menu Links */

.exponent-menu ul li {
  float: left;
  position: relative;
  margin-bottom: 0;
  line-height: 1.5;
}
.exponent-menu > ul > li {
  padding: 10px;
}

/* Sub Menu and Mega Menu */

.exponent-menu ul.exponent-sub-menu li {
  float: none;
}
.exponent-menu > ul > li:last-child {
  margin-right: 0px !important;
}
.exponent-menu ul.exponent-sub-menu > li > a {
  padding: 5px 5px;
}
.exponent-menu ul.exponent-sub-menu > li.menu-item-has-children > a {
  width: 70%;
}
.exponent-menu ul.exponent-sub-menu li a {
  display: inline-block;
}
.exponent-menu > ul > li ul.exponent-sub-menu {
  z-index: 10;
  padding: 15px;
  box-shadow: 0px 0px 24px 1px rgba(19, 24, 29, 0.12);
}
.exponent-menu ul.exponent-sub-menu {
  box-shadow: 0px 0px 24px 1px rgba(19, 24, 29, 0.12);
  border-radius: 4px;
  background-color: white;
}
.exponent-menu li:not(.mega-menu) .exponent-sub-menu {
  display: none;
  position: absolute;
  width: 200px;
  box-sizing: border-box;
}
.exponent-menu li.mega-menu > .exponent-sub-menu {
  display: none;
  position: absolute;
  flex-wrap: nowrap;
  width: auto;
  padding: 10px;
}
.exponent-menu li.mega-menu ul.exponent-sub-menu {
  border-radius: none;
  box-shadow: none;
}
.exponent-menu li.mega-menu.sfHover > .exponent-sub-menu {
  display: flex !important;
}
.exponent-menu li.mega-menu > .exponent-sub-menu li .exponent-sub-menu {
  display: block !important;
  position: static;
  padding: 0px;
}
.exponent-menu li.mega-menu .exponent-sub-menu li {
  width: 200px;
}
.exponent-menu li.mega-menu > ul.exponent-sub-menu > li {
  margin-right: 15px;
}
.exponent-menu li.mega-menu > ul.exponent-sub-menu > li:last-child {
  margin-right: 0px;
}
span.exponent-sub-menu-indicator {
  line-height: inherit;
  cursor: pointer;
  float: right;
  max-width: 40px;
  text-align: center;
}
.exponent-sub-menu-indicator svg {
  display: none;
}
.exponent-menu
  > ul
  > li.menu-item-has-children
  .exponent-sub-menu-indicator
  svg,
.tatsu-wpml-lang-switcher .exponent-sub-menu-indicator svg {
  display: inline-block;
  line-height: 1;
  vertical-align: middle;
  margin: 0px 0px 0px 7px;
  transition: all 100ms ease-in;
}
.exponent-menu
  .exponent-sub-menu
  li.menu-item-has-children
  .exponent-sub-menu-indicator
  svg {
  margin: 0px 0px 0px -15px;
}
.exponent-menu
  > ul
  > li:not(.mega-menu)
  > .exponent-sub-menu
  li.menu-item-has-children
  svg {
  transform: rotate(270deg);
}
.exponent-menu
  > ul
  > li.menu-item-has-children
  .exponent-sub-menu-indicator.menu-open
  svg {
  transform: rotate(180deg);
}
.exponent-menu .menu-highlight > a {
  color: #212121;
  font-weight: bold;
}
.exponent-menu li a {
  color: #313233;
}
/* Hide Indicator in Second Level Sub Menu in Mega Menu */

.tatsu-menu .mega-menu li .exponent-sub-menu-indicator svg {
  display: none !important;
}
.exponent-header-pointer {
  content: "";
  position: absolute;
  border-color: transparent;
  border-width: 1px 0px 0px 1px;
  border-style: solid;
  top: -8px;
  left: 15px;
  height: 15px;
  width: 15px;
  background: inherit;
  -webkit-transform: rotate(45deg);
}

/* Hide the pointer for secondary sub menus */

.exponent-sub-menu li .exponent-header-pointer {
  display: none !important;
}
.exponent-sub-menu .exponent-sub-menu {
  top: 15px !important;
}

/* Default Mobile Menu */

.exponent-mobile-navigation {
  display: none;
}
.exponent-mobile-navigation .exponent-mobile-menu {
  display: none;
  position: absolute;
  width: 100%;
  top: 100%;
  left: 0;
  background: #fbfbfb;
  padding: 15px;
  z-index: 10;
}
.exponent-mobile-menu ul,
.exponent-mobile-menu li {
  float: none;
  list-style: none;
  margin: 0px;
  padding: 0px;
}
.exponent-mobile-menu li a {
  color: #313233;
  padding: 5px;
  display: inline-block;
}
.exponent-mobile-menu .exponent-sub-menu {
  display: none;
  background: transparent !important;
  padding-left: 15px;
}
.exponent-mobile-menu .exponent-sub-menu-indicator {
  display: inline-block;
}

.exponent-mobile-menu
  li.menu-item-has-children
  .exponent-sub-menu-indicator
  svg {
  display: inline-block;
}
.exponent-mobile-menu .exponent-sub-menu-indicator.menu-open svg {
  transform: rotate(180deg);
}
.exponent-mobile-menu svg polyline {
  stroke: black;
}

/* Hamburger Menu */

.exponent-mobile-menu-icon {
  cursor: pointer;
  position: relative;
}

.exponent-mobile-menu-icon > span {
  display: block;
  background: #000;
  width: 27px;
  height: 2px;
  margin-bottom: 5px;
  transition: all 250ms linear;
}
.exponent-mobile-menu-icon > .line-4 {
  position: absolute;
  height: 100%;
  width: 27px;
  left: 0;
  top: 0;
  background: none;
}
.exponent-mobile-menu-icon.open .line-4 {
  height: 27px;
  top: -12px;
}
.exponent-mobile-menu-icon span:last-child {
  margin-bottom: 0;
}

.exponent-mobile-menu-icon.open {
  position: relative;
}
.exponent-mobile-menu-icon.open .line-1 {
  transform: rotate(-45deg);
  top: 0px;
}
.exponent-mobile-menu-icon.open .line-2 {
  display: none;
}
.exponent-mobile-menu-icon.open .line-3 {
  position: absolute;
  transform: rotate(45deg);
  top: 0px;
}

.be-password-protect-wrap {
  padding: 150px 0;
}

/**
 * Page Title
 */
.emb-title-breadcrumb-wrap > *:last-child {
  margin-bottom: 0;
}

.emb-post-entry-title-wrap > * {
  margin-bottom: 5px;
}
.emb-post-entry-title-wrap > *:last-child {
  margin-bottom: 0;
}
.emb-post-entry-title-wrap {
  margin-bottom: 15px;
}

.emb-entry-header {
  padding: 30px 10px;
  line-height: 1;
  font-size: 15px;
}

.emb-entry-header .be-row {
  text-align: center;
  align-items: center;
  justify-content: center;
}
.emb-entry-header .be-row > *:last-child {
  margin-bottom: 0;
}

.emb-breadcrumbs {
  line-height: 1.5;
}

.emb-breadcrumbs a {
  color: inherit;
  transition: color 0.5s;
}

/**
 * Footer
 */
#footer {
  padding: 20px 0;
  text-align: center;
}

/**
 * Blog Layout
 */
/** Featured Posts */
.emb-featured-posts .emb-posts-loop {
  margin-bottom: 0;
}

/** Related Posts */
.emb-related-posts {
  margin-bottom: 80px;
}

/** Archive Styles */
.emb-blog-archive-inner {
  padding: 80px 0;
}

.emb-post-thumb {
  overflow: hidden;
  position: relative;
}

.emb-post-thumb-inner {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.emb-post-categories {
  text-transform: uppercase;
  font-weight: bold;
  letter-spacing: 1px;
  line-height: normal;
  margin-bottom: -5px;
}
.emb-post-categories a {
  color: inherit;
  display: inline-block;
  margin-bottom: 5px;
}
.emb-post-categories-normal a {
  transition: color 0.2s;
}

.emb-post-categories-labeled a {
  transition: all 0.5s;
}

.emb-post-author-with-image {
  display: flex;
  align-items: center;
}
.emb-post-author-image {
  width: 24px;
  height: 24px;
  background: #32373d;
  border-radius: 50%;
  margin-right: 10px;
  overflow: hidden;
}
.emb-post-author-image .avatar {
  margin-bottom: 0;
}

.emb-post-views {
  display: flex;
}
.emb-post-views-icon {
  margin-right: 5px;
}

.emb-post-title {
  font-size: 26px;
  line-height: 35px;
  font-weight: 600;
}
.emb-post-title a {
  color: inherit;
  display: block;
  transition: color 0.2s;
  display: block;
}

.emb-post-title-meta > * {
  margin-bottom: 15px;
}
.emb-post-title-meta > *:last-child {
  margin-bottom: 0;
}

.emb-post-primary-meta {
  display: flex;
  align-items: center;
  font-size: 12px;
  line-height: 18px;
}
.emb-post-primary-meta > * {
  margin-right: 10px;
}
.emb-post-primary-meta > *:last-child {
  margin-right: 0;
}

.emb-post-secondary-meta {
  display: flex;
  align-items: center;
  font-size: 11px;
  line-height: 17px;
}
.emb-post-secondary-meta > * {
  margin-right: 10px;
}

.single .emb-post-secondary-meta > * {
  margin-right: 20px;
}

.emb-post-secondary-meta > *:last-child {
  margin-right: 0;
}

.emb-post-tertiary-meta {
  display: flex;
  align-items: center;
  font-size: 10px;
  line-height: 16px;
}
.emb-post-tertiary-meta > * {
  margin-right: 10px;
}
.emb-post-tertiary-meta > *:last-child {
  margin-right: 0;
}

.emb-posts-loop-align-center {
  text-align: center;
}
.emb-posts-loop-align-right {
  text-align: right;
}
.emb-posts-loop-align-center .emb-post-primary-meta,
.emb-posts-loop-align-center .emb-post-secondary-meta,
.emb-posts-loop-align-center .emb-post-tertiary-meta {
  justify-content: center;
}
.emb-posts-loop-align-right .emb-post-primary-meta,
.emb-posts-loop-align-right .emb-post-secondary-meta,
.emb-posts-loop-align-right .emb-post-tertiary-meta {
  justify-content: flex-end;
}

.emb-posts-loop .emb-post-content *:last-child {
  margin-bottom: 0;
}

.emb-posts-loop .emb-smart-read {
  max-width: 100%;
}

.emb-read-more {
  color: inherit;
}

.emb-read-more-underlined {
  font-size: 11px;
  letter-spacing: 0.92px;
  text-transform: uppercase;
  position: relative;
  color: #313233;
  transition: color 0.3s;
}
.emb-read-more-underlined:hover {
  color: #1899ff;
}
a.emb-read-more-underlined {
  display: inline-block;
}
.emb-read-more-underlined::before {
  content: "";
  position: absolute;
  bottom: -2px;
  height: 2px;
  width: 100%;
  left: 0;
  background: rgba(0, 0, 0, 0.4);
}
.emb-read-more.emb-read-more-underlined::after {
  content: "";
  position: absolute;
  bottom: -2px;
  height: 2px;
  width: 0%;
  right: 0;
  background: #1890ff;
  left: auto;
  transition: width 0.3s;
}
.emb-read-more.emb-read-more-underlined:hover::after {
  width: 100%;
  left: 0;
  right: auto;
}

.emb-read-more-inline {
  margin-left: 5px;
  color: #000;
}

.emb-post-date-with-icon {
  display: flex;
  align-items: baseline;
}
.emb-post-date-icon {
  margin-right: 5px;
}

.emb-post-content p:last-child {
  margin-bottom: 0;
}
.emb-post-content-read-more-underlined p:last-of-type {
  margin-bottom: 15px;
}

.emb-post-shadow-light {
  box-shadow: 0px 5px 10px 0px rgba(117, 119, 124, 0.1);
}

.emb-post-shadow-medium {
  box-shadow: 0px 20px 40px rgba(98, 101, 104, 0.1);
}

.emb-post-shadow-dark {
  box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.25);
}

.emb-blog-archive-inner .emb-posts-loop {
  margin-bottom: 45px;
}

.emb-post-details-inner > * {
  margin-bottom: 25px;
}
.emb-post-details-inner > *:last-child {
  margin-bottom: 0px;
}

.emb-post-content-read-more > p:last-of-type {
  margin-bottom: 15px;
}

.emb-post-author-name {
  color: inherit;
  transition: color 0.2s;
}

.emb-post-categories-labeled .emb-term {
  padding: 1px 10px;
  background: #fff;
  margin-right: 5px;
  line-height: normal;
}
.emb-post-categories-labeled .emb-term:last-child {
  margin-right: 0;
}

.emb-posts-loop .sticky {
  padding: 50px;
  border-radius: 5px;
  background: #f5f6fa;
}
.sticky .emb-post-details {
  padding: 0 !important;
}

.sticky .emb-post-inner {
  box-shadow: none !important;
}

.emb-posts-loop blockquote p:last-child {
  margin-bottom: 0;
}

/** Style1 */
.emb-posts-loop-style1 article {
  margin-bottom: 60px;
}
.emb-posts-loop-style1 article:last-child {
  margin-bottom: 0;
}

.emb-posts-loop-style1 .emb-post-details {
  padding-top: 36px;
}
.emb-posts-loop-style1 .emb-post-inner > *:first-child {
  padding-top: 0;
}

/**  Style 2 */
.emb-posts-loop-style2 .emb-post-details {
  padding: 30px 0 0 0;
}
.emb-posts-loop-style2 .emb-post-primary-meta {
  margin-bottom: 10px;
}

.emb-posts-loop-style2 .emb-post-title {
  margin-bottom: 16px;
}

.emb-posts-loop-style2 .emb-post-title-meta > *:last-child {
  margin-bottom: 0;
}

.emb-posts-loop-style2 .emb-post-title-meta {
  margin-bottom: 20px;
}

.emb-posts-loop-style2 .emb-post-details-inner > *:last-child {
  margin-bottom: 0;
}
.emb-posts-loop-style2 .emb-post-inner > *:first-child {
  padding: 0;
}

.emb-posts-loop-style2 .be-slider .be-slide-inner {
  flex-direction: column;
}
.emb-posts-loop-style2 .be-slider .emb-post-thumb {
  width: 100%;
  flex: 0 0 auto;
}
.emb-posts-loop-style2 .be-slider .emb-post-details {
  flex: 1 0 auto;
  width: 100%;
}

/** Style 3 */
.emb-posts-loop-style3 .emb-post-inner {
  position: relative;
  overflow: hidden;
}

.emb-posts-loop-style3 .emb-post-thumb::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: linear-gradient(
    0deg,
    rgba(0, 0, 0, 0.6) 0%,
    rgba(0, 0, 0, 0) 62%
  );
  mix-blend-mode: normal;
  pointer-events: none;
}

.emb-posts-loop-style3 .emb-post-thumb {
  z-index: 1;
}

.emb-posts-loop-style3 .emb-post-details > * {
  z-index: 1;
}

.emb-posts-loop-style3 .emb-post-thumb-inner {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.emb-posts-loop-style3.emb-posts-loop .emb-post-title,
.emb-posts-loop-style3.emb-posts-loop .emb-post-categories-normal,
.emb-posts-loop-style3.emb-posts-loop .emb-post-author,
.emb-posts-loop-style3.emb-posts-loop .emb-post-date,
.emb-posts-loop-style3.emb-posts-loop .emb-post-date-with-icon,
.emb-posts-loop-style3.emb-posts-loop .emb-post-views {
  color: #fff;
}

.emb-posts-loop-style3.emb-posts-loop .emb-post-categories-normal a:hover,
.emb-posts-loop-style3.emb-posts-loop .emb-post-title a:hover,
.emb-posts-loop-style3.emb-posts-loop
  .emb-post-author
  .emb-post-author-name:hover {
  color: inherit;
}

.emb-posts-loop-style3 .emb-post-details {
  position: absolute;
  top: 0;
  height: 100%;
  width: 100%;
  padding: 30px;
  left: 0;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.emb-posts-loop-style3.emb-posts-loop-align-center .emb-post-details {
  justify-content: center;
}
.emb-posts-loop-style3.emb-posts-loop-align-right .emb-post-details {
  justify-content: flex-end;
}

.emb-posts-loop-style3 .emb-post-tertiary-meta {
  position: absolute;
  bottom: 30px;
}

.emb-posts-loop-style3 .emb-post-thumb-inner {
  transition: transform 0.7s ease;
}
.emb-posts-loop-style3 .emb-post-inner:hover .emb-post-thumb-inner {
  transform: scale(1.1);
}

/** Style 4 */
.emb-posts-loop-style4 .emb-post-inner {
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
}

.emb-posts-loop-style4 .emb-post-title-meta > * {
  margin-bottom: 10px;
}
.emb-posts-loop-style4 .emb-post-title-meta > *:last-child {
  margin-bottom: 0;
}

.emb-posts-loop-style4 .emb-post-thumb-wrap {
  flex: 0 0 auto;
  width: 50%;
  display: flex;
  align-items: center;
}
.emb-posts-loop-style4 .emb-post-thumb {
  flex: 0 0 auto;
  width: 100%;
}

.emb-posts-loop-style4 .emb-post-details {
  flex: 0 0 auto;
  width: 50%;
  padding: 20px 40px;
  display: flex;
  align-items: center;
}
.emb-posts-loop-style4 .emb-post-details-inner {
  flex: 0 0 auto;
  width: 100%;
}

.emb-posts-loop-style4 .emb-post-inner > *:first-child {
  padding-left: 0;
}

.emb-posts-loop-style4 article {
  padding: 45px 0;
  border-bottom: 1px solid #e6e4e4;
}
.emb-posts-loop-style4 article:last-child {
  border-bottom: 0;
  padding: 45px 0 0 0;
}

.emb-posts-loop-style4 .emb-post-content {
  margin-bottom: 25px;
}
.emb-posts-loop-style4 .emb-post-details-inner > *:last-child {
  margin-bottom: 0;
}

/** Style 5 */
.emb-posts-loop-style5 .emb-post-inner {
  border: 1px solid rgba(0, 0, 0, 0.1);
  position: relative;
  transition: box-shadow 0.5s;
  overflow: hidden;
}
.emb-posts-loop-style5 .emb-post-inner:hover {
  box-shadow: 0px 0px !important;
}

.emb-posts-loop-style5 .emb-post-details {
  padding: 35px;
  position: relative;
}

/** Style 6 */
.emb-posts-loop-style6 .emb-post-inner {
  box-shadow: 3px 5px 10px rgba(0, 0, 0, 0.0439);
  position: relative;
  cursor: pointer;
  overflow: hidden;
}

.emb-posts-loop-style6 .emb-post-categories-normal,
.emb-posts-loop-style6 .emb-post-author,
.emb-posts-loop-style6 .emb-post-date,
.emb-posts-loop-style6 .emb-post-date-with-icon,
.emb-posts-loop-style6 .emb-read-more,
.emb-posts-loop-style6 .emb-post-title a {
  transition: color 0.5s;
}

.emb-posts-loop-style6 .emb-post-categories-normal a,
.emb-posts-loop-style6 .emb-post-author-name {
  transition: none;
}

.emb-posts-loop-style6 .emb-post-inner:hover .emb-post-categories-normal a {
  color: inherit !important;
}
.emb-posts-loop-style6 .emb-post-author .emb-post-author-name:hover {
  color: inherit;
}

.emb-posts-loop-style6 .emb-read-more-underlined::after {
  transition: background 0.5s;
}

.emb-posts-loop-style6 .emb-post-inner:hover .emb-post-title a,
.emb-posts-loop-style6 .emb-post-inner:hover .emb-post-categories-normal,
.emb-posts-loop-style6 .emb-post-inner:hover .emb-post-author,
.emb-posts-loop-style6 .emb-post-inner:hover .emb-post-date,
.emb-posts-loop-style6 .emb-post-inner:hover .emb-post-date-with-icon,
.emb-posts-loop-style6 .emb-post-inner:hover .emb-read-more {
  color: #fff;
}

.emb-posts-loop-style6 .emb-post-details {
  position: relative;
  padding: 40px;
}

.emb-posts-loop-style6 .emb-post-thumb {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 0.5s;
}
.emb-posts-loop-style6 .emb-post-inner:hover .emb-post-thumb {
  opacity: 1;
}
.emb-posts-loop-style6 .emb-post-thumb::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: linear-gradient(
    0deg,
    rgba(0, 0, 0, 0.6) 0%,
    rgba(0, 0, 0, 0) 62%
  );
  mix-blend-mode: normal;
}

.emb-posts-loop-style6 .emb-post-thumb-inner {
  height: 100%;
}

.emb-posts-loop-style6 .emb-posts-loop-thumb {
  transition: transform 1s;
}
.emb-posts-loop-style6 .emb-post-inner:hover .emb-posts-loop-thumb {
  transform: scale(1.2);
}

/** Style 7 */
.emb-posts-loop-style7 .emb-post-inner {
  position: relative;
  overflow: hidden;
  transition: all 0.3s;
}

.emb-posts-loop-style7 .emb-post-thumb::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: linear-gradient(
    0deg,
    rgba(0, 0, 0, 0.6) 0%,
    rgba(0, 0, 0, 0) 62%
  );
  mix-blend-mode: normal;
  pointer-events: none;
}

.emb-posts-loop-style7 .emb-post-details-inner {
  z-index: 2;
}

.emb-posts-loop-style7 .emb-post-thumb {
  z-index: 1;
}

.emb-posts-loop-style7 .emb-post-thumb-inner {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.emb-posts-loop-style7.emb-posts-loop .emb-post-title,
.emb-posts-loop-style7.emb-posts-loop .emb-post-categories-normal,
.emb-posts-loop-style7.emb-posts-loop .emb-post-author,
.emb-posts-loop-style7.emb-posts-loop .emb-post-date,
.emb-posts-loop-style7.emb-posts-loop .emb-post-date-with-icon,
.emb-posts-loop-style7.emb-posts-loop .emb-post-views {
  color: #fff;
}
.emb-posts-loop-style7.emb-posts-loop .emb-post-categories-normal a:hover,
.emb-posts-loop-style7.emb-posts-loop .emb-post-title a:hover,
.emb-posts-loop-style7.emb-posts-loop
  .emb-post-author
  .emb-post-author-name:hover {
  color: inherit;
}

.emb-posts-loop-style7 .emb-post-details {
  position: absolute;
  top: 0;
  height: 100%;
  width: 100%;
  padding: 30px;
  left: 0;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
}
.emb-posts-loop-style7.emb-posts-loop-align-center .emb-post-details {
  /* justify-content: center; */
  text-align: left;
}
.emb-posts-loop-style7.emb-posts-loop-align-center .emb-post-details h1 {
  margin-bottom: 0;
}
.emb-posts-loop-style7.emb-posts-loop-align-right .emb-post-details {
  justify-content: flex-end;
}

.emb-posts-loop-style7 .emb-post-primary-meta .emb-post-categories {
  position: absolute;
  top: 30px;
}

.emb-posts-loop-style7 .emb-term:last-child {
  margin-right: 0;
}

.emb-posts-loop-style7 .emb-post-inner:hover {
  box-shadow: 0px 30px 65px rgba(0, 0, 0, 0.25);
}

.emb-posts-loop-style7 .emb-post-thumb-inner {
  transition: transform 0.7s ease;
}
.emb-posts-loop-style7 .emb-post-inner:hover .emb-post-thumb-inner {
  transform: scale(1.1);
}

/** Gallery Post Format */
.emb-post-thumb-slide-img {
  position: absolute;
  top: 0;
  left: 0;
}
.emb-posts-loop .emb-post-thumb-slider .flickity-page-dots {
  bottom: 15px;
}
.be-grid[data-layout="metro"]:not(.be-grid-initialized) .emb-post-thumb-slider,
.be-grid[data-layout="masonry"]:not(.be-grid-initialized)
  .emb-post-thumb-slider {
  visibility: hidden;
}

/** Image Post Format */
.emb-post-single-header-wrap .emb-wrap {
  position: relative;
}

/** Video Post Format */
.emb-fluid-video {
  position: relative;
}
.emb-fluid-video::before {
  content: "";
  padding-top: 56.25%;
  display: block;
}
.emb-fluid-video .wp-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100%;
}
.emb-fluid-video video {
  opacity: 0;
}
.emb-fluid-video .mejs-container video {
  opacity: 1;
}

.be-embed-placeholder {
  position: relative;
}
.be-embed-placeholder::before {
  content: "";
  padding-top: 56.25%;
  display: block;
}
.be-embed-placeholder .be-vimeo-embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
}

/** Quote Post Format */
.emb-post-quote-text {
  margin-bottom: 20px;
  line-height: 48px;
  font-size: 32px;
}

.emb-post-quote {
  text-align: center;
}
.emb-post-quote svg {
  fill: currentColor;
  width: 30px;
}

.emb-post-quote-icon {
  line-height: 0;
}

.emb-post-quote-author {
  display: flex;
  align-items: center;
  justify-content: center;
}
.emb-post-quote-author::before {
  content: "";
  width: 7px;
  height: 2px;
  margin-right: 5px;
  background: #fff;
  display: block;
}

.emb-post-quote {
  padding: 80px 140px;
}
.emb-post-quote-icon {
  margin-bottom: 30px;
}

.emb-posts-loop-style2 .emb-post-quote {
  padding: 40px;
}
.emb-posts-loop-style2 .emb-post-quote-text {
  font-size: 24px;
  line-height: 38px;
}
.emb-posts-loop-style2 .emb-post-quote-icon {
  margin-bottom: 20px;
}

.emb-posts-loop-style4 .emb-post-quote {
  padding: 50px 30px;
}
.emb-posts-loop-style4 .emb-post-quote-icon {
  margin-bottom: 25px;
}

.emb-posts-loop-style4 .emb-post-quote-text {
  font-size: 24px;
  line-height: 36px;
}

/** Link Post Format */
.emb-post-link {
  display: block;
  padding: 50px 140px;
}

.emb-post-link-icon {
  text-align: center;
  margin-bottom: 10px;
  line-height: 0;
}
.emb-post-link-icon svg {
  fill: currentColor;
}

.emb-post-link-url {
  font-size: 32px;
  line-height: 48px;
  text-align: center;
}

.emb-posts-loop-style2 .emb-post-link {
  padding: 40px;
}
.emb-posts-loop-style2 .emb-post-link-url {
  font-size: 24px;
  line-height: 38px;
}

.emb-posts-loop-style4 .emb-post-link {
  padding: 50px 30px;
}
.emb-posts-loop-style4 .emb-post-link-url {
  font-size: 24px;
  line-height: 36px;
}

/** Chat Post Format */
.format-chat p {
  margin-bottom: 15px;
}

/** Single Post */
.emb-post-single-header-bg-wrap {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  overflow: hidden;
  left: 0;
}

.be-themes-bg-blur {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-attachment: scroll;
  background-position: center;
  background-size: cover;
  filter: blur(20px);
  transform: scale(1.1); /** to prevent blurry edges at the corners */
}
.emb-post-single-header-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.be-themes-bg-lazyload {
  opacity: 0;
  transition: opacity 0.3s;
}
.be-themes-bg-lazyloaded {
  opacity: 1;
}

.emb-smart-read {
  max-width: 800px;
  margin: 0 auto;
}

.emb-post-single-header-align-center .emb-post-primary-meta,
.emb-post-single-header-align-center .emb-post-secondary-meta {
  justify-content: center;
}
.emb-post-single-header-align-center .emb-post-title {
  text-align: center;
}

.emb-post-single-header-align-right .emb-post-primary-meta,
.emb-post-single-header-align-right .emb-post-secondary-meta {
  justify-content: flex-end;
}
.emb-post-single-header-align-right .emb-post-title {
  text-align: right;
}

.emb-post-single-header-wide {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 50px 0;
}
.emb-post-single-header-wide::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.5);
}

.emb-post-single-header .emb-post-title {
  font-size: 46px;
  line-height: 60px;
  margin-bottom: 22px;
  color: #494c4f;
}

.emb-post-single-header .emb-post-primary-meta {
  margin-bottom: 20px;
  color: #76777d;
}

.emb-post-single-header .emb-post-secondary-meta {
  font-size: 14px;
  line-height: 22px;
  color: #737376;
}

.emb-post-single-header .emb-post-title-meta > *:last-child {
  margin-bottom: 0;
}

.emb-post-single-header-wide.emb-post-single-header .emb-post-categories-normal,
.emb-post-single-header-wide.emb-post-single-header .emb-post-author,
.emb-post-single-header-wide.emb-post-single-header .emb-post-title,
.emb-post-single-header-wide.emb-post-single-header .emb-post-date,
.emb-post-single-header-wide.emb-post-single-header .emb-post-date-with-icon,
.emb-post-single-header-wide.emb-post-single-header .emb-post-views {
  color: #fff;
}
.emb-post-single-header-wide .emb-post-author .emb-post-author-name:hover {
  color: inherit;
}
.emb-post-single-header-wide .emb-post-categories-normal a:hover {
  color: inherit;
}
.emb-post-single-header-wide .emb-post-title a:hover {
  color: inherit;
}

.emb-post-single-header-wide .emb-post-title-meta {
  position: relative;
  z-index: 1;
  max-width: 800px;
  padding: 0 20px;
  flex: 0 0 auto;
  width: 100%;
  border: 0;
  margin: 0;
}

.emb-post-single-header.emb-post-single-header-wrap {
  padding-top: 80px;
}

.emb-post-single-content .tatsu-section:first-child .tatsu-section-pad {
  padding-top: 0;
}
.emb-post-single-content .tatsu-section:last-child .tatsu-section-pad {
  padding-bottom: 0;
}

.emb-post-single-header-wrap > * {
  margin-bottom: 40px;
}
.emb-post-single-header-wrap > *:last-child {
  margin-bottom: 0;
}

.emb-post-single-header-wrap img {
  display: block;
  margin: 0 auto;
  border-radius: 32px;
}

.pages_list {
  margin-top: 40px;
  margin-bottom: 40px;
  display: flex;
  justify-content: space-between;
}
.page .pages_list {
  margin-top: 0;
}
.pages_list a {
  padding: 8px 18px;
  border-radius: 20px;
  transition: all 0.3s;
}

.emb-post-single-footer-tax-share {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 60px;
  flex-wrap: wrap;
}

.emb-post-single-footer-tags {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #7a7b7f;
}

.emb-post-single-footer-share {
  display: flex;
  margin-bottom: 25px;
}

.emb-post-single-footer-tax {
  line-height: 0;
  margin-bottom: -10px;
}
.emb-post-single-footer-tax .emb-term {
  color: inherit;
  padding: 2px 6px;
  margin-right: 10px;
  margin-bottom: 10px;
  border-radius: 4px;
  line-height: normal;
  border: 1px solid #aaabaf;
  display: inline-block;
  transition: all 0.5s;
}
.emb-post-single-footer-tax .emb-term:hover {
  border-color: transparent;
}
.emb-post-single-footer-tax .emb-term:last-child {
  margin-right: 0;
}

.emb-post-single-content p:last-child {
  margin-bottom: 0;
}

.emb-post-single .emb-post-details > * {
  margin-bottom: 50px;
}
.emb-post-single .emb-post-details > *:last-child {
  margin-bottom: 0;
}

.emb-post-single-footer-tags {
  margin-bottom: 30px;
}

.emb-post-single-footer-separator {
  margin: 0;
  height: 1px;
  border: 0;
  background: #d8d8d8;
  margin-bottom: 30px;
}

.emb-post-single-footer-author {
  max-width: 840px;
  display: flex;
  margin: 0 auto 50px auto;
  padding: 40px 76px;
  background: #fafafa;
  box-shadow: 0 22px 25px -10px rgba(79, 84, 112, 0.08);
}
.emb-post-single-footer-author-image {
  flex: 0 0 auto;
  margin-right: 30px;
}
.emb-post-single-footer-author-details {
  flex: 0 1 auto;
}

.emb-post-single-footer-author-image .avatar {
  border-radius: 50%;
}

.emb-post-single-footer-author-details *:last-child {
  margin-bottom: 0;
}

.emb-post-single-footer-author-description {
  font-size: 14px;
  line-height: 28px;
  color: #888c92;
  margin-bottom: 25px;
}
.emb-post-single-footer-author-name {
  margin-bottom: 5px;
  display: block;
  font-size: 18px;
  line-height: 25px;
}

.emb-post-single-footer-author-about {
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 600;
  color: #64666a;
}

.single-post .slick-dotted.emb-slider {
  margin-bottom: 40px !important;
}

.emb-post-single-header-wrap .emb-post-quote {
  border-radius: 5px;
  box-shadow: 0 5px 50px rgba(0, 0, 0, 0.2);
}

.emb-post-single-header-wrap .emb-post-link {
  border-radius: 5px;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
}

.emb-post-single-footer-author-share .custom-share-button {
  margin-right: 37px;
  transition: opacity 0.4s ease;
  line-height: 0;
  display: inline-block;
  color: #706d6d;
}

.emb-post-single-footer-share .be-bold-share {
  margin-right: 10px;
  display: flex;
  line-height: normal;
  transition: opacity 0.3s;
  align-items: center;
  font-size: 13px;
  color: #fff;
  padding: 8px 20px;
  border-radius: 3px;
}

.emb-post-single-footer > *:last-child {
  margin-bottom: 0;
}

/** Posts nav */
.emb-posts-nav {
  display: flex;
  padding: 10px 50px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  line-height: 1;
}
.emb-posts-nav > * {
  flex: 0 0 auto;
  width: 33.33%;
}
.emb-posts-nav-pad-prev::before {
  content: "";
  width: 33.33%;
  flex: 0 0 auto;
}
.emb-posts-nav-sticky {
  position: fixed;
  transition: transform 0.3s;
  transform: translate3d(0, 100%, 0);
  bottom: 0;
  background: #fff;
  z-index: 50;
  width: 100%;
}
.emb-posts-nav-sticky-active {
  transform: translate3d(0, 0, 0);
}

.emb-posts-nav-prev {
  display: flex;
  justify-content: flex-start;
}

.emb-posts-nav-next {
  display: flex;
  justify-content: flex-end;
}

.emb-posts-nav-home {
  display: flex;
  justify-content: center;
  align-items: center;
}
.emb-posts-nav-home-link {
  color: #4f545b;
}

.emb-posts-nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #4f545b;
  max-width: 100%;
}

.emb-posts-nav-link > *:first-child {
  margin-right: 10px;
}

.emb-posts-nav-icon {
  fill: rgba(9, 9, 9, 0.2);
  transition: all 0.2s;
  flex: 0 0 auto;
}
.emb-posts-nav-bar {
  transition: all 0.2s;
  transform: scale(0, 1);
  fill: #000;
}
.emb-posts-nav-prev-bar {
  transform-origin: 100% 0;
}

.emb-posts-nav-prev-post,
.emb-posts-nav-next-post {
  transition: all 0.2s;
  max-width: 100%;
}

.emb-posts-nav-link:hover .emb-posts-nav-icon {
  fill: #000;
}
.emb-posts-nav-link:hover .emb-posts-nav-bar {
  transform: scale(1, 1);
}

.emb-posts-nav-link:hover .emb-posts-nav-prev-icon {
  transform: translate3d(-10px, 0, 0);
}
.emb-posts-nav-link:hover .emb-posts-nav-prev-post {
  transform: translate3d(10px, 0, 0);
}

.emb-posts-nav-link:hover .emb-posts-nav-next-icon {
  transform: translate3d(10px, 0, 0);
}
.emb-posts-nav-link:hover .emb-posts-nav-next-post {
  transform: translate3d(-10px, 0, 0);
}

.emb-posts-nav-post-location {
  font-size: 11px;
  letter-spacing: 0.5px;
  margin-bottom: 0px;
}
.emb-posts-nav-home-link {
  font-size: 13px;
  letter-spacing: 0.5px;
}

.emb-posts-nav-post-title {
  font-size: 13px;
  font-weight: 600;
  width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.emb-posts-nav-next .emb-posts-nav-post-location {
  text-align: right;
}

.emb-home-grid-icon {
  display: inline-block;
  width: 21px;
  margin-bottom: -3px;
}
.emb-home-grid-icon span {
  background: currentColor;
  float: left;
  height: 5px;
  width: 5px;
  margin-bottom: 3px;
  margin-right: 3px;
  border-radius: 50%;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.emb-home-grid-icon:hover span {
  -webkit-transform: rotateY(180deg);
  -ms-transform: rotateY(180deg);
  transform: rotateY(180deg);
}
.emb-home-grid-icon span:nth-child(1) {
  -webkit-transition-delay: 50ms;
  -moz-transition-delay: 50ms;
  -o-transition-delay: 50ms;
  transition-delay: 50ms;
}
.emb-home-grid-icon span:nth-child(2) {
  -webkit-transition-delay: 80ms;
  -moz-transition-delay: 80ms;
  -o-transition-delay: 80ms;
  transition-delay: 80ms;
}
.emb-home-grid-icon span:nth-child(3) {
  -webkit-transition-delay: 100ms;
  -moz-transition-delay: 100ms;
  -o-transition-delay: 100ms;
  transition-delay: 100ms;
  margin-right: 0;
}
.emb-home-grid-icon span:nth-child(4) {
  -webkit-transition-delay: 120ms;
  -moz-transition-delay: 120ms;
  -o-transition-delay: 120ms;
  transition-delay: 120ms;
}
.emb-home-grid-icon span:nth-child(5) {
  -webkit-transition-delay: 150ms;
  -moz-transition-delay: 150ms;
  -o-transition-delay: 150ms;
  transition-delay: 150ms;
}
.emb-home-grid-icon span:nth-child(6) {
  -webkit-transition-delay: 180ms;
  -moz-transition-delay: 180ms;
  -o-transition-delay: 180ms;
  transition-delay: 180ms;
  margin-right: 0;
}

.single .emb-comments {
  margin-top: 50px;
}
.single .emb-comments-without-content,
.single .emb-comments-content-protected {
  margin-top: 20px;
}
.single .emb-comments-closed p {
  margin: 0;
}

/** Author Template */
.emb-author {
  padding: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-bottom: 70px;
}
.emb-author-overlay {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.5);
}

.emb-author-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 700px;
  position: relative;
}

.emb-author-thumb {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 20px;
}

.emb-author-thumb img {
  width: 100%;
  height: auto;
}

.emb-author-name {
  color: #fff;
  font-weight: 600;
  font-size: 26px;
  text-transform: capitalize;
  margin-bottom: 15px;
}

.emb-author .custom-share-button {
  color: #fff;
}

.emb-author .emb-author-bio {
  color: #fff;
}

.emb-author-bio {
  margin-bottom: 20px;
  text-align: center;
}

/** Category Template */
.emb-category-header {
  margin-bottom: 50px;
  display: flex;
  align-items: center;
  position: relative;
  justify-content: center;
  background-position: center center;
  background-attachment: scroll;
  background-size: cover;
}

.emb-category-header::before {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.5);
  content: "";
}

.emb-category-header-title {
  font-size: 36px;
  margin-bottom: 25px;
}

.emb-category-header-description p {
  margin-bottom: 0;
}

.emb-category-header-inner {
  z-index: 1;
  color: #fff;
  text-align: center;
}
.emb-category-header-title {
  color: #fff !important;
}
.emb-category-header-inner > *:last-child {
  margin-bottom: 0;
}

/** Audio Post Format */
.format-audio iframe {
  width: 100%;
  display: block;
}
.single-post .format-audio iframe {
  margin-bottom: 30px;
}

/**
 * Comments
 */
.emb-comment {
  position: relative;
}

.emb-comment-list-inner {
  list-style-type: none;
}
.emb-comment-list .children {
  list-style-type: none;
}

.emb-comment-list {
  padding: 30px 0 40px 0;
  border-top: 1px solid #d8d8d8;
  border-bottom: 1px solid #d8d8d8;
}

.emb-comments * + .comment-respond {
  margin-top: 40px;
}

.emb-comments .comment-respond .form-submit {
  margin-bottom: 0;
}

.emb-comments .comment-respond .emb-comment-form {
  margin: 0;
}

.emb-comment-list-inner {
  margin: 0 auto;
  padding: 0;
}

.page .emb-comment-list-inner {
  max-width: 100%;
}

.emb-comment-inner {
  display: flex;
  align-items: flex-start;
}

.emb-comment-author-image {
  flex: 0 0 auto;
  margin-right: 20px;
  overflow: hidden;
  border-radius: 50%;
}

.emb-comment-top .emb-comment-details {
  padding-top: 12px;
}
.emb-comment-details > *:last-child {
  margin-bottom: 0;
}

.emb-comments-closed {
  margin: 30px 0 0 0;
  font-weight: 600;
  color: #313233;
}
.emb-comments-without-content .emb-comments-closed {
  margin: 0;
}

.emb-comment-author {
  font-size: 18px;
  line-height: 25px;
  color: #494c4f;
  margin-bottom: 5px;
}

.emb-comment-time {
  font-size: 12px;
  color: #717273;
  line-height: 16px;
}

.emb-comment-header {
  margin-bottom: 10px;
}

.emb-comment-content {
  font-size: 14px;
  line-height: 28px;
  color: #888c92;
  margin-bottom: 10px;
}

.emb-comment-content *:last-child {
  margin-bottom: 0;
}

.emb-comment-reply {
  font-size: 14px;
  line-height: 19px;
  color: #717273;
  transition: color 0.3s;
  display: inline-block;
}
.emb-comment-reply .exponent-icon-reply {
  margin-right: 6px;
  font-size: 16px;
}

.comment-reply-link {
  color: inherit;
  display: flex;
  align-items: baseline;
}

#cancel-comment-reply-link {
  font-size: 14px;
  line-height: 19px;
  color: #717273;
  transition: color 0.3s;
  margin-left: 5px;
}

.emb-comment .tatsu-icon {
  margin-right: 10px;
}

.emb-comment-list-inner > * {
  margin-bottom: 50px;
}

.emb-comment-list-inner > *:last-child {
  margin-bottom: 0;
}

.emb-comment-pingback {
  margin-bottom: 12px;
}

.emb-comment-pingback:nth-last-child(2) {
  margin-bottom: 50px;
}

.emb-comment-author .url {
  color: inherit;
}

.emb-comment-list-inner .children {
  margin-top: 0;
  padding: 0;
}

.emb-comment-parent + .children > * {
  margin-bottom: 40px;
}

.emb-comment-parent + .children > *:last-child {
  margin-bottom: 0;
}

.emb-comment + .children {
  padding-left: 62px;
}
.emb-comment + #respond + .children {
  padding-left: 62px;
}
.emb-comment-top + .children {
  padding-left: 68px;
}
.emb-comment-top + #respond + .children {
  padding-left: 68px;
}

.emb-comment-follow-line {
  position: absolute;
  background: #d8d8d8;
}

#reply-title {
  font-size: 18px;
  line-height: 25px;
  color: #3b3a3a;
  margin-bottom: 10px;
  font-weight: 600;
}

.comment-notes {
  font-size: 14px;
  line-height: 28px;
  color: #888c92;
}

.emb-comment-form > * {
  margin-bottom: 25px;
}

.emb-comment-form > *:last-child {
  margin-bottom: 0;
}

.emb-comment-form .logged-in-as {
  font-size: 14px;
  line-height: 28px;
}
.emb-comment-form .logged-in-as a {
  color: #888c92;
  transition: color 0.5s;
}
.emb-comment-form .logged-in-as a:hover {
  color: #4c4c4d;
}

.emb-pagination .nav-links {
  display: flex;
}

.emb-comments-title {
  color: #3b3a3a;
  font-size: 12px;
  text-transform: uppercase;
  line-height: 22px;
  letter-spacing: 0.6px;
  margin-bottom: 20px;
}

/**
 * Typography
 */
h1,
h2,
h3,
h4,
h5,
h6 {
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  -moz-osx-font-smoothing: grayscale;
}

h1,
h2 {
  margin-bottom: 20px;
}

h3,
h4 {
  margin-bottom: 15px;
}

h5,
h6 {
  margin-bottom: 8px;
}
p {
  margin-bottom: 25px;
}
p:empty {
  margin-bottom: 0;
}
p.inner-content {
  margin-left: 30px;
}
#content,
.post-title,
.breadcrumbs,
#page-title {
  -ms-word-wrap: break-word;
  word-break: break-word;
}
#content.page-split-screen-left {
  margin-left: 50%;
  min-height: 100vh;
}
#content.page-split-screen-right {
  width: 50%;
  min-height: 100vh;
}

blockquote {
  margin-bottom: 30px;
  position: relative;
  padding-left: 50px;
  border-left: 4px solid #2293d7;
}
blockquote p:last-child {
  margin-bottom: 0;
}

/** Anchor */
a,
a:visited,
a:hover {
  text-decoration: none;
}
.sidebar-widgets .widget ul li a {
  color: inherit;
}

/** Lists */
ul,
ol {
  padding-left: 1.3em;
  line-height: inherit;
  margin: 0px 0px 20px;
}
dl {
  margin-bottom: 20px;
}
ul {
  list-style: disc;
}
ol {
  list-style: decimal;
}
ul li,
ol li {
  margin-bottom: 10px;
}
ul ul,
ol ol,
li ul,
li ol {
  margin-top: 10px;
}
dd {
  margin: 0 0 20px;
  line-height: inherit;
}
dt {
  line-height: inherit;
}
nav ul,
nav ol {
  list-style: none !important;
  list-style-image: none;
  margin: 0;
  padding: 0;
}
.widget ul {
  margin-bottom: 0;
}

/**
* Wordpress Defaults
*/
code,
pre {
  font-family: "Courier New", Courier, monospace;
}
cite {
  font-weight: bold;
  font-style: normal;
}
blockquote cite {
  margin-top: 10px;
}
address {
  display: block;
  margin: 0 0 20px;
  font-style: normal;
}

pre {
  display: block;
  margin: 10px 0;
  padding: 10px;
  overflow: auto;
  white-space: pre-wrap; /* Since CSS 2.1 */
  white-space: -moz-pre-wrap; /* Mozilla, since 1999 */
  white-space: -pre-wrap; /* Opera 4-6 */
  white-space: -o-pre-wrap; /* Opera 7 */
  word-wrap: break-word; /* Internet Explorer 5.5+ */
}
table {
  border-collapse: collapse;
  margin-bottom: 30px;
}
th {
  padding: 10px;
}
td {
  text-align: center;
  padding: 10px;
}
tr {
  border: 1px solid rgba(0, 0, 0, 0.1);
}

tr > * {
  border-right: 1px solid rgba(0, 0, 0, 0.1);
}

tr > *:last-child {
  border-radius: 0;
}
caption {
  margin-bottom: 10px;
}
sup,
sub {
  height: 0;
  font-size: 10px;
  line-height: 1;
  position: relative;
  top: 0.5ex;
  vertical-align: baseline;
}
sup {
  bottom: 1ex;
  top: auto;
}
strong {
  font-weight: 600;
}

/** Wordpress default Image Alignment classes */
.wp-caption {
  margin-bottom: 20px;
  max-width: 100% !important;
  padding-top: 6px;
  text-align: center;
}
.wp-caption img,
.wp-caption img a {
  border: 0 none;
  margin: 0 !important;
  padding: 0;
}
.wp-caption .wp-caption-text {
  font-size: 13px;
  margin: 0;
  padding: 4px 4px 5px;
}
img.alignright,
.wp-caption.alignright {
  float: right;
  margin: 0 0 0px 20px;
}
img.alignleft,
.wp-caption.alignleft {
  float: left;
  margin: 0 20px 0px 0;
}
img.aligncenter,
.wp-caption.aligncenter {
  display: block;
  margin-right: auto;
  margin-left: auto;
}
img.aligncenter {
  margin-bottom: 10px;
}
a img.alignright {
  float: right;
  margin: 7px 0 20px 20px;
}
a img.alignleft {
  float: left;
  margin: 7px 20px 20px 0;
}
a img.aligncenter {
  display: block;
  margin-right: auto;
  margin-left: auto;
}
.gallery-item img {
  width: auto !important;
  height: auto !important;
  border: none !important;
  max-width: 100% !important;
}
.gallery-caption {
  display: block;
  font-style: italic;
  margin-bottom: 0 !important;
  padding: 0 4px 5px;
}
.element .post-content img {
  width: auto;
  max-width: 100%;
  height: auto;
}

/** WordPress built-in class for handling sticky posts */
.sticky,
.bypostauthor {
  box-sizing: border-box;
}

/** Images */
img[class*="align"],
img[class*="wp-image-"] {
  height: auto;
}

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

/**
 * Forms
 */
/** Default form style */
textarea {
  width: 100%;
  display: block;
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  box-sizing: border-box;
  height: 13em;
  background: transparent;
  padding: 15px 15px 15px 15px;
  border: 1px solid transparent;
  transition: border-color 0.3s;
  border-radius: 3px;
  box-shadow: inset 0 0 4px 0 rgba(0, 0, 0, 0.16);
}

input {
  font-family: inherit;
  background: transparent;
  font-size: inherit;
  color: inherit;
  width: 100%;
  padding: 15px 15px 15px 15px;
  border: 1px solid transparent;
  transition: border-color 0.3s;
  border-radius: 3px;
  box-shadow: inset 0 0 4px 0 rgba(0, 0, 0, 0.16);
}
input[type="submit"] {
  width: auto;
  border-radius: 0;
  font-size: 12px;
  line-height: 12px;
  cursor: pointer;
  padding: 15px 34px;
  box-shadow: none;
  transition: box-shadow 0.3s;
}
input[type="checkbox"] {
  border: 0;
  margin: 0;
  width: auto;
  box-shadow: none;
}
input[type="radio"] {
  border: 0;
  margin: 0;
  width: auto;
  box-shadow: none;
}
input[type="submit"]:hover {
  box-shadow: 0 11px 18px -5px rgba(0, 0, 0, 0.37);
}

textarea,
input[type="text"],
input[type="email"],
input[type="number"],
input[type="submit"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

select {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  margin: 0;
  width: 100%;
  background: url("../img/select_arrow.svg") no-repeat right transparent;
  background-position-x: calc(100% - 15px);
  padding: 15px 15px 15px 15px;
  border: 1px solid transparent;
  transition: border-color 0.3s;
  border-radius: 3px;
  box-shadow: inset 0 0 4px 0 rgba(0, 0, 0, 0.16);
  -moz-appearance: none; /* Firefox */
  -webkit-appearance: none; /* Safari and Chrome */
  appearance: none;
}

/**
 * For removing the yellow background color when a form field is autocompleted.
 * @source https://stackoverflow.com/questions/2781549/removing-input-background-colour-for-chrome-autocomplete
 */
:-webkit-autofill {
  -webkit-box-shadow: 0 0 0 30px white inset;
}

.emb-form {
  margin-bottom: 50px;
}
.emb-form label {
  display: block;
}
.emb-form > * {
  margin-bottom: 30px;
}
.emb-form > *:last-child,
.emb-form > label {
  margin-bottom: 0;
}

/** password protected page form **/
.emb-post-password-form-wrap .emb-form {
  margin-bottom: 0;
}

.emb-form-border {
  position: absolute;
  left: 0;
  height: 2px;
  bottom: 0;
  width: 0;
  transition: 0.3s;
}

.emb-form-field {
  position: relative;
}

.emb-form-field-label {
  pointer-events: none;
  left: 0;
  position: absolute;
  line-height: normal;
  transition: 0.3s;
}

.emb-form-field-active .emb-form-border {
  width: 100%;
}

/** Border Style */
.emb-form-border-with-underline select {
  border: 0;
  box-shadow: none;
}
.emb-form-border-with-underline textarea,
.emb-form-border-with-underline input:not([type="submit"]),
.emb-form-border-with-underline select {
  border-bottom: 1px solid #d8d8d8;
  padding: 16px 0px;
  box-shadow: none;
}

.emb-form-border-with-underline .emb-form-field-label {
  top: 50%;
  left: 0;
  transform: translate3d(0, -50%, 0);
}
.emb-form-border-with-underline .emb-form-field-active .emb-form-field-label {
  top: -1.1em;
  transform: translate3d(0, 0, 0);
}
.emb-form-border-with-underline textarea + .emb-form-field-label {
  top: 16px;
  transform: translate3d(0, 0, 0);
}

/** Rounded with Underline */
.emb-form-rounded-with-underline input:not([type="submit"]),
.emb-form-rounded-with-underline textarea,
.emb-form-rounded-with-underline select {
  padding: 15px;
  box-shadow: inset 0 0 4px 0 rgba(0, 0, 0, 0.15);
  border: 0;
}

.emb-form-rounded-with-underline .emb-form-field-label {
  top: 50%;
  left: 18px;
  opacity: 1;
  transform: translate3d(0, -50%, 0);
}
.emb-form-rounded-with-underline .emb-form-field-active .emb-form-field-label {
  transform: translate3d(100%, -50%, 0);
  opacity: 0;
}
.emb-form-rounded-with-underline textarea + .emb-form-field-label {
  top: 18px;
  transform: translate3d(0, 0, 0);
}
.emb-form-rounded-with-underline
  .emb-form-field-active
  textarea
  + .emb-form-field-label {
  transform: translate3d(100%, 0, 0);
}

/** Pill */
.emb-form-pill input:not([type="submit"]),
.emb-form-pill select,
.emb-form-pill textarea {
  border: 1px solid transparent;
  padding: 15px 0 15px 20px;
  border-radius: 50px;
  box-shadow: none;
  transition: box-shadow 0.3s, border-color 0.3s;
}
.emb-form-pill textarea {
  border-radius: 9px;
}

.emb-form-pill input:not([type="submit"]):focus,
.emb-form-pill textarea:focus,
.emb-form-pill select:focus {
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.16);
  border-color: #1890ff;
}

/** Rounded */
.emb-form-rounded input:not([type="submit"]),
.emb-form-rounded textarea,
.emb-form-rounded select {
  padding: 15px;
  border: 1px solid transparent;
  transition: border-color 0.3s;
  border-radius: 3px;
  box-shadow: inset 0 0 4px 0 rgba(0, 0, 0, 0.16);
}

.emb-form-rounded input:not([type="submit"]):focus,
.emb-form-rounded textarea:focus,
.emb-form-rounded select:focus {
  border-color: #1890ff;
}

/**
 * Widgets
 */

.widget {
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid #e7e7e7;
}
.widget:last-child {
  margin-bottom: 0;
  padding: 0;
  border: 0;
}

#bottom-widgets .widget {
  margin-bottom: 40px;
}

.sidebar-widgets .widget:last-child {
  margin-bottom: 0;
}

.widget h6 {
  color: #313233;
  margin-bottom: 20px;
}

#bottom-widgets {
  padding-top: 60px;
  padding-bottom: 60px;
  background: #f5f6fa;
}

#bottom-widgets-wrap {
  display: flex;
  max-width: 1160px;
  margin: 0 auto;
}

#bottom-widgets-wrap .exponent-footer-column {
  flex-basis: 33.33%;
  margin-right: 30px;
}

#bottom-widgets-wrap .exponent-footer-column:last-child {
  margin-right: 0;
}

/** Recent Posts */
.emb-recent-posts-widget {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

.emb-recent-posts-widget-post {
  display: flex;
  margin-bottom: 20px;
}

.emb-recent-posts-widget-post-thumb {
  flex: 0 0 auto;
  margin-right: 20px;
}

.emb-recent-posts-widget-post-title {
  line-height: 19px;
  margin-bottom: 8px;
}
.emb-recent-posts-widget-post-title a {
  color: inherit;
}

.emb-recent-posts-widget-post-date-with-icon {
  font-size: 14px;
  line-height: 16px;
  display: flex;
  align-items: baseline;
}

.emb-recent-posts-widget-post-date-icon {
  margin-right: 5px;
  line-height: 0;
}

/** Tags */
.tagcloud {
  line-height: normal;
  display: flex;
  flex-wrap: wrap;
  margin-bottom: -10px;
}

.tagcloud .tag-cloud-link {
  color: inherit;
  padding: 5px 15px;
  margin: 0 10px 10px 0;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  transition: all 0.5s;
}

/** Search */
.search-submit {
  display: none !important;
}

/** Wp Calender */
#wp-calendar tr {
  border: none;
}

#wp-calendar td,
#wp-calendar th {
  padding: 0;
}

.widget_calendar td,
.widget_calendar th {
  border: 0;
  text-align: center;
}

.widget_calendar th {
  font-size: 13px;
}

.widget_calendar #wp-calendar {
  margin-bottom: 0;
}

.widget_calendar tbody td {
  font-size: 14px;
  letter-spacing: 0.05em;
  width: 37px;
  height: 37px;
  vertical-align: middle;
  border: 1px solid #e8e8e8;
}
.widget_calendar tbody a {
  display: flex;
  height: 100%;
  width: 100%;
  transition: all 0.5s;
  align-items: center;
  font-weight: 700;
  justify-content: center;
  line-height: 1;
  margin: 0 auto;
}

.widget_calendar a {
  color: inherit;
}

.widget_calendar #prev {
  text-align: left;
  padding-left: 10px;
}

.widget_calendar #next {
  padding-right: 10px;
  text-align: right;
}

/** spacing between thead and tbody **/
.widget_calendar thead::after {
  line-height: 1em;
  content: "\200C";
  display: block;
}
.widget_calendar tfoot:before {
  content: "\200C";
  line-height: 1em;
  display: block;
}

/** Categories, Archives, Links, Meta, Menu, Side nav */
.widget a {
  transition: color 0.5s;
}

/** Archives */
.widget_archive ul {
  padding: 0;
  list-style-type: none;
}

.widget_archive li {
  line-height: 1;
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 10px;
}
.widget_archive li:last-child {
  margin-bottom: 0;
}

.widget_archive a {
  color: inherit;
}

.emb-archive-widget-link {
  display: flex;
  align-items: center;
}

.emb-archive-post-count {
  margin-left: 15px;
  font-size: 11px;
  letter-spacing: 0.1em;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  display: flex;
  font-weight: 700;
  align-items: center;
  line-height: 0;
  justify-content: center;
  transition: all 0.5s;
}
.widget_archive .screen-reader-text {
  display: none;
}

/** Categories */
.widget_categories ul {
  padding: 0;
  list-style-type: none;
}

.widget_categories li {
  line-height: 1;
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 15px;
}
.widget_categories li:last-child {
  margin-bottom: 0;
}

.emb-categories-widget-link {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.widget_categories a {
  color: inherit;
}

.widget_categories .children {
  flex: 0 0 auto;
  width: 100%;
  padding: 20px 0 0 20px;
  margin: 0;
}
.widget_categories .children li:last-child {
  margin: 0;
  padding: 0;
  border: 0;
}

.emb-categories-post-count {
  margin-left: 15px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  transition: all 0.5s;
  line-height: 0;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.1em;
  justify-content: center;
}

.widget_categories .screen-reader-text {
  display: none;
}

/** Pages */
.widget_pages a {
  color: inherit;
  display: inline-block;
  position: relative;
  transition: all 0.3s;
}
.widget_pages a:before {
  content: "\e92f";
  font-family: "exponent" !important;
  margin-right: 5px;
}

.widget_pages ul {
  list-style-type: none;
  padding: 0;
}

.widget_pages .children {
  padding-left: 20px;
  margin-top: 10px;
}

.widget_pages li:last-child {
  margin-bottom: 0;
}

.widget_pages a:hover {
  transform: translate3d(5px, 0, 0);
}

/** Nav Menu */
.widget_nav_menu a {
  color: inherit;
  display: inline-block;
  position: relative;
  transition: all 0.3s;
}

.widget_nav_menu a:empty {
  display: none;
}

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

.widget_nav_menu li {
  margin-bottom: 10px;
}

.widget_nav_menu .sub-menu {
  padding-left: 20px;
  margin-top: 10px;
}

.widget_nav_menu li {
  margin-bottom: 10px;
}

.widget_nav_menu a:before {
  content: "\e92f";
  font-family: "exponent" !important;
  margin-right: 5px;
}

.widget_nav_menu li:last-child {
  margin-bottom: 0;
}

.widget_nav_menu a:hover {
  transform: translate3d(10px, 0, 0);
}

.tatsu-menu .tatsu-highlight > a {
  color: #212121;
  font-weight: 600;
  margin-bottom: 5px;
  color: initial !important;
  background: transparent !important;
}

/** RSS Feed */
.widget_rss h6 {
  display: flex;
  align-items: center;
}

.widget_rss h6 > *:first-child {
  margin-right: 10px;
}

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

.widget_rss li {
  margin-bottom: 20px;
}
.widget_rss li:last-child {
  margin-bottom: 0;
}

.widget_rss li .rsswidget {
  display: block;
  margin-bottom: 8px;
}

.widget_rss .rss-date {
  margin-bottom: 10px;
  font-size: 14px;
  display: block;
  line-height: 1;
}

.widget_rss .rssSummary {
  margin-bottom: 5px;
}

.widget_rss h6 > *:last-child {
  color: inherit;
}

.widget_rss cite {
  font-style: normal;
}

/** Search Form */
.emb-not-found-search {
  width: 50%;
  margin: 0 auto;
}

.emb-not-found-header {
  text-align: center;
  margin-bottom: 60px;
}

.widget_search .emb-form {
  margin-bottom: 0;
}

.emb-searchform-icon {
  position: absolute;
  display: block;
  top: 50%;
  right: 17px;
  line-height: 0;
  transform: translateY(-50%);
}
.emb-form-field .emb-searchform-icon {
  line-height: 0;
}

.searchform .search {
  padding: 17px;
}

.emb-searchform-icon svg {
  stroke: currentColor;
  width: 16px;
  height: 16px;
}

.emb-searchform-icon {
  transition: color 0.3s;
}

/** Meta */
.widget_meta ul {
  list-style-type: none;
  padding: 0;
}

.widget_meta li {
  margin-bottom: 10px;
}

.widget_meta a {
  color: inherit;
}

/** Recent Posts */
.widget_recent_entries ul {
  list-style-type: none;
  padding: 0;
}

.widget_recent_entries li {
  margin-bottom: 15px;
}
.widget_recent_entries li:last-child {
  margin-bottom: 0;
}

.widget_recent_entries a {
  color: inherit;
  display: block;
  margin-bottom: 8px;
}

.widget_recent_entries .post-date {
  display: flex;
  font-size: 14px;
  align-items: baseline;
}
.widget_recent_entries .post-date::before {
  content: "\e938";
  font-family: "tatsu-icons";
  margin-right: 5px;
}

.widget_recent_entries li > *:last-child {
  margin-bottom: 0;
}

/** Recent Comments */
.widget_recent_comments ul {
  padding: 0;
  list-style-type: none;
}

.widget_recent_comments .recentcomments {
  margin-bottom: 15px;
}
.widget_recent_comments .recentcomments:last-child {
  margin-bottom: 0;
}

.widget_recent_comments .comment-author-link a {
  margin-right: 5px !important;
}

.widget_recent_comments a {
  color: inherit;
}

.widget_recent_comments li > a {
  margin-left: 5px !important;
}

/**
 * Language Switcher
 */
#lang_sel a.lang_sel_sel,
#lang_sel a.lang_sel_sel:hover,
#lang_sel :hover > a,
#lang_sel ul ul :hover > a,
#lang_sel ul ul a,
#lang_sel ul ul a:visited {
  background-color: transparent;
  color: inherit;
}

/**
 * Back to Top Button
 */
#be-themes-back-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
  display: none;
  width: 40px;
  height: 40px;
  color: #fff;
  background: #1890ff;
  line-height: 40px;
  text-align: center;
}
#be-themes-back-to-top svg {
  width: 9px;
  fill: none;
  stroke: currentColor;
}

/**
 * Global Buttons
 */
/** Rounded Style */
.emb-button-rounded input[type="submit"] {
  border-radius: 2px;
}

/** Rounded Block */
.emb-button-rounded-block input[type="submit"] {
  border-radius: 4px;
  width: 100%;
}
.emb-button-rounded-block input[type="submit"]:hover {
  box-shadow: 0 10px 14px 1px rgba(0, 0, 0, 0.19);
}

/** Pill */
.emb-button-pill input[type="submit"] {
  border-radius: 25px;
}

/** Pill Block */
.emb-button-pill-block input[type="submit"] {
  border-radius: 25px;
  width: 100%;
}
.emb-button-pill-block input[type="submit"]:hover {
  box-shadow: 0 10px 14px 1px rgba(0, 0, 0, 0.19);
}

/**
 * Pagination
 */
.emb-pagination {
  margin-top: 60px;
  display: flex;
}
.emb-pagination-center {
  justify-content: center;
}
.emb-pagination-left {
  justify-content: flex-start;
}
.emb-pagination-right {
  justify-content: flex-end;
}
.emb-pagination .page-numbers {
  line-height: 1;
  margin-right: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #8f8f8f;
  padding: 8px 15px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 3px;
  transition: all 0.5s;
}

.emb-pagination .page-numbers:last-child {
  margin-right: 0;
}

.page-numbers.current {
  background: #f3f3f3;
  color: #2c2c2d;
}

.emb-pagination svg {
  stroke: #848991;
  transition: all 0.2s;
  width: 10px;
}

.emb-pagination .next:hover svg {
  transform: translate3d(5px, 0px, 0);
}
.emb-pagination .prev:hover svg {
  transform: translate3d(-5px, 0px, 0);
}

.be-single-portfolio-navigation-wrap {
  margin: 40px 0;
}

/****** Portfolio single pages *******/
.be-content-overflow-inner-wrap {
  display: flex;
  align-items: flex-start;
}
.right-fixed-page .be-content-overflow-inner-wrap {
  flex-direction: row-reverse;
}
#be-overflow-image-content {
  flex-basis: 50%;
}
.be-animate.already-visible {
  visibility: visible;
  margin-bottom: 0;
}
#right-sidebar-wrapper,
#left-sidebar-wrapper {
  flex: 0 0 auto;
  width: 50%;
}
#right-sidebar-wrapper {
  padding-left: 70px;
}
#left-sidebar-wrapper {
  padding-right: 70px;
}

/**
 *  Gdpr Alt image
 */

.gdpr-alt-image > img {
  opacity: 1;
  width: 100%;
}

/**
 *  Page Loader
 */
#be-themes-loader-container {
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 200;
  right: 0;
  bottom: 0;
  background: #fff;
}

/* Page Loader Style 1 */
#be-themes-page-loader .style-spin {
  display: inline-block;
  width: 50px;
  height: 50px;
  border: 7px solid rgba(24, 144, 255, 0.3);
  border-radius: 50%;
  border-top-color: #1890ff;
  animation: loader-spin 1s linear infinite;
  -webkit-animation: loader-spin 1s linear infinite;
}
@keyframes loader-spin {
  to {
    -webkit-transform: rotate(360deg);
  }
}
@-webkit-keyframes loader-spin {
  to {
    -webkit-transform: rotate(360deg);
  }
}

/* Page Loader Style 2 */
#be-themes-page-loader .style-ring {
  display: inline-block;
  position: relative;
  width: 64px;
  height: 64px;
}
#be-themes-page-loader .style-ring div {
  box-sizing: border-box;
  display: block;
  position: absolute;
  width: 51px;
  height: 51px;
  margin: 6px;
  border: 6px solid rgba(24, 144, 255, 0.6);
  border-radius: 50%;
  animation: loader-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  border-color: rgba(24, 144, 255, 0.6) transparent transparent transparent;
}
#be-themes-page-loader .style-ring div:nth-child(1) {
  animation-delay: -0.45s;
}
#be-themes-page-loader .style-ring div:nth-child(2) {
  animation-delay: -0.3s;
}
#be-themes-page-loader .style-ring div:nth-child(3) {
  animation-delay: -0.15s;
}
@keyframes loader-ring {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* Page Loader Style 3 */

#be-themes-page-loader .style-ellipsis {
  display: inline-block;
  position: relative;
  width: 64px;
  height: 64px;
}
#be-themes-page-loader .style-ellipsis div {
  position: absolute;
  top: 27px;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: rgba(24, 144, 255);
  animation-timing-function: cubic-bezier(0, 1, 1, 0);
}
#be-themes-page-loader .style-ellipsis div:nth-child(1) {
  left: 6px;
  animation: loader-ellipsis-1 0.6s infinite;
}
#be-themes-page-loader .style-ellipsis div:nth-child(2) {
  left: 6px;
  animation: loader-ellipsis-2 0.6s infinite;
}
#be-themes-page-loader .style-ellipsis div:nth-child(3) {
  left: 26px;
  animation: loader-ellipsis-2 0.6s infinite;
}
#be-themes-page-loader .style-ellipsis div:nth-child(4) {
  left: 45px;
  animation: loader-ellipsis-3 0.6s infinite;
}
@keyframes loader-ellipsis-1 {
  0% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes loader-ellipsis-3 {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(0);
  }
}
@keyframes loader-ellipsis-2 {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(19px, 0);
  }
}

#be-themes-page-loader .style-ripple {
  display: inline-block;
  position: relative;
  width: 64px;
  height: 64px;
}
#be-themes-page-loader .style-ripple div {
  position: absolute;
  border: 4px solid rgba(24, 144, 255);
  opacity: 1;
  border-radius: 50%;
  animation: loader-ripple 1s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}
#be-themes-page-loader .style-ripple div:nth-child(2) {
  animation-delay: -0.5s;
}
@keyframes loader-ripple {
  0% {
    top: 28px;
    left: 28px;
    width: 0;
    height: 0;
    opacity: 1;
  }
  100% {
    top: -1px;
    left: -1px;
    width: 58px;
    height: 58px;
    opacity: 0;
  }
}

/**
 * Helper Classes
 */

.left {
  float: left;
}
.right {
  float: right;
}

.clear {
  clear: both;
}

.no-margin {
  margin-bottom: 0;
}

.truncate {
  height: 100px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.no-list-style {
  list-style: none;
}
/** Image replacement */
.ir {
  background-color: transparent;
  border: 0;
  overflow: hidden;
  /* IE 6/7 fallback */
  *text-indent: -9999px;
}

.ir:before {
  content: "";
  display: block;
  width: 0;
  height: 100%;
}

/** Hide from both screenreaders and browsers: h5bp.com/u */
.hidden {
  display: none !important;
  visibility: hidden;
}

/** Hide only visually, but have it available for screenreaders: h5bp.com/v */
.visuallyhidden {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

/** Extends the .visuallyhidden class to allow the element to be focusable* when navigated to via the keyboard: h5bp.com/p */
.visuallyhidden.focusable:active,
.visuallyhidden.focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  width: auto;
}

/** Hide visually and from screenreaders, but maintain layout */
.invisible {
  visibility: hidden;
}

/*
 * Clearfix: contain floats
 *
 * For modern browsers
 * 1. The space content is one way to avoid an Opera bug when the
 *    `contenteditable` attribute is included anywhere else in the document.
 *    Otherwise it causes space to appear at the top and bottom of elements
 *    that receive the `clearfix` class.
 * 2. The use of `table` rather than `block` is only necessary if using
 *    `:before` to contain the top-margins of child elements.
 */

.clearfix:before,
.clearfix:after {
  content: " "; /* 1 */
  display: table; /* 2 */
}

.clearfix:after {
  clear: both;
}

/*
 * For IE 6/7 only
 * Include this rule to trigger hasLayout and contain floats.
 */
.clearfix {
  *zoom: 1;
}

/** Animated links */
.emb-lively-link {
  position: relative;
  padding-left: 1.3em;
  transition: padding-left 0.3s;
}
.emb-lively-link:hover {
  padding-left: 1.8em;
}
.emb-lively-link::before {
  content: "";
  position: absolute;
  height: 2px;
  width: 1.3em;
  display: block;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background: currentColor;
  transition: transform 0.3s;
  transform: translateY(-50%) scaleX(0.6);
  transform-origin: left;
}
.emb-lively-link:hover::before {
  transform: translateY(-50%) scaleX(1);
}

/** Animated Links Style2 */
.emb-lively-link-style1 {
  position: relative;
  display: inline-block;
}

.emb-lively-link-style1:after {
  content: "";
  position: absolute;
  bottom: -5px;
  width: 100%;
  height: 1px;
  background: #fff;
  left: 0;
  transform: scaleX(0);
  transition: transform 0.5s;
  transform-origin: right;
}

.emb-lively-link-style1:hover:after {
  transform-origin: left;
  transform: scaleX(1);
}

/** reset linke height */
.emb-reset-line-height {
  line-height: 0;
}

/** flex classes */
.emb-justify-content {
  justify-content: center;
}
.emb-justify-space-between {
  justify-content: space-between;
}
.emb-align-center {
  align-items: center;
}

/** share icons stacked style */
.be-share-stack {
  display: inline-block;
  font-size: 100%;
  position: relative;
  line-height: 0;
}
.be-stack-top.be-share-stack {
  padding: 5px;
  box-sizing: border-box;
}
.be-share-stack-mask {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  z-index: 2;
  bottom: 0;
}

.be-share-stack-mask .custom-share-button {
  font-size: 10px;
  left: 50%;
  transform: translateX(-50%);
}

.be-stack-top .be-share-stack-mask {
  padding: 5px;
  transition: height 0.5s;
  box-sizing: border-box;
}
.be-image-post .be-stack-top .be-share-stack-mask {
  transition: height 0.5s, background 0.5s, border-radius 0.5s;
}
.be-stack-top .be-share-stack-mask:hover {
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  background: white;
  border-radius: 30px;
}
.be-share-stack a {
  text-align: center;
  margin: 0px;
}
.be-share-stack .be-share-trigger-placeholder {
  z-index: 1;
  position: relative;
}
.be-share-stack-mask a {
  opacity: 0;
  position: absolute;
}
.be-stack-left .be-share-stack-mask a {
  left: 0;
  transition: opacity 0.3s, left 0.5s;
}
.be-stack-top .be-share-stack-mask a {
  bottom: 0;
  transition: opacity 0.3s, bottom 0.5s;
}
.be-stack-top .be-share-stack-mask .be-share-trigger {
  opacity: 1;
  bottom: 5px;
}

.be-bold-share-facebook {
  background: #3b5998;
}
.be-bold-share-twitter {
  background: #00aced;
}
.be-bold-share-pinterest {
  background: #cb2027;
}
.be-bold-share-googleplus {
  background: #dd4b39;
}
.be-bold-share-linkedin {
  background: #4875b4;
}
.be-share-icon {
  margin-right: 8px;
}

.custom-share-button:last-child {
  margin-right: 0;
}
.custom-share-button:hover {
  opacity: 0.7;
}
.custom-share-button .icon-social_pinterest:before,
.custom-share-button .icon-social_twitter:before,
.custom-share-button .icon-social_googleplus:before {
  position: relative;
  top: 1px;
}

/**
 * Media Queries
 */

/** Laptop */
@media only screen and (min-width: 1025px) and (max-width: 1220px) {
  .emb-wrap {
    max-width: calc(100% - 60px);
  }
}
@media only screen and (max-width: 1279px) {
  .emb-post-quote {
    padding: 80px;
  }
  .emb-posts-loop-style4 .emb-post-quote-text {
    font-size: 20px;
    line-height: 34px;
  }
  .emb-post-link {
    padding: 80px;
  }
  .emb-posts-loop-style4 .emb-post-link-url {
    font-size: 20px;
    line-height: 34px;
  }
}
@media only screen and (max-width: 1366px) {
  .be-row {
    flex-wrap: wrap;
  }
}

/** Tablet */
@media only screen and (min-width: 960px) {
  .emb-post-single-content .tatsu-wrap,
  .emb-post-single-header-wrap .emb-wrap:first-child {
    max-width: 800px;
  }
}
@media only screen and (max-width: 959px) {
  .be-cols-3 .be-col,
  .be-cols-4 .be-col,
  .be-cols-5 .be-col,
  .be-cols-6 .be-col {
    width: 50%;
  }
  .be-cols-3 .be-double-width-height-cell,
  .be-cols-3 .be-double-width-cell,
  .be-cols-4 .be-double-width-height-cell,
  .be-cols-4 .be-double-width-cell,
  .be-cols-5 .be-double-width-height-cell,
  .be-cols-5 .be-double-width-cell,
  .be-cols-6 .be-double-width-height-cell,
  .be-cols-6 .be-double-width-cell {
    width: 100%;
  }
  .emb-post-quote-text {
    font-size: 26px;
    line-height: 38px;
  }
  .emb-post-link-url {
    font-size: 26px;
    line-height: 38px;
  }
  .emb-posts-nav-post-title {
    display: none;
  }
  .emb-posts-nav-post-location {
    margin-bottom: 0;
  }
  .emb-posts-nav-icon {
    width: 20px;
  }
  .emb-posts-nav-link:hover .emb-posts-nav-prev-icon {
    transform: translate3d(-5px, 0, 0);
  }
  .emb-posts-nav-link:hover .emb-posts-nav-prev-post {
    transform: translate3d(5px, 0, 0);
  }
  .emb-posts-nav-link:hover .emb-posts-nav-next-icon {
    transform: translate3d(5px, 0, 0);
  }
  .emb-posts-nav-link:hover .emb-posts-nav-next-post {
    transform: translate3d(-5px, 0, 0);
  }
  .emb-post-single-footer-author {
    flex-wrap: wrap;
  }
  .emb-post-single-footer-author-image {
    margin-right: 0px;
    margin-bottom: 20px;
  }
  .emb-post-single-footer-author {
    padding: 40px 56px;
  }
  .emb-post-single-footer-author-nam {
    margin-bottom: 10px;
  }
  .emb-post-single-footer-author-about {
    width: 100%;
    margin-bottom: 10px;
  }
  .emb-comment-top .emb-comment-details {
    padding-top: 0;
  }
  .emb-comment-header {
    margin-bottom: 10px;
  }
  .emb-comment + .children {
    padding-left: 12px;
  }
  .emb-comment + #respond + .children {
    padding-left: 12px;
  }
  .emb-comment-top + .children {
    padding-left: 20px;
  }
  .emb-comment-top + #respond + .children {
    padding-left: 20px;
  }
  #bottom-widgets-wrap {
    flex-direction: column;
    margin: 0 30px;
  }
  .widget_nav_menu .sub-menu {
    padding-left: 10px;
  }
  .exponent-header-navigation {
    display: none;
  }
  .exponent-mobile-navigation {
    display: block;
  }
  .exponent-wrap {
    margin: 0 30px;
  }
  .emb-posts-loop-style4 .emb-post-thumb-wrap {
    width: 100%;
  }
  .emb-posts-loop-style4 .emb-post-details {
    padding: 35px 0 0 0;
    width: 100%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 959px) {
  .emb-smart-read {
    max-width: 740px;
  }
  .emb-wrap {
    max-width: 740px;
  }
}
@media only screen and (max-width: 1024px) {
  .be-slider-cols-3 .be-slide,
  .be-slider-cols-4 .be-slide,
  .be-slider-cols-5 .be-slide,
  .be-slider-cols-6 .be-slide {
    width: 50%;
  }
}
@media only screen and (min-width: 960px) and (max-width: 1024px) {
  .be-cols-4 .be-col,
  .be-cols-5 .be-col,
  .be-cols-6 .be-col {
    width: 33.33%;
  }
  .be-cols-4 .be-double-width-height-cell,
  .be-cols-4 .be-double-width-cell,
  .be-cols-5 .be-double-width-height-cell,
  .be-cols-5 .be-double-width-cell,
  .be-cols-6 .be-double-width-height-cell,
  .be-cols-6 .be-double-width-cell {
    width: 66.66%;
  }
  .emb-wrap {
    max-width: 940px;
  }
}

/** Mobile */
@media only screen and (max-width: 767px) {
  .children {
    padding-left: 0%;
  }
  .vcard,
  .children .vcard {
    width: 25%;
    margin-right: 0;
  }
  .comment-content,
  .children .comment-content {
    width: 70%;
    padding-left: 4%;
  }
  #footer-widgets {
    width: 270px;
  }
  .no-mobile {
    display: none;
  }
  input[type="text"],
  input[type="email"],
  input[type="password"] {
    width: 100%;
  }
  #back-to-top {
    display: none;
  }
  .emb-smart-read {
    max-width: 300px;
  }
  blockquote {
    padding-left: 25px;
  }

  .be-cols-2 .be-col,
  .be-cols-3 .be-col,
  .be-cols-4 .be-col,
  .be-cols-5 .be-col,
  .be-cols-6 .be-col {
    width: 100%;
  }
  .be-grid[data-mobile-cols="2"] .be-col {
    width: 50%;
  }

  .be-sidebar-layout {
    flex-wrap: wrap;
    margin: 0;
  }
  .be-row-wrap .be-sidebar-layout {
    margin: 0;
  }
  .be-sidebar-layout > * {
    padding: 0;
  }
  .be-sidebar-layout > *:first-child {
    width: 100%;
    margin-bottom: 70px;
  }
  .be-sidebar-layout > *:last-child {
    max-width: 100%;
    width: 100%;
  }

  .be-slider-cols-2 .be-slide,
  .be-slider-cols-3 .be-slide,
  .be-slider-cols-4 .be-slide,
  .be-slider-cols-5 .be-slide,
  .be-slider-cols-6 .be-slide {
    width: 100%;
  }
  .be-slider[data-mobile-cols="2"] .be-slide {
    width: 50%;
  }

  .emb-sidebar-layout .emb-blog-archive-inner {
    padding-bottom: 0;
  }

  .emb-posts-loop .sticky {
    padding: 30px;
  }

  .emb-post-quote {
    padding: 40px;
  }
  .emb-post-quote-text {
    margin-bottom: 10px;
    line-height: 30px;
    font-size: 22px;
  }

  .emb-post-link {
    padding: 40px;
  }
  .emb-post-link-url {
    margin-bottom: 10px;
    line-height: 30px;
    font-size: 22px;
  }

  .emb-post-single-header-wide .emb-post-title-meta {
    max-width: 100%;
  }

  .emb-post-single-footer-share {
    flex-wrap: wrap;
  }
  .emb-post-single-footer-share .be-bold-share {
    margin-bottom: 10px;
    margin-right: 5px;
    padding: 8px 12px;
  }
  .emb-comment-author-image {
    margin-bottom: 20px;
    margin-right: 0;
  }
  .emb-comment-inner {
    flex-wrap: wrap;
  }
  .emb-comment-details {
    width: 100%;
  }
}

@media only screen and (min-width: 480px) and (max-width: 767px) {
  .emb-smart-read {
    max-width: 440px;
  }

  .emb-wrap {
    max-width: 440px;
  }
}
@media only screen and (max-width: 479px) {
  .emb-wrap {
    max-width: 300px;
  }

  .emb-post-quote {
    padding: 25px;
  }
  .emb-post-quote-icon {
    margin-bottom: 15px;
  }
  .emb-post-quote-text {
    font-size: 16px;
    line-height: 28px;
    margin-bottom: 15px;
  }
  .emb-post-quote-author {
    font-size: 12px;
    line-height: 1;
  }

  .emb-posts-loop-style2 .emb-post-quote {
    padding: 25px;
  }
  .emb-posts-loop-style2 .emb-post-quote-icon {
    margin-bottom: 15px;
  }
  .emb-posts-loop-style2 .emb-post-quote-text {
    font-size: 16px;
    line-height: 28px;
    margin-bottom: 15px;
  }
  .emb-posts-loop-style2 .emb-post-quote-author {
    font-size: 12px;
    line-height: 1;
  }

  .emb-posts-loop-style4 .emb-post-quote {
    padding: 25px;
  }
  .emb-posts-loop-style4 .emb-post-quote-icon {
    margin-bottom: 15px;
  }
  .emb-posts-loop-style4 .emb-post-quote-text {
    font-size: 16px;
    line-height: 28px;
    margin-bottom: 15px;
  }
  .emb-posts-loop-style4 .emb-post-quote-author {
    font-size: 12px;
    line-height: 1;
  }

  .emb-post-link {
    padding: 25px;
  }
  .emb-post-link-url {
    font-size: 16px;
    line-height: 28px;
  }

  .emb-posts-loop-style2 .emb-post-link {
    padding: 25px;
  }
  .emb-posts-loop-style2 .emb-post-link-url {
    font-size: 16px;
    line-height: 28px;
  }

  .emb-posts-loop-style4 .emb-post-link {
    padding: 25px;
  }
  .emb-posts-loop-style4 .emb-post-link-url {
    font-size: 16px;
    line-height: 28px;
  }

  .emb-posts-nav-post-location {
    display: none;
  }
  .emb-posts-nav {
    padding: 10px 40px;
  }

  .emb-post-single-footer-author {
    padding: 30px;
  }
}

/** Print styles */
@media print {
  * {
    background: transparent !important;
    color: #000 !important; /* Black prints faster: h5bp.com/s */
    box-shadow: none !important;
    text-shadow: none !important;
  }

  a,
  a:visited {
    text-decoration: underline;
  }

  a[href]:after {
    content: " (" attr(href) ")";
  }

  abbr[title]:after {
    content: " (" attr(title) ")";
  }

  /*
    * Don't show links for images, or javascript/internal links
    */

  .ir a:after,
  a[href^="javascript:"]:after,
  a[href^="#"]:after {
    content: "";
  }

  pre,
  blockquote {
    border: 1px solid #999;
    page-break-inside: avoid;
  }

  thead {
    display: table-header-group; /* h5bp.com/t */
  }

  tr,
  img {
    page-break-inside: avoid;
  }
  blog img {
    max-width: 100% !important;
  }

  @page {
    margin: 0.5cm;
  }

  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }

  h2,
  h3 {
    page-break-after: avoid;
  }
}

.exponent-maintenance-mode-default {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}
