/*------------------------------------*\
    	     CONTENT TABLE
\*------------------------------------*/
/**
 * 		/
 * SETTINGS...........Main variables for the project (Colours, Fonts and Grids width)
 *
 * 		/GENERIC/
 * FUNCTIONS..........Functions and Mixins
 * GRIDS..............Grids, ref: https://unsemantic.com/
 * RESET..............Reset based on Boilerplate and Normalize
 *
 *		/BASE/
 * EDITOR.............Editor Texts (wp-editor or equivalent)
 * FORMS..............Form styles
 * RESPONSIVE.........Media queries for the whole project (notebooks, tablet, mobile)
 * STYLE..............Main styles
 * TITLES.............Titles styles and sizes
 *
 */
/*------------------------------------*\
    			SETTINGS
\*------------------------------------*/
/* @group CSS2 Variables */
:root {
  /* Font Styles */
  --epcl-font-family: var(--gh-font-body, "Manrope", sans-serif);
  --epcl-title-font-family: var(--gh-font-heading, "Momo Trust Display", sans-serif);
  --epcl-font-size: 16px; /* General content font size */
  --epcl-line-height: 1.8; /* General content line height */
  --epcl-font-size-editor: 17px; /* Single Content font size */
  --epcl-line-height-editor: 1.8; /* Single Content line height */
  /* Colors */
  --epcl-main-color: var(--ghost-accent-color, #FB64B6); /* Default: #FB64B6; */
  --epcl-secondary-color: #45BCF8; /* Default: #45BCF8; */
  --epcl-titles-color: #00123A; /* Default: #0F172A; */
  --epcl-titles-gradient: linear-gradient(25deg, #34C2FF 0%, #7C3AED 100%); /* Default: linear-gradient(25deg, #34C2FF 0%, #7C3AED 100%); */
  --epcl-text-color: #404855; /* Default: #1A2D5B; */
  --epcl-golden-color: #F0E1BF; /* Some Membership elements */
  --epcl-yellow: #FFC225; /* Premium Plans */
  --epcl-hover-border: #92DEFE; /* Titles Hover Effect color */
  --epcl-background-color: linear-gradient(120deg, #DAE0FF 0%, #D5FFF0 100%); /* Default: linear-gradient(25deg, #DAE0FF 0%, #D5FFF0 100%); */
  --epcl-boxes-background-color: #fff; /* Default: #fff; */
  --epcl-boxes-border-color: #d3edff; /* Default: #d3edff; */
  --epcl-border-color: #d3edff; /* General border color */
  --epcl-soft-border-color: rgba(0,0,0, 0.07); /* Soft border color */
  --epcl-editor-boxes-bg-color: var(--epcl-boxes-background-color); /* Koenig Cards: Bookmarks, Product, Tables, etc */
  --epcl-input-bg-color: #FFF; /* Input boxes background color */
  --epcl-dark-boxes-background-color: #1E1B1B; /* Dark mode boxes background color */
  --epcl-boxes-shadow: 0px 2px 5px 0px rgba(0,0,0, 0.03);
  --epcl-small-shadow: 0px 2px 5px 0px rgba(0,0,0, 0.02); /* Used on small images (like widgets or related articles) */
  --epcl-medium-shadow: 0px 10px 16px -4px rgba(0,0,0, 0.04);
  --epcl-large-shadow: 0px 20px 25px -4px rgba(69, 188, 248, 0.075);
  --epcl-transition-bezier: cubic-bezier(.5,2.5,.7,.7);
  /* Coding */
  --epcl-code-background: #FFF; /* FFF Used on "code" blocks not syntax highlighter */
  --epcl-code-color: #4c4a4a; /* 4c4a4a Used on code blocks not syntax highlighter */
  /* Others */
  --epcl-small-border-radius: 4px; /* Used on small elements (buttons) */
  --epcl-medium-border-radius: 12px; /* Used on medium elements (boxes) */
  --epcl-boxes-border-radius: 26px; /* Used on medium elements (boxes) */
  --epcl-large-border-radius: 100px; /* Used to generate circles */
}

[data-theme=dark] {
  --epcl-background-color: var(--epcl-dark-boxes-background-color) !important;
  --epcl-titles-color: #e2e3e6;
  --epcl-text-color: #96a4c8;
  --epcl-border-color: rgba(255, 255, 255, 0.1) !important;
  --epcl-boxes-border-color: rgba(255, 255, 255, 0.05) !important;
  --epcl-editor-boxes-bg-color: rgba(255, 255, 255, 0.05) !important; /* Koenig Cards: Bookmarks, Product, Tables, etc */
  --epcl-input-bg-color: rgba(255,255,255, 0.05);
  --epcl-large-shadow: 0px 20px 25px -4px rgba(255,255,255, 0.05);
  --epcl-hover-border: rgba(255, 255, 255, 0.15); /* Titles Hover Effect color */
  /* Coding */
  --epcl-code-background: rgba(255, 255, 255, 0.05); /* fff7ef Used on "code" blocks not syntax highlighter */
  --epcl-code-color: #96a4c8; /* 9e4a13 Used on code blocks not syntax highlighter */
  /* Global */
}
[data-theme=dark] div.body-background:before, [data-theme=dark] div.body-background:after {
  background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.15), transparent 70%);
}
[data-theme=dark] .logo-default {
  display: none !important;
}
[data-theme=dark] .logo-white-version {
  display: inline-block !important;
}
[data-theme=dark] a:hover,
[data-theme=dark] .widget_menu ul li a:hover {
  color: #fff;
}
[data-theme=dark] .bg-box {
  background: rgba(255, 255, 255, 0.045);
  -webkit-box-shadow: none;
          box-shadow: none;
}
[data-theme=dark] .bg-box.bg-dark {
  -webkit-box-shadow: none;
          box-shadow: none;
  border-color: transparent;
}
[data-theme=dark] .title.white {
  color: var(--epcl-titles-color);
}
[data-theme=dark] .tooltip:before {
  background: #fff;
  color: var(--epcl-background-color);
}
[data-theme=dark] .tooltip:after {
  border-top-color: #fff;
}
[data-theme=dark] .tooltip[data-tooltip-position=right]:after {
  border-right-color: #fff;
}
[data-theme=dark] .tags a {
  color: var(--epcl-titles-color);
  background: var(--epcl-background-color);
}
[data-theme=dark] .grid-prompts .filters a {
  background: transparent;
}
[data-theme=dark] .grid-prompts .filters a.active {
  background: rgba(255, 255, 255, 0.02);
}
[data-theme=dark] {
  /* Forms */
}
[data-theme=dark] .epcl-search-button {
  background: rgba(255, 255, 255, 0.045);
}
[data-theme=dark] .inputbox {
  color: #fff;
}
[data-theme=dark] .inputbox::-webkit-input-placeholder {
  color: #fff;
}

[data-theme=dark] .inputbox:-moz-placeholder {
  color: #fff;
}

[data-theme=dark] .inputbox::-moz-placeholder {
  color: #fff;
}

[data-theme=dark] .inputbox:-ms-input-placeholder {
  color: #fff;
}

[data-theme=dark] .newsletter-section {
  color: var(--epcl-text-color);
}
[data-theme=dark] .newsletter-section .bg {
  background: rgba(255, 255, 255, 0.045);
}
[data-theme=dark] .newsletter-section:before, [data-theme=dark] .newsletter-section:after {
  display: none;
}
[data-theme=dark] {
  /* Header */
}
[data-theme=dark] .main-nav ul.sub-menu {
  background-color: var(--epcl-background-color);
  border-color: var(--epcl-boxes-border-color);
}
[data-theme=dark] .main-nav ul.menu li a, [data-theme=dark] .main-nav ul.menu li .link {
  color: var(--epcl-text-color);
}
[data-theme=dark] .main-nav ul.menu li a:hover, [data-theme=dark] .main-nav ul.menu li .link:hover {
  color: #fff;
}
[data-theme=dark] .main-nav ul.menu li.current-menu-item a {
  color: #fff;
}
[data-theme=dark] {
  /* Membership */
}
[data-theme=dark] .membership-page .epcl-switch {
  border-left-color: transparent;
  background: rgba(255, 255, 255, 0.045);
}
[data-theme=dark] .membership-page .subscribe-plan .plan-name .title {
  background: none;
}
[data-theme=dark] {
  /* Text Editor */
}
[data-theme=dark] div.text ul:not([class]) li:before {
  background: var(--epcl-titles-color);
}
[data-theme=dark] div.text blockquote {
  color: var(--epcl-titles-color);
  background: rgba(255, 255, 255, 0.045);
}
[data-theme=dark] div.text blockquote:after {
  background: rgba(255, 255, 255, 0.15);
}
[data-theme=dark] div.text .kg-callout-card {
  color: var(--epcl-titles-color);
}
[data-theme=dark] div.text .kg-callout-card::before {
  background: transparent;
}

/* Theme Toggle Button */
.theme-toggle {
  position: fixed;
  bottom: 20px;
  left: 20px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--epcl-background-color);
  border: 1px solid var(--epcl-border-color);
  -webkit-box-shadow: var(--epcl-large-shadow);
          box-shadow: var(--epcl-large-shadow);
  cursor: pointer;
  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;
  z-index: 99;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.theme-toggle svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}
.theme-toggle .sun {
  color: #FFB900;
}
.theme-toggle .sun path {
  stroke: #FFB900;
}
.theme-toggle:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

[data-theme=light] .theme-toggle .moon {
  display: block;
}
[data-theme=light] .theme-toggle .sun {
  display: none;
}

[data-theme=dark] .theme-toggle {
  background: #fff;
}
[data-theme=dark] .theme-toggle .moon {
  display: none;
}
[data-theme=dark] .theme-toggle .sun {
  display: block;
}

@media screen and (max-width: 1200px) {
  [data-theme=dark] #header div.menu-mobile svg {
    color: #fff;
  }
  [data-theme=dark] div.menu-overlay {
    background: #fff;
  }
  [data-theme=dark] div.body-background:before, [data-theme=dark] div.body-background:after {
    background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.15), transparent 30%);
  }
  .theme-toggle {
    width: 40px;
    height: 40px;
    left: 10px;
    bottom: 10px;
  }
}
/* @end */
/* @group Font Families */
/* @end */
/* @end */
/* @group Effects speed */
/* @end */
/* @group Content Width and Margins */
/* @end */
/*------------------------------------*\
    	 	   GENERIC
\*------------------------------------*/
/* ================================================================== */
/* This file has a mobile-to-tablet, and tablet-to-desktop breakpoint */
/* ================================================================== */
/*
/* EstudioPatagon Note: All suffix and prefix classes has been removed from the original Unsemantic Framework.
/* If you need the original files, that can be downloded here: https://unsemantic.com/
*/
.clear {
  clear: both;
  display: block;
  overflow: hidden;
  visibility: hidden;
  width: 0;
  height: 0;
}

.grid-container:before,
.clearfix:before,
.grid-container:after,
.clearfix:after {
  content: ".";
  display: block;
  overflow: hidden;
  visibility: hidden;
  font-size: 0;
  line-height: 0;
  width: 0;
  height: 0;
}

.grid-container:after, .clearfix:after {
  clear: both;
}

.grid-container {
  margin-left: auto;
  margin-right: auto;
  max-width: 1290px;
  padding-left: 20px;
  padding-right: 20px;
}

.grid-5, .mobile-grid-5, .tablet-grid-5, .grid-10, .mobile-grid-10, .tablet-grid-10, .grid-15, .mobile-grid-15, .tablet-grid-15, .grid-20, .mobile-grid-20, .tablet-grid-20, .grid-25, .mobile-grid-25, .tablet-grid-25, .grid-30, .mobile-grid-30, .tablet-grid-30, .grid-35, .mobile-grid-35, .tablet-grid-35, .grid-40, .mobile-grid-40, .tablet-grid-40, .grid-45, .mobile-grid-45, .tablet-grid-45, .grid-50, .mobile-grid-50, .tablet-grid-50, .grid-55, .mobile-grid-55, .tablet-grid-55, .grid-60, .mobile-grid-60, .tablet-grid-60, .grid-65, .mobile-grid-65, .tablet-grid-65, .grid-70, .mobile-grid-70, .tablet-grid-70, .grid-75, .mobile-grid-75, .tablet-grid-75, .grid-80, .mobile-grid-80, .tablet-grid-80, .grid-85, .mobile-grid-85, .tablet-grid-85, .grid-90, .mobile-grid-90, .tablet-grid-90, .grid-95, .mobile-grid-95, .tablet-grid-95, .grid-100, .mobile-grid-100, .tablet-grid-100, .grid-33, .mobile-grid-33, .tablet-grid-33, .grid-66, .mobile-grid-66, .tablet-grid-66 {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-left: 20px;
  padding-right: 20px;
}

.grid-parent {
  padding-left: 0;
  padding-right: 0;
}

