:root {
  --padding-text: 5px 10px;
  --padding-small: 15px;
  --padding-inner: 50px;
  --space-5: 5px;
  --radius-small: 3px;
  --color-border: #e1e1e1;
  --color-shaded: #989ea6;
  --color-white: #fff;
  --color-dark: #333;
  --color-primary: #43c6ac;
  --margin-h2: 14px;
  --font-h2: 32px;
  --font-small: 14px;
}
/**
 * --------------------------------------------------------------------------------
 * Main Stylesheet
 * --------------------------------------------------------------------------------
*/
/**
 *
 * #.# General
 *
 */
body {
  transition: 0.2s all ease;
}
ul,
ol {
  margin: 0;
  padding: 0;
  list-style-position: inside;
}
a {
  text-decoration: none;
  color: #444;
  font-weight: 500;
  -ms-word-wrap: break-word;
  word-wrap: break-word;
  transition: all 0.2s ease;
}
a:hover {
  color: #43c6ac;
}
a:hover * {
  color: #43c6ac;
}
a,
a:hover,
a:focus {
  outline: 0;
}
/* Text selection color */
/* Mozilla based browser */
::-moz-selection {
  background-color: #43c6ac;
  color: #fff;
}
/* Opera browser */
::-o-selection {
  background-color: #43c6ac;
  color: #fff;
}
/* Internet Explorer browser*/
::-ms-selection {
  background-color: #43c6ac;
  color: #fff;
}
/* Chrome and safari browser */
::-webkit-selection {
  background-color: #43c6ac;
  color: #fff;
}
/* Default */
::selection {
  background-color: #43c6ac;
  color: #fff;
}
.right {
  float: right;
}
.white {
  background-color: #fff;
}
.dark {
  background-color: #f9f8f8;
}
.center {
  text-align: center;
}
.bold {
  font-weight: 700;
}
.shadow {
  box-shadow: 0 14px 28px -4px rgba(14, 17, 20, 0.1);
}
.slick-dots li.slick-active button:before {
  color: #fff;
}
.slick-dots li button:before {
  font-size: 4.8rem;
  color: #fff;
}
.parallax {
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.vertical-align {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex !important;
  /** Overrides other display properties to make the contents align vertically **/
  align-items: center;
}
.bordered {
  border-bottom: 1px solid #e0e0e0;
}
.underline {
  display: inline-block;
  margin-bottom: 1rem;
  height: 0.2rem;
  width: 5rem;
  background-color: #43c6ac;
}
.container {
  padding: 7.2rem 0;
}
.u-full-width {
  padding: 7.2rem 0;
}
.u-full-width .container {
  padding: 0;
}
.hide {
  opacity: 0;
}
.hidden {
  visibility: hidden;
}
.none {
  display: none;
}
/**
 *
 * #.# Header
 *
 */
/* Header Container */
.sticky-header {
  padding-top: 10rem;
}
.site-header {
  background-color: #fff;
  position: fixed;
  top: 0;
  left: 0;
  padding: 1.5rem 0;
  width: 100%;
  z-index: 9;
  transition: 0.3s all ease;
}
.site-header .row {
  padding: 0;
}
.stuck {
  z-index: 9;
  padding: 0;
  box-shadow: 0 14px 28px -4px rgba(14, 17, 20, 0.1);
}
header > .container {
  padding: 0;
  width: 85%;
}
/* For devices Smaller than 600px */
@media (max-width: 600px) {
  header > .container {
    padding: 0;
    width: 85%;
  }
  .site-header .row {
    padding: 0 1.6rem 0 0 !important;
  }
}
/**
 *
 * #.# Misc
 *
 */
.wp-block-gallery .blocks-gallery-image figcaption,
.wp-block-gallery .blocks-gallery-item figcaption {
  padding: 0;
}
.widgetarea .menu ul {
  margin-left: 0;
}
footer .container,
.ct-bottom-bar .container,
.top-bar .container {
  padding: 0;
}
.site-title {
  margin: 1rem 0px;
}
.site-title a {
  font-weight: 700;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
}
.site-title a:hover {
  color: unset !important;
}
/* Navigation Menu */
.site-header .row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.site-header .row::after {
  content: none;
}
.site-header .site-branding {
  float: left;
}
.site-header .menu-all-pages-container {
  float: right;
}
.site-branding .custom-logo-link img,
.site-branding .custom-logo-dark img {
  max-width: 220px;
  height: auto;
}
.admin-bar .site-header {
  top: 3.2rem;
}
@media screen and (max-width: 782px) {
  .admin-bar .site-header {
    top: 4.6rem;
  }
}
/* For devices smaller than 991.98px */
@media (max-width: 991.98px) {
  .site-header .site-branding {
    float: none;
  }
}
nav {
  display: inline-block;
  position: relative;
  z-index: 2;
}
nav a {
  font-size: 1.6rem;
  font-weight: 700;
}
.main-nav li {
  list-style-type: none;
}
.main-nav > li {
  float: left;
}
.main-nav li a:hover {
  color: #43c6ac;
}
.main-nav > li > a {
  color: #444;
  display: block;
  padding: 2.2rem 1.6rem;
}
.sub-menu li {
  margin-bottom: 0.6rem;
}
.main-nav > .menu-item-has-children > ul {
  background-color: #fff;
  position: absolute;
  padding: 1.6rem 2.4rem;
  width: 220px;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.main-nav > .menu-item-has-children:hover > ul {
  border-bottom: 1px solid #43c6ac;
  opacity: 1;
  visibility: visible;
}
.main-nav .menu-item-has-children > a:after {
  content: "\f107";
  padding-left: 6px;
  font: normal normal normal 16px/1 FontAwesome;
}
.main-nav .menu-item-has-children .menu-item-has-children > ul {
  background-color: #fff;
  position: absolute;
  margin-left: -1.1rem;
  padding: 1.6rem 2.4rem;
  border-left: 1px solid #43c6ac;
  width: 160px;
  left: 100%;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(-2.4rem);
  -moz-transform: translateY(-2.4rem);
  -o-transform: translateY(-2.4rem);
  transform: translateY(-2.4rem);
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
}
.main-nav .menu-item-has-children .menu-item-has-children:hover > ul {
  opacity: 1;
  visibility: visible;
}
.main-nav .menu-item-has-children .menu-item-has-children > a:after {
  content: "\f105";
  display: inline-block;
  font: normal normal normal 1.6rem/1 FontAwesome;
  right: 0;
  padding-top: 0.4rem;
  padding-right: 2.4rem;
  position: absolute;
}
.main-nav li ul li a {
  color: #444;
}
/* Mobile Navigation Menu */
.mobile-menu-container {
  position: absolute;
  top: 0;
  right: 3.2rem;
}
.menubar-right,
.menubar-close {
  cursor: pointer;
  position: absolute;
  font-size: 2.7rem;
  right: 0;
  top: 2.4rem;
  z-index: 2;
}
.menubar-right {
  top: 0.9rem;
}
.menubar-close {
  right: 0;
  top: 0;
  padding: 0.45rem 0.75rem 0.6rem;
  line-height: 1;
  background-color: #43c6ac;
  color: #fff;
}
.has-logo {
  top: 1.2rem;
}
.admin-bar .mobile-menu-open {
  top: 32px;
}
@media screen and (max-width: 782px) {
  .admin-bar .mobile-menu-open {
    top: 46px;
  }
}
.dropdown-toggle {
  cursor: pointer;
  font-size: 2.2rem;
  padding: 0 1rem;
  position: absolute;
  top: 0.6rem;
  right: -0.1rem;
  -webkit-transition: -webkit-transform 0.2s ease-out;
  -moz-transition: -moz-transform 0.2s ease-out;
  -o-transition: -o-transform 0.2s ease-out;
  transition: transform 0.2s ease-out;
}
.nav-parent {
  background-color: #fff;
  border-left: 1px solid #e3e3e3;
  padding: 4rem;
  position: fixed;
  overflow-y: scroll;
  top: 0;
  right: 0;
  bottom: 0;
  max-width: 35rem;
  width: 100%;
  z-index: 9902;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s ease;
  -webkit-transform: translate3d(100%, 0, 0);
  transform: translate3d(100%, 0, 0);
  box-shadow: 0 14px 28px -4px rgba(14, 17, 20, 0.1);
}
.mobile-menu-open {
  -webkit-transform: translate3d(0, 0, 0) !important;
  transform: translate3d(0, 0, 0) !important;
}
.mobile-nav li {
  position: relative;
  list-style-type: none;
}
.mobile-nav > li {
  border-bottom: 1px solid #e3e3e3;
}
.mobile-nav > li:last-child {
  border-bottom: none;
}
.mobile-nav li a {
  padding: 1rem;
  display: block;
}
.mobile-nav li ul li ul a,
.mobile-nav li ul a {
  display: block;
}
.mobile-nav > li > ul {
  display: none;
  padding-left: 1.6rem;
}
.mobile-nav > li > ul > li > ul {
  display: none;
  padding-left: 1.6rem;
}
.toggled {
  -o-transform: rotate(-180deg);
  -ms-transform: rotate(-180deg);
  -webkit-transform: rotate(-180deg);
  transform: rotate(-180deg);
}
/**
 *
 * #.# Media Queries
 *
 */
/* Medium devices (tablets, less than 992px) */
@media (max-width: 991px) {
  .menu-main-container,
  .main-nav {
    display: none;
  }
}
/* Larger than tablet */
@media (min-width: 992px) {
  .mobile-navigation {
    display: none;
  }
  .site-branding {
    position: relative;
  }
}
.highlight {
  position: relative;
}
ul .highlight::after {
  content: "\f111";
  font-family: Fontawesome;
  font-size: 1rem;
  position: absolute;
  right: 1rem;
  top: 1.2rem;
  color: #43c6ac;
}
.menu-item-has-children::after {
  right: 1.6rem !important;
}
/* Medium devices (tablets, less than 992px) */
@media (max-width: 991px) {
  ul .highlight::after {
    top: 0.4rem;
  }
}
/**
 * Centering main logo on larger devices
 */
/* Larger than tablet */
.site-header .container .row {
  position: relative;
}
.custom-logo-link img,
.custom-logo-dark img {
  display: block;
}
/**
 * --------------------------------------------------------------------------------
 * Comments Template
 * --------------------------------------------------------------------------------
*/
.logged-in .comment-message-section {
  width: 100%;
}
.comment-message-section,
.comment-author-section {
  width: 49%;
  float: left;
}
.comment-author-section {
  padding-left: 2%;
}
.comment-author-section > div {
  margin-bottom: 0.3rem;
}
.comment-form-cookies-consent {
  display: inline-block;
}
#wp-comment-cookies-consent {
  margin-right: 1rem;
}
label {
  display: block;
  color: #444;
  margin-bottom: 1rem;
  font-weight: 700;
}
input,
input[type="text"],
input[type="email"],
input[type="url"],
textarea {
  background-color: #fff;
  border: 1px solid #fff;
  border-bottom-color: #e3e5e6;
  margin-bottom: 0.5rem;
  padding: 0 1rem;
  width: 100%;
  box-sizing: border-box;
  transition: border-bottom-color 0.2s ease;
}
input:hover,
input[type="text"]:hover,
input[type="email"]:hover,
input[type="url"]:hover,
textarea:hover {
  border-bottom-color: #43c6ac;
}
input,
input[type="text"],
input[type="email"],
input[type="url"] {
  height: 4rem;
}
.submit > button {
  margin-top: 1rem;
  text-transform: uppercase;
  padding: 0 2rem;
  height: 4.5rem;
}
.form-submit #submit {
  background-color: #ffffff;
  font-size: 1.5rem;
  margin: 0;
  padding: 0 1.5rem;
  width: 100%;
  height: 4rem;
  text-align: center;
  position: relative;
  border: 1px solid #ffffff;
  border-bottom-color: #43c6ac;
  box-sizing: border-box;
  transition: border-bottom-color 0.2s ease;
}
.form-submit #submit:hover {
  border-bottom-color: #e3e5e6;
}
.author-image {
  float: left;
  padding-right: 0.6rem;
}
.author-image img {
  border-radius: 100%;
  width: 5rem;
  height: 5rem;
}
.ct-has-description img {
  width: 10rem;
}
.comment-wrapper {
  display: table;
  padding-left: 1.6rem;
  border-left: 1px dotted #1f1f1f;
  margin-bottom: 3.6rem;
}
.comment-wrapper p {
  margin-bottom: 0;
}
#comments {
  margin-top: 2.4rem;
}
#comments ol {
  list-style-type: none;
}
.comment-form-cookies-consent {
  display: inline-block;
}
#wp-comment-cookies-consent {
  margin-right: 1rem;
  margin-bottom: 0;
}
.comment-form-cookies-consent label {
  display: inline-block;
  margin-bottom: 0;
}
.comment-author .fn a {
  font-weight: 500;
}
.comment-author img {
  float: left;
  border-radius: 50%;
  margin-right: 2rem;
}
.comment-author .says {
  display: none;
}
.comment-meta {
  margin-bottom: 1rem;
}
.comment-meta a {
  font-weight: 400;
}
.reply {
  display: block;
  text-align: right;
}
.comment {
  border-top: 2px solid #43c6ac;
}
.comment article {
  margin-bottom: 2.4rem;
  padding: 2.4rem;
  background-color: #fff;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
  box-shadow: 0 14px 28px -4px rgba(14, 17, 20, 0.1);
}
.trackback,
.pingback {
  margin-bottom: 2.4rem;
}
.comment p {
  margin-bottom: 1rem;
}
.comment .children {
  margin-left: 6rem;
}
.comment-time {
  font-size: 1.4rem;
  font-weight: 400;
}
.comments-pagination {
  margin-bottom: 2.4rem;
}
.comments-pagination .nav-links {
  margin-right: 1rem;
}
.comments-pagination .nav-links > .next {
  margin-right: 0;
}
.comments-pagination .nav-links > .next,
.comments-pagination .nav-links > .prev {
  position: relative;
  top: 0.2rem;
}
.author-link {
  margin-top: 1rem;
}
.bypostauthor {
  border-top: unset !important;
  /* Override if posted by admin */
}
.bypostauthor article {
  border: 2px solid #43c6ac;
}
/**
 * Comment Form Defaults styling
 */