@media screen and (max-width: 767px) {
  .hide-on-mobile {
    display: none !important;
  }
  .mobile-grid-5 {
    float: left;
    width: 5%;
  }
  .mobile-grid-10 {
    float: left;
    width: 10%;
  }
  .mobile-grid-15 {
    float: left;
    width: 15%;
  }
  .mobile-grid-20 {
    float: left;
    width: 20%;
  }
  .mobile-grid-25 {
    float: left;
    width: 25%;
  }
  .mobile-grid-30 {
    float: left;
    width: 30%;
  }
  .mobile-grid-35 {
    float: left;
    width: 35%;
  }
  .mobile-grid-40 {
    float: left;
    width: 40%;
  }
  .mobile-grid-45 {
    float: left;
    width: 45%;
  }
  .mobile-grid-50 {
    float: left;
    width: 50%;
  }
  .mobile-grid-55 {
    float: left;
    width: 55%;
  }
  .mobile-grid-60 {
    float: left;
    width: 60%;
  }
  .mobile-grid-65 {
    float: left;
    width: 65%;
  }
  .mobile-grid-70 {
    float: left;
    width: 70%;
  }
  .mobile-grid-75 {
    float: left;
    width: 75%;
  }
  .mobile-grid-80 {
    float: left;
    width: 80%;
  }
  .mobile-grid-85 {
    float: left;
    width: 85%;
  }
  .mobile-grid-90 {
    float: left;
    width: 90%;
  }
  .mobile-grid-95 {
    float: left;
    width: 95%;
  }
  .mobile-grid-33 {
    float: left;
    width: 33.3333333333%;
  }
  .mobile-grid-66 {
    float: left;
    width: 66.6666666667%;
  }
  .mobile-grid-100 {
    clear: both;
    width: 100%;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .hide-on-tablet {
    display: none !important;
  }
  .tablet-grid-5 {
    float: left;
    width: 5%;
  }
  .tablet-grid-10 {
    float: left;
    width: 10%;
  }
  .tablet-grid-15 {
    float: left;
    width: 15%;
  }
  .tablet-grid-20 {
    float: left;
    width: 20%;
  }
  .tablet-grid-25 {
    float: left;
    width: 25%;
  }
  .tablet-grid-30 {
    float: left;
    width: 30%;
  }
  .tablet-grid-35 {
    float: left;
    width: 35%;
  }
  .tablet-grid-40 {
    float: left;
    width: 40%;
  }
  .tablet-grid-45 {
    float: left;
    width: 45%;
  }
  .tablet-grid-50 {
    float: left;
    width: 50%;
  }
  .tablet-grid-55 {
    float: left;
    width: 55%;
  }
  .tablet-grid-60 {
    float: left;
    width: 60%;
  }
  .tablet-grid-65 {
    float: left;
    width: 65%;
  }
  .tablet-grid-70 {
    float: left;
    width: 70%;
  }
  .tablet-grid-75 {
    float: left;
    width: 75%;
  }
  .tablet-grid-80 {
    float: left;
    width: 80%;
  }
  .tablet-grid-85 {
    float: left;
    width: 85%;
  }
  .tablet-grid-90 {
    float: left;
    width: 90%;
  }
  .tablet-grid-95 {
    float: left;
    width: 95%;
  }
  .tablet-grid-33 {
    float: left;
    width: 33.3333333333%;
  }
  .tablet-grid-66 {
    float: left;
    width: 66.6666666667%;
  }
  .tablet-grid-100 {
    clear: both;
    width: 100%;
  }
}
@media screen and (min-width: 1024px) {
  .hide-on-desktop {
    display: none !important;
  }
  .grid-5 {
    float: left;
    width: 5%;
  }
  .grid-10 {
    float: left;
    width: 10%;
  }
  .grid-15 {
    float: left;
    width: 15%;
  }
  .grid-20 {
    float: left;
    width: 20%;
  }
  .grid-25 {
    float: left;
    width: 25%;
  }
  .grid-30 {
    float: left;
    width: 30%;
  }
  .grid-35 {
    float: left;
    width: 35%;
  }
  .grid-40 {
    float: left;
    width: 40%;
  }
  .grid-45 {
    float: left;
    width: 45%;
  }
  .grid-50 {
    float: left;
    width: 50%;
  }
  .grid-55 {
    float: left;
    width: 55%;
  }
  .grid-60 {
    float: left;
    width: 60%;
  }
  .grid-65 {
    float: left;
    width: 65%;
  }
  .grid-70 {
    float: left;
    width: 70%;
  }
  .grid-75 {
    float: left;
    width: 75%;
  }
  .grid-80 {
    float: left;
    width: 80%;
  }
  .grid-85 {
    float: left;
    width: 85%;
  }
  .grid-90 {
    float: left;
    width: 90%;
  }
  .grid-95 {
    float: left;
    width: 95%;
  }
  .grid-33 {
    float: left;
    width: 33.3333333333%;
  }
  .grid-66 {
    float: left;
    width: 66.6666666667%;
  }
  .grid-100 {
    clear: both;
    width: 100%;
  }
}
/* @group Reset */
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, 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, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video, button {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section, main {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

html, textarea {
  overflow: auto;
}

html, body {
  width: 100%;
}

a {
  text-decoration: none;
  outline: 0;
}

input, textarea, button {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
}

a, input[type=button], input[type=submit], button, label {
  cursor: pointer;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: normal;
}

b, strong {
  font-weight: 700;
}

i, em {
  font-style: italic;
}

address {
  font-style: normal;
}

small {
  font-size: 75%;
}

sub, sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

abbr, acronym {
  border-bottom: 1px dotted;
  cursor: help;
}

ins {
  text-decoration: none;
}

/* @end */
::-moz-selection {
  background-color: var(--epcl-main-color);
  color: #fff;
  text-shadow: none;
}
::selection {
  background-color: var(--epcl-main-color);
  color: #fff;
  text-shadow: none;
}

/*------------------------------------*\
    		BASE ELEMENTS
\*------------------------------------*/
h1 {
  font-size: 26px;
}

h2 {
  font-size: 24px;
}

h3 {
  font-size: 22px;
}

h4 {
  font-size: 20px;
}

h5 {
  font-size: 18px;
}

h6 {
  font-size: 16px;
}

.title {
  font-family: var(--epcl-title-font-family);
  font-weight: 400;
  font-size: 32px;
  margin-bottom: 30px;
  line-height: 1.45;
  color: var(--epcl-titles-color);
  letter-spacing: 0.15px;
}
.title a {
  color: var(--epcl-titles-color);
}
.title a:hover {
  color: var(--epcl-main-color);
}
.title.ularge {
  font-size: 60px;
  margin-bottom: 60px;
  line-height: 1.2;
  font-weight: 400;
  letter-spacing: 1px;
}
.title.large {
  font-size: 46px;
  line-height: 1.15;
}
.title.medium {
  font-size: 22px;
  line-height: 1.4;
  margin-bottom: 30px;
}
.title.small {
  font-size: 18px;
  margin-bottom: 10px;
  font-weight: 500;
  font-family: var(--epcl-font-family);
}
.title.usmall {
  font-size: 15px;
  margin-bottom: 5px;
  letter-spacing: 0.4px;
  font-weight: 700;
  font-family: var(--epcl-font-family);
}
.title.white {
  color: #fff;
}
.title.bordered {
  position: relative;
  z-index: 2;
  font-weight: 800;
}
.title.bordered .dot {
  vertical-align: top;
}
.title.bordered svg.decoration {
  width: 18px;
  height: 18px;
  color: var(--epcl-secondary-color);
  vertical-align: top;
  margin-left: 5px;
}
.title.absolute {
  display: block;
  position: absolute;
  left: -50px;
  top: auto;
  bottom: -29px;
  width: 32px;
  margin: 0 !important;
  white-space: nowrap;
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
  -webkit-transform-origin: left top;
          transform-origin: left top;
}
.title.absolute .dot {
  vertical-align: top;
  top: 0px;
  margin-left: 0;
}
.title.absolute.large {
  left: -57px;
  bottom: -40px;
  font-size: 30px;
}
.title.absolute.large .dot {
  top: 6px;
}
.title.bold {
  font-weight: bold !important;
}
.title.title-gradient {
  margin-bottom: 50px;
  background: var(--epcl-titles-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Lightbox zoom effect */
.my-mfp-zoom-in .mfp-content {
  opacity: 0;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  -webkit-transform: scale(0.9);
          transform: scale(0.9);
}

/* animate in */
.my-mfp-zoom-in.mfp-ready .mfp-content {
  -webkit-opacity: 1;
  -moz-opacity: 1;
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1);
}

/* animate out */
.my-mfp-zoom-in.mfp-removing .mfp-content {
  -webkit-transform: scale(1);
          transform: scale(1);
  opacity: 0;
}

/* Dark overlay, start state */
.my-mfp-zoom-in.mfp-bg {
  opacity: 0;
  -webkit-transition: opacity 0.3s ease-out;
  transition: opacity 0.3s ease-out;
}

/* animate in */
.my-mfp-zoom-in.mfp-ready.mfp-bg {
  opacity: 1;
}

/* animate out */
.my-mfp-zoom-in.mfp-removing.mfp-bg {
  -webkit-opacity: 0;
  -moz-opacity: 0;
  opacity: 0;
}

.underline-effect a:not(.epcl-button), .underline-effect .link {
  padding-bottom: 6px;
  background-image: -webkit-gradient(linear, left top, right top, from(var(--epcl-main-color)), to(var(--epcl-hover-border)));
  background-image: linear-gradient(to right, var(--epcl-main-color) 0%, var(--epcl-hover-border) 100%);
  background-size: 0% 3px;
  background-repeat: no-repeat;
  background-position: 100% 75%;
  -webkit-transition: background-size 500ms ease;
  transition: background-size 500ms ease;
}
.underline-effect a:not(.epcl-button):hover, .underline-effect .link:hover {
  color: var(--epcl-titles-color);
  background-size: 100% 3px;
  background-position: 0% 75%;
}
.underline-effect.slower-effect a {
  -webkit-transition-duration: 450ms;
          transition-duration: 450ms;
}

.border-effect a:not(.epcl-button) {
  padding-bottom: 5px;
  background-image: -webkit-gradient(linear, left top, right top, from(var(--epcl-text-color)), to(var(--epcl-text-color)));
  background-image: linear-gradient(to right, var(--epcl-text-color) 0%, var(--epcl-text-color) 100%);
  background-size: 100% 1px;
  background-repeat: no-repeat;
  background-position: left 75%;
  -webkit-transition: background-size 300ms ease;
  transition: background-size 300ms ease;
}
.border-effect a:not(.epcl-button):hover {
  background-size: 0% 1px;
  background-position: 100% 75%;
}
.border-effect.white-border a:not(.epcl-button) {
  background-image: -webkit-gradient(linear, left top, right top, from(#fff), to(#fff));
  background-image: linear-gradient(to right, #fff 0%, #fff 100%);
}

.translate-effect {
  display: inline-block;
}
.translate-effect:hover {
  -webkit-transform: translateY(-3px);
          transform: translateY(-3px);
  -webkit-box-shadow: var(--epcl-large-shadow);
          box-shadow: var(--epcl-large-shadow);
}

.epcl-circle-button {
  display: inline-block;
  width: 33px;
  height: 33px;
  background: var(--epcl-secondary-color);
  color: var(--epcl-text-color);
  border: 1px solid var(--epcl-border-color);
  border-radius: var(--epcl-large-border-radius);
  text-align: center;
  line-height: 33px;
  margin: 10px 0 0;
}
.epcl-circle-button svg {
  vertical-align: middle;
  margin-top: -3px;
}

.epcl-search-button {
  display: inline-block;
  color: var(--epcl-titles-color);
  font-size: 15px;
  padding: 16px 20px;
  position: relative;
  z-index: 2;
  font-family: var(--epcl-font-family);
  font-weight: 700;
  border-radius: var(--epcl-large-border-radius);
  letter-spacing: 0.1px;
  line-height: 1.2;
  cursor: pointer;
  background: var(--epcl-main-color);
  corner-shape: squircle;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.epcl-search-button svg {
  vertical-align: middle;
  margin-left: 3px;
  margin-top: -1px;
}
.epcl-search-button::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(90%, transparent), to(rgba(0, 0, 0, 0.15)));
  background: linear-gradient(to bottom, transparent 90%, rgba(0, 0, 0, 0.15) 100%);
  border-radius: inherit;
  pointer-events: none;
  z-index: -1;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.epcl-search-button:hover {
  -webkit-transform: translateY(-1px);
          transform: translateY(-1px);
  -webkit-box-shadow: var(--epcl-large-shadow);
          box-shadow: var(--epcl-large-shadow);
}
.epcl-search-button.squircle {
  corner-shape: squircle;
}
.epcl-search-button.secondary {
  background: var(--epcl-secondary-color);
}
.epcl-search-button.small {
  font-size: 12px;
  padding: 5px 15px;
}
.epcl-search-button.medium {
  font-size: 13px;
  padding: 4px 15px;
}
.epcl-search-button.large {
  font-size: 20px;
  padding: 8px 40px;
}
.epcl-search-button.rounded {
  border-radius: var(--epcl-large-border-radius);
}
.epcl-search-button.circle {
  padding: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  text-align: center;
  line-height: 44px;
  font-size: 16px;
}
.epcl-search-button.circle:after {
  -webkit-transform: translate(2px, 2px);
          transform: translate(2px, 2px);
}
.epcl-search-button.close-lightbox {
  position: absolute;
  top: 30px;
  right: 30px;
  width: 40px;
  height: 40px;
  line-height: 40px;
}
.epcl-search-button.close-lightbox svg {
  margin: 0;
  vertical-align: middle;
  top: -1px;
  position: relative;
}
.epcl-search-button.counter b {
  display: inline-block;
  width: 25px;
  height: 25px;
  color: var(--epcl-main-color);
  background: #fff;
  border-radius: 50px;
  text-align: center;
  line-height: 25px;
  font-size: 85%;
  -webkit-box-shadow: var(--epcl-small-shadow);
          box-shadow: var(--epcl-small-shadow);
  margin-left: 5px;
}
.epcl-search-button.dark, .epcl-search-button.black {
  background-color: #15123A;
  color: #fff;
}
.epcl-search-button.white {
  background: #fff;
  color: var(--epcl-text-color);
}
.epcl-search-button.white svg {
  fill: var(--epcl-text-color);
}
.epcl-search-button.loading:after {
  padding: 0;
  margin-left: 7px;
  content: "";
  display: inline-block;
  vertical-align: middle;
  top: -2px;
  left: 0;
  position: relative;
  height: 12px;
  width: 12px;
  border: 2px solid #fff;
  border-radius: 100%;
  border-right-color: transparent;
  border-top-color: transparent;
  -webkit-animation: spin 0.5s infinite linear;
          animation: spin 0.5s infinite linear;
}
.epcl-search-button {
  background: #fff;
  color: var(--epcl-text-color);
  border: 1px solid var(--epcl-boxes-border-color);
  min-width: 400px;
  max-width: 100%;
  -webkit-box-shadow: 0 4px 10px rgba(0, 0, 0, 0.075);
          box-shadow: 0 4px 10px rgba(0, 0, 0, 0.075);
  text-align: left;
  position: relative;
  height: 50px;
  font-size: 17px;
  line-height: 50px;
  font-weight: 500;
}
.epcl-search-button:after {
  display: none;
}
.epcl-search-button .icon {
  background: var(--epcl-secondary-color);
  width: 50px;
  height: 50px;
  display: inline-block;
  border-radius: var(--epcl-large-border-radius);
  text-align: center;
  line-height: 50px;
  position: absolute;
  right: 15px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.epcl-search-button svg {
  width: 24px;
  height: 24px;
  margin: 0;
}
.epcl-search-button:hover {
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  -webkit-box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
          box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  background: #fff;
}

.button, .epcl-button:not(.epcl-shortcode) {
  display: inline-block;
  color: var(--epcl-titles-color);
  font-size: 15px;
  padding: 16px 20px;
  position: relative;
  z-index: 2;
  font-family: var(--epcl-font-family);
  font-weight: 700;
  border-radius: var(--epcl-large-border-radius);
  letter-spacing: 0.1px;
  line-height: 1.2;
  cursor: pointer;
  background: var(--epcl-main-color);
  corner-shape: squircle;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.button svg, .epcl-button:not(.epcl-shortcode) svg {
  vertical-align: middle;
  margin-left: 3px;
  margin-top: -1px;
}
.button::after, .epcl-button:not(.epcl-shortcode)::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(90%, transparent), to(rgba(0, 0, 0, 0.15)));
  background: linear-gradient(to bottom, transparent 90%, rgba(0, 0, 0, 0.15) 100%);
  border-radius: inherit;
  pointer-events: none;
  z-index: -1;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.button:hover, .epcl-button:not(.epcl-shortcode):hover {
  -webkit-transform: translateY(-1px);
          transform: translateY(-1px);
  -webkit-box-shadow: var(--epcl-large-shadow);
          box-shadow: var(--epcl-large-shadow);
}
.button.squircle, .epcl-button:not(.epcl-shortcode).squircle {
  corner-shape: squircle;
}
.button.secondary, .epcl-button:not(.epcl-shortcode).secondary {
  background: var(--epcl-secondary-color);
}
.button.small, .epcl-button:not(.epcl-shortcode).small {
  font-size: 12px;
  padding: 5px 15px;
}
.button.medium, .epcl-button:not(.epcl-shortcode).medium {
  font-size: 13px;
  padding: 4px 15px;
}
.button.large, .epcl-button:not(.epcl-shortcode).large {
  font-size: 20px;
  padding: 8px 40px;
}
.button.rounded, .epcl-button:not(.epcl-shortcode).rounded {
  border-radius: var(--epcl-large-border-radius);
}
.button.circle, .epcl-button:not(.epcl-shortcode).circle {
  padding: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  text-align: center;
  line-height: 44px;
  font-size: 16px;
}
.button.circle:after, .epcl-button:not(.epcl-shortcode).circle:after {
  -webkit-transform: translate(2px, 2px);
          transform: translate(2px, 2px);
}
.button.close-lightbox, .epcl-button:not(.epcl-shortcode).close-lightbox {
  position: absolute;
  top: 30px;
  right: 30px;
  width: 40px;
  height: 40px;
  line-height: 40px;
}
.button.close-lightbox svg, .epcl-button:not(.epcl-shortcode).close-lightbox svg {
  margin: 0;
  vertical-align: middle;
  top: -1px;
  position: relative;
}
.button.counter b, .epcl-button:not(.epcl-shortcode).counter b {
  display: inline-block;
  width: 25px;
  height: 25px;
  color: var(--epcl-main-color);
  background: #fff;
  border-radius: 50px;
  text-align: center;
  line-height: 25px;
  font-size: 85%;
  -webkit-box-shadow: var(--epcl-small-shadow);
          box-shadow: var(--epcl-small-shadow);
  margin-left: 5px;
}
.button.dark, .button.black, .epcl-button:not(.epcl-shortcode).dark, .epcl-button:not(.epcl-shortcode).black {
  background-color: #15123A;
  color: #fff;
}
.button.white, .epcl-button:not(.epcl-shortcode).white {
  background: #fff;
  color: var(--epcl-text-color);
}
.button.white svg, .epcl-button:not(.epcl-shortcode).white svg {
  fill: var(--epcl-text-color);
}
.button.loading:after, .epcl-button:not(.epcl-shortcode).loading:after {
  padding: 0;
  margin-left: 7px;
  content: "";
  display: inline-block;
  vertical-align: middle;
  top: -2px;
  left: 0;
  position: relative;
  height: 12px;
  width: 12px;
  border: 2px solid #fff;
  border-radius: 100%;
  border-right-color: transparent;
  border-top-color: transparent;
  -webkit-animation: spin 0.5s infinite linear;
          animation: spin 0.5s infinite linear;
}

/* Global Tags */
.tags {
  display: block;
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.15px;
}
.tags.absolute {
  position: absolute;
  top: 15px;
  right: 15px;
}
.tags a {
  display: inline-block;
  padding: 2px 10px;
  font-size: 11px;
  border-radius: var(--epcl-medium-border-radius);
  position: relative;
  font-weight: 700;
  -webkit-box-shadow: var(--epcl-small-shadow);
          box-shadow: var(--epcl-small-shadow);
  color: var(--epcl-main-color);
  background: #fff;
  text-transform: uppercase;
  corner-shape: squircle;
}
.tags a:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: var(--epcl-main-color);
  border-radius: var(--epcl-medium-border-radius);
  corner-shape: squircle;
  opacity: 0.12;
  z-index: 1;
  border: 1px solid rgba(0, 0, 0, 0.025);
}
.tags a span {
  position: relative;
  z-index: 2;
}
.tags a svg {
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.tags a:hover {
  color: #fff;
  background: var(--epcl-main-color);
}
.tags.large {
  font-size: 16px;
}
.tags.large a {
  padding: 12px 18px;
}
.tags.large a::before {
  width: 14px;
  height: 14px;
  margin-right: 8px;
  top: -1.5px;
}
.tags.large a:hover::before, .tags.large a:hover svg {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.tags.fill-color a {
  display: inline-block;
  background: var(--epcl-main-color);
  padding: 5px 15px;
  border-radius: var(--epcl-large-border-radius);
  margin: 0;
  font-weight: 600;
  border: 1px solid var(--epcl-border-color);
}

/* @end */
/* @group Forms */
input[type=text],
input[type=password],
input[type=email],
input[type=tel],
input[type=url],
input[type=search],
textarea,
select,
.inputbox {
  display: block;
  background: var(--epcl-input-bg-color);
  color: var(--epcl-text-color);
  border: 1px solid var(--epcl-boxes-border-color);
  font-size: 16px;
  font-family: var(--epcl-font-family);
  line-height: 1.8;
  letter-spacing: 0.25px;
  padding: 15px 25px;
  height: 45px;
  width: 100%;
  margin-bottom: 15px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  outline: 0;
  -webkit-box-shadow: var(--epcl-small-shadow);
          box-shadow: var(--epcl-small-shadow);
  border-radius: var(--epcl-large-border-radius);
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
input[type=text]::-webkit-input-placeholder, input[type=password]::-webkit-input-placeholder, input[type=email]::-webkit-input-placeholder, input[type=tel]::-webkit-input-placeholder, input[type=url]::-webkit-input-placeholder, input[type=search]::-webkit-input-placeholder, textarea::-webkit-input-placeholder, select::-webkit-input-placeholder, .inputbox::-webkit-input-placeholder {
  color: var(--epcl-titles-color);
  color: #667995;
}

input[type=text]:-moz-placeholder, input[type=password]:-moz-placeholder, input[type=email]:-moz-placeholder, input[type=tel]:-moz-placeholder, input[type=url]:-moz-placeholder, input[type=search]:-moz-placeholder, textarea:-moz-placeholder, select:-moz-placeholder, .inputbox:-moz-placeholder {
  color: var(--epcl-titles-color);
  color: #667995;
}

input[type=text]::-moz-placeholder, input[type=password]::-moz-placeholder, input[type=email]::-moz-placeholder, input[type=tel]::-moz-placeholder, input[type=url]::-moz-placeholder, input[type=search]::-moz-placeholder, textarea::-moz-placeholder, select::-moz-placeholder, .inputbox::-moz-placeholder {
  color: var(--epcl-titles-color);
  color: #667995;
}

input[type=text]:-ms-input-placeholder, input[type=password]:-ms-input-placeholder, input[type=email]:-ms-input-placeholder, input[type=tel]:-ms-input-placeholder, input[type=url]:-ms-input-placeholder, input[type=search]:-ms-input-placeholder, textarea:-ms-input-placeholder, select:-ms-input-placeholder, .inputbox:-ms-input-placeholder {
  color: var(--epcl-titles-color);
  color: #667995;
}

input[type=text]:focus,
input[type=password]:focus,
input[type=email]:focus,
input[type=tel]:focus,
input[type=url]:focus,
input[type=search]:focus,
textarea:focus,
select:focus,
.inputbox:focus {
  border-color: var(--epcl-main-color);
}

.inputbox.rounded {
  border-radius: var(--epcl-large-border-radius);
}
.inputbox.large {
  height: 66px;
  padding: 15px 30px;
  font-size: 17px;
}

textarea {
  width: 100%;
  height: 170px;
  resize: none;
  padding-top: 25px;
  padding-bottom: 25px;
}

input[type=submit], button[type=submit] {
  display: inline-block;
  color: var(--epcl-titles-color);
  font-size: 15px;
  padding: 16px 20px;
  position: relative;
  z-index: 2;
  font-family: var(--epcl-font-family);
  font-weight: 700;
  border-radius: var(--epcl-large-border-radius);
  letter-spacing: 0.1px;
  line-height: 1.2;
  cursor: pointer;
  background: var(--epcl-main-color);
  corner-shape: squircle;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
input[type=submit] svg, button[type=submit] svg {
  vertical-align: middle;
  margin-left: 3px;
  margin-top: -1px;
}
input[type=submit]::after, button[type=submit]::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(90%, transparent), to(rgba(0, 0, 0, 0.15)));
  background: linear-gradient(to bottom, transparent 90%, rgba(0, 0, 0, 0.15) 100%);
  border-radius: inherit;
  pointer-events: none;
  z-index: -1;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
input[type=submit]:hover, button[type=submit]:hover {
  -webkit-transform: translateY(-1px);
          transform: translateY(-1px);
  -webkit-box-shadow: var(--epcl-large-shadow);
          box-shadow: var(--epcl-large-shadow);
}
input[type=submit].squircle, button[type=submit].squircle {
  corner-shape: squircle;
}
input[type=submit].secondary, button[type=submit].secondary {
  background: var(--epcl-secondary-color);
}
input[type=submit].small, button[type=submit].small {
  font-size: 12px;
  padding: 5px 15px;
}
input[type=submit].medium, button[type=submit].medium {
  font-size: 13px;
  padding: 4px 15px;
}
input[type=submit].large, button[type=submit].large {
  font-size: 20px;
  padding: 8px 40px;
}
input[type=submit].rounded, button[type=submit].rounded {
  border-radius: var(--epcl-large-border-radius);
}
input[type=submit].circle, button[type=submit].circle {
  padding: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  text-align: center;
  line-height: 44px;
  font-size: 16px;
}
input[type=submit].circle:after, button[type=submit].circle:after {
  -webkit-transform: translate(2px, 2px);
          transform: translate(2px, 2px);
}
input[type=submit].close-lightbox, button[type=submit].close-lightbox {
  position: absolute;
  top: 30px;
  right: 30px;
  width: 40px;
  height: 40px;
  line-height: 40px;
}
input[type=submit].close-lightbox svg, button[type=submit].close-lightbox svg {
  margin: 0;
  vertical-align: middle;
  top: -1px;
  position: relative;
}
input[type=submit].counter b, button[type=submit].counter b {
  display: inline-block;
  width: 25px;
  height: 25px;
  color: var(--epcl-main-color);
  background: #fff;
  border-radius: 50px;
  text-align: center;
  line-height: 25px;
  font-size: 85%;
  -webkit-box-shadow: var(--epcl-small-shadow);
          box-shadow: var(--epcl-small-shadow);
  margin-left: 5px;
}
input[type=submit].dark, input[type=submit].black, button[type=submit].dark, button[type=submit].black {
  background-color: #15123A;
  color: #fff;
}
input[type=submit].white, button[type=submit].white {
  background: #fff;
  color: var(--epcl-text-color);
}
input[type=submit].white svg, button[type=submit].white svg {
  fill: var(--epcl-text-color);
}
input[type=submit].loading:after, button[type=submit].loading:after {
  padding: 0;
  margin-left: 7px;
  content: "";
  display: inline-block;
  vertical-align: middle;
  top: -2px;
  left: 0;
  position: relative;
  height: 12px;
  width: 12px;
  border: 2px solid #fff;
  border-radius: 100%;
  border-right-color: transparent;
  border-top-color: transparent;
  -webkit-animation: spin 0.5s infinite linear;
          animation: spin 0.5s infinite linear;
}
input[type=submit], button[type=submit] {
  font-family: var(--epcl-title-font-family);
  font-size: 18px;
  padding: 12px 35px;
  background: none;
  position: relative;
  z-index: 2;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
input[type=submit].absolute, button[type=submit].absolute {
  position: absolute;
  right: 10px;
  top: 10px;
  bottom: 10px;
  line-height: 1;
  padding-top: 0;
  padding-bottom: 0;
}

select {
  max-width: 100%;
  height: auto;
  border: 0;
  padding-right: 25px;
  background: var(--epcl-input-bg-color) url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAB4AAAAUBAMAAABohZD3AAAAA3NCSVQICAjb4U/gAAAAD1BMVEX///8AAAAAAAAAAAAAAABRO2rwAAAABXRSTlMAESIzRJTdRHwAAAAJcEhZcwAACxIAAAsSAdLdfvwAAAAcdEVYdFNvZnR3YXJlAEFkb2JlIEZpcmV3b3JrcyBDUzbovLKMAAAAY0lEQVQYlVXOyRGAIBBE0QYNgIMBWJYBcDAAFvOPSYRZ5zL1Tv3xvPY6dueC4JyA27AB2IzzMIx/4hDW6Sg+p8EJfVESCpkTEpkSGpMSshg6DkmoxlHHOaFbjoTiHHR83UX/A5M3KIMZPyPWAAAAAElFTkSuQmCC") no-repeat 97% center !important;
  background-size: 9px 6px !important;
  font: var(--epcl-font-size) var(--epcl-font-family);
  outline: 0;
  cursor: pointer;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
select option {
  color: #222;
  background: #fff;
}

button {
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}

.form-group {
  position: relative;
  z-index: 2;
}

form p {
  padding-bottom: 15px;
}

form.search-form {
  position: relative;
  z-index: 1;
}
form.search-form input.search-field {
  padding-right: 50px;
}
form.search-form .submit {
  position: absolute;
  right: 20px;
  top: 50%;
  color: var(--epcl-main-color);
  background: none;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  padding: 0;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}
form.search-form .submit:hover {
  opacity: 0.75;
}

/* @end */
/* Sidebar Widgets */
.widget {
  position: relative;
  z-index: 2;
  border-bottom: 1px solid var(--epcl-border-color);
  padding-bottom: 30px;
}
.widget .widget-title {
  font-size: 18px;
  margin-bottom: 15px;
}
.widget .widget-content {
  min-height: 125px;
}
.widget select {
  font-size: 15px;
  background: #fff url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAB4AAAAUBAMAAABohZD3AAAAA3NCSVQICAjb4U/gAAAAD1BMVEX///8AAAAAAAAAAAAAAABRO2rwAAAABXRSTlMAESIzRJTdRHwAAAAJcEhZcwAACxIAAAsSAdLdfvwAAAAcdEVYdFNvZnR3YXJlAEFkb2JlIEZpcmV3b3JrcyBDUzbovLKMAAAAY0lEQVQYlVXOyRGAIBBE0QYNgIMBWJYBcDAAFvOPSYRZ5zL1Tv3xvPY6dueC4JyA27AB2IzzMIx/4hDW6Sg+p8EJfVESCpkTEpkSGpMSshg6DkmoxlHHOaFbjoTiHHR83UX/A5M3KIMZPyPWAAAAAElFTkSuQmCC") no-repeat 97% center !important;
  background-size: 9px 6px !important;
}

.widget_text .textwidget {
  margin-top: -9px;
  font-size: 15px;
}
.widget_text p {
  margin-bottom: 20px;
}
.widget_text a {
  font-weight: 600;
}

.widget_tag_cloud, .widget_epcl_tag_cloud {
  display: block;
}
.widget_tag_cloud a, .widget_epcl_tag_cloud a {
  margin-bottom: 10px;
  margin-right: 10px !important;
}
.widget_tag_cloud a .count, .widget_epcl_tag_cloud a .count {
  display: none;
}

.widget_menu {
  font-size: 15px;
  text-align: left;
}
.widget_menu .arrow {
  position: absolute;
  right: 95%;
  top: 20px;
  z-index: -1;
}
.widget_menu nav {
  padding: 0;
}
.widget_menu ul li {
  text-align: left;
  padding: 5px 0;
  position: relative;
}
.widget_menu ul li a:hover {
  color: var(--epcl-main-color);
}
.widget_menu ul li:first-of-type {
  border: 0;
  padding-top: 0;
}

/* Custom Widgets */
.widget_epcl_toc div.text .kg-toggle-card {
  border: 0;
  padding-bottom: 0;
  padding-top: 0;
}
.widget_epcl_toc h4.kg-toggle-heading-text {
  font-size: 18px !important;
}
.widget_epcl_toc .epcl-toc {
  margin-bottom: 0 !important;
}

.widget_epcl_about {
  text-align: center;
}
.widget_epcl_about .top {
  margin-top: 10px;
}
.widget_epcl_about .avatar {
  margin: 0 auto;
}
.widget_epcl_about .avatar a {
  display: block;
  border-radius: 50%;
  overflow: hidden;
  width: 60px;
  height: 60px;
  -webkit-box-shadow: var(--epcl-small-shadow);
          box-shadow: var(--epcl-small-shadow);
  margin: 0 auto 10px;
}
.widget_epcl_about .avatar img {
  display: block;
}
.widget_epcl_about .info {
  margin-right: auto;
}
.widget_epcl_about .info .location {
  margin-top: -2px;
  font-size: 90%;
  font-weight: 500;
}
.widget_epcl_about .bio {
  margin-top: 10px;
  margin-bottom: 0px;
  font-size: 14px;
  text-align: center;
}
.widget_epcl_about .epcl-social-buttons {
  margin-top: 10px;
}
.widget_epcl_about .epcl-social-buttons a {
  margin-bottom: 0px;
}

.widget_epcl_posts_thumbs .item, .widget_epcl_featured_category .item, .widget_epcl_related_articles .item {
  margin-bottom: 20px;
  border-bottom: 1px solid var(--epcl-border-color);
  padding-bottom: 20px;
}
.widget_epcl_posts_thumbs .item:last-of-type, .widget_epcl_featured_category .item:last-of-type, .widget_epcl_related_articles .item:last-of-type {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: 0;
}
.widget_epcl_posts_thumbs .item .thumb img, .widget_epcl_featured_category .item .thumb img, .widget_epcl_related_articles .item .thumb img {
  border-radius: var(--epcl-medium-border-radius);
  aspect-ratio: 16/9;
}
.widget_epcl_posts_thumbs .item .post-info, .widget_epcl_featured_category .item .post-info, .widget_epcl_related_articles .item .post-info {
  margin-top: 5px;
}
.widget_epcl_posts_thumbs .item .meta, .widget_epcl_featured_category .item .meta, .widget_epcl_related_articles .item .meta {
  margin-top: 10px;
}
.widget_epcl_posts_thumbs .item time, .widget_epcl_featured_category .item time, .widget_epcl_related_articles .item time {
  margin-left: 0;
}

.widget_epcl_ads_125 .epcl-banner-wrapper {
  margin: 0 -10px;
}
.widget_epcl_ads_125 .epcl-banner {
  display: block;
  float: left;
  max-width: 50%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0 10px 20px;
}
.widget_epcl_ads_125 .epcl-banner a > img {
  display: block;
  max-width: 100%;
  height: auto;
}

.epcl-banner-wrapper a:before {
  display: none;
}

.widget_ep_ads_fluid .epcl-a {
  overflow: hidden;
}

.widget_epcl_social p {
  margin-bottom: 20px;
  font-size: 14px;
}
.widget_epcl_social .epcl-social-buttons a {
  margin: 0 5px 10px 0;
}

.widget_epcl_subscribe {
  position: relative;
  text-align: center;
  font-size: 15px;
  padding: 0;
}
.widget_epcl_subscribe .widget-content {
  position: relative;
}
.widget_epcl_subscribe .title {
  margin-bottom: 25px;
  font-size: 28px;
}
.widget_epcl_subscribe form {
  padding-top: 25px;
}
.widget_epcl_subscribe form .inputbox {
  margin-bottom: 0;
}
.widget_epcl_subscribe .epcl-plane {
  left: -57px;
}

#footer .widget_epcl_subscribe {
  margin-bottom: 10px;
}
#footer .widget_epcl_subscribe .widget-content {
  padding: 35px;
}

/* @end */
/* @group Global Styles */
body {
  font: var(--epcl-font-size) var(--epcl-font-family);
  line-height: var(--epcl-line-height);
  font-weight: 400;
  color: var(--epcl-text-color);
  -webkit-overflow-scrolling: touch;
  margin: 0 auto;
  -ms-word-wrap: break-word;
  word-wrap: break-word;
  background-color: var(--epcl-background-color);
}
body.cover:before {
  background-size: cover !important;
}

div.body-background {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  z-index: -2;
  pointer-events: none;
  overflow: hidden;
  background: var(--epcl-background-color);
}
div.body-background:before, div.body-background:after {
  content: "";
  position: absolute;
  width: 100%;
  background: radial-gradient(circle at 50% 50%, var(--epcl-secondary-color), transparent 70%);
  opacity: 0.3;
  z-index: -1;
}
div.body-background:before {
  top: -60%;
  left: -50%;
  bottom: 0;
}
div.body-background:after {
  top: 0;
  bottom: -60%;
  right: -50%;
}
div.body-background.body-image img {
  height: 100vh;
  -o-object-fit: cover;
     object-fit: cover;
}
div.body-background.body-image:before, div.body-background.body-image:after {
  display: none;
}

svg.icon {
  fill: #fff;
  width: 18px;
  height: 18px;
  vertical-align: middle;
}
svg.icon.small {
  width: 18px;
  height: 17px;
  margin-top: 1px;
}
svg.icon.large {
  width: 21px;
  height: 21px;
  margin-top: -2px;
}
svg.icon.ularge {
  width: 32px;
  height: 32px;
  margin-top: -2px;
}
svg.icon.dark {
  fill: #15123A;
}
svg.icon.main-color {
  fill: var(--epcl-main-color);
  color: var(--epcl-main-color);
}

svg.main-color {
  fill: var(--epcl-main-color);
}
svg.secondary-color {
  fill: var(--epcl-secondary-color);
}

.main-color, .primary-color {
  color: var(--epcl-main-color);
}

.secondary-color {
  color: var(--epcl-secondary-color);
}

[data-aos=fade] {
  opacity: 0;
  -webkit-transition: all 800ms ease;
  transition: all 800ms ease;
}

[data-aos=fade-fast] {
  opacity: 0;
  -webkit-transition: all 250ms ease;
  transition: all 250ms ease;
}

[data-aos=fade-up] {
  opacity: 0;
  -webkit-transform: translateY(50px);
          transform: translateY(50px);
  -webkit-transition: all 600ms ease;
  transition: all 600ms ease;
}

.aos-animate {
  -webkit-transform: translateY(0px);
          transform: translateY(0px);
  opacity: 1;
}

.lazy, [data-lazy=true] {
  opacity: 0;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}

.lazy.loaded, [data-lazy=true].loaded {
  opacity: 1;
}

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

a {
  color: var(--epcl-text-color);
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
a img {
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}

.link-button {
  font-weight: 700;
  font-size: 15px;
}
.link-button svg {
  width: 16px;
  height: 16px;
  fill: var(--epcl-text-color);
  margin-right: 3px;
  vertical-align: middle;
  position: relative;
  top: -1px;
}

.np-bottom {
  padding-bottom: 0 !important;
}

.no-margin {
  margin: 0 !important;
}

.alignleft {
  float: left !important;
}

.alignright {
  float: right !important;
}

.aligncenter {
  display: block;
  margin: 0 auto;
}

.epcl-inline {
  display: inline;
}

.textleft {
  text-align: left !important;
}

.textright {
  text-align: right !important;
}

.textcenter {
  text-align: center !important;
}

.fw-normal {
  font-weight: 400 !important;
}

.fw-medium {
  font-weight: 500 !important;
}

.fw-semibold {
  font-weight: 600 !important;
}

.fw-bold {
  font-weight: 700 !important;
}

.fw-black {
  font-weight: 900 !important;
}

.no-border-radius {
  border-radius: 0 !important;
}

.uppercase {
  text-transform: uppercase;
}

.overflow {
  overflow: hidden;
}

.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;
  word-break: normal;
}

.hidden {
  display: none;
}

.cover {
  background-repeat: no-repeat !important;
  background-position: center center !important;
  background-size: cover !important;
}

img.cover {
  -o-object-fit: cover;
     object-fit: cover;
}

.parallax {
  background-attachment: fixed !important;
}

hr {
  border: 0;
  border-top: 1px solid var(--epcl-border-color);
  height: 1px;
  margin: 0 0 20px;
}

.grid-container {
  max-width: 1290px;
}

.grid-container.grid-usmall {
  max-width: 600px;
}

.grid-container.grid-small {
  max-width: 780px;
}

.grid-container.grid-medium {
  max-width: 960px;
}

.grid-container.grid-large {
  max-width: 1400px;
}

.grid-container.grid-ularge {
  max-width: 1600px;
}

body.epcl-fullscreen {
  height: 100vh;
}

.flex-align-middle {
  margin: auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.epcl-fullheight {
  min-height: 100%;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column wrap;
          flex-flow: column wrap;
  position: relative;
  z-index: 2;
}

/* Content */
.highlight {
  color: var(--epcl-main-color);
  font-weight: 600;
}

#wrapper {
  position: relative;
  z-index: 2;
}

.row, .epcl-row {
  margin-left: -20px;
  margin-right: -20px;
}

.row.large, .epcl-row.large {
  margin-left: -35px;
  margin-right: -35px;
}

.epcl-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

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

.medium-section {
  padding-top: 40px;
  padding-bottom: 40px;
}

.large-section {
  padding-top: 120px;
  padding-bottom: 120px;
}

.fullwidth {
  display: block;
  width: 100%;
  height: auto;
}

.thumb {
  position: relative;
  z-index: 1;
}

.thumb .fullimage,
.full-link {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100% !important;
  z-index: 1;
}

.full-link {
  z-index: 10;
}

.content {
  margin-top: 70px;
}

.bg-box {
  background-color: var(--epcl-boxes-background-color);
  border-radius: var(--epcl-boxes-border-radius);
  border: 1px solid var(--epcl-boxes-border-color);
  position: relative;
  -webkit-box-shadow: var(--epcl-large-shadow);
          box-shadow: var(--epcl-large-shadow);
}
.bg-box.bg-dark {
  background-color: var(--epcl-dark-boxes-background-color);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.bg-box.section {
  padding: 50px;
}

.epcl-border {
  background-color: var(--epcl-border-color);
  height: 1px;
  margin: 100px auto 0;
}
.epcl-border.small {
  width: 75px;
  margin-top: 30px;
}

/* Banners */
.epcl-banner {
  max-width: 960px;
  padding-bottom: 0;
  margin-left: auto;
  margin-right: auto;
  padding-left: 30px;
  padding-right: 30px;
}

/* Social Buttons */
.epcl-social-buttons.button-style a {
  display: inline-block;
  text-align: center;
  width: 30px;
  height: 30px;
  margin: 0 2px;
  background: var(--epcl-main-color);
  border-radius: 20px;
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  line-height: 30px;
  -webkit-box-shadow: var(--epcl-small-shadow);
          box-shadow: var(--epcl-small-shadow);
  font-family: var(--epcl-title-font-family);
  corner-shape: squircle;
}
.epcl-social-buttons.button-style a svg {
  width: 16px;
  height: 16px;
  vertical-align: middle;
}
.epcl-social-buttons.button-style a:hover {
  -webkit-transform: translateY(-1px);
          transform: translateY(-1px);
  -webkit-box-shadow: none;
          box-shadow: none;
}
.epcl-social-buttons.button-style a.dribbble {
  background-color: rgb(228.3333333333, 161.6666666667, 192.5438596491);
}
.epcl-social-buttons.button-style a.facebook {
  background-color: #0866FF;
}
.epcl-social-buttons.button-style a.twitter {
  background-color: #000;
}
.epcl-social-buttons.button-style a.instagram {
  background-color: #ff5890;
}
.epcl-social-buttons.button-style a.linkedin {
  background-color: rgb(0, 152.5303867403, 232);
}
.epcl-social-buttons.button-style a.pinterest {
  background-color: rgb(242.1285714286, 108.8714285714, 124.0142857143);
}
.epcl-social-buttons.button-style a.tumblr {
  background-color: rgb(122.4476987448, 146.3807531381, 167.5523012552);
}
.epcl-social-buttons.button-style a.youtube {
  background-color: #ff4343;
}
.epcl-social-buttons.button-style a.flickr {
  background-color: rgb(242.8130841121, 104.1869158879, 176.546728972);
}
.epcl-social-buttons.button-style a.twitch {
  background-color: rgb(164.2663316583, 125.5929648241, 236.4070351759);
}
.epcl-social-buttons.button-style a.vk {
  background-color: rgb(139.703125, 180.09375, 229.296875);
}
.epcl-social-buttons.button-style a.telegram {
  background-color: #00aaff;
}
.epcl-social-buttons.button-style a.rss {
  background-color: #ffaa30;
}
.epcl-social-buttons.button-style a.tiktok {
  background-color: #00EDED;
}
.epcl-social-buttons.button-style a.mastodon {
  background-color: #615ef8;
}
.epcl-social-buttons.button-style a.bluesky {
  background-color: #0886FE;
}
.epcl-social-buttons.button-style a.threads {
  background-color: #000000;
}
.epcl-social-buttons.button-style a.whatsapp {
  background-color: #25D366;
}
.epcl-social-buttons.fill-color a {
  display: inline-block;
  margin: 0 2px;
  background: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  width: 34px;
  height: 44px;
  line-height: 44px;
  text-align: center;
}
.epcl-social-buttons.fill-color a i.fa {
  font-size: 22px;
}
.epcl-social-buttons.fill-color a svg {
  fill: none;
  width: 22px;
  height: 22px;
}
.epcl-social-buttons.fill-color a.dribbble {
  color: #D97AA6;
}
.epcl-social-buttons.fill-color a.facebook {
  color: #175BEB;
}
.epcl-social-buttons.fill-color a.twitter {
  color: #333;
}
.epcl-social-buttons.fill-color a.instagram {
  color: #fc9cdd;
}
.epcl-social-buttons.fill-color a.linkedin {
  color: #0077b5;
}
.epcl-social-buttons.fill-color a.pinterest {
  color: #EE3E52;
}
.epcl-social-buttons.fill-color a.tumblr {
  color: #5F7990;
}
.epcl-social-buttons.fill-color a.youtube {
  color: #fb5555;
}
.epcl-social-buttons.fill-color a.flickr {
  color: #EF3998;
}
.epcl-social-buttons.fill-color a.twitch {
  color: #8551e6;
}
.epcl-social-buttons.fill-color a.vk {
  color: #6299dc;
}
.epcl-social-buttons.fill-color a.telegram {
  color: #0088cc;
}
.epcl-social-buttons.fill-color a.rss {
  color: #ffaa30;
}
.epcl-social-buttons.fill-color a.tiktok {
  fill: #00EDED;
  color: #00EDED;
}
.epcl-social-buttons.fill-color a.whatsapp {
  color: #25D366;
}
.epcl-social-buttons.fill-color a.email {
  color: var(--epcl-secondary-color);
}
.epcl-social-buttons.fill-color a:hover {
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}
.epcl-social-buttons.medium-size a {
  width: 40px;
  height: 40px;
  line-height: 40px;
  font-size: 22px;
  margin-bottom: 10px;
}
.epcl-social-buttons.medium-size a svg {
  width: 18px;
  height: 18px;
}

/* Change mode button (just for demo purposes) */
.epcl-demo-tool {
  position: fixed;
  z-index: 10;
  top: 30%;
  left: 0;
  background: #fff;
  border: 1px solid #eee;
  -webkit-box-shadow: var(--epcl-boxes-shadow);
          box-shadow: var(--epcl-boxes-shadow);
  border-top-right-radius: 7px;
  border-bottom-right-radius: 7px;
  padding: 15px;
  font-size: 13px;
  width: 190px;
  -webkit-animation: fadeOut 800ms forwards;
          animation: fadeOut 800ms forwards;
  color: #222;
}
.epcl-demo-tool label {
  display: inline-block;
  margin-top: 10px;
}
.epcl-demo-tool input {
  border: 0;
  margin-right: 5px;
  width: 40px;
  background: #f83d76;
  background: transparent;
  vertical-align: middle;
  cursor: pointer;
}
.epcl-demo-tool:hover {
  -webkit-animation: none;
          animation: none;
}
.epcl-demo-tool .tool {
  position: absolute;
  left: 100%;
  top: 50%;
  background: #fff;
  z-index: -1;
  padding: 12px;
  padding-left: 14px;
  border: 1px solid #eee;
  -webkit-box-shadow: 10px 3px 12px -1px rgba(7, 10, 25, 0.1);
          box-shadow: 10px 3px 12px -1px rgba(7, 10, 25, 0.1);
  border-left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  border-top-right-radius: 7px;
  border-bottom-right-radius: 7px;
}
.epcl-demo-tool .tool svg {
  -webkit-animation: spin 4s ease infinite;
          animation: spin 4s ease infinite;
}
@-webkit-keyframes spin {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes spin {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
.epcl-demo-tool .title {
  text-align: center;
  color: #222;
}
.epcl-demo-tool .link {
  display: block;
  margin-top: 0px;
  padding: 5px 0 0;
  margin-top: 10px;
  font-family: var(--epcl-title-font-family);
  font-size: 13px;
  color: #222;
  cursor: pointer;
}
.epcl-demo-tool .link span {
  display: inline-block;
  width: 38px;
  height: 20px;
  background: #000;
  position: relative;
  z-index: 2;
  border-radius: 25px;
  vertical-align: middle;
  margin-right: 10px;
  opacity: 0.75;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.epcl-demo-tool .link span::before {
  content: "";
  position: absolute;
  top: 6px;
  left: 6px;
  width: 8px;
  height: 8px;
  background: #fff;
  border-radius: 50%;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.epcl-demo-tool .link.active span {
  background: #f83d76;
  opacity: 1;
}
.epcl-demo-tool .link.active span::before {
  left: 24px;
}

@-webkit-keyframes fadeOut {
  0% {
    left: 0;
  }
  100% {
    left: -222px;
  }
}

@keyframes fadeOut {
  0% {
    left: 0;
  }
  100% {
    left: -222px;
  }
}
@-webkit-keyframes fadeIn {
  0% {
    left: -222px;
  }
  100% {
    left: 0;
  }
}
@keyframes fadeIn {
  0% {
    left: -222px;
  }
  100% {
    left: 0;
  }
}
.fade-up {
  -webkit-animation: fadeUp 0.5s ease;
          animation: fadeUp 0.5s ease;
}

@-webkit-keyframes fadeUp {
  from {
    opacity: 0;
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
/* CSS Tooltip */
.tooltip {
  position: relative;
  z-index: 10;
}
.tooltip:before {
  content: attr(data-title);
  position: absolute;
  bottom: 120%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  left: 50%;
  margin-left: 0;
  white-space: nowrap;
  padding: 5px 15px;
  border-radius: var(--epcl-large-border-radius);
  background: #15123A;
  color: #fff;
  text-align: center;
  -webkit-box-shadow: var(--epcl-large-shadow);
          box-shadow: var(--epcl-large-shadow);
  font-size: 15px;
  font-family: var(--epcl-title-font-family);
  line-height: 1.8;
  opacity: 0;
  visibility: hidden;
  font-weight: 400;
  corner-shape: squircle;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.tooltip:after {
  content: "";
  position: absolute;
  left: 50%;
  margin-bottom: -5px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  bottom: 120%;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 8px solid #15123A;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 200ms ease, visibility 200ms ease;
  transition: opacity 200ms ease, visibility 200ms ease;
}
.tooltip[data-tooltip-position=right]:before {
  bottom: 50%;
  left: 110%;
  -webkit-transform: translateY(50%);
          transform: translateY(50%);
  padding: 3px 15px;
}
.tooltip[data-tooltip-position=right]:after {
  margin-bottom: 0;
  margin-left: -14px;
  bottom: 50%;
  left: 100%;
  -webkit-transform: translateY(50%);
          transform: translateY(50%);
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 8px solid transparent;
  border-right: 8px solid #15123A;
}
.tooltip[data-tooltip-position=right]:hover:before, .tooltip[data-tooltip-position=right]:hover:after {
  left: 100%;
  bottom: 50%;
}
.tooltip:hover:before, .tooltip:hover:after {
  opacity: 1;
  visibility: visible;
}

.dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--epcl-main-color);
  margin: 0 3px;
  border-radius: 15px;
  position: relative;
}
.dot.small {
  width: 4px;
  height: 4px;
  margin: 0 2px;
}
.dot.orange {
  background: #FF8D28;
}
.dot.blue {
  background: #00C0E8;
}
.dot.purple {
  background: #6155F5;
}

.title .dot {
  width: 8px;
  height: 8px;
  margin: 0 4px;
  top: -1px;
}
.title .dot.small {
  width: 5px;
  height: 5px;
  margin-left: 3px;
  top: 0;
}

.epcl-counter {
  display: inline-block;
  width: 26px;
  height: 26px;
  background: var(--epcl-main-color);
  color: #fff;
  text-align: center;
  line-height: 26px;
  font-size: 14px;
  border-radius: 50%;
  vertical-align: middle;
  margin-left: 12px;
  top: -2px;
  position: relative;
}

.logo-white-version {
  display: none !important;
}

div.text {
  font-size: var(--epcl-font-size-editor);
  line-height: var(--epcl-line-height-editor);
  font-weight: 400;
}
div.text strong, div.text b {
  font-weight: 700;
}
div.text iframe {
  max-width: 100%;
}
div.text hr {
  display: inline-block;
  width: 100%;
}
div.text div.ep-map img, div.text div#map_canvas img {
  max-width: none !important;
  height: inherit;
}
div.text img {
  max-width: 100%;
  height: auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: var(--epcl-small-border-radius);
  -webkit-box-shadow: var(--epcl-large-shadow);
          box-shadow: var(--epcl-large-shadow);
}
div.text img.alignleft {
  margin: 0 24px 24px 0;
}
div.text img.alignright {
  margin: 0 0 24px 24px;
}
div.text img.aligncenter {
  margin-bottom: 0;
}
div.text p.has-background {
  padding-top: 24px;
}
div.text h1, div.text h2, div.text h3, div.text h4, div.text h5, div.text h6 {
  font-weight: 800;
  color: var(--epcl-titles-color);
  letter-spacing: 0.25px;
}
div.text h1 {
  font-size: 44px;
  padding-top: 19.84px;
  margin-bottom: 12.16px;
  line-height: 1.3;
}
div.text h2 {
  font-size: 36px;
  padding-top: 14.4px;
  margin-bottom: 17.6px;
  line-height: 1.4;
}
div.text h3 {
  font-size: 28px;
  padding-top: 20.8px;
  margin-bottom: 14.4px;
  line-height: 1.5;
}
div.text h4 {
  font-size: 24px;
  padding-top: 8px;
  margin-bottom: 24px;
}
div.text h5 {
  font-size: 18px;
  padding-top: 8px;
  margin-bottom: 24px;
}
div.text h6 {
  font-size: 16px;
  padding-top: 8px;
  margin-bottom: 24px;
}
div.text a:not([class]) {
  text-decoration: none;
  font-weight: 700;
}
div.text a.ep-shortcode:hover, div.text .ep-shortcode a:hover {
  text-decoration: none;
}
div.text figure a {
  background-image: none !important;
}
div.text figure a:hover {
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}
div.text dt a:after, div.text .attachment a:after, div.text .wp-caption a:after {
  display: none !important;
}
div.text ul, div.text ol {
  margin: 0 0 0 30px;
}
div.text ol {
  margin-left: 45px;
}
div.text ul, div.text ul li {
  list-style-type: disc;
  list-style-position: inside;
  position: relative;
}
div.text ol, div.text ol li {
  list-style-type: decimal;
  list-style-position: outside;
}
div.text ol ol {
  list-style: upper-alpha;
}
div.text ol ol ol {
  list-style: lower-roman;
}
div.text ol ol ol ol {
  list-style: lower-alpha;
}
div.text ul ul, div.text ol ol, div.text ul ol, div.text ol ul {
  margin-bottom: 0;
  padding-bottom: 0;
  padding-top: 10px;
}
div.text ul:not([class]) li {
  position: relative;
  z-index: 1;
  padding-left: 20px;
  list-style-type: none;
}
div.text ul:not([class]) li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 14px;
  width: 5px;
  height: 5px;
  background: var(--epcl-secondary-color);
  border-radius: 50%;
}
div.text dl {
  margin: 0 1.5em;
}
div.text dt {
  font-weight: 600;
}
div.text dd {
  margin-bottom: 15px;
  margin-left: 40px;
}
div.text abbr, div.text acronym {
  border-bottom: 1px dotted;
  cursor: help;
}
div.text ins {
  text-decoration: none;
}
div.text dd, div.text pre, div.text blockquote {
  margin-bottom: 20px;
}
div.text blockquote {
  padding: 40px 60px;
  margin: 0 40px;
  border-left: 0;
  position: relative;
  z-index: 1;
  line-height: 1.85;
  font-weight: 400;
  font-family: var(--epcl-title-font-family);
  border: 1px solid var(--epcl-boxes-border-color);
  letter-spacing: 0.25px;
  background: var(--epcl-boxes-background-color);
  border-radius: var(--epcl-medium-border-radius);
  -webkit-box-shadow: var(--epcl-medium-shadow);
          box-shadow: var(--epcl-medium-shadow);
}
div.text blockquote::after {
  content: "";
  position: absolute;
  z-index: -1;
  right: 15px;
  bottom: 15px;
  width: 40px;
  height: 40px;
  background-color: var(--epcl-main-color);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='40' height='40'%3E%3Cpath fill='none' d='M0 0h24v24H0z'/%3E%3Cpath d='M19.417 6.679C20.447 7.773 21 9 21 10.989c0 3.5-2.457 6.637-6.03 8.188l-.893-1.378c3.335-1.804 3.987-4.145 4.247-5.621-.537.278-1.24.375-1.929.311-1.804-.167-3.226-1.648-3.226-3.489a3.5 3.5 0 0 1 3.5-3.5c1.073 0 2.099.49 2.748 1.179zm-10 0C10.447 7.773 11 9 11 10.989c0 3.5-2.457 6.637-6.03 8.188l-.893-1.378c3.335-1.804 3.987-4.145 4.247-5.621-.537.278-1.24.375-1.929.311C4.591 12.322 3.17 10.841 3.17 9a3.5 3.5 0 0 1 3.5-3.5c1.073 0 2.099.49 2.748 1.179z' fill='white'/%3E%3C/svg%3E");
          mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='40' height='40'%3E%3Cpath fill='none' d='M0 0h24v24H0z'/%3E%3Cpath d='M19.417 6.679C20.447 7.773 21 9 21 10.989c0 3.5-2.457 6.637-6.03 8.188l-.893-1.378c3.335-1.804 3.987-4.145 4.247-5.621-.537.278-1.24.375-1.929.311-1.804-.167-3.226-1.648-3.226-3.489a3.5 3.5 0 0 1 3.5-3.5c1.073 0 2.099.49 2.748 1.179zm-10 0C10.447 7.773 11 9 11 10.989c0 3.5-2.457 6.637-6.03 8.188l-.893-1.378c3.335-1.804 3.987-4.145 4.247-5.621-.537.278-1.24.375-1.929.311C4.591 12.322 3.17 10.841 3.17 9a3.5 3.5 0 0 1 3.5-3.5c1.073 0 2.099.49 2.748 1.179z' fill='white'/%3E%3C/svg%3E");
  -webkit-mask-size: 40px;
          mask-size: 40px;
}
div.text blockquote em {
  font-style: italic;
}
div.text blockquote cite, div.text blockquote__citation {
  display: block;
  margin-top: 15px;
  color: var(--epcl-titles-color);
  font-style: normal;
  font-size: 15px;
  font-weight: bold;
  text-transform: none;
}
div.text blockquote ul {
  padding-bottom: 0;
}
div.text blockquote p {
  padding-top: 0;
}
div.text blockquote p:last-of-type {
  margin-bottom: 0;
}
div.text blockquote.is-large cite, div.text blockquote.is-style-large cite {
  text-align: left;
}
div.text blockquote.has-text-align-right {
  border-right: 0;
}
div.text pre {
  overflow: auto;
  max-width: 100%;
  max-height: 400px;
  font-size: 15px;
}
div.text pre:not([class*=language-]), div.text code:not([class*=language-]) {
  font-family: Consolas, Monaco, "Andale Mono", "Ubuntu Mono", monospace;
  border: 0;
  background-color: var(--epcl-code-background);
  color: var(--epcl-code-color);
  border-radius: var(--epcl-medium-border-radius);
  line-height: 1.6;
  scrollbar-width: thin;
  border: 1px solid var(--epcl-border-color);
}
div.text code:not([class*=language-]) {
  padding: 2px 6px;
  margin: 0 1px;
  font-size: 14px;
  display: inline-block;
  border-radius: var(--epcl-small-border-radius);
}
div.text pre:not([class*=language-]) {
  padding: 1.5em 1.75em;
  line-height: 1.6;
  overflow: auto;
  border-radius: var(--epcl-medium-border-radius);
}
div.text pre:not([class*=language-]) code:not([class*=language-]) {
  border: 0;
  background: none;
}
div.text pre:not([class*=language-]) ol {
  margin: 0 0 0 35px;
  padding: 0;
  list-style: decimal;
  list-style-position: outside;
}
div.text pre:not([class*=language-]) ol li {
  padding-bottom: 0;
  list-style-position: outside;
}
div.text table {
  text-align: center;
  border-style: hidden;
  border-radius: var(--epcl-medium-border-radius);
  -webkit-box-shadow: var(--epcl-small-shadow);
          box-shadow: var(--epcl-small-shadow);
  width: 100%;
  max-width: 100%;
  background: var(--epcl-editor-boxes-bg-color);
}
div.text table th, div.text table td {
  border: 1px solid var(--epcl-border-color);
  padding: 10px 15px;
  text-align: center;
  border-radius: 10px;
}
div.text table th {
  font-weight: 700;
  color: var(--epcl-text-color);
  font-family: var(--epcl-title-font-family);
  letter-spacing: 0.35px;
}
div.text .gallery dl {
  margin: 0;
}
div.text .responsive-table {
  max-width: 100%;
  overflow: auto;
}
div.text address {
  font-style: italic;
  margin-bottom: 25px;
}
div.text {
  /* Text meant only for screen readers. */
}
div.text .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; /* Many screen reader and browser combinations announce broken words as they would appear visually. */
}
div.text .screen-reader-text:focus {
  background-color: #eee;
  clip: auto !important;
  clip-path: none;
  color: #444;
  display: block;
  font-size: 1em;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000;
}
div.text .epcl-gallery ul {
  margin: 0 -10px;
}
div.text .epcl-gallery ul li {
  list-style: none;
  padding-bottom: 20px;
  padding: 0 5px 10px;
}
div.text .epcl-gallery ul a {
  background-image: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}
div.text .epcl-gallery ul a:after {
  display: none;
}
div.text iframe, div.text figure, div.text p {
  padding-top: 8px;
  margin-bottom: 24px;
}
div.text p > iframe {
  margin-bottom: 0;
  display: block;
}
div.text hr, div.text pre, div.text blockquote, div.text table {
  margin-top: 11.2px;
  margin-bottom: 27.2px;
}
div.text li {
  padding-bottom: 3.84px;
}
div.text ul, div.text ol {
  margin-bottom: 24px;
}
div.text ul li:last-of-type, div.text ol li:last-of-type {
  padding-bottom: 0;
}
div.text > :first-child {
  padding-top: 0;
}
div.text figure {
  margin-bottom: 25px;
}
div.text figure figcaption {
  text-align: right;
  font-size: 13px;
}
div.text figure figcaption p::before {
  content: "";
}
div.text .kg-image-card {
  max-width: 75%;
  margin: 0 auto 25px;
}
div.text .kg-image-card.kg-width-wide {
  max-width: 85%;
}
div.text .kg-image-card.kg-width-full {
  max-width: 100%;
}
div.text .kg-embed-card twitterwidget {
  margin: 0 auto !important;
}
div.text .kg-embed-card iframe {
  margin-bottom: 0;
  display: block;
  width: 100%;
  height: 400px;
  border-radius: var(--epcl-medium-border-radius);
  padding-top: 0;
}
div.text .kg-embed-card figcaption {
  margin-top: 10px;
}
div.text .kg-gallery-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
div.text .kg-gallery-container a {
  background: none;
  padding: 0;
  border-radius: var(--epcl-medium-border-radius);
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
div.text .kg-gallery-container a img {
  -webkit-box-shadow: var(--epcl-large-shadow);
          box-shadow: var(--epcl-large-shadow);
}
div.text .kg-gallery-container a:hover img {
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}
div.text .kg-gallery-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
div.text .kg-gallery-image img {
  display: block;
  margin: 0;
  width: 100%;
  height: 100%;
}
div.text .kg-gallery-row:not(:first-of-type) {
  margin: 0.75em 0 0 0;
}
div.text .kg-gallery-image:not(:first-of-type) {
  margin: 0 0 0 0.75em;
}
div.text .kg-bookmark-card {
  padding-top: 8px;
  margin-bottom: 24px;
}
div.text .kg-bookmark-card .kg-bookmark-container {
  border-radius: var(--epcl-medium-border-radius);
  background: var(--epcl-editor-boxes-bg-color);
  border: 1px solid var(--epcl-border-color);
  -webkit-box-shadow: none;
          box-shadow: none;
  color: var(--epcl-text-color);
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
div.text .kg-bookmark-card .kg-bookmark-container:hover {
  border-radius: var(--epcl-medium-border-radius);
  border-color: var(--epcl-border-color);
  -webkit-box-shadow: var(--epcl-large-shadow);
          box-shadow: var(--epcl-large-shadow);
  background: var(--epcl-editor-boxes-bg-color);
  color: var(--epcl-text-color);
}
div.text .kg-bookmark-card .kg-bookmark-content {
  padding: 30px;
}
div.text .kg-bookmark-card .kg-bookmark-title {
  font-weight: 700;
  font-size: 18px;
  color: var(--epcl-titles-color);
  font-family: var(--epcl-title-font-family);
}
div.text .kg-bookmark-card .kg-bookmark-description {
  font-size: 16px;
  max-height: 50px;
}
div.text .kg-bookmark-card .kg-bookmark-description,
div.text .kg-bookmark-card .kg-bookmark-metadata {
  margin-top: 12px;
}
div.text .kg-bookmark-card .kg-bookmark-metadata {
  font-size: 16px;
  color: var(--epcl-text-color);
  font-weight: 700;
}
div.text .kg-bookmark-card .kg-bookmark-thumbnail img {
  display: block;
  -o-object-fit: contain;
     object-fit: contain;
  width: 100%;
  height: 100%;
  border-radius: 0;
  border: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 20px;
}
div.text .kg-bookmark-card .kg-bookmark-icon {
  width: 22px;
  height: 22px;
  margin-right: 8px;
  vertical-align: middle;
  position: relative;
  top: -1px;
}
div.text {
  /* Button Card */
}
div.text .kg-button-card {
  padding-top: 8px;
  margin-bottom: 24px;
}
div.text .kg-button-card .kg-btn {
  display: inline-block;
  color: var(--epcl-titles-color);
  font-size: 15px;
  padding: 16px 20px;
  position: relative;
  z-index: 2;
  font-family: var(--epcl-font-family);
  font-weight: 700;
  border-radius: var(--epcl-large-border-radius);
  letter-spacing: 0.1px;
  line-height: 1.2;
  cursor: pointer;
  background: var(--epcl-main-color);
  corner-shape: squircle;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
div.text .kg-button-card .kg-btn svg {
  vertical-align: middle;
  margin-left: 3px;
  margin-top: -1px;
}
div.text .kg-button-card .kg-btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(90%, transparent), to(rgba(0, 0, 0, 0.15)));
  background: linear-gradient(to bottom, transparent 90%, rgba(0, 0, 0, 0.15) 100%);
  border-radius: inherit;
  pointer-events: none;
  z-index: -1;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
div.text .kg-button-card .kg-btn:hover {
  -webkit-transform: translateY(-1px);
          transform: translateY(-1px);
  -webkit-box-shadow: var(--epcl-large-shadow);
          box-shadow: var(--epcl-large-shadow);
}
div.text .kg-button-card .kg-btn.squircle {
  corner-shape: squircle;
}
div.text .kg-button-card .kg-btn.secondary {
  background: var(--epcl-secondary-color);
}
div.text .kg-button-card .kg-btn.small {
  font-size: 12px;
  padding: 5px 15px;
}
div.text .kg-button-card .kg-btn.medium {
  font-size: 13px;
  padding: 4px 15px;
}
div.text .kg-button-card .kg-btn.large {
  font-size: 20px;
  padding: 8px 40px;
}
div.text .kg-button-card .kg-btn.rounded {
  border-radius: var(--epcl-large-border-radius);
}
div.text .kg-button-card .kg-btn.circle {
  padding: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  text-align: center;
  line-height: 44px;
  font-size: 16px;
}
div.text .kg-button-card .kg-btn.circle:after {
  -webkit-transform: translate(2px, 2px);
          transform: translate(2px, 2px);
}
div.text .kg-button-card .kg-btn.close-lightbox {
  position: absolute;
  top: 30px;
  right: 30px;
  width: 40px;
  height: 40px;
  line-height: 40px;
}
div.text .kg-button-card .kg-btn.close-lightbox svg {
  margin: 0;
  vertical-align: middle;
  top: -1px;
  position: relative;
}
div.text .kg-button-card .kg-btn.counter b {
  display: inline-block;
  width: 25px;
  height: 25px;
  color: var(--epcl-main-color);
  background: #fff;
  border-radius: 50px;
  text-align: center;
  line-height: 25px;
  font-size: 85%;
  -webkit-box-shadow: var(--epcl-small-shadow);
          box-shadow: var(--epcl-small-shadow);
  margin-left: 5px;
}
div.text .kg-button-card .kg-btn.dark, div.text .kg-button-card .kg-btn.black {
  background-color: #15123A;
  color: #fff;
}
div.text .kg-button-card .kg-btn.white {
  background: #fff;
  color: var(--epcl-text-color);
}
div.text .kg-button-card .kg-btn.white svg {
  fill: var(--epcl-text-color);
}
div.text .kg-button-card .kg-btn.loading:after {
  padding: 0;
  margin-left: 7px;
  content: "";
  display: inline-block;
  vertical-align: middle;
  top: -2px;
  left: 0;
  position: relative;
  height: 12px;
  width: 12px;
  border: 2px solid #fff;
  border-radius: 100%;
  border-right-color: transparent;
  border-top-color: transparent;
  -webkit-animation: spin 0.5s infinite linear;
          animation: spin 0.5s infinite linear;
}
div.text .kg-button-card .kg-btn:hover {
  opacity: 1;
}
div.text {
  /* Toggles */
}
div.text .kg-toggle-card {
  border-bottom: 1px solid var(--epcl-border-color);
  border-radius: 0;
  padding: 1.2em 0;
  margin-bottom: 24px;
  -webkit-box-shadow: none;
          box-shadow: none;
}
div.text .kg-toggle-card .kg-toggle-heading {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
div.text .kg-toggle-card .kg-toggle-heading svg {
  color: var(--epcl-text-color);
}
div.text .kg-toggle-card .kg-toggle-heading-text {
  padding-top: 0;
}
div.text .kg-toggle-card .kg-toggle-content p {
  line-height: var(--epcl-line-height-editor);
}
div.text {
  /* Selfhosted Audio */
}
div.text .kg-audio-card {
  padding: 0;
  padding: 10px;
  position: relative;
  border-radius: var(--epcl-medium-border-radius);
  background: var(--epcl-editor-boxes-bg-color);
  border: 1px solid var(--epcl-border-color);
  -webkit-box-shadow: var(--epcl-large-shadow);
          box-shadow: var(--epcl-large-shadow);
  margin-bottom: 24px;
  color: var(--epcl-text-color);
}
div.text .kg-audio-card .kg-audio-title {
  font-family: var(--epcl-title-font-family);
  color: var(--epcl-titles-color);
  font-size: var(--epcl-font-size-editor);
}
div.text .kg-audio-card .kg-audio-thumbnail {
  border-radius: var(--epcl-medium-border-radius);
  position: relative;
  -webkit-box-shadow: none;
          box-shadow: none;
}
div.text .kg-audio-card .kg-audio-player button, div.text .kg-audio-card .kg-audio-player input {
  color: var(--epcl-text-color);
}
div.text {
  /* Selfhosted File */
}
div.text .kg-file-card {
  margin-bottom: 24px;
}
div.text .kg-file-card a.kg-file-card-container {
  border-radius: var(--epcl-medium-border-radius);
  background: var(--epcl-editor-boxes-bg-color);
  border: 1px solid var(--epcl-border-color);
  -webkit-box-shadow: var(--epcl-large-shadow);
          box-shadow: var(--epcl-large-shadow);
  color: var(--epcl-text-color);
}
div.text .kg-file-card .kg-file-card-title {
  font-family: var(--epcl-title-font-family);
  font-size: var(--epcl-font-size-editor);
  color: var(--epcl-titles-color);
  margin-bottom: 8px;
}
div.text .kg-file-card .kg-file-card-metadata {
  margin-top: 5px;
}
div.text .kg-file-card .kg-file-card-filename {
  font-weight: 600;
}
div.text .kg-file-card .kg-file-card-icon {
  background: var(--epcl-boxes-background-color);
  border: 1px solid var(--epcl-border-color);
  border-radius: var(--epcl-medium-border-radius);
}
div.text .kg-file-card .kg-file-card-icon:before {
  opacity: 0;
  border-radius: var(--epcl-medium-border-radius);
}
div.text .kg-file-card .kg-file-card-icon svg {
  color: var(--epcl-text-color);
}
div.text {
  /* Video */
}
div.text .kg-video-card {
  border-radius: var(--epcl-medium-border-radius);
  overflow: hidden;
  padding-top: 0;
}
div.text {
  /* Callouts */
}
div.text .kg-callout-card {
  padding: 1.2em 1.6em;
  font-size: 19px;
  margin-bottom: 24px;
  border-radius: var(--epcl-medium-border-radius);
  border: 1px solid rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
}
div.text .kg-callout-card .kg-callout-emoji {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  min-width: 15px;
}
div.text .kg-callout-card div.kg-callout-text {
  line-height: var(--epcl-line-height-editor);
}
div.text .kg-callout-card::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  border-radius: var(--epcl-small-border-radius);
  background: #fff;
  z-index: -1;
}
div.text {
  /* Product Card */
}
div.text .kg-product-card {
  padding-top: 8px;
  margin-bottom: 24px;
}
div.text .kg-product-card .kg-product-card-image {
  margin-bottom: 10px;
  border-radius: var(--epcl-medium-border-radius);
  -webkit-box-shadow: none;
          box-shadow: none;
}
div.text .kg-product-card .kg-product-card-container {
  padding: 30px;
  border-radius: var(--epcl-medium-border-radius);
  background: var(--epcl-editor-boxes-bg-color);
  border: 1px solid var(--epcl-border-color);
  -webkit-box-shadow: var(--epcl-large-shadow);
          box-shadow: var(--epcl-large-shadow);
}
div.text .kg-product-card .kg-product-card-title {
  font-family: var(--epcl-title-font-family);
  padding-top: 0;
  font-weight: 800;
}
div.text .kg-product-card .kg-product-card-rating-star {
  margin-top: -4px;
}
div.text .kg-product-card .kg-product-card-rating-star svg {
  fill: var(--epcl-yellow);
}
div.text .kg-product-card .kg-product-card-btn-accent {
  display: inline-block;
  color: var(--epcl-titles-color);
  font-size: 15px;
  padding: 16px 20px;
  position: relative;
  z-index: 2;
  font-family: var(--epcl-font-family);
  font-weight: 700;
  border-radius: var(--epcl-large-border-radius);
  letter-spacing: 0.1px;
  line-height: 1.2;
  cursor: pointer;
  background: var(--epcl-main-color);
  corner-shape: squircle;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
div.text .kg-product-card .kg-product-card-btn-accent svg {
  vertical-align: middle;
  margin-left: 3px;
  margin-top: -1px;
}
div.text .kg-product-card .kg-product-card-btn-accent::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(90%, transparent), to(rgba(0, 0, 0, 0.15)));
  background: linear-gradient(to bottom, transparent 90%, rgba(0, 0, 0, 0.15) 100%);
  border-radius: inherit;
  pointer-events: none;
  z-index: -1;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
div.text .kg-product-card .kg-product-card-btn-accent:hover {
  -webkit-transform: translateY(-1px);
          transform: translateY(-1px);
  -webkit-box-shadow: var(--epcl-large-shadow);
          box-shadow: var(--epcl-large-shadow);
}
div.text .kg-product-card .kg-product-card-btn-accent.squircle {
  corner-shape: squircle;
}
div.text .kg-product-card .kg-product-card-btn-accent.secondary {
  background: var(--epcl-secondary-color);
}
div.text .kg-product-card .kg-product-card-btn-accent.small {
  font-size: 12px;
  padding: 5px 15px;
}
div.text .kg-product-card .kg-product-card-btn-accent.medium {
  font-size: 13px;
  padding: 4px 15px;
}
div.text .kg-product-card .kg-product-card-btn-accent.large {
  font-size: 20px;
  padding: 8px 40px;
}
div.text .kg-product-card .kg-product-card-btn-accent.rounded {
  border-radius: var(--epcl-large-border-radius);
}
div.text .kg-product-card .kg-product-card-btn-accent.circle {
  padding: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  text-align: center;
  line-height: 44px;
  font-size: 16px;
}
div.text .kg-product-card .kg-product-card-btn-accent.circle:after {
  -webkit-transform: translate(2px, 2px);
          transform: translate(2px, 2px);
}
div.text .kg-product-card .kg-product-card-btn-accent.close-lightbox {
  position: absolute;
  top: 30px;
  right: 30px;
  width: 40px;
  height: 40px;
  line-height: 40px;
}
div.text .kg-product-card .kg-product-card-btn-accent.close-lightbox svg {
  margin: 0;
  vertical-align: middle;
  top: -1px;
  position: relative;
}
div.text .kg-product-card .kg-product-card-btn-accent.counter b {
  display: inline-block;
  width: 25px;
  height: 25px;
  color: var(--epcl-main-color);
  background: #fff;
  border-radius: 50px;
  text-align: center;
  line-height: 25px;
  font-size: 85%;
  -webkit-box-shadow: var(--epcl-small-shadow);
          box-shadow: var(--epcl-small-shadow);
  margin-left: 5px;
}
div.text .kg-product-card .kg-product-card-btn-accent.dark, div.text .kg-product-card .kg-product-card-btn-accent.black {
  background-color: #15123A;
  color: #fff;
}
div.text .kg-product-card .kg-product-card-btn-accent.white {
  background: #fff;
  color: var(--epcl-text-color);
}
div.text .kg-product-card .kg-product-card-btn-accent.white svg {
  fill: var(--epcl-text-color);
}
div.text .kg-product-card .kg-product-card-btn-accent.loading:after {
  padding: 0;
  margin-left: 7px;
  content: "";
  display: inline-block;
  vertical-align: middle;
  top: -2px;
  left: 0;
  position: relative;
  height: 12px;
  width: 12px;
  border: 2px solid #fff;
  border-radius: 100%;
  border-right-color: transparent;
  border-top-color: transparent;
  -webkit-animation: spin 0.5s infinite linear;
          animation: spin 0.5s infinite linear;
}
div.text .kg-product-card .kg-product-card-btn-accent {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: auto;
  padding: 13px 25px;
  margin-top: 10px;
}
div.text .kg-product-card .kg-product-card-description {
  font-size: var(--epcl-font-size);
  color: var(--epcl-text-color);
}
div.text .kg-product-card .kg-product-card-description p {
  opacity: 1;
  line-height: var(--epcl-line-height-editor);
}
div.text {
  /* Header Card */
}
div.text .kg-header-card .kg-header-card-button {
  border-radius: 0;
  -webkit-box-shadow: var(--epcl-boxes-shadow);
          box-shadow: var(--epcl-boxes-shadow);
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
div.text .kg-header-card .kg-header-card-button:hover {
  opacity: 1;
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}
div.text .kg-header-card.kg-width-full {
  margin-left: -60px;
  margin-right: -60px;
}
div.text {
  /* Signup Card */
}
div.text .kg-signup-card {
  border-radius: var(--epcl-small-border-radius);
}
div.text .kg-signup-card .kg-signup-card-input {
  margin: 0;
  border: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
}
div.text .kg-signup-card .kg-signup-card-image {
  border-radius: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
}
div.text .kg-signup-card .kg-signup-card-button {
  height: auto;
}

#page .kg-width-full {
  position: relative;
  width: 100vw;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}
#page .kg-width-full img {
  display: block;
  width: 100%;
  border-radius: 0;
  margin: 0;
}

body.page-template #wrapper {
  overflow-x: hidden;
}

div.text .epcl-toc {
  margin-bottom: 40px;
}
div.text .epcl-toc.kg-toggle-card h4.kg-toggle-heading-text {
  font-size: 22px;
  line-height: 1;
}
div.text .epcl-toc ol {
  margin-left: 1.5em;
  margin-top: 25px;
  font-weight: 400;
  font-size: 15px;
  padding-bottom: 5px;
}
div.text .epcl-toc ol ol {
  margin-top: 0;
  font-weight: 400;
}
div.text .epcl-toc ol ol li {
  font-size: 1em;
}
/*------------------------------------*\
    		OBJECTS/COMPONENTS
\*------------------------------------*/
/* @group Header */
#header {
  position: relative;
  min-height: 105px;
}
#header .logo {
  text-align: center;
}
#header .logo a {
  display: inline-block;
  color: var(--epcl-titles-color);
  vertical-align: middle;
}
#header .logo a img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
}
#header .logo a:hover {
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}
#header .logo.text-logo .title {
  font-size: 50px;
}
#header .logo.text-logo span {
  display: inline-block;
  vertical-align: baseline;
  margin: 0;
}
#header .epcl-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
#header .grid-container {
  background: #fff;
  -webkit-box-shadow: var(--epcl-large-shadow);
          box-shadow: var(--epcl-large-shadow);
  padding: 20px 25px;
  border-bottom-left-radius: var(--epcl-boxes-border-radius);
  border-bottom-right-radius: var(--epcl-boxes-border-radius);
}
#header nav {
  margin: 0 auto;
}
#header.classic {
  text-align: center;
}
#header.classic .menu-wrapper {
  padding-top: 70px;
}
#header.classic .grid-container {
  position: relative;
}
#header.classic .logo {
  float: none;
}
#header.classic .epcl-flex {
  display: block;
  position: relative;
  z-index: 99;
}
#header.classic ul.menu {
  padding: 0;
  display: inline-block;
}
#header.classic nav {
  float: none;
  text-align: center;
  display: inline-block;
  padding: 10px 35px;
  margin: 50px 0 0;
}
#header.classic .subscribe-button {
  position: absolute;
  right: 0;
  top: 2px;
}
#header .epcl-search-button {
  position: absolute;
  right: 20px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  margin-top: -20px;
}
#header .epcl-search-button svg {
  margin-top: -2px;
}
#header li .epcl-login {
  top: -2px;
}
#header .epcl-account ul li {
  display: inline;
  vertical-align: middle;
  margin-left: 15px;
}
#header .epcl-account .epcl-nav-login a:hover {
  color: var(--epcl-main-color);
}

.main-nav ul.menu {
  opacity: 0;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
  height: 0px;
  overflow: hidden;
  max-width: 650px;
}
.main-nav ul.menu.loaded {
  opacity: 1;
  height: auto;
  overflow: inherit;
}
.main-nav ul.menu {
  font-size: 0px;
}
.main-nav ul.menu > li.menu-item-has-children {
  margin-right: 10px;
  padding-right: 15px;
}
.main-nav ul.menu > li.menu-item-has-children > a::after {
  display: inline-block;
  content: "";
  background: var(--epcl-text-color);
  width: 17px;
  height: 17px;
  top: 50%;
  position: absolute;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  margin-top: 1px;
  -webkit-mask-size: contain !important;
          mask-size: contain !important;
  -webkit-mask: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="currentColor"><path d="M12 15.0006L7.75732 10.758L9.17154 9.34375L12 12.1722L14.8284 9.34375L16.2426 10.758L12 15.0006Z"></path></svg>');
          mask: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="currentColor"><path d="M12 15.0006L7.75732 10.758L9.17154 9.34375L12 12.1722L14.8284 9.34375L16.2426 10.758L12 15.0006Z"></path></svg>');
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.main-nav ul.menu li {
  display: inline-block;
  padding: 10px 12px;
  position: relative;
}
.main-nav ul.menu li.current-menu-item a {
  font-weight: 600;
  color: var(--epcl-main-color);
}
.main-nav ul.menu li.nav-search span {
  top: -2px;
  cursor: pointer;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.main-nav ul.menu li.nav-search span svg {
  fill: currentColor;
}
.main-nav ul.menu li.nav-search span:hover {
  color: var(--epcl-main-color);
}
.main-nav ul.menu li a, .main-nav ul.menu li .link {
  display: inline-block;
  font-size: 14px;
  line-height: 1.25;
  position: relative;
  z-index: 1;
  color: var(--epcl-titles-color);
  font-weight: 600;
  cursor: pointer;
}
.main-nav ul.menu li a:hover, .main-nav ul.menu li .link:hover {
  color: var(--epcl-main-color);
}
.main-nav ul.menu li .link {
  cursor: default;
  background: none;
}
.main-nav ul.menu li .link-button {
  font-size: 17px;
}
@-webkit-keyframes fadeInMenu {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.2);
            transform: scale(0.2);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@keyframes fadeInMenu {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.2);
            transform: scale(0.2);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
.main-nav ul.sub-menu {
  position: absolute;
  left: 0;
  top: 100%;
  z-index: 100;
  padding: 15px 0;
  background: var(--epcl-boxes-background-color);
  min-width: 250px;
  text-align: left;
  left: -20px;
  opacity: 0;
  visibility: hidden;
  -webkit-box-shadow: var(--epcl-large-shadow);
          box-shadow: var(--epcl-large-shadow);
  border-radius: var(--epcl-medium-border-radius);
  border: 1px solid var(--epcl-boxes-border-color);
  -webkit-transform: translateY(15px);
          transform: translateY(15px);
  -webkit-transition: all 400ms ease;
  transition: all 400ms ease;
}
.main-nav ul.sub-menu li {
  display: block;
  padding: 10px 25px 5px;
}
.main-nav ul.sub-menu li.current-menu-item a {
  font-weight: 600;
}
.main-nav ul.sub-menu li.current-menu-item a:after {
  display: none;
}
.main-nav ul.sub-menu li.menu-item-has-children:after {
  display: none;
  right: 10px;
  content: "\f105";
}
.main-nav ul.sub-menu li a {
  font-weight: 600;
  color: var(--epcl-titles-color);
  padding: 0 0 5px;
  position: relative;
}
.main-nav ul.sub-menu ul.sub-menu {
  left: 100%;
  top: -15px;
  -webkit-transform: scale(1) translateY(-10px);
          transform: scale(1) translateY(-10px);
}
.main-nav ul.menu li:hover > ul.sub-menu {
  opacity: 1;
  visibility: visible;
  -webkit-transform: scale(1) translateY(0px);
          transform: scale(1) translateY(0px);
}
.main-nav ul.menu > li.menu-item-has-children.last-menu-item ul.sub-menu {
  left: auto;
  right: 0;
}
.main-nav ul.menu > li.menu-item-has-children.last-menu-item ul.sub-menu ul.sub-menu {
  left: auto;
  right: 100%;
}

/* @end */
/* @group Mobile Menu */
#wrapper {
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}

nav.mobile.main-nav {
  position: fixed;
  left: 0;
  top: 0;
  bottom: 0;
  height: 100%;
  margin: 0;
  width: 400px;
  z-index: 100;
  background: var(--epcl-background-color);
  text-align: center;
  padding: 40px;
  padding-top: 60px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transform: translateX(-400px);
          transform: translateX(-400px);
  -webkit-box-shadow: 0 3px 12px -1px rgba(7, 10, 25, 0.1), 0 22px 27px -20px rgba(7, 10, 25, 0.1);
          box-shadow: 0 3px 12px -1px rgba(7, 10, 25, 0.1), 0 22px 27px -20px rgba(7, 10, 25, 0.1);
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
  opacity: 0;
  visibility: hidden;
  overflow: auto;
}
nav.mobile.main-nav ul {
  float: none;
  padding: 50px 0;
  text-align: left;
}
nav.mobile.main-nav li {
  display: block;
}
nav.mobile.main-nav ul.menu > li {
  padding: 10px 0;
}
nav.mobile.main-nav li.epcl-nav-login {
  display: none;
}
nav.mobile.main-nav .nav-login {
  text-align: center;
  margin-top: 20px;
}
nav.mobile.main-nav .nav-login a {
  margin: 0 10px;
  font-size: 16px;
}
nav.mobile.main-nav ul.menu li.menu-item-has-children {
  margin-right: 0;
  padding-right: 20px;
}
nav.mobile.main-nav ul.menu li.menu-item-has-children.open > a {
  font-weight: 600;
}
nav.mobile.main-nav ul.menu li.menu-item-has-children.open > a:after {
  -webkit-transform: rotate(180deg) translateY(50%);
          transform: rotate(180deg) translateY(50%);
}
nav.mobile.main-nav ul.menu li.menu-item-has-children.open:after {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
  top: 15px;
}
nav.mobile.main-nav ul.menu li.menu-item-has-children.open > ul.sub-menu {
  opacity: 1;
  visibility: visible;
  max-height: inherit !important;
  padding-top: 15px;
}
nav.mobile.main-nav ul.menu li.menu-item-has-children.open > ul.sub-menu ul.sub-menu {
  padding-top: 5px;
}
nav.mobile.main-nav ul.sub-menu {
  position: relative !important;
  left: auto !important;
  top: auto !important;
  max-height: 0 !important;
  overflow: hidden;
  -webkit-box-shadow: none;
          box-shadow: none;
  background: none;
  padding: 0;
  -webkit-transform: none !important;
          transform: none !important;
  border: 0;
  -webkit-transition: none;
  transition: none;
}
nav.mobile.main-nav ul.sub-menu li {
  padding: 0;
}
nav.mobile.main-nav ul.sub-menu li a {
  padding: 10px 0;
  color: var(--epcl-text-color);
  font-family: var(--epcl-font-family);
}
nav.mobile.main-nav ul.sub-menu ul.sub-menu {
  margin-left: 5px;
}
nav.mobile.main-nav ul.sub-menu ul.sub-menu li a {
  padding-left: 10px;
}

.epcl-menu-open nav.mobile.main-nav {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

div.menu-overlay {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 90;
  background: #000;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.epcl-menu-open div.menu-overlay {
  opacity: 0.15;
  visibility: visible;
}

.epcl-menu-open body {
  overflow: hidden;
}
.epcl-menu-open body #wrapper {
  -webkit-transform: translateX(400px);
          transform: translateX(400px);
}

/* @end */
/* @group Footer */
#footer {
  margin-top: 80px;
  padding-bottom: 30px;
  position: relative;
}
#footer.minimal {
  margin-top: 100px;
  padding-bottom: 40px;
}
#footer.minimal .logo {
  margin: 0;
}
#footer.no-background {
  background: none;
  margin-top: 20px;
  padding: 0;
}
#footer .widgets {
  padding: 40px;
  position: relative;
}
#footer .widgets:after {
  bottom: -30px;
}
#footer .widgets .default-sidebar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
}
#footer .widgets .title.bordered {
  margin-bottom: 30px;
}
#footer .widgets .desktop-footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
#footer .widgets .widget {
  padding: 20px 40px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-bottom: 0;
  border-left: 1px solid var(--epcl-border-color);
}
#footer .widgets .widget .widget-title {
  margin-bottom: 30px;
}
#footer .widgets .widget:nth-child(1) {
  width: 70%;
  border-left: 0;
}
#footer .widgets .widget:nth-child(3) {
  padding-right: 0;
}
#footer .widgets .default-sidebar, #footer .widgets .mobile-sidebar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
}
#footer .widgets .grid-33 {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
#footer .widgets .widget_text a {
  font-weight: bold;
}
#footer .logo {
  margin-top: -10px;
  margin-bottom: 20px;
}
#footer .logo a {
  display: inline-block;
  color: var(--epcl-titles-color);
  font-size: 40px;
}
#footer .logo a:hover {
  -webkit-transform: translateY(-3px);
          transform: translateY(-3px);
}
#footer .logo.text-logo .dot {
  vertical-align: baseline;
  margin: 0;
}
#footer #back-to-top {
  cursor: pointer;
  position: fixed;
  right: 25px;
  bottom: 25px;
  z-index: 10;
  -webkit-transform: translateX(30px);
          transform: translateX(30px);
  opacity: 0;
  visibility: hidden;
  color: #fff;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}