.form-submit {
  margin-top: 1rem;
}
.comment-form-comment {
  width: 49%;
  float: left;
}
.comment-form-author,
.comment-form-email,
.comment-form-url {
  width: 49%;
  float: right;
}
.logged-in .comment-form-comment {
  width: 100%;
  float: unset;
}
/**
 * --------------------------------------------------------------------------------
 * TYPOGRAPHY
 * --------------------------------------------------------------------------------
*/
h1 {
  line-height: 1;
  font-weight: 500;
  margin-bottom: 3.2rem;
}
h2 {
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.6rem;
}
h3 {
  font-size: 2.2rem;
  font-weight: 600;
  line-height: 1.2;
}
h4 {
  color: #43c6ac;
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
/**
 * Default Styles
 */
.site-header .row {
  padding: 0 1.6rem;
}
.single img,
.page img,
.single video,
.page video {
  height: auto;
  max-width: 100%;
}
figure {
  margin: 0;
}
.alignnone {
  max-width: 100%;
  height: auto;
}
.aligncenter {
  clear: both;
  display: block;
  margin-left: auto;
  margin-right: auto;
  max-width: 100%;
}
.alignleft {
  display: inline;
  float: left;
  margin-right: 1.5rem;
}
.alignright {
  display: inline;
  float: right;
  margin-left: 1.5rem;
}
.wp-caption-text {
  font-size: 1.4rem;
  font-style: italic;
}
div:not(.has-post-thumbnail) > .post-single > .post-date {
  left: 0;
  right: unset;
}
div:not(.has-post-thumbnail) > .post-single > .entry-title {
  margin-top: 2rem;
}
.button {
  background-color: #43c6ac;
  color: #fff;
  padding: 0.6rem 1.5rem;
  border: unset;
  border-bottom: 1px solid #43c6ac;
  border-radius: 0.2rem;
  cursor: pointer;
  box-shadow: 0 14px 28px -4px rgba(14, 17, 20, 0.1);
  transition: 0.2s all ease;
}
.button:hover {
  color: #43c6ac;
  border-bottom: 1px solid #43c6ac;
  background-color: #fff;
}
.reverse-button {
  background-color: #fff;
  color: #43c6ac;
  padding: 0.6rem 1.5rem;
  border: 1px solid #43c6ac;
  border-radius: 0.2rem;
  cursor: pointer;
  box-shadow: 0 14px 28px -4px rgba(14, 17, 20, 0.1);
  transition: 0.2s all ease;
}
.reverse-button:hover {
  color: #43c6ac;
  background-color: #43c6ac;
}
.next-post-wrap,
.previous-post-wrap {
  position: relative;
}
.next-post-wrap:before,
.previous-post-wrap:before {
  color: #43c6ac;
  font-size: 2rem;
  font-weight: 300;
  font-family: Fontawesome;
  line-height: 0.65;
  position: absolute;
  top: -2rem;
  width: 32px;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.next-post-wrap:hover:before,
.previous-post-wrap:hover:before {
  opacity: 1;
  visibility: visible;
  right: 0;
}
.next-post-wrap:before {
  content: '\f178';
  right: 2rem;
}
.previous-post-wrap:before {
  content: '\f177';
  left: 2rem;
}
.previous-post-wrap:hover:before {
  opacity: 1;
  visibility: visible;
  left: 0;
}
.single-container,
.related-container {
  padding-bottom: 0;
}
.related-container,
.comments-container {
  padding-top: 0;
}
.related {
  box-shadow: 0 14px 28px -4px rgba(14, 17, 20, 0.1);
  margin-bottom: 1.6rem;
}
.related-posts-heading {
  margin-top: 2.4rem;
}
.related-excerpt-details {
  padding: 1.6rem;
}
.related-excerpt-details a {
  font-size: 1.92rem;
  font-weight: 500;
}
.not-fixed.sticky-header {
  padding-top: 0;
}
.not-fixed.admin-bar .site-header {
  top: 0;
}
.not-fixed .site-header {
  position: relative;
}
.not-fixed .admin-bar .site-header {
  top: 0;
}
/**
 * --------------------------------------------------------------------------------
 * Masonry Section
 * --------------------------------------------------------------------------------
*/
.masonry-layout {
  padding: 7.2rem 0 0 0;
}
.grid-item {
  padding: 0;
}
.grid-item .post-wrap {
  background-color: #ffffff;
  position: relative;
  border-bottom: 1px solid #fff;
  margin: 0 1.5rem 3rem 1.5rem;
  padding: 0;
  transition: 0.3s all ease;
}
.grid-item .post-wrap:hover {
  box-shadow: 0 14px 28px -4px rgba(14, 17, 20, 0.1);
  border-bottom: 1px solid #43c6ac;
}
.single-masonry img {
  display: block;
  width: 100%;
  height: auto;
}
.single-masonry .post-excerpt {
  background-color: #fff;
  position: relative;
  padding: 2.4rem;
}
.single-masonry .post-excerpt a {
  font-weight: 700;
  line-height: 1.3;
}
.single-masonry .post-date {
  position: absolute;
  top: -13px;
  left: -16px;
  background-color: #43c6ac;
}
.single-masonry .post-date span {
  color: #fff;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.5;
  padding: 0 1rem;
}
.single-masonry .excerpt-footer {
  padding-top: 1rem;
}
.single-masonry .excerpt-footer .excerpt-author,
.single-masonry .excerpt-footer .excerpt-category {
  float: left;
}
.single-masonry .excerpt-footer .excerpt-comments {
  float: right;
}
.single-masonry .excerpt-footer .excerpt-author {
  position: relative;
  display: inline-block;
}
.single-masonry .excerpt-footer .excerpt-author img {
  width: 3.6rem;
  height: 3.6rem;
  border-radius: 100%;
}
.single-masonry .excerpt-footer .excerpt-author:hover .author-name {
  bottom: 4.4rem;
  opacity: 1;
}
.single-masonry .excerpt-footer .excerpt-category {
  display: inline-block;
  margin-left: 1rem;
  line-height: 2.2;
}
.single-masonry .excerpt-footer .excerpt-category a {
  font-weight: 500;
}
.single-masonry .excerpt-footer .comments-count,
.single-masonry .excerpt-footer .author-name {
  color: #fff;
  background-color: #444;
  font-size: 0.9rem;
  font-weight: 500;
  text-align: center;
  position: absolute;
  left: -111%;
  bottom: 4.8rem;
  padding: 0 0.5rem;
  border-radius: 0.3rem;
  width: 75px;
  opacity: 0;
  transition: 0.1s all ease-in-out;
}
.single-masonry .excerpt-footer .comments-count:after,
.single-masonry .excerpt-footer .author-name:after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -0.5rem;
  width: 0;
  height: 0;
  border-top: solid 0.5rem #444;
  border-left: solid 0.5rem transparent;
  border-right: solid 0.5rem transparent;
}
.single-masonry .excerpt-footer .author-name {
  left: -52% !important;
}
.single-masonry .excerpt-footer .comments-count {
  bottom: 4.2rem;
}
.single-masonry .excerpt-footer .excerpt-comments {
  position: relative;
  text-align: end;
  display: inline-block;
  flex-shrink: 0;
  flex-grow: 1;
}
.single-masonry .excerpt-footer .excerpt-comments:hover .comments-count {
  bottom: 3.8rem;
  opacity: 1;
}
.single-masonry .excerpt-footer .excerpt-comments:after {
  content: "\f086";
  font-family: Fontawesome;
  font-size: 2.4rem;
}
.single-masonry .excerpt-footer .fa {
  color: #fff;
  background-color: #444;
  padding: 0.5rem;
  border-radius: 100%;
}
.post-single {
  padding: 2.4rem;
}
.link-pages {
  float: right;
}
.display-meta {
  padding-top: 1.6rem;
}
.display-category,
.display-tag {
  display: inline-block;
}
.display-tag {
  float: right;
}
.author-info .entry-author-label {
  color: #999;
  font-size: 1.6rem/1.1;
}
.author-info img {
  border-radius: 50%;
}
.author-info .author-details {
  margin-left: 1.6rem;
}
.image-container {
  position: relative;
}
.image-container a {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  min-width: 100%;
  min-height: 100%;
  transition: all ease 0.3s;
}
.image-container a:hover {
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 1;
}
.icon-overlay::after {
  content: '\f067';
  font: normal normal normal 4.8rem/1 FontAwesome;
  color: #fff;
  position: absolute;
  top: 55%;
  left: 50%;
  padding: 0 1.6rem;
  opacity: 0;
  z-index: 1;
  transform: translate(-50%, -50%);
  transform-origin: center center;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.image-container:hover > a > .icon-overlay::after {
  opacity: 1;
  top: 50%;
}
/**
 * --------------------------------------------------------------------------------
 * Pagination
 * --------------------------------------------------------------------------------
*/
.pagination {
  padding: 2.4rem 0;
}
.pagination .nav-links {
  text-align: center;
}
.pagination .page-numbers {
  padding: 0.6rem;
}
.pagination .page-numbers.next::after {
  content: '\f178';
  right: 0;
}
.pagination .page-numbers.prev::before {
  content: '\f177';
  left: 0;
}
.pagination .prev,
.pagination .next {
  position: relative;
}
.pagination .prev {
  padding-left: 3.3rem;
}
.pagination .prev:hover::before {
  left: -1rem;
}
.pagination .next {
  padding-right: 3.3rem;
}
.pagination .next:hover::after {
  right: -1rem;
}
.pagination .page-numbers.prev::before,
.pagination .page-numbers.next::after {
  font-size: 2rem;
  font-weight: 300;
  font-family: Fontawesome;
  line-height: 0.65;
  position: absolute;
  top: 0.8rem;
  width: 32px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.pagination .screen-reader-text {
  display: none;
}
.featured-single-image img {
  display: block;
  width: 100%;
  height: auto;
}
.single-post-content,
.single-page-content {
  position: relative;
  box-shadow: 0 14px 28px -4px rgba(14, 17, 20, 0.1);
}
.single-post-content h1,
.single-page-content h1,
.single-post-content h2,
.single-page-content h2,
.single-post-content h3,
.single-page-content h3,
.single-post-content h4,
.single-page-content h4,
.single-post-content h5,
.single-page-content h5,
.single-post-content h6,
.single-page-content h6,
.single-post-content p,
.single-page-content p,
.single-post-content ul,
.single-page-content ul,
.single-post-content ol,
.single-page-content ol {
  margin-bottom: 2.5rem;
}
.single-post-content ul li,
.single-page-content ul li {
  list-style-type: none;
  padding-left: 3rem;
  position: relative;
  margin-bottom: 1.2rem;
}
.single-post-content ul li::before,
.single-page-content ul li::before {
  content: '\f111';
  font: normal normal normal 14px/1 FontAwesome;
  font-size: 14px;
  text-rendering: auto;
  -moz-osx-font-smoothing: grayscale;
  color: #ccc;
  position: absolute;
  top: 6px;
  left: 8px;
  line-height: 1;
}
.single-post-content ol,
.single-page-content ol {
  counter-reset: counter;
}
.single-post-content ol li,
.single-page-content ol li {
  list-style-type: none;
  counter-increment: counter;
  margin-bottom: 2.5rem;
  padding-left: 5.5rem;
  position: relative;
}
.single-post-content ol li::before,
.single-page-content ol li::before {
  content: counter(counter);
  position: absolute;
  top: 0.45rem;
  left: 0;
  width: 30px;
  height: 30px;
  counter-increment: list-number;
  border: 2px solid #e5e5e5;
  border-radius: 30px;
  text-align: center;
  line-height: 30px;
  font-weight: bold;
  font-size: 1.5rem;
}
.single-post-content .post-date,
.single-page-content .post-date {
  background-color: #43c6ac;
  position: absolute;
  top: -2.7rem;
  right: 0;
  border: 1rem solid #43c6ac;
  outline: 2px solid #fff;
  outline-offset: -1.2rem;
  padding: 0.4rem 1.2rem;
}
.single-post-content .post-date span,
.single-page-content .post-date span {
  color: #fff;
  font-family: "Lora", serif;
  text-align: center;
}
.single-post-content .display-category:before,
.single-page-content .display-category:before {
  content: "\f07b";
  color: #444;
  font-family: Fontawesome;
  font-size: 1.92rem;
  margin-right: 0.5rem;
}
.link-pages > .page-numbers {
  background-color: #fff;
  color: #43c6ac;
  padding: 0.6rem 1.5rem;
  border: 1px solid #43c6ac;
  border-radius: 0.2rem;
  cursor: pointer;
  box-shadow: 0 14px 28px -4px rgba(14, 17, 20, 0.1);
  transition: 0.2s all ease;
}
.entry-footer {
  border-top: 2px solid #43c6ac;
  margin-top: 2.4rem;
  padding: 1.6rem;
  box-shadow: 0 14px 28px -4px rgba(14, 17, 20, 0.1);
}
.pagination-single {
  margin-top: 4rem;
}
.pagination-single .pagination-nav {
  font-size: 1.92rem;
}
.pagination-single .pagination-nav .previous-post-wrap {
  width: 50%;
  display: inline-block;
}
.pagination-single .pagination-nav .previous-post-wrap .previous-post {
  font-size: 1.6rem/1.1;
  font-weight: 500;
}
.pagination-single .pagination-nav .next-post-wrap {
  width: 50%;
  text-align: right;
  float: right;
}
.pagination-single .pagination-nav .next-post-wrap .next-post {
  font-size: 1.6rem/1.1;
  font-weight: 500;
}
/**
 * --------------------------------------------------------------------------------
 * Sidebar & Widgets
 * --------------------------------------------------------------------------------
*/
.widgetarea {
  margin-bottom: 2rem;
}
.widgetarea li {
  list-style-type: none;
}
.widgetarea h3 {
  margin-bottom: 0.6rem;
}
.widgetarea img {
  display: block;
  max-width: 100%;
  height: auto;
}
.widgetarea select {
  max-width: 100%;
}
.widgetarea .wp-block-latest-comments__comment-link {
  line-height: 1.2;
}
.widgetarea ul li:before {
  content: "\f0c1";
  font-family: Fontawesome;
  font-size: 1.92rem;
  margin-right: 0.6rem;
}
.widgetarea .wp-block-latest-comments__comment-link {
  line-height: 1.2;
}
input[type="search"].search-field,
input[type="search"].wp-block-search__input {
  background: #ffffff;
  min-width: auto;
  display: table-cell;
  margin-bottom: 0;
  padding: 0 1rem;
  font-weight: 400;
  width: 100%;
  height: 4rem;
  border: 1px solid #ffffff;
  border-bottom-color: #ffffff;
  border-bottom-color: #43c6ac;
  box-sizing: border-box;
  outline: none;
}
.search-submit,
.wp-block-search__button {
  background-color: #ffffff;
  font-size: 1.5rem;
  margin: 0;
  padding: 0 1.5rem;
  width: 40%;
  height: 4rem;
  text-align: center;
  position: relative;
  border: 1px solid #ffffff;
  border-bottom-color: #ffffff;
  border-bottom-color: #43c6ac;
  box-sizing: border-box;
  outline: none;
}
#wp-calendar {
  table-layout: fixed;
  width: 100%;
}
#wp-calendar th,
#wp-calendar td {
  padding: 5px 0;
}
#wp-calendar #next {
  text-align: right;
}
/**
 * --------------------------------------------------------------------------------
 * Miscellaneous
 * --------------------------------------------------------------------------------
*/
.archive-title,
.search-title {
  padding-top: 5.2rem;
  padding-bottom: 0;
}
.archive-title h1,
.search-title h1 {
  margin-bottom: 0;
}
.search-results .grid-item.page .excerpt-footer {
  display: none !important;
  /** Overrides vertical-align class display properties **/
}
.sticky .sticky-pin {
  font-size: 2.2rem;
  position: absolute;
  top: -2rem;
  left: 2rem;
  z-index: 1;
  color: #fff;
  background-color: #18191b;
  padding: 1rem 1.4rem;
  border-radius: 50%;
  box-shadow: 0 6px 18px -2px rgba(14, 17, 20, 0.35);
}
.sticky .sticky-right {
  left: unset;
  right: 2rem;
}
.says,
.edit-link .screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
}
.edit-link::before {
  content: '\f040';
  font-family: Fontawesome;
  font-size: 1.7rem;
  margin-right: 0.5rem;
}
.gallery-item {
  display: inline-block;
  text-align: center;
  vertical-align: top;
  max-width: 33.33%;
  width: 100%;
}
iframe {
  max-width: 100%;
}
.post blockquote,
.page blockquote {
  position: relative;
  margin: 3rem 4rem;
  padding: 3rem;
  border: 10px solid #f5f5f5;
}
.post blockquote p,
.page blockquote p {
  margin-bottom: 1.5rem;
  font-weight: bold;
  font-size: 2rem;
}
.post blockquote cite,
.page blockquote cite {
  font-style: normal;
  color: rgba(0, 0, 0, 0.3);
}
.entry-title {
  -ms-word-wrap: break-word;
  word-wrap: break-word;
}
ol ol,
ul ol,
ol ul,
ul ul {
  margin-left: 2.4rem;
}
/* For devices smaller than 991.98px */
@media (max-width: 991.98px) {
  .widgetarea {
    margin-top: 2rem;
  }
}
.ad-section {
  padding-bottom: 0;
}
.ad-section img {
  max-width: 100%;
}
.ct-share-icons {
  position: absolute;
  bottom: 0;
  left: -3.6rem;
}
.ct-share-icons .fa {
  padding: 1rem;
  color: #fff;
  background-color: #444;
  border-left: 1px solid #444;
  display: block;
  transition: all 0.2s ease;
}
.ct-share-icons .fa:hover {
  color: #444 !important;
  background-color: #fff;
  border-left: 1px solid #fff;
}
/* For devices larger than 600px */
@media (max-width: 600px) {
  .ct-share-icons {
    position: absolute;
    bottom: -3.6rem;
    left: 0;
  }
  .ct-share-icons .fa {
    float: left;
  }
  .single-post-content {
    margin-bottom: 5.5rem;
  }
}
.done {
  display: none;
}
.spinner,
.no-posts {
  margin-bottom: 3rem !important;
}
.no-posts {
  background-color: #fff !important;
  width: 14rem;
  margin: 0 auto;
  box-shadow: 0 6px 18px -2px rgba(14, 17, 20, 0.35);
  transition: opacity 800ms ease;
}
.no-posts p {
  text-align: center;
}
.night-off {
  right: 4rem !important;
}
.custom-logo-link,
.custom-logo-dark {
  display: none;
}
.lightish,
.darkish {
  display: block;
}
/**
 * --------------------------------------------------------------------------------
 * Footer Section
 * --------------------------------------------------------------------------------
*/
.footer {
  width: 100%;
  border-top: 2px solid #43c6ac;
}
.footer .widget-title {
  font-size: 2.24rem;
  font-weight: 700;
}
.footer ul {
  list-style-position: inside;
}
.footer ul li {
  list-style-type: none;
}
.footer a {
  color: #444;
}
.footer a:hover {
  color: #43c6ac;
}
.footer .fa {
  font-size: 2.4rem;
  margin-right: 1.6rem;
}
.footer .mc4wp-form {
  margin-top: 1.6rem;
}
.footer > .u-full-width {
  padding-bottom: 0;
}
.footer .footer-site-info {
  font-size: 1.4rem;
  border-top: 1px solid #43c6ac;
  padding: 1rem 0;
}
.footer .footer-site-info .site-credits {
  display: inline-block;
  float: left;
}
.footer .footer-site-info .footer-nav li {
  list-style-type: none;
  display: inline-block;
  margin-right: 1.6rem;
  float: right;
}
.footer .footer-nav a {
  font-size: 1.4rem;
}
@media (max-width: 991px) {
  .footer-site-info .site-credits {
    display: block;
    float: none !important;
    text-align: center;
    width: 100%;
    margin-bottom: 0.5rem;
  }
  .footer-nav {
    text-align: center;
    width: 100%;
  }
  .footer-nav li {
    float: none !important;
  }
}
.input-newsletter {
  display: table;
  width: 100%;
}
.input-newsletter input {
  transition: border-bottom-color 0.2s ease;
}
.input-newsletter > input {
  background: #fff;
  min-width: auto;
  display: table-cell;
  padding: 0 1rem;
  font-weight: 400;
  width: 100%;
  height: 4rem;
  border: 1px solid #ffffff;
  border-bottom-color: #43c6ac;
  box-sizing: inherit;
}
.input-newsletter .input-newsletter-button {
  width: auto;
  display: table-cell;
}
.input-newsletter .input-newsletter-button > input {
  background-color: #fff;
  font-size: 1.5rem;
  margin: 0;
  padding: 0 1.5rem;
  height: 4rem;
  text-align: right;
  position: relative;
  border: 1px solid #ffffff;
  border-bottom-color: #43c6ac;
  box-sizing: inherit;
  outline: none;
}
.input-newsletter:hover input {
  border-bottom: 1px solid #e3e5e6;
}
::-webkit-input-placeholder {
  font-size: 1.4rem;
}
::-moz-placeholder {
  font-size: 1.4rem;
}
:-ms-input-placeholder {
  font-size: 1.4rem;
}
::placeholder {
  font-size: 1.4rem;
}
/**
 * --------------------------------------------------------------------------------
 * Fade In Up Effects
 * --------------------------------------------------------------------------------
*/
@keyframes fade-in-up {
  from {
    opacity: 0;
    transform: translate3d(0, 5em, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fade-in-up {
  animation-duration: 1s;
  animation-fill-mode: both;
  animation-name: fade-in-up;
}
.home-intro-container {
  padding-bottom: 0;
}
.home-intro-container .ct-home-intro-header {
  position: relative;
}
.home-intro-container .ct-home-intro-header:hover .ct-home-intro-bg-overlay {
  opacity: 0.35;
}
.home-intro-container .ct-home-intro-header:hover .ct-home-intro-content {
  bottom: 2rem;
}
.home-intro-container .ct-home-intro-header .ct-home-intro-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  background-color: #1f2123;
  opacity: 0.1;
  -webkit-transition: opacity 0.2s ease;
  -moz-transition: opacity 0.2s ease;
  -o-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
}
.home-intro-container .ct-home-intro-header .ct-home-intro-content {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 3;
  padding: 60px;
  text-align: left;
  -webkit-transition: bottom 0.2s ease;
  -moz-transition: bottom 0.2s ease;
  -o-transition: bottom 0.2s ease;
  transition: bottom 0.2s ease;
}
.home-intro-container .ct-home-intro-header .ct-home-intro-heading {
  display: inline-block;
  max-width: 100%;
  margin-bottom: 1.6rem;
  padding: 15px 20px;
  background-color: #fff;
  box-shadow: 0 14px 28px -4px rgba(14, 17, 20, 0.35);
}
.home-intro-container .ct-home-intro-header .ct-home-intro-heading h1,
.home-intro-container .ct-home-intro-header .ct-home-intro-heading h2 {
  font-weight: 700;
  margin-bottom: 0;
}
.home-intro-container .ct-home-intro-header .ct-home-intro-description {
  display: inline-block;
  max-width: 100%;
  padding: 15px 20px;
  background-color: #fff;
  box-shadow: 0 14px 28px -4px rgba(14, 17, 20, 0.35);
}
.home-intro-container .ct-home-intro-bg {
  position: relative;
  width: 100%;
  height: 560px;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #444;
  -webkit-background-size: cover !important;
  -moz-background-size: cover !important;
  -o-background-size: cover !important;
  background-size: cover !important;
}
/**
 * --------------------------------------------------------------------------------
 * Night Mode
 * --------------------------------------------------------------------------------
*/
.search-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  background: #f7f8f8;
  padding: 2rem;
  width: 32rem;
  height: auto;
  box-shadow: 0 14px 28px -4px rgba(14, 17, 20, 0.1);
}
.search-dropdown .header-search-form * {
  margin: 0;
}
.search-dropdown .header-search-form #search,
.search-dropdown .header-search-form .input-group-btn {
  display: block;
  float: left;
}
.search-dropdown .header-search-form #search {
  width: 80%;
}
.search-dropdown .header-search-form .input-group-btn {
  width: 20%;
}
.night-icon,
.search-icon {
  display: inline-block;
  padding: 2.2rem 0;
  float: right;
  line-height: 1;
  font-size: 2.2rem;
  width: 2.5rem;
  cursor: pointer;
}
.search-icon {
  margin-right: 1.5rem;
}
.search-default {
  visibility: hidden;
}
.search-shown {
  animation-name: ctSlideUpIn;
  -webkit-animation-name: ctSlideUpIn;
  animation-duration: 0.2s;
  -webkit-animation-duration: 0.2s;
  animation-timing-function: ease;
  -webkit-animation-timing-function: ease;
  visibility: visible !important;
}
@keyframes ctSlideUpIn {
  0% {
    transform: translateY(10px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
@-webkit-keyframes ctSlideUpIn {
  0% {
    -webkit-transform: translateY(10px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
    opacity: 1;
  }
}
.search-hidden {
  animation-name: ctSlideDownOut;
  -webkit-animation-name: ctSlideDownOut;
  animation-duration: 0.2s;
  -webkit-animation-duration: 0.2s;
  animation-timing-function: ease;
  -webkit-animation-timing-function: ease;
  visibility: hidden;
}
@keyframes ctSlideDownOut {
  0% {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
  100% {
    transform: translateY(10px);
    opacity: 0;
    visibility: hidden;
  }
}
@-webkit-keyframes ctSlideDownOut {
  0% {
    -webkit-transform: translateY(0);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateY(10px);
    opacity: 0;
  }
}
.ct-dark-mode {
  background-color: #0b0b0c;
}
.ct-dark-mode .ct-slider-arrows .fa::before {
  color: #0b0b0c !important;
}
.ct-dark-mode .ct-slider-arrows .slick-arrow:hover .fa::before {
  color: #fff !important;
}
.ct-dark-mode .mobile-menu-open,
.ct-dark-mode .main-nav > .menu-item-has-children > ul,
.ct-dark-mode .main-nav .menu-item-has-children .menu-item-has-children > ul,
.ct-dark-mode .search-dropdown,
.ct-dark-mode .ct-home-intro-heading,
.ct-dark-mode .ct-home-intro-description {
  background-color: #0b0b0c !important;
}
.ct-dark-mode .ct-home-intro-heading *,
.ct-dark-mode .ct-home-intro-description * {
  color: #fff !important;
}
.ct-dark-mode .ct-slider-main .ct-cat {
  background-color: #fff !important;
}
.ct-dark-mode .site-header,
.ct-dark-mode .post-wrap,
.ct-dark-mode .post-excerpt,
.ct-dark-mode .white,
.ct-dark-mode input,
.ct-dark-mode input[type="text"],
.ct-dark-mode input[type="email"],
.ct-dark-mode input[type="url"],
.ct-dark-mode textarea,
.ct-dark-mode .form-submit #submit,
.ct-dark-mode .comment article,
.ct-dark-mode .search-submit,
.ct-dark-mode .ct-slider-main .ct-slide-item,
.ct-dark-mode .item-block,
.ct-dark-mode .post-date {
  outline: none;
  background-color: #18191b;
}
.ct-dark-mode .form-submit #submit,
.ct-dark-mode input,
.ct-dark-mode input[type="text"],
.ct-dark-mode input[type="email"],
.ct-dark-mode input[type="url"],
.ct-dark-mode textarea,
.ct-dark-mode .search-submit {
  border: 1px solid transparent;
  border-bottom: 1px solid #eaedf1;
}
.ct-dark-mode .form-submit #submit:hover,
.ct-dark-mode input:hover,
.ct-dark-mode input[type="text"]:hover,
.ct-dark-mode input[type="email"]:hover,
.ct-dark-mode input[type="url"]:hover,
.ct-dark-mode textarea:hover,
.ct-dark-mode .search-submit:hover {
  border-bottom: 1px solid #43c6ac;
}
.ct-dark-mode .post-wrap {
  border-bottom: 1px solid #18191b;
}
.ct-dark-mode .post-wrap:hover {
  border-bottom: 1px solid #eaedf1 !important;
}
.ct-dark-mode .main-nav > .menu-item-has-children:hover > ul {
  border-bottom: 1px solid #eaedf1 !important;
}
.ct-dark-mode .main-nav .menu-item-has-children .menu-item-has-children > ul {
  border-left: 1px solid #eaedf1 !important;
}
.ct-dark-mode a,
.ct-dark-mode h1,
.ct-dark-mode h2,
.ct-dark-mode h3,
.ct-dark-mode h4,
.ct-dark-mode h5,
.ct-dark-mode p,
.ct-dark-mode li,
.ct-dark-mode *:before,
.ct-dark-mode *:after,
.ct-dark-mode .footer-site-info,
.ct-dark-mode .excerpt-category a,
.ct-dark-mode .site-title a:hover {
  color: #eaedf1 !important;
}
.ct-dark-mode a:hover {
  color: #43c6ac !important;
}
.ct-dark-mode a:hover * {
  color: #43c6ac !important;
}
.ct-dark-mode .related-excerpt-details a {
  color: #eaedf1 !important;
}
.ct-dark-mode .related-excerpt-details p,
.ct-dark-mode .related-excerpt-details .related-excerpt {
  color: #eaedf1 !important;
}
.ct-dark-mode .post-date {
  background-color: #eaedf1 !important;
}
.ct-dark-mode .post-date span {
  color: #18191b;
}
.ct-dark-mode .item-block .post-excerpt .post-date a,
.ct-dark-mode .ct-slider-main .ct-cat a {
  color: #18191b !important;
}
.ct-dark-mode .item-block .post-excerpt .post-date a:hover,
.ct-dark-mode .ct-slider-main .ct-cat a:hover {
  color: #18191b !important;
}
.ct-dark-mode .item-block .post-excerpt .post-date a:hover *,
.ct-dark-mode .ct-slider-main .ct-cat a:hover * {
  color: #18191b !important;
}
.ct-dark-mode .fa {
  color: #eaedf1 !important;
}
.ct-dark-mode .single-post-content .post-date {
  border: 1rem solid #eaedf1;
  outline: 2px solid #18191b;
}
.ct-dark-mode .bypostauthor article {
  border: 2px solid #eaedf1;
}
.ct-dark-mode .entry-footer,
.ct-dark-mode .comment,
.ct-dark-mode .footer {
  border-top: 2px solid #eaedf1;
}
.ct-dark-mode .footer .footer-site-info {
  border-top: 1px solid #eaedf1;
}
.ct-dark-mode .button {
  background-color: #eaedf1 !important;
  color: #0b0b0c !important;
  border-bottom-color: #eaedf1;
}
.ct-dark-mode .button:hover {
  border-bottom-color: #43c6ac;
}
.ct-dark-mode .no-posts p {
  color: #444 !important;
}
.ct-dark-mode .ct-share-icons .fa {
  background-color: #fff;
}
.ct-dark-mode .ct-share-icons .fa:before {
  color: #0b0b0c !important;
}
.ct-dark-mode .ct-share-icons .fa:hover {
  background-color: #18191b !important;
  border-left: 1px solid #18191b;
}
.ct-dark-mode .ct-share-icons .fa:hover:before {
  color: #fff !important;
}
@media (max-width: 991px) {
  .night-icon,
  .search-icon {
    position: absolute;
    top: 0;
    padding: 1.1rem 0;
    right: 4rem;
    font-size: 2.5rem;
  }
  .search-icon {
    right: 8rem;
    margin-right: 0;
  }
}
@keyframes spinner {
  to {
    transform: rotate(360deg);
  }
}
.spinner {
  position: relative;
  height: 5rem;
}
.spinner:before {
  content: '';
  box-sizing: border-box;
  position: absolute;
  top: 50%;
  left: 48%;
  width: 50px;
  height: 50px;
  margin-top: -25px;
  margin-left: -10px;
  border-radius: 50%;
  border: 6px solid #ccc;
  border-top-color: #333;
  animation: spinner 0.6s linear infinite;
}
.container.home-section {
  padding-bottom: 0;
}
.meet-minimalist-style .ct-home-intro-header {
  overflow: hidden;
  border-radius: 4px;
}
.meet-minimalist-style .ct-home-intro-heading,
.meet-minimalist-style .ct-home-intro-description {
  border-radius: 4px;
}
.meet-minimalist-style .single-masonry img {
  border-top-right-radius: 4px;
  border-top-left-radius: 4px;
}
.meet-minimalist-style .single-masonry .post-date {
  border-radius: 3px;
}
.meet-minimalist-style .single-masonry .post-date span {
  font-weight: 400;
}
.meet-minimalist-style .featured-single-image img {
  border-top-right-radius: 4px;
  border-top-left-radius: 4px;
}
.meet-minimalist-style .single-masonry .post-date {
  left: 23px;
}
.meet-minimalist-style .item-block {
  border-radius: 4px;
}
.meet-minimalist-style .item-block .post-excerpt .post-date {
  border-radius: 4px;
}
.meet-minimalist-style .item-block .post-featured img {
  border-radius: 4px;
}
.meet-minimalist-style .sub-menu {
  box-shadow: 0 14px 28px -4px rgba(14, 17, 20, 0.1);
}
.meet-minimalist-style .no-featured-image .ct-caption {
  text-align: center;
}
.meet-minimalist-style .related {
  border-radius: 4px;
  overflow: hidden;
}
.meet-minimalist-style .comment article {
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
input,
textarea {
  outline: none;
}
.blog .post-excerpt h3 {
  margin-bottom: 10px;
}
#cancel-comment-reply-link {
  margin-left: 10px;
}
.grid-item a h3 {
  color: var(--color-primary);
}
input[type="checkbox"] {
  height: 1.6rem;
  width: 16px;
}
.blog .post-excerpt h3 {
  line-height: 1.4;
}
#submit {
  margin-bottom: 1.6rem !important;
}
#wpadminbar a:hover,
#wpadminbar li:hover {
  color: #72aee6 !important;
}
.status-sticky i {
  display: none;
}
.sub-menu .menu-item {
  border-bottom: 1px solid #e0e0e0;
  margin-bottom: 10px;
  padding-bottom: 10px;
}
.sub-menu .menu-item:last-child {
  border-bottom: unset;
  margin-bottom: 0;
  padding-bottom: 0;
}
.ct-slider-container {
  position: relative;
  overflow: auto;
  margin: 0 1.5rem;
  transition: 0.2s all ease;
}
.ct-slider-container:hover {
  box-shadow: 0 14px 28px -4px rgba(14, 17, 20, 0.1);
}
.ct-slider-container .ct-slider-arrows {
  position: absolute;
  bottom: 0;
  border-bottom-left-radius: 4px;
  overflow: hidden;
}
.ct-slider-container .ct-slider-arrows > * {
  color: var(--color-dark);
  background-color: var(--color-white);
  padding: 20px;
  cursor: pointer;
  transition: 0.2s all ease-in;
}
.ct-slider-container .ct-slider-arrows > *:hover {
  color: var(--color-white);
  background-color: var(--color-dark);
}
.ct-slider-main {
  background-color: var(--color-white);
  border-radius: 4px;
}
.ct-slider-main .ct-slide-item {
  display: flex !important;
  align-items: center;
}
.ct-slider-main .ct-slide-item > * {
  padding: 0;
}
.ct-slider-main .ct-slide-item a {
  font-weight: 400;
}
.ct-slider-main .ct-slider-height {
  height: 478px;
}
.ct-slider-main .img-cover {
  position: relative;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
}
.ct-slider-main .ct-cat {
  position: absolute;
  top: 20px;
  left: 20px;
  line-height: 1;
  background-color: var(--color-primary);
  color: var(--color-white);
  text-decoration: none;
  padding: var(--padding-text);
  border-radius: var(--radius-small);
}
.ct-slider-main .ct-cat a {
  color: var(--color-white);
}
.ct-slider-main .ct-cat a:hover {
  color: var(--color-white);
}
.ct-slider-main .ct-cat a:hover * {
  color: var(--color-white) !important;
}
.ct-slider-main .ct-caption {
  padding: var(--padding-inner);
}
.ct-slider-main .ct-caption .fpc-underline {
  color: var(--color-primary);
  text-decoration: none;
}
.ct-slider-main .ct-caption .fpc-underline h2 {
  color: var(--color-primary);
}
.ct-slider-main .ct-caption h2 {
  font-size: var(--font-h2);
  margin-bottom: var(--margin-h2);
}
.ct-slider-main .ct-caption .entry-meta {
  margin-bottom: var(--margin-h2);
}
.ct-slider-main .ct-caption .entry-meta .posted-on {
  font-size: var(--font-small);
}
.ct-slider-main .ct-caption .entry-meta .posted-on * {
  color: var(--color-shaded);
}
.ct-slider-main .ct-caption .entry-meta a {
  text-decoration: none;
}
.ct-slider-main .ct-caption .post-excerpt p {
  margin-bottom: var(--margin-h2);
}
.ct-slider-main .ct-caption .more-btn:before {
  content: "";
  background-color: var(--color-dark);
  width: 40px;
  height: 1px;
  display: inline-block;
  vertical-align: middle;
  margin-right: 10px;
  -webkit-transition: 0.2;
  -o-transition: 0.2;
  transition: 0.2;
}
.ct-slider-main .slick-dots {
  position: absolute;
  text-align: center;
  left: 0;
  right: 0;
  bottom: 10px;
  padding-left: 0;
}
.ct-slider-main .slick-dots li {
  display: inline-block;
  line-height: 0;
}
.ct-slider-main .slick-dots li button {
  text-indent: -99999px;
  border: 0;
  margin: 0 5px;
  padding: 0;
  height: 10px;
  width: 10px;
  border-radius: 50%;
  background: #959698;
}
.ct-slider-main .slick-dots li.slick-active button {
  background: #fff;
}
@media (max-width: 991.98px) {
  .ct-slider-main .ct-slide-item {
    display: inline-block !important;
  }
  .ct-slider-container .ct-slider-arrows {
    top: 0;
    right: 0;
  }
  .ct-slider-main .img-cover {
    border-bottom-left-radius: 0;
    border-top-right-radius: 4px;
  }
  .ct-slider-container .ct-slider-arrows > .ct-prev {
    border-top-right-radius: 4px;
  }
}
.wp-block-media-text {
  box-shadow: inset 0 0 0px 1px #eee;
}
.wp-block-media-text,
.wp-block-gallery {
  margin-top: 4rem;
  margin-bottom: 4rem;
  border-radius: 4px;
  overflow: hidden;
}
.wp-block-image {
  border-radius: 4px;
  overflow: hidden;
}
.wp-block-gallery.has-nested-images figure.wp-block-image figcaption,
.wp-block-image figcaption,
.wp-block-gallery .blocks-gallery-image figcaption,
.wp-block-gallery .blocks-gallery-item figcaption {
  position: absolute;
  bottom: 0;
  left: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 1;
  display: block;
  margin: 0;
  padding: 40px 12px 8px;
  border: none;
  width: 100%;
  max-width: 100%;
  max-height: 100%;
  text-align: left;
  color: #fff;
  white-space: nowrap;
  text-overflow: ellipsis;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.3) 60%, transparent);
}
figure {
  position: relative;
}
.single-post-content .wp-block-gallery .blocks-gallery-item {
  padding-left: 0;
}
.single-post-content .wp-block-gallery li::before {
  content: "";
}
.item-block {
  background-color: var(--color-white);
  padding: 2.4rem;
  margin: 0 1.5rem;
  transition: 0.2s all ease;
}
.item-block:hover {
  box-shadow: 0 14px 28px -4px rgba(14, 17, 20, 0.1);
}
.item-block .excerpt-meta {
  display: flex;
  align-items: center;
}
.item-block .excerpt-meta .excerpt-category {
  margin-left: 1rem;
}
.item-block h3 {
  margin-bottom: 14px;
  line-height: 1.4;
}
.item-block .post-excerpt .post-date {
  color: var(--color-white);
  background-color: var(--color-primary);
  display: inline-block;
  margin-bottom: 10px;
  font-size: 1.6rem;
  line-height: 1.5;
  padding: 0 1rem;
}
.item-block .post-excerpt .post-date a {
  color: var(--color-white);
}
.item-block .post-excerpt .post-date a:hover {
  color: var(--color-white);
}
.item-block .item-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.item-block .item-container a {
  font-weight: 400;
}
.item-block .post-featured {
  margin-left: 15px;
}
.item-block .post-featured img {
  display: block;
  width: 150px;
  height: 100%;
}
.item-block .excerpt-author {
  position: relative;
  display: inline-block;
}
.item-block .excerpt-author:hover .author-name {
  bottom: 4.4rem;
  opacity: 1;
}
.item-block .excerpt-author img {
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 100%;
  display: block;
}
.item-block .excerpt-author .author-name {
  color: #fff;
  background-color: #444;
  font-size: 0.9rem;
  font-weight: 500;
  text-align: center;
  position: absolute;
  left: -97%;
  bottom: 4.8rem;
  padding: 0 0.5rem;
  border-radius: 0.3rem;
  width: 75px;
  opacity: 0;
  transition: 0.1s all ease-in-out;
}
.item-block .excerpt-author .author-name::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -0.5rem;
  width: 0;
  height: 0;
  border-top: solid 0.5rem #444;
  border-left: solid 0.5rem transparent;
  border-right: solid 0.5rem transparent;
}
.item-block .fpc-underline {
  color: var(--color-primary);
}
.item-block .fpc-underline h3 {
  color: var(--color-primary);
}
@media (max-width: 991.98px) {
  .columns:first-child {
    margin-bottom: 2.4rem;
  }
}
@media (min-width: 992px) {
  .item-block .columns:last-child {
    padding-right: 0;
  }
  .item-block .columns:first-child {
    padding-left: 0;
  }
}