#footer #back-to-top svg {
  margin: -1px 0 0;
}
#footer #back-to-top.visible {
  -webkit-transform: translateX(0);
          transform: translateX(0);
  opacity: 1;
  visibility: visible;
}
#footer .published {
  padding-top: 20px;
  margin-bottom: 0;
}
#footer .published .dot {
  margin: 0 5px;
}
#footer .published a {
  font-weight: 700;
}
#footer .published svg.icon {
  margin: 0 4px;
}
#footer .published .estudiopatagon {
  position: relative;
  z-index: 2;
}
#footer .published .estudiopatagon:before {
  content: "";
  position: absolute;
  left: 0;
  top: -10px;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg width="31" height="10" viewBox="0 0 31 10" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M22.5 0L29.8612 7.5H15.1388L22.5 0Z" fill="%23C41E8D"/><path d="M8.5 0L15.8612 7.5H1.13878L8.5 0Z" fill="%2325ADEE"/><path d="M16 0L22.9282 7.5H9.0718L16 0Z" fill="%23493F9A"/></svg>') no-repeat center top;
  background-size: 23px;
}

/* @end */
/* @group Global Articles List */
/* Global Meta data */
time:not(.icon) {
  position: relative;
  text-transform: capitalize;
}
time:not(.icon).small {
  font-size: 12px;
  line-height: 1;
  padding-left: 12px;
}
time:not(.icon).small:before {
  width: 2px;
  height: 2px;
  margin-top: -2px;
}

time.icon svg {
  margin-right: 2px;
  margin-top: -2px;
}

.meta {
  font-size: 13px;
  font-weight: 500;
}
.meta a {
  color: var(--epcl-text-color);
}
.meta a:hover {
  color: var(--epcl-main-color);
}
.meta.small {
  font-size: 13px;
}
.meta.small svg.icon {
  width: 17px;
  height: 17px;
  vertical-align: middle;
  margin-top: -3px;
  margin-right: 3px;
}
.meta.large {
  font-size: 17px;
}
.meta.inline {
  margin-bottom: 10px;
}
.meta.inline .meta-info {
  display: inline-block;
}
.meta.inline .meta-info .dot {
  margin-right: 10px;
}
.meta.inline .meta-info:first-child {
  margin-left: 0;
}
.meta .comments {
  color: #fff;
  font-size: 14px;
}
.meta .comments svg {
  fill: #fff;
  vertical-align: middle;
  margin-top: -3px;
  margin-right: 5px;
}
.meta .comments:hover {
  color: #fff;
}
.meta .views-counter {
  cursor: default;
}
.meta .meta-info {
  margin-right: 8px;
  position: relative;
  z-index: 2;
}
.meta .author .author-image {
  position: relative;
  z-index: 1;
  display: inline-block;
  vertical-align: middle;
  margin-right: 7px;
  margin-top: -3px;
}
.meta .author .author-image img {
  display: block;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  -webkit-box-shadow: var(--epcl-medium-shadow);
          box-shadow: var(--epcl-medium-shadow);
}
.meta .author .author-image.small img {
  width: 27px;
  height: 27px;
}
.meta .author .author-name {
  font-weight: 600;
}

/* @end */
div.articles article {
  position: relative;
  z-index: 2;
}
div.articles article .bg-box, div.articles article .info {
  position: relative;
  z-index: 2;
}
div.articles article .overlay {
  display: none;
  position: absolute;
  top: 15px;
  left: 15px;
  right: 15px;
  bottom: 15px;
  background: var(--epcl-main-color);
  opacity: 0.07;
  border-radius: var(--epcl-medium-border-radius);
  z-index: 1;
}
div.articles article.no-image .bg-box {
  padding-bottom: 30px !important;
}
div.articles article.no-image .overlay {
  display: block;
}
div.articles .featured-image {
  position: relative;
  z-index: 2;
}
div.articles .featured-image img {
  display: block;
  border-radius: var(--epcl-medium-border-radius);
  -webkit-box-shadow: var(--epcl-small-shadow);
          box-shadow: var(--epcl-small-shadow);
}
div.articles .post-format-wrapper {
  position: relative;
  z-index: 2;
}
div.articles .post-format-wrapper.hidden {
  display: none;
}
div.articles.grid-posts {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
}
div.articles.grid-posts[data-columns="2"] article {
  width: 50%;
}
div.articles.grid-posts[data-columns="3"] article {
  width: 33%;
}
div.articles.grid-posts article {
  padding: 0 20px 40px;
}
div.articles.grid-posts article.no-image .info {
  margin-top: 80px;
}
div.articles.grid-posts article.no-image .post-excerpt {
  margin-bottom: 40px;
}
div.articles.grid-posts article .bg-box {
  padding: 15px;
  corner-shape: squircle;
  -webkit-box-shadow: var(--epcl-large-shadow);
          box-shadow: var(--epcl-large-shadow);
}
div.articles.grid-posts article .featured-image .post-image {
  display: block;
}
div.articles.grid-posts article .featured-image .post-image img {
  border-radius: var(--epcl-medium-border-radius);
}
div.articles.grid-posts article .info {
  margin-top: 20px;
  padding: 0 20px;
}
div.articles.grid-posts article .tags {
  margin-bottom: 15px;
}
div.articles.grid-posts article .main-title {
  font-size: 21px;
  margin-bottom: 0;
}
div.articles.grid-posts article .post-excerpt {
  font-size: 14px;
  line-height: 1.7;
  padding-top: 10px;
}
div.articles.grid-posts article footer {
  padding-top: 25px;
  font-size: 12px;
  font-weight: 600;
}
div.articles.grid-posts article footer .meta {
  margin-right: auto;
}
div.articles.classic {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 50% 40px 50%;
  grid-template-columns: 50% 50%;
  -ms-grid-rows: 1fr 40px 1fr 40px 1fr;
  grid-template-rows: repeat(3, 1fr);
  gap: 40px;
}
div.articles.classic > *:nth-child(1) {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
}
div.articles.classic > *:nth-child(2) {
  -ms-grid-row: 1;
  -ms-grid-column: 3;
}
div.articles.classic > *:nth-child(3) {
  -ms-grid-row: 3;
  -ms-grid-column: 1;
}
div.articles.classic > *:nth-child(4) {
  -ms-grid-row: 3;
  -ms-grid-column: 3;
}
div.articles.classic > *:nth-child(5) {
  -ms-grid-row: 5;
  -ms-grid-column: 1;
}
div.articles.classic > *:nth-child(6) {
  -ms-grid-row: 5;
  -ms-grid-column: 3;
}
div.articles.classic[data-columns="2"] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
}
div.articles.classic[data-columns="2"] article {
  width: 45%;
  float: left;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin-top: 20px;
}
div.articles.classic article.large-post {
  grid-row: 1/-1;
  -ms-grid-column: 1;
  grid-column: 1;
}
div.articles.classic article.large-post .post-format {
  margin-bottom: 25px;
}
div.articles.classic article.large-post .post-format .featured-image img {
  aspect-ratio: 670/420;
  -webkit-box-shadow: var(--epcl-medium-shadow);
          box-shadow: var(--epcl-medium-shadow);
}
div.articles.classic article.large-post .title {
  margin-bottom: 10px;
}
div.articles.classic article.large-post footer {
  margin-top: 20px;
}
div.articles.classic article.small-post {
  -ms-grid-column: 2;
  grid-column: 2;
  min-height: 160px;
}
div.articles.classic article.small-post .title {
  font-size: 22px;
  margin-bottom: 10px;
}
div.articles.classic article.small-post .post-format-wrapper {
  width: 45%;
  margin-right: 20px;
}
div.articles.classic article.small-post .post-format-wrapper img {
  aspect-ratio: 285/190;
  -webkit-box-shadow: var(--epcl-medium-shadow);
          box-shadow: var(--epcl-medium-shadow);
}
div.articles.classic article.small-post .info {
  width: 55%;
}
div.articles.small-list {
  display: block;
}
div.articles.small-list article {
  min-height: inherit;
  margin-bottom: 30px;
}
div.articles.small-list article .post-format-wrapper {
  width: 45%;
  min-width: 280px;
  max-width: 280px;
  margin-right: 20px;
}
div.articles.small-list article .post-format-wrapper img {
  aspect-ratio: 285/190;
}
div.articles.small-list article .title {
  font-size: 24px;
  margin-bottom: 10px;
}
div.articles.small-list article:last-of-type {
  margin-bottom: 0;
}

.grid-prompts .filters {
  text-align: center;
  margin-bottom: 10px;
}
.grid-prompts .filters a {
  display: inline-block;
  margin: 0 3px 5px;
  background: transparent;
}
.grid-prompts .filters a svg {
  vertical-align: middle;
  margin-top: -3px;
  margin-right: 5px;
}
.grid-prompts .filters a.active {
  background: rgba(255, 255, 255, 0.05);
}
.grid-prompts .filters a.filter-all:before {
  display: none;
}
.grid-prompts article {
  margin: 40px 0 0;
}
.grid-prompts article .featured-image {
  position: relative;
}
.grid-prompts article .featured-image img {
  border-radius: var(--epcl-medium-border-radius);
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
  min-height: 385px;
}
.grid-prompts article .main-title {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.25px;
}
.grid-prompts article .main-title a {
  color: #fff;
  font-weight: 400;
}
.grid-prompts article .main-title a:hover {
  color: var(--epcl-main-color);
}
.grid-prompts article .info {
  margin-top: 7px;
  padding: 0;
}
.grid-prompts article .access-icon {
  background: rgba(255, 255, 255, 0.05);
}

#prompts-container .epcl-ajax-container {
  position: relative;
  z-index: 2;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
#prompts-container .epcl-ajax-container.loading {
  opacity: 0.35;
  pointer-events: none;
}
#prompts-container .epcl-ajax-container.loading:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 40px;
  height: 40px;
  margin: -30px 0 0 -20px;
  border: 4px solid #fff;
  border-top-color: transparent;
  border-radius: 50%;
  -webkit-animation: spin 1s linear infinite;
          animation: spin 1s linear infinite;
  z-index: 5;
}

/* @group Global Pagination */
.epcl-pagination {
  clear: both;
  text-align: center;
  padding: 60px 0 30px;
}
.epcl-pagination div.nav {
  display: inline-block;
  font-family: var(--epcl-title-font-family);
}
.epcl-pagination div.nav > span {
  display: inline-block;
  margin: 0 10px;
  height: 36px;
  font-size: 18px;
  font-weight: 500;
  line-height: 36px;
  padding: 0 15px;
}
.epcl-pagination div.nav a span {
  padding: 0;
  margin: 0;
}

.ajax-pagination {
  padding-top: 70px;
  padding-bottom: 0;
}
.ajax-pagination .total-prompts-info {
  margin-top: 15px;
  opacity: 0.5;
  font-size: 14px;
}

/* @end */
/* @group Sidebar */
div.left-content {
  padding: 0 40px;
}
.grid-sidebar div.left-content, .classic-sidebar div.left-content {
  padding-right: 50px;
}
.grid-sidebar div.left-content {
  padding-left: 0;
  padding-right: 30px;
}
.no-sidebar div.left-content {
  padding-right: 20px;
  max-width: 860px;
  margin-left: auto !important;
  margin-right: auto !important;
}

.no-active-sidebar div.left-content {
  width: auto;
  float: none;
}

#sidebar {
  z-index: 2;
  padding-right: 0;
}
#sidebar.enable-sticky {
  position: sticky;
  top: 40px;
}
#sidebar .widget {
  position: relative;
  margin-bottom: 30px;
  width: auto;
  float: none;
  padding-left: 0;
  padding-right: 0;
}
#sidebar .widget:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: 0;
}

/* @end */
/* @group EPCL Modules */
.intro-text {
  padding-bottom: 30px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-line-pack: center;
      align-content: center;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.intro-text .title {
  margin-bottom: 20px;
}

/* @end */
/* @group Page */
#page #single .main-title {
  margin-bottom: 0;
}
#page .post-content {
  margin-top: 40px;
}

/* @end */
.newsletter-section {
  padding: 50px 50px 90px;
  text-align: center;
  border-radius: var(--epcl-boxes-border-radius);
  -webkit-box-shadow: var(--epcl-medium-shadow);
          box-shadow: var(--epcl-medium-shadow);
  position: relative;
  color: #fff;
  overflow: hidden;
}
.newsletter-section .epcl-flex {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  padding-top: 20px;
}
.newsletter-section .info {
  font-weight: 400;
  text-align: left;
}
.newsletter-section .info ul {
  margin-left: -20px;
}
.newsletter-section .info ul li {
  display: inline-block;
  background: url('data:image/svg+xml,<svg width="16" height="14" viewBox="0 0 16 14" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M7.37662 13.0909L0 7.68831L1.76623 5.19481L6.75325 8.83117L13.6104 0L16 1.87013L7.37662 13.0909Z" fill="%23FDE047"/></svg>') no-repeat left center;
  padding-left: 20px;
  background-size: 13px;
  margin: 2px 0 2px 10px;
}
.newsletter-section .form-group .inputbox {
  height: 70px;
  margin: 0;
}
.newsletter-section .right {
  position: relative;
}
.newsletter-section .right .form-message {
  font-size: 13px;
  position: absolute;
  top: 100%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  text-align: center;
  margin-top: 10px;
  width: 100%;
}
.newsletter-section .decoration {
  position: absolute;
  bottom: -25px;
  left: 30px;
}
.newsletter-section .bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--epcl-main-color);
  pointer-events: none;
  z-index: -3;
}
.newsletter-section:before {
  content: "";
  position: absolute;
  top: -20%;
  left: -50%;
  bottom: 0;
  width: 100%;
  background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.45), transparent 80%);
  pointer-events: none;
  z-index: -1;
}
.newsletter-section:after {
  content: "";
  position: absolute;
  top: -20%;
  right: -65%;
  bottom: 0;
  width: 100%;
  background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.45), transparent 80%);
  pointer-events: none;
  z-index: -2;
}

/* @group Author and Tags page */
.archive #author div.avatar {
  margin-top: 10px;
}

#archives .epcl-archive-info {
  position: sticky;
  top: -60px;
  padding: 0;
}
#archives .epcl-archive-info .title-gradient {
  margin-top: 10px;
}
#archives .epcl-archive-info .item {
  padding-top: 0;
}

/* @end */
/* @group Global: Author Box */
#author {
  position: relative;
  text-align: center;
  padding: 35px;
  font-size: 15px;
}
#author .author-avatar {
  display: inline-block;
  position: relative;
  z-index: 2;
  width: 100px;
  height: 100px;
}
#author .author-avatar img {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 100%;
}
#author .author-name {
  margin: 20px 0;
  line-height: 1;
}
#author .bottom {
  height: 100%;
}
#author .info {
  margin-top: 30px;
}
#author .social {
  position: absolute;
  left: -33px;
  top: 45px;
  width: 35px;
  text-align: center;
}
#author .social a {
  margin-bottom: 0px;
}

/* @end */
/* @group Archive Lists */
.epcl-prompt-list h3.title {
  display: inline-block;
  margin-right: 15px;
  top: 3px;
  position: relative;
}
.epcl-prompt-list div.articles {
  margin: 0 -15px;
}
.epcl-prompt-list div.articles article {
  margin-top: 15px;
  margin-bottom: 15px;
  padding: 0 15px;
}
.epcl-prompt-list div.articles .tags {
  display: none;
}
.epcl-prompt-list div.articles .main-title {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.4;
}
.epcl-prompt-list div.articles .main-title a:hover {
  color: var(--epcl-main-color);
}

.epcl-archive-info .intro-text h1 {
  margin-bottom: 20px;
}
.epcl-archive-info .epcl-flex {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
.epcl-archive-info .item {
  text-align: center;
  border-left: 1px solid var(--epcl-border-color);
  padding: 10px 40px;
  margin-top: 100px;
  position: relative;
}
.epcl-archive-info .item .epcl-border {
  height: 1px;
  background-color: var(--epcl-border-color);
  position: absolute;
  left: 0;
  bottom: -40px;
  width: 100%;
}
.epcl-archive-info .item:nth-child(3n+1) {
  border-left: none;
}
.epcl-archive-info .item:nth-last-child(-n+3) .epcl-border {
  display: none;
}
.epcl-archive-info .item .top-info .featured-image img {
  border-radius: var(--epcl-medium-border-radius);
  aspect-ratio: 1/1;
  -webkit-box-shadow: var(--epcl-large-shadow);
          box-shadow: var(--epcl-large-shadow);
  max-width: 225px;
}
.epcl-archive-info .item .top-info .featured-image.rounded img {
  border-radius: 100%;
}
.epcl-archive-info .item .top-info .title {
  margin-top: 15px;
  margin-bottom: 0px;
  line-height: 1.2;
}
.epcl-archive-info .item .bio {
  margin-top: 20px;
}
.epcl-archive-info .item .epcl-button {
  margin-top: 25px;
}
.epcl-archive-info .item .epcl-social-buttons {
  margin-top: 10px;
}
.epcl-archive-info .total-articles {
  margin-top: 10px;
  font-weight: bold;
}

.epcl-archive-list {
  border-left: 1px solid var(--epcl-border-color);
  padding-left: 50px;
  margin-top: 100px;
}
.epcl-archive-list .title-gradient {
  margin-bottom: 20px;
  display: inline-block;
}

/* @end */
.epcl-tags-archive .epcl-switch {
  text-align: center;
  position: relative;
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 320px;
  margin: 25px auto 0;
  padding: 15px 0px;
  margin-bottom: 100px;
  border-radius: var(--epcl-large-border-radius);
  font-size: 20px;
  border-left: 5px solid #fff;
  border: 1px solid var(--epcl-border-color);
  background: #fff;
  -webkit-box-shadow: var(--epcl-large-shadow);
          box-shadow: var(--epcl-large-shadow);
}
.epcl-tags-archive .epcl-switch button {
  background: none;
  text-align: center;
  width: 50%;
  font-size: 18px;
  font-family: var(--epcl-title-font-family);
  font-weight: 600;
  color: #fff;
}
.epcl-tags-archive .epcl-switch::before {
  content: "";
  position: absolute;
  left: 5px;
  top: 5px;
  bottom: 5px;
  width: 50%;
  background: var(--epcl-secondary-color);
  border-radius: var(--epcl-large-border-radius);
  z-index: -1;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.epcl-tags-archive .epcl-switch[data-active=name] button[data-order=posts] {
  color: var(--epcl-text-color);
  font-weight: 400;
}
.epcl-tags-archive .epcl-switch[data-active=posts]:before {
  -webkit-transform: translateX(94%);
          transform: translateX(94%);
}
.epcl-tags-archive .epcl-switch[data-active=posts] button[data-order=name] {
  color: var(--epcl-text-color);
  font-weight: 400;
}
.epcl-tags-archive .tabs .tab-content {
  visibility: hidden;
  height: 0;
  opacity: 0;
  overflow: hidden;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}
.epcl-tags-archive .tabs .tab-content.active {
  visibility: visible;
  height: auto;
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.epcl-tags-archive .tag-item {
  margin-top: 30px;
}
.epcl-tags-archive .tag-item .featured-image img {
  border-radius: var(--epcl-medium-border-radius);
  aspect-ratio: 410/275;
  -webkit-box-shadow: var(--epcl-large-shadow);
          box-shadow: var(--epcl-large-shadow);
}
.epcl-tags-archive .tag-item .info {
  font-size: 16px;
  padding: 10px 0px;
  letter-spacing: 0.25px;
}
.epcl-tags-archive .tag-item .info .title {
  margin-bottom: 10px;
}

/* @group 404 Page */
#page-404 div.not-found {
  padding: 25px 25px 80px;
  margin: 80px auto 0;
  text-align: center;
  position: relative;
}
#page-404 div.not-found h1.title {
  margin: 0 0 40px;
  font-size: 250px;
  display: block;
  margin-bottom: 30px;
  line-height: 1;
  position: relative;
  z-index: 2;
}
#page-404 div.not-found h2 {
  margin-bottom: 20px;
}
#page-404 div.not-found .bg {
  font-size: 500px;
  position: absolute;
  top: -200px;
  left: 50%;
  -webkit-transform: translateX(-50%) rotate(-5deg);
          transform: translateX(-50%) rotate(-5deg);
  -webkit-filter: blur(20px);
          filter: blur(20px);
  color: red;
  z-index: -1;
  opacity: 0.25;
  pointer-events: none;
}
#page-404 div.not-found p strong {
  display: block;
}
#page-404 div.not-found div.buttons {
  margin-top: 30px;
}

/* @end */
/* @group Single Post */
.no-sidebar #sidebar {
  display: none;
}
.no-sidebar div.left-content {
  width: auto;
  border: 0;
  margin-right: 0;
  float: none;
  padding-left: 20px;
}

#single {
  -webkit-transform: none;
          transform: none;
}
#single .main-article {
  position: relative;
  z-index: 1;
}
#single .featured-image {
  position: relative;
  z-index: 2;
  padding-left: 0;
  padding-right: 0;
}
#single .featured-image-caption {
  font-size: 13px;
  margin-bottom: 5px;
  margin-top: 10px;
  text-align: right;
}
#single .featured-image-caption a {
  font-weight: 600;
  background-size: 100% 5%;
}
#single .featured-image-caption a:hover {
  background-size: 100% 0%;
}
#single .main-title {
  margin-bottom: 20px;
}
#single.fullcover .fullcover-wrapper .featured-image {
  margin-top: 60px;
}
#single.fullcover .fullcover-wrapper .featured-image img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 500px;
  border-radius: var(--epcl-medium-border-radius);
  -webkit-box-shadow: var(--epcl-large-shadow);
          box-shadow: var(--epcl-large-shadow);
}
#single.fullcover .top-info {
  margin-top: -10px;
}
#single.fullcover .post-content {
  margin-top: 40px;
}
#single.epcl-vertical .top-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 40px;
  margin-bottom: 60px;
  margin-top: 70px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
#single.epcl-vertical .top-info .tags {
  margin-bottom: 20px;
}
#single.epcl-vertical .top-info .meta {
  margin-top: 20px;
}
#single.epcl-vertical .top-info .featured-image img {
  height: 550px;
  border-radius: var(--epcl-medium-border-radius);
  -webkit-box-shadow: var(--epcl-large-shadow);
          box-shadow: var(--epcl-large-shadow);
}
#single.epcl-vertical .top-info.no-image .excerpt {
  max-width: 75%;
  margin: 0 auto;
}
#single.classic .top-info .featured-image {
  margin: 30px auto 0;
}
#single.classic .top-info .featured-image img {
  height: auto;
}
#single {
  /* Sticky Share Buttons */
}
#single .epcl-sticky-share {
  position: sticky;
  top: 40px;
  padding: 0;
}
#single .epcl-sticky-share .epcl-social-buttons {
  max-width: 80px;
  margin: 0 auto;
  padding: 20px;
  text-align: center;
}
#single .epcl-sticky-share .epcl-social-buttons .title {
  margin-bottom: 0;
}
#single .epcl-sticky-share .epcl-social-buttons a {
  margin-top: 10px;
}
#single.no-sidebar .epcl-sticky-share {
  display: none;
}
#single {
  /* Bottom share buttons and permalink */
}
#single .share-buttons {
  text-align: center;
  padding: 30px 60px;
}
#single .share-buttons .title {
  display: inline-block;
  margin-right: 10px;
}
#single .share-buttons .twitter svg {
  width: 19px;
  height: 19px;
}
#single .share-buttons .permalink {
  margin-top: 20px;
}
#single .share-buttons .permalink .inputbox {
  padding-right: 150px;
  margin-bottom: 0;
}
#single {
  /* Bottom tags */
}
#single .bottom-tags {
  padding-top: 20px;
  padding-bottom: 40px;
  font-size: 15px;
}
#single .bottom-tags p {
  display: inline;
}
#single .bottom-tags .tags-list {
  display: inline;
  padding: 0 10px;
}
#single .bottom-tags a {
  display: inline;
}
#single .bottom-tags .last-update {
  margin-left: 30px;
  text-transform: capitalize;
}
#single {
  /* Siblings Posts */
}
#single section.siblings {
  margin-top: 30px;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  border-top: 1px solid var(--epcl-border-color);
  padding-top: 30px;
}
#single section.siblings .separator {
  width: 1px;
  height: 20px;
  margin: auto;
}
#single {
  /* Bottom Posts */
}
#single .epcl-related {
  margin-top: 100px;
  position: relative;
}
#single .epcl-related .title-gradient {
  margin-bottom: 30px;
}
#single .author-section {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
#single #comments .title {
  margin-bottom: 30px;
}

/* @end */
/* @group Single Prompt */
.mfp-container.mfp-ajax-holder {
  overflow: auto;
  padding-left: 5%;
  padding-right: 5%;
}
.mfp-container.mfp-ajax-holder #prompt-content {
  background: var(--epcl-dark-boxes-background-color);
  border-radius: var(--epcl-boxes-border-radius);
  margin: 2.5% auto;
  -webkit-box-shadow: var(--epcl-large-shadow);
          box-shadow: var(--epcl-large-shadow);
  padding: 0 40px;
  color: #fff;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--epcl-large-shadow);
}
.mfp-container.mfp-ajax-holder #prompt-content .close-lightbox {
  display: block;
}
.mfp-container.mfp-ajax-holder #prompt-content .prompt-post {
  padding: 40px 0;
}
.mfp-container.mfp-ajax-holder #prompt-content .info .meta a {
  color: #fff;
}
.mfp-container.mfp-ajax-holder #prompt-content .prompt {
  background: rgba(255, 255, 255, 0.07);
}
.mfp-container.mfp-ajax-holder #prompt-content .text {
  color: #fff;
}
.mfp-container.mfp-ajax-holder #prompt-content .text h1, .mfp-container.mfp-ajax-holder #prompt-content .text h2, .mfp-container.mfp-ajax-holder #prompt-content .text h3, .mfp-container.mfp-ajax-holder #prompt-content .text h4, .mfp-container.mfp-ajax-holder #prompt-content .text h5, .mfp-container.mfp-ajax-holder #prompt-content .text h6 {
  color: #fff;
}
.mfp-container.mfp-ajax-holder #prompt-content .text .title, .mfp-container.mfp-ajax-holder #prompt-content .text a {
  color: #fff;
}

#prompt-content .featured-image img {
  border-radius: var(--epcl-medium-border-radius);
  min-height: 500px;
  max-height: 700px;
}
#prompt-content .info {
  padding-top: 40px;
  padding-bottom: 40px;
}
#prompt-content .info .meta {
  margin-bottom: 10px;
  font-size: 14px;
}
#prompt-content .info .main-title {
  margin-bottom: 40px;
  font-size: 40px;
  line-height: 1.2;
}
#prompt-content .text {
  font-size: 16px;
}
#prompt-content .text p {
  padding-top: 0;
}
#prompt-content .close-lightbox {
  display: none;
}
#prompt-content .prompt {
  background: #15123A;
  border-radius: var(--epcl-medium-border-radius);
  padding: 25px;
  font-style: italic;
  margin: 32px 0;
  color: #fff;
  font-size: 90%;
  letter-spacing: 0.25px;
}
#prompt-content .subscribe-cta {
  padding: 30px 20px;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--epcl-medium-border-radius);
}
#prompt-content .subscribe-cta .title {
  padding-top: 0;
}
#prompt-content .subscribe-cta .sign-in {
  margin-top: 20px;
}
#prompt-content .subscribe-cta :last-child {
  margin-bottom: 0;
}

/* @end */
/* @group Global: Membership */
.access-icon {
  display: inline-block;
  padding: 6px 8px;
  background: var(--epcl-secondary-color);
  border-radius: var(--epcl-large-border-radius);
  color: #fff;
  font-size: 12px;
  font-weight: 400;
  margin-left: 2px;
  vertical-align: middle;
  position: relative;
  top: -1px;
  cursor: default;
  line-height: 1;
}

.post-access-public .visibility-public {
  display: inline-block;
}

.post-access-members .visibility-members {
  display: inline-block;
}

.post-access-paid .visibility-paid {
  display: inline-block;
}

/* Article CTA */
.subscribe-cta {
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 50px auto;
  padding: 40px 40px 35px;
  text-align: center;
  font-size: 15px;
}
.subscribe-cta h2.title {
  margin-bottom: 15px;
}
.subscribe-cta h3.title {
  font-size: 26px;
  margin-bottom: 20px;
}
.subscribe-cta p {
  margin-bottom: 23px;
}
.subscribe-cta .sign-in {
  margin-top: 40px;
  margin-bottom: 0;
  font-size: 90%;
}

.members-form {
  background: #fff;
  -webkit-box-shadow: var(--epcl-large-shadow);
          box-shadow: var(--epcl-large-shadow);
  padding: 100px;
}

.subscribe-form .inputbox {
  padding-right: 170px;
}
.subscribe-form .submit svg {
  width: 18px;
  height: 18px;
  vertical-align: middle;
  margin-top: -3px;
  margin-left: 5px;
}
.subscribe-form .error-detail, .subscribe-form .success-message {
  opacity: 0;
  padding: 0 !important;
  height: 0;
  font-size: 13px !important;
  text-align: center;
  margin-bottom: 0 !important;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.subscribe-form.success .form-message {
  opacity: 0;
  height: 0;
}
.subscribe-form.success .success-message {
  height: auto;
  opacity: 1;
  margin-top: 10px;
}
.subscribe-form.error .form-message {
  opacity: 0;
  height: 0;
}
.subscribe-form.error .error-detail {
  height: auto;
  opacity: 1;
  margin-top: 10px;
}
.subscribe-form.loading .submit {
  pointer-events: none;
  opacity: 0.6;
  padding-right: 15px;
}
.subscribe-form.loading .submit svg {
  display: none;
}
.subscribe-form.loading .submit .loader {
  content: "";
  display: inline-block;
  position: relative;
  height: 8px;
  width: 8px;
  border: 2px solid #fff;
  border-radius: 100%;
  border-right-color: transparent;
  border-top-color: transparent;
  -webkit-animation: spin 0.5s infinite linear;
          animation: spin 0.5s infinite linear;
  z-index: 10;
  margin-left: 10px;
}

.membership-page .intro-text h1 {
  margin-bottom: 30px;
}
.membership-page .intro-text p {
  padding-left: 30px;
  padding-right: 30px;
}
.membership-page .intro-text p:last-of-type {
  margin-bottom: 0;
}
.membership-page .epcl-switch {
  text-align: center;
  position: relative;
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 320px;
  margin: 0 auto;
  padding: 15px 0px;
  margin-bottom: 100px;
  border-radius: var(--epcl-large-border-radius);
  font-size: 20px;
  border-left: 5px solid #fff;
  border: 1px solid var(--epcl-boxes-border-color);
  background: var(--epcl-boxes-background-color);
  -webkit-box-shadow: var(--epcl-large-shadow);
          box-shadow: var(--epcl-large-shadow);
}
.membership-page .epcl-switch button {
  background: none;
  text-align: center;
  width: 50%;
  font-size: 18px;
  font-family: var(--epcl-title-font-family);
  font-weight: 600;
  color: #fff;
}
.membership-page .epcl-switch::before {
  content: "";
  position: absolute;
  left: 5px;
  top: 5px;
  bottom: 5px;
  width: 50%;
  background: var(--epcl-secondary-color);
  border-radius: var(--epcl-large-border-radius);
  z-index: -1;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.membership-page .epcl-switch[data-active-price=monthly] button[data-price=yearly] {
  color: var(--epcl-text-color);
  font-weight: 400;
}
.membership-page .epcl-switch[data-active-price=yearly]:before {
  -webkit-transform: translateX(94%);
          transform: translateX(94%);
}
.membership-page .epcl-switch[data-active-price=yearly] button[data-price=monthly] {
  color: var(--epcl-text-color);
  font-weight: 400;
}
.membership-page .epcl-plans {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.membership-page .epcl-plans .epcl-plan {
  margin: 0 auto;
}
.membership-page .epcl-plans .epcl-plan[data-type=free] .title .dot {
  background-color: #05DF72;
}
.membership-page .epcl-plans .epcl-plan[data-type=free] ul li:before {
  background-color: #05DF72;
}
.membership-page .epcl-plans .epcl-plan[data-type=paid] .title .dot {
  background-color: var(--epcl-yellow);
}
.membership-page .epcl-plans .epcl-plan[data-type=paid] ul li:before {
  background-color: var(--epcl-yellow);
}
.membership-page .epcl-plans .epcl-price, .membership-page .epcl-plans .epcl-pay-button {
  display: none;
}
.membership-page .epcl-plans[data-active-price=monthly] .epcl-price[data-price=monthly] {
  display: block;
}
.membership-page .epcl-plans[data-active-price=monthly] .epcl-price[data-price=free] {
  display: block;
}
.membership-page .epcl-plans[data-active-price=monthly] .epcl-pay-button[data-price=monthly] {
  display: inline-block;
}
.membership-page .epcl-plans[data-active-price=yearly] .epcl-price[data-price=yearly] {
  display: block;
}
.membership-page .epcl-plans[data-active-price=yearly] .epcl-price[data-price=free] {
  display: block;
}
.membership-page .epcl-plans[data-active-price=yearly] .epcl-pay-button[data-price=yearly] {
  display: inline-block;
}
.membership-page .subscribe-plan {
  padding: 30px 20px 50px;
  margin-bottom: 35px;
  font-size: 15px;
  text-align: center;
}
.membership-page .subscribe-plan .title {
  margin-bottom: 10px;
}
.membership-page .subscribe-plan .free-trial {
  position: absolute;
  bottom: 100%;
  right: 20px;
  z-index: 2;
  margin-top: 10px;
}
.membership-page .subscribe-plan .plan-name .title {
  font-size: 28px;
  margin-bottom: 0;
  background: rgba(255, 255, 255, 0.07);
  border-radius: var(--epcl-large-border-radius);
  padding: 7px 20px;
  letter-spacing: 1px;
}
.membership-page .subscribe-plan .plan-name .title .dot {
  width: 7px;
  height: 7px;
  margin-right: 12px;
}
.membership-page .subscribe-plan .plan-name .epcl-price {
  font-weight: bold;
  font-size: 60px;
  margin-left: auto;
  text-align: right;
  line-height: 1;
}
.membership-page .subscribe-plan .plan-name .epcl-price .interval {
  display: none;
  font-size: 25%;
  margin-top: 3px;
  font-family: var(--epcl-title-font-family);
}
.membership-page .subscribe-plan .plan-name .epcl-price small {
  font-size: 30%;
  vertical-align: super;
  margin-right: 3px;
}
.membership-page .subscribe-plan .button {
  margin-top: 25px;
}
.membership-page .subscribe-plan .description {
  font-size: 20px;
  color: var(--epcl-golden-color);
  font-weight: 600;
  margin-top: 40px;
}
.membership-page .subscribe-plan ul {
  padding: 20px 20px 50px;
}
.membership-page .subscribe-plan ul li {
  text-align: left;
  position: relative;
  z-index: 1;
  list-style: none;
  padding-left: 25px;
  margin-top: 15px;
}
.membership-page .subscribe-plan ul li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 14px;
  height: 14px;
  color: #fff;
  background: var(--epcl-secondary-color);
  -webkit-mask: url('data:image/svg+xml,<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M8 0L10.7826 5.21739L16 8L10.7826 10.7826L8 16L5.21739 10.7826L0 8L5.21739 5.21739L8 0Z" fill="%2305DF72"/></svg>');
          mask: url('data:image/svg+xml,<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M8 0L10.7826 5.21739L16 8L10.7826 10.7826L8 16L5.21739 10.7826L0 8L5.21739 5.21739L8 0Z" fill="%2305DF72"/></svg>');
  -webkit-mask-size: contain;
          mask-size: contain;
}
.membership-page .account {
  margin-top: 10px;
}
.membership-page .account .epcl-button {
  margin-left: 10px;
}

#page-subscribe header {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 3;
  padding: 30px 40px;
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
#page-subscribe .form-wrapper {
  margin: auto 0;
}
#page-subscribe .subscribe-form {
  margin: 120px auto 0;
  max-width: 700px;
  padding: 70px;
  text-align: center;
}
#page-subscribe .subscribe-form .title {
  margin-bottom: 20px;
}
#page-subscribe .subscribe-form a {
  color: #fff;
}

@keyframes spin {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@-webkit-keyframes shake {
  10%, 90% {
    -webkit-transform: translate3d(-1px, 0, 0);
            transform: translate3d(-1px, 0, 0);
  }
  20%, 80% {
    -webkit-transform: translate3d(2px, 0, 0);
            transform: translate3d(2px, 0, 0);
  }
  30%, 50%, 70% {
    -webkit-transform: translate3d(-4px, 0, 0);
            transform: translate3d(-4px, 0, 0);
  }
  40%, 60% {
    -webkit-transform: translate3d(4px, 0, 0);
            transform: translate3d(4px, 0, 0);
  }
}
@keyframes shake {
  10%, 90% {
    -webkit-transform: translate3d(-1px, 0, 0);
            transform: translate3d(-1px, 0, 0);
  }
  20%, 80% {
    -webkit-transform: translate3d(2px, 0, 0);
            transform: translate3d(2px, 0, 0);
  }
  30%, 50%, 70% {
    -webkit-transform: translate3d(-4px, 0, 0);
            transform: translate3d(-4px, 0, 0);
  }
  40%, 60% {
    -webkit-transform: translate3d(4px, 0, 0);
            transform: translate3d(4px, 0, 0);
  }
}
/* @end */
/*------------------------------------*\
    		RESPONSIVE
\*------------------------------------*/
/* CSS Document */
@media screen and (min-width: 1201px) {
  .hide-on-desktop-lg {
    display: none !important;
  }
}
@media screen and (max-width: 1450px) {
  .grid-container {
    max-width: 1200px;
  }
}
/* All Mobile Devices */
/* All Mobile Devices */
@media screen and (max-width: 1200px) {
  /* @group Global Styles */
  body {
    font-size: 14px;
  }
  body.menu-open {
    overflow-x: hidden;
  }
  div.body-background:before, div.body-background:after {
    background: radial-gradient(circle at 50% 50%, var(--epcl-secondary-color), transparent 50%);
  }
  .content {
    margin-top: 40px;
  }
  div.left-content {
    padding-right: 30px;
  }
  .one-sidebar .left-content {
    width: auto;
  }
  .title {
    font-size: 20px;
  }
  .title.ularge {
    font-size: 34px;
  }
  .title.large {
    font-size: 30px;
  }
  .title.medium {
    font-size: 22px;
  }
  .title.small {
    font-size: 18px;
  }
  .title.usmall {
    font-size: 14px;
  }
  .grid-sidebar div.left-content {
    padding-right: 0;
  }
  .section {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .content {
    margin-top: 60px;
  }
  .bg-box.section {
    padding: 30px;
  }
  .epcl-banner {
    padding-bottom: 0 !important;
  }
  .button, .epcl-button:not(.epcl-shortcode) {
    font-size: 13px;
  }
  .button:hover:after, .epcl-button:not(.epcl-shortcode):hover:after {
    -webkit-transform: translate(0px, 0px) !important;
            transform: translate(0px, 0px) !important;
    background: none;
    width: 100%;
    height: 100%;
  }
  .widget_epcl_about .bio {
    font-size: 13px;
  }
  .widget_epcl_featured_category .item .thumb, .widget_epcl_posts_thumbs .item .thumb, .widget_epcl_related_articles .item .thumb {
    width: 80px;
    height: 80px;
  }
  .widget_epcl_social .widget-content a.epcl-button {
    padding: 6px 20px;
  }
  /* @end */
  /* @group Header */
  #header {
    min-height: inherit;
  }
  #header div.menu-wrapper {
    padding-top: 0;
    margin-top: 50px;
    position: relative;
  }
  #header div.menu-mobile {
    display: block;
    position: absolute;
    left: 40px;
    top: 50%;
    cursor: pointer;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    margin-top: 2px;
    z-index: 200;
    color: #fff;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
  }
  #header div.menu-mobile svg {
    color: #15123A;
  }
  #header nav {
    display: none !important;
  }
  #header .grid-container {
    padding-left: 20px;
    padding-right: 20px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  #header .epcl-account {
    display: none;
  }
  #header .epcl-search-button {
    right: 40px;
    margin-top: -5px;
  }
  /* @end */
  /* @group Global: Modules */
  .intro-text {
    padding-bottom: 0;
  }
  .membership-page .subscribe-plan ul li {
    font-size: 13px;
    padding-left: 25px;
  }
  .membership-page .epcl-switch {
    margin-bottom: 40px;
  }
  /* @end */
  /* @group Global: Articles Lists */
  .grid-prompts-container {
    border-radius: 0;
  }
  div.articles.classic {
    gap: 30px;
  }
  div.articles.classic article.small-post {
    min-height: inherit;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  div.articles.classic article.small-post .title {
    font-size: 17px;
  }
  div.articles.classic article.small-post .info {
    padding-top: 15px;
  }
  div.articles.classic article.small-post .meta .author {
    display: none;
  }
  /* @end */
  /* @group Single */
  .mfp-container.mfp-ajax-holder #prompt-content {
    padding: 0;
  }
  .mfp-container.mfp-ajax-holder #prompt-content .prompt-post {
    padding: 20px 0;
  }
  #prompt-content .text {
    font-size: 13px;
  }
  #prompt-content .info .main-title {
    font-size: 28px;
    margin-bottom: 20px;
  }
  div.text h1 {
    font-size: 28px;
  }
  div.text h2 {
    font-size: 24px;
  }
  div.text h3 {
    font-size: 20px;
  }
  div.text h4 {
    font-size: 18px;
  }
  div.text h5 {
    font-size: 16px;
  }
  div.text h6 {
    font-size: 14px;
  }
  #single .epcl-sticky-share .epcl-social-buttons {
    padding: 15px 0;
    max-width: 70px;
    margin: 0;
  }
  /* @end */
  /* @group Footer */
  #footer #back-to-top {
    right: 10px;
    bottom: 10px;
    width: 40px;
    height: 40px;
    line-height: 40px;
  }
  /* @end */
}
/* Small Desktop (up to 1200px) */
/* Small Desktops and Horizontal Tablets */
@media screen and (min-width: 981px) and (max-width: 1200px) {
  .hide-on-desktop-sm {
    display: none !important;
  }
  body {
    min-width: inherit;
    font-size: 14px;
  }
  img {
    max-width: 100%;
    height: auto;
  }
  .grid-container {
    padding-left: 40px;
    padding-right: 40px;
  }
  .grid-container.grid-medium {
    max-width: 860px;
  }
  .title {
    font-size: 20px;
  }
  .title.absolute.large {
    left: -52px;
    font-size: 26px;
  }
  .inputbox.large {
    padding: 15px 20px;
    font-size: 14px;
  }
  div.left-content {
    padding-left: 0px;
    padding-right: 60px;
  }
  .content {
    margin-top: 80px;
  }
  div.text {
    font-size: 16px;
  }
  .subscribe-cta h3.title {
    font-size: 22px;
  }
  #author .author-avatar {
    width: 70px;
    height: 70px;
  }
  /* @group Header */
  #header .logo .title {
    font-size: 50px;
  }
  /* @end */
  /* @group Articles */
  div.articles.grid-posts article {
    width: 50% !important;
    margin-bottom: 60px;
  }
  /* @end */
  /* @group Modules */
  .epcl-authors {
    padding-left: 50px;
    padding-right: 50px;
  }
  .epcl-authors .title.bordered {
    font-size: 26px;
  }
  .membership-page .epcl-plans {
    margin: 20px -40px;
    width: auto;
  }
  .membership-page .epcl-plans .epcl-plan {
    margin: 0;
  }
  .membership-page .subscribe-plan {
    padding: 30px;
  }
  .membership-page .subscribe-plan .plan-name .title {
    font-size: 20px;
  }
  .membership-page .subscribe-plan .description {
    font-size: 16px;
  }
  /* @end */
  /* @group Single */
  #single .main-article {
    padding: 0;
  }
  #single.classic.epcl-vertical .main-article .featured-image img {
    height: 250px;
  }
  #single.fullcover .fullcover-wrapper .featured-image img {
    height: 400px;
  }
  #single .subscribe-cta {
    width: auto;
    margin-left: 20px;
    margin-right: 20px;
  }
  #single .author-section {
    margin-left: 20px;
    width: auto;
  }
  #single .author-section .widget_epcl_subscribe {
    font-size: 14px;
    width: 47%;
  }
  #single .author-section .widget_epcl_subscribe .widget-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row wrap;
            flex-flow: row wrap;
    height: 100%;
    -ms-flex-line-pack: center;
        align-content: center;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  #single .author-section .widget_epcl_subscribe .title {
    width: 100%;
  }
  #single .author-section .widget_epcl_subscribe .inputbox {
    padding: 15px;
    font-size: 13px;
  }
  #single .author-section .widget_epcl_subscribe .epcl-plane {
    width: 65px;
    left: -43px;
    top: -25px;
  }
  #single #comments {
    margin-left: 20px;
  }
  #single section.related {
    margin: 60px 0 0;
  }
  #single section.related .article-list .item {
    width: 33%;
    margin-right: 20px;
  }
  #single section.related .article-list .item:nth-child(3) {
    margin-right: 0;
  }
  #single section.related .article-list .item:nth-child(4) {
    display: none;
  }
  #single section.related .article-list .item .featured-image {
    margin-bottom: 20px;
  }
  /* @end */
  /* @group Archives */
  #author {
    padding: 35px 25px;
    font-size: 14px;
  }
  /* @end */
  /* @group Footer */
  #footer .widgets {
    padding: 0;
  }
  #footer .widgets .widget {
    width: 45%;
  }
  #footer .widgets .widget:first-child {
    width: 55%;
    padding-left: 0;
  }
  #footer .widgets .widget:last-of-type {
    padding-right: 0;
  }
  /* @end */
}
/* Tablets (up to 1024px) */
@media screen and (min-width: 768px) and (max-width: 990px) {
  body {
    font-size: 14px;
  }
  div.left-content {
    padding-right: 0px;
    padding-left: 0px;
  }
  .classic-sidebar div.left-content {
    padding-left: 20px;
  }
  .grid-container {
    padding-left: 40px;
    padding-right: 40px;
  }
  .np-tablet {
    padding-left: 0;
    padding-right: 0;
  }
  .nofloat-tablet {
    float: none !important;
  }
  .no-sidebar:not(#single) {
    display: none !important;
  }
  .content {
    margin-top: 60px;
  }
  .section {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .medium-section {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .large-section {
    padding-top: 80px;
    padding-bottom: 80px;
  }
  .title.absolute.large {
    font-size: 26px;
    left: -50px;
  }
  .widget {
    margin-bottom: 30px;
  }
  .subscribe-cta h3.title {
    font-size: 22px;
  }
  #header .logo a {
    font-size: 42px;
  }
  #header .logo .title {
    font-size: 50px;
  }
  nav.mobile.main-nav {
    padding-top: 80px;
  }
  /* @group Global Articles List */
  div.articles.classic {
    -ms-grid-columns: 40% 60%;
    grid-template-columns: 40% 60%;
  }
  div.articles.classic .post-excerpt {
    font-size: 13px;
  }
  div.articles.classic article.small-post .title {
    font-size: 16px;
  }
  div.articles.classic article.small-post .info {
    padding-top: 0;
  }
  .grid-prompts article .featured-image img {
    min-height: inherit;
  }
  /* @end */
  /* @group Modules */
  .intro-text {
    padding-bottom: 0;
  }
  /* @end */
  /* @group Archives */
  #archives .epcl-archive-info {
    position: relative;
    top: auto;
  }
  #archives .epcl-archive-info .item {
    margin-top: 60px;
    border: 0 !important;
  }
  #archives .epcl-archive-info .featured-image {
    width: 150px;
    margin: 0 auto;
  }
  #archives .epcl-archive-list {
    margin-top: 30px;
    border: 0;
    padding: 0;
  }
  .epcl-archive-info .item {
    border: 0;
    margin-top: 40px;
    padding-bottom: 0;
  }
  .epcl-archive-info .item .epcl-border {
    display: none;
  }
  /* @end */
  /* @group Single */
  div.text {
    font-size: 16px;
  }
  div.text blockquote {
    padding: 20px 40px;
  }
  #single.epcl-vertical .top-info {
    padding: 0;
    margin: 60px -20px;
    font-size: 13px;
    width: auto;
  }
  #single.fullcover .main-title {
    font-size: 40px;
  }
  #single.fullcover .fullcover-wrapper .featured-image img {
    height: 350px;
  }
  #prompt-content .info {
    padding-left: 0;
  }
  #prompt-content .info .main-title {
    font-size: 22px;
  }
  /* @end */
  /* @group Membership */
  .membership-page .epcl-plans {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row wrap;
            flex-flow: row wrap;
    margin: 20px 0px;
    width: auto;
  }
  .membership-page .epcl-plans .epcl-plan {
    margin: 20px 0 0;
  }
  .membership-page .subscribe-plan {
    padding: 30px;
  }
  .membership-page .subscribe-plan .plan-name .title {
    font-size: 20px;
  }
  .membership-page .subscribe-plan .description {
    font-size: 16px;
  }
  .newsletter-section .epcl-flex {
    padding-top: 0;
  }
  .newsletter-section .info {
    text-align: center;
    padding-bottom: 20px;
  }
  /* @end */
  /* @group Footer */
  #footer .grid-container {
    padding: 0;
  }
  #footer .widgets {
    padding: 0;
  }
  #footer .widgets .widget {
    margin-bottom: 0;
    padding-right: 50px;
    width: 60%;
  }
  #footer .widgets .widget:last-of-type {
    width: 35%;
    padding-right: 0;
  }
  #footer .published {
    font-size: 13px;
  }
  /* @end */
}
/* SmartPhones and small tablets */
@media screen and (max-width: 767px) {
  .force-var {
    padding: 30px;
    margin: 20px;
  }
  [class^=grid] {
    padding-left: 20px;
    padding-right: 20px;
  }
  .no-sidebar .default-sidebar {
    display: none !important;
  }
  /* @group Global Styles */
  body {
    font-size: 14px;
  }
  .section {
    padding-top: 30px;
    padding-bottom: 30px;
  }
  .medium-section {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .large-section {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .section.bordered {
    margin: 0 -20px;
    padding-left: 20px;
    padding-right: 20px;
  }
  .grid-container {
    padding-left: 30px;
    padding-right: 30px;
  }
  .np-mobile {
    padding-left: 0;
    padding-right: 0;
  }
  .nofloat-mobile {
    float: none !important;
  }
  .content {
    margin-top: 50px;
  }
  div.left-content {
    padding-left: 0;
    padding-right: 0;
  }
  .bg-box {
    padding: 30px 20px;
  }
  .title {
    font-size: 18px;
    margin-bottom: 20px;
  }
  .title.ularge {
    font-size: 26px;
  }
  .title.large {
    font-size: 22px;
  }
  .title.medium {
    font-size: 20px;
  }
  .title.small {
    font-size: 14px;
  }
  .title.usmall {
    font-size: 12px;
  }
  .title.bordered svg.decoration {
    width: 15px;
    width: 15px;
  }
  .title.title-gradient {
    margin-bottom: 30px;
  }
  .tooltip:before, .tooltip:after {
    display: none;
  }
  .button, .epcl-button:not(.epcl-shortcode) {
    font-size: 13px;
  }
  .button.large, .epcl-button:not(.epcl-shortcode).large {
    font-size: 14px;
  }
  .epcl-button:not(.epcl-shortcode).close-lightbox {
    top: -5px;
    right: -10px;
  }
  .epcl-search-button {
    display: block;
    min-width: inherit;
    font-size: 14px;
  }
  input[type=email], input[type=password], input[type=search], input[type=tel], input[type=text], input[type=url], select, textarea {
    padding: 12px 20px;
    font-size: 16px;
  }
  .inputbox.large {
    padding: 12px 20px;
  }
  .epcl-border.small {
    margin-top: 15px;
  }
  .right-arrows .slick-prev {
    bottom: 80px !important;
  }
  .right-arrows .slick-next, .right-arrows .slick-prev {
    width: 70px !important;
    height: 35px !important;
  }
  .right-arrows .slick-next:before, .right-arrows .slick-prev:before {
    -webkit-mask-size: 30px !important;
            mask-size: 30px !important;
  }
  div.body-background:before, div.body-background:after {
    background: radial-gradient(circle at 50% 50%, var(--epcl-secondary-color), transparent 30%);
  }
  /* @end */
  /* @group Header */
  #header .logo {
    max-width: 150px !important;
    margin: 0 auto;
  }
  #header .logo.text-logo {
    margin-top: -2px;
  }
  #header .logo.text-logo .title {
    font-size: 40px;
  }
  #header div.menu-wrapper {
    margin-top: 30px;
  }
  #header div.menu-mobile {
    left: 20px;
  }
  .main-nav ul.menu li {
    padding: 15px;
  }
  nav.mobile.main-nav {
    max-width: 87%;
    padding-top: 60px;
  }
  nav.mobile.main-nav div.close {
    top: 10px;
  }
  nav.mobile.main-nav ul {
    padding: 20px 0;
  }
  nav.mobile.main-nav ul.menu li a {
    font-size: 16px;
  }
  nav.mobile.main-nav ul.menu > li {
    padding: 12px 10px;
  }
  /* @end */
  /* @group Global: Modules */
  .intro-text {
    padding: 60px 20px 0;
  }
  /* @end */
  /* @group Global: Articles List */
  div.tags, .widget_tag_cloud, .widget_epcl_tag_cloud {
    font-size: 12px;
  }
  div.tags.absolute {
    right: 10px;
    top: 10px;
    font-size: 11px;
  }
  div.tags.absolute a {
    padding: 6px 10px;
  }
  div.articles.small-list article {
    display: block;
  }
  div.articles.small-list article .post-format-wrapper {
    width: auto;
    margin-right: 0;
    max-width: inherit;
  }
  div.articles.small-list article .title {
    font-size: 16px;
    margin-top: 10px;
  }
  div.articles.classic {
    display: block;
  }
  div.articles.classic[data-columns="2"] {
    display: block;
  }
  div.articles.classic[data-columns="2"] article {
    width: auto;
  }
  div.articles.classic article.large-post {
    margin-bottom: 30px;
  }
  div.articles.classic article.large-post .post-format {
    margin-bottom: 15px;
  }
  div.articles.classic article.small-post {
    margin-top: 0px;
    margin-bottom: 20px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  div.articles.classic article.small-post:last-of-type {
    margin-bottom: 0;
  }
  div.articles.classic article.small-post .post-format-wrapper {
    margin-right: 10px;
  }
  div.articles.classic article.small-post .title {
    font-size: 14px;
  }
  div.articles.classic article.small-post .info {
    padding-top: 0;
  }
  div.articles.classic article.small-post .author {
    display: none;
  }
  .grid-prompts-container {
    padding: 30px 10px !important;
  }
  .grid-prompts-container .grid-prompts {
    padding: 0;
  }
  .grid-prompts-container .grid-prompts .filters a {
    padding: 10px 12px;
  }
  .grid-prompts-container .grid-prompts article {
    margin-top: 20px;
    padding: 0 10px;
  }
  .grid-prompts-container .grid-prompts article .main-title {
    font-size: 13px;
    letter-spacing: 0;
    line-height: 1.4;
  }
  .grid-prompts-container .grid-prompts article .featured-image img {
    min-height: inherit;
  }
  .epcl-prompt-list div.articles .main-title {
    font-size: 14px;
  }
  /* @end */
  /* @group Single Post */
  #single .left-content {
    padding: 0;
  }
  #single .main-article {
    padding: 0;
  }
  #single .main-article .main-title {
    font-size: 28px;
  }
  #single .main-article .meta.large {
    font-size: 15px;
  }
  #single .main-article .post-content {
    margin-top: 20px;
  }
  #single .top-info .info {
    padding-left: 0;
    padding-right: 0;
  }
  #single.epcl-vertical .top-info {
    padding: 0 0 30px;
    margin-bottom: -30px;
    border-bottom: 1px solid var(--epcl-border-color);
    margin-top: 0;
  }
  #single.epcl-vertical .top-info .featured-image {
    padding: 0;
    margin-top: 60px;
    width: 100%;
    margin-bottom: 10px;
  }
  #single.epcl-vertical .top-info .featured-image img {
    height: inherit;
    max-height: 250px;
  }
  #single.epcl-vertical .top-info .info {
    display: block;
    width: auto;
    text-align: center;
    padding: 0;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  #single.fullcover .fullcover-wrapper .featured-image {
    margin-top: 60px;
    margin-bottom: -30px;
  }
  #single.fullcover .fullcover-wrapper .featured-image img {
    height: 225px;
  }
  #single .bottom-tags {
    padding-bottom: 20px;
  }
  #single .bottom-tags .tags-list {
    padding: 0;
  }
  #single .bottom-tags .last-update {
    display: block;
    margin-left: 0;
    margin-top: 10px;
  }
  #single .share-buttons {
    margin-top: 30px;
    padding: 30px 0;
  }
  #single .share-buttons .permalink input {
    width: 100%;
    font-size: 12px;
  }
  #single section.siblings {
    margin-top: 0;
    padding-bottom: 20px;
  }
  #single .epcl-related {
    margin-top: 30px;
  }
  #single #comments .bg-box {
    padding: 20px 30px;
    margin: 0 -30px;
    border-radius: 0;
  }
  .mfp-container.mfp-ajax-holder #prompt-content .prompt-post {
    display: block;
  }
  .mfp-container.mfp-ajax-holder #prompt-content .featured-image img {
    min-height: inherit;
    aspect-ratio: 1/1;
  }
  /* @end */
  /* @group Pages */
  #page #single.fullcover .left-content {
    margin-top: -30px;
  }
  /* @end */
  /* @group Author and Tags page */
  #archives #author {
    margin-top: 30px;
  }
  .epcl-archive-info .item {
    margin-top: 30px;
    padding: 10px 0;
    border: 0;
  }
  .epcl-archive-info .item .epcl-border {
    display: none;
  }
  .epcl-archive-info .item .featured-image img {
    width: 125px;
  }
  #archives .epcl-archive-info {
    position: relative;
    top: auto;
    padding-right: 0;
    padding-left: 0;
  }
  #archives .epcl-archive-info .item {
    padding: 0;
    margin-top: 60px;
  }
  #archives .epcl-archive-list {
    margin-top: 60px;
    padding-left: 0;
    padding-right: 0;
    border: 0;
  }
  #archives .epcl-archive-list .title.title-gradient {
    margin-bottom: 10px;
  }
  .epcl-tags-archive .epcl-switch {
    margin-bottom: 30px;
  }
  .epcl-tags-archive .tag-item .info {
    padding: 10px 0;
  }
  #author {
    padding: 20px;
  }
  #author .author-name {
    margin: 10px 0 0;
  }
  #author .info {
    margin-top: 20px;
  }
  #author .social {
    left: -25px;
  }
  #archives .tag-description {
    padding: 0;
    margin-top: 60px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column wrap;
            flex-flow: column wrap;
  }
  #archives .tag-description .left {
    margin: 0 auto;
  }
  #archives .tag-description .right {
    border: 0;
    padding-left: 0;
    margin-left: 0;
    margin-top: 20px;
    text-align: center;
  }
  .epcl-tags-archive {
    margin-left: -20px;
    margin-right: -20px;
    padding-bottom: 0;
  }
  .epcl-tags-archive .epcl-row {
    display: block;
    width: auto;
  }
  .epcl-tags-archive .bg-box {
    padding: 20px 0 0;
    text-align: center;
    border-radius: 0;
  }
  .epcl-tags-archive .category-info {
    margin-top: 10px;
  }
  .epcl-tags-archive .category-info .category-image {
    float: none;
    margin: 0 auto;
  }
  .epcl-tags-archive .thumb {
    width: 250px;
    height: 200px;
    margin: 0 auto 20px;
  }
  /* @end */
  /* @group Membership */
  .subscribe-cta h3.title {
    font-size: 16px;
  }
  .subscribe-cta .sign-in {
    margin-top: 20px;
  }
  .subscribe-form .form-group .inputbox.large {
    padding: 15px 15px;
    font-size: 13px;
    padding-right: 130px;
  }
  .subscribe-form .form-group .submit.absolute {
    padding: 0 20px;
  }
  .membership-page .intro-text {
    padding: 60px 0 0;
  }
  .membership-page .intro-text p {
    padding-left: 0;
    padding-right: 0;
  }
  .membership-page .epcl-plans {
    display: block;
    width: auto;
    margin: 0 20px;
  }
  .membership-page .epcl-plans .epcl-plan .subscribe-plan {
    margin-bottom: 50px;
  }
  .membership-page .epcl-plans .epcl-plan:last-child .subscribe-plan {
    margin-bottom: 20px;
  }
  .membership-page .subscribe-plan {
    padding: 30px 20px;
    margin-bottom: 40px;
  }
  #page-subscribe .form-wrapper {
    display: block;
    margin: 0 0px;
    width: 100%;
  }
  #page-subscribe .subscribe-form {
    padding: 45px 20px;
    margin-top: 80px;
  }
  #page-subscribe .subscribe-form .title.ularge {
    margin-bottom: 20px;
    font-size: 22px;
  }
  #page-404 .epcl-flex {
    display: block;
  }
  #page-404 div.not-found h1.title {
    font-size: 100px;
  }
  #page-404 div.not-found .bg {
    font-size: 200px;
    top: -100px;
  }
  /* @end */
  /* @group Footer */
  .newsletter-section {
    margin: 0px -30px;
    padding: 30px 30px 60px;
    border-radius: 0;
  }
  .newsletter-section .epcl-flex {
    display: block;
    padding-top: 0;
  }
  .newsletter-section .info {
    text-align: center;
    padding-bottom: 20px;
  }
  #footer {
    margin-top: 60px;
  }
  #footer.minimal {
    margin-top: 60px;
  }
  #footer #back-to-top {
    width: 40px;
    height: 40px;
    line-height: 40px;
  }
  #footer .mobile-footer {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row wrap;
            flex-flow: row wrap;
  }
  #footer .widgets {
    padding: 0;
  }
  #footer .widgets .widget {
    width: auto !important;
    padding: 0 0px;
    margin: 0 0 40px;
    border: 0;
  }
  #footer .widgets .widget .widget-title {
    margin-bottom: 20px;
  }
  #footer .widgets .widget.widget_text {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  #footer .published {
    padding-top: 40px;
    font-size: 13px;
    text-align: center;
  }
  /* @end */
  /* @group Text Editor */
  div.text {
    font-size: 15px;
  }
  div.text h1 {
    font-size: 22px;
  }
  div.text h2 {
    font-size: 20px;
  }
  div.text h3 {
    font-size: 18px;
  }
  div.text h4 {
    font-size: 16px;
  }
  div.text h5 {
    font-size: 14px;
  }
  div.text h6 {
    font-size: 13px;
  }
  div.text blockquote {
    margin-left: 0px;
    margin-right: 0px;
    font-size: 14px;
    padding: 20px;
  }
  div.text iframe {
    max-width: 100%;
  }
  div.text pre:not([class*=language-]) {
    padding: 10px 5px;
    font-size: 13px;
  }
  div.text code:not([class*=language-]) {
    font-size: 13px;
  }
  div.text pre, div.text code[class*=language-], div.text pre[class*=language-] {
    max-height: 300px;
    white-space: pre;
  }
  div.text table {
    display: block;
    overflow: auto;
    padding: 0;
  }
  div.text table tbody {
    overflow: auto;
  }
  div.text ul, div.text ol {
    margin-left: 15px;
  }
  div.text ul:not([class]) li:before {
    top: 12px;
  }
  div.text iframe, div.text figure, div.text p {
    margin-bottom: 12.8px;
  }
  div.text .kg-callout-card {
    padding: 1em;
  }
  div.text .kg-callout-card div.kg-callout-text {
    font-size: 13px;
  }
  div.text .kg-embed-card iframe {
    height: 250px;
  }
  div.text .kg-signup-card-text {
    padding: 20px 0 0;
  }
  div.text .kg-bookmark-card .kg-bookmark-content {
    padding: 30px 20px;
  }
  div.text .kg-bookmark-card .kg-bookmark-thumbnail {
    display: none;
  }
  div.text .kg-product-card .kg-product-card-container {
    padding: 20px;
  }
  div.text .kg-product-card .kg-product-card-rating {
    margin-top: 0;
  }
  /* @end */
}