/*
Theme Name:         G5Plus Achilles
Theme URI:          http://themes.g5plus.net/achiless/
Description:        Achilles is a premium responsive WordPress theme created especially for Transport, Logistic & Transportation companies, offices. <a href="http://www.g5plus.net">Visit site</a>
Version:            1.7
Author:             g5plus
Author URI:         http://g5plus.net/

License:            GNU General Public License v2 or later
License URI:        http://www.gnu.org/licenses/gpl-2.0.html

Tags: 				two-columns, three-columns, left-sidebar, right-sidebar, custom-background, custom-header, custom-menu, editor-style, post-formats, rtl-language-support, sticky-post, theme-options, translation-ready, accessibility-ready
Text Domain: 		g5plus-achilles
Domain Path: 		/languages/
*/

/**
 * Table of Contents:
 *
 * 1.0 - Base FrameWork
 * 2.0 - Core
 * 3.0 - Typography
 * 4.0 - Widget
 * 5.0 - Header
 * 6.0 - Footer
 * 7.0 - Blog
 * 8.0 - ShortCode
 * 9.0 - Mixins
 * ----------------------------------------------------------------------------
 */

/**
* 1.0 - Base FrameWork
* ----------------------------------------------------------------------------
*/
/**
* Search Popup
* ----------------------------------------------------------------------------
*/
.search-popup-wrap {
  position: relative;
  width: 80%;
  margin: 80px auto;
}
.search-popup-form {
  color: #FFF;
  background-color: #FFF;
  padding: 3px;
}
input[type="search"].search-popup-field {
  background-color: #222;
  width: 100%;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  border: none;
  padding: 0 20px;
  height: 60px;
  font-size: 18px;
}
input[type="search"].search-popup-field::-webkit-input-placeholder {
  color: #fefefe;
}
input[type="search"].search-popup-field:-moz-placeholder {
  color: #fefefe;
}
input[type="search"].search-popup-field::-moz-placeholder {
  color: #fefefe;
}
input[type="search"].search-popup-field:-ms-input-placeholder {
  color: #fefefe;
}
.search-popup-button {
  display: block;
  position: absolute;
  right: 20px;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 20px;
  height: 20px;
  font-size: 20px;
  background-color: transparent;
  border: none;
}
.search-popup-button > i {
  vertical-align: top;
}
.search-popup-result {
  width: 100%;
  max-height: 450px;
  overflow-y: scroll;
  position: absolute;
  background-color: #fff;
  border-top: 10px solid #fff;
  border-bottom: 10px solid #fff;
  color: #666;
  margin-top: 3px;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(20px);
  -moz-transform: translateY(20px);
  -ms-transform: translateY(20px);
  -o-transform: translateY(20px);
  transform: translateY(20px);
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.search-popup-result.in {
  -webkit-transform: translateY(0px);
  -moz-transform: translateY(0px);
  -ms-transform: translateY(0px);
  -o-transform: translateY(0px);
  transform: translateY(0px);
  opacity: 1;
  visibility: visible;
}
ul.search-popup-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
ul.search-popup-list li {
  padding-left: 20px;
  padding-right: 20px;
}
ul.search-popup-list li + li {
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid #eee;
}
ul.search-popup-list .sa-post-title {
  color: #1a1a1a;
  font-weight: bold;
  font-size: 18px;
  letter-spacing: 0.02em;
}
ul.search-popup-list .sa-post-meta {
  font-size: 14px;
  letter-spacing: 0.07em;
  margin-top: 5px;
  color: #989898;
}
ul.search-popup-list .sa-post-excerpt {
  letter-spacing: 0.08em;
  margin-top: 10px;
}
/**
* Zoom effect
* ----------------------------------------------------------------------------
*/
.mfp-zoom-in {
  /* start state */
  /* animate in */
  /* animate out */
}
.mfp-zoom-in .mfp-with-anim {
  opacity: 0;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  -webkit-transform: scale(0.8);
  -moz-transform: scale(0.8);
  -ms-transform: scale(0.8);
  -o-transform: scale(0.8);
  transform: scale(0.8);
}
.mfp-zoom-in.mfp-bg {
  opacity: 0;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.mfp-zoom-in.mfp-ready .mfp-with-anim {
  opacity: 1;
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
}
.mfp-zoom-in.mfp-ready.mfp-bg {
  opacity: 0.95;
}
.mfp-zoom-in.mfp-removing .mfp-with-anim {
  -webkit-transform: scale(0.8);
  -moz-transform: scale(0.8);
  -ms-transform: scale(0.8);
  -o-transform: scale(0.8);
  transform: scale(0.8);
  opacity: 0;
}
.mfp-zoom-in.mfp-removing.mfp-bg {
  opacity: 0;
}
/**
* Newspaper effect
* ----------------------------------------------------------------------------
*/
.mfp-newspaper {
  /* start state */
  /* animate in */
  /* animate out */
}
.mfp-newspaper .mfp-with-anim {
  opacity: 0;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  -webkit-transform: scale(0) rotate(500deg);
  -moz-transform: scale(0) rotate(500deg);
  -ms-transform: scale(0) rotate(500deg);
  -o-transform: scale(0) rotate(500deg);
  transform: scale(0) rotate(500deg);
}
.mfp-newspaper.mfp-bg {
  opacity: 0;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}
.mfp-newspaper.mfp-ready .mfp-with-anim {
  opacity: 1;
  -webkit-transform: scale(1) rotate(0deg);
  -moz-transform: scale(1) rotate(0deg);
  -ms-transform: scale(1) rotate(0deg);
  -o-transform: scale(1) rotate(0deg);
  transform: scale(1) rotate(0deg);
}
.mfp-newspaper.mfp-ready.mfp-bg {
  opacity: 0.95;
}
.mfp-newspaper.mfp-removing .mfp-with-anim {
  -webkit-transform: scale(0) rotate(500deg);
  -moz-transform: scale(0) rotate(500deg);
  -ms-transform: scale(0) rotate(500deg);
  -o-transform: scale(0) rotate(500deg);
  transform: scale(0) rotate(500deg);
  opacity: 0;
}
.mfp-newspaper.mfp-removing.mfp-bg {
  opacity: 0;
}
/**
* Move-horizontal effect
* ----------------------------------------------------------------------------
*/
.mfp-move-horizontal {
  /* start state */
  /* animate in */
  /* animate out */
}
.mfp-move-horizontal .mfp-with-anim {
  opacity: 0;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-transform: translateX(-50px);
  -moz-transform: translateX(-50px);
  -ms-transform: translateX(-50px);
  -o-transform: translateX(-50px);
  transform: translateX(-50px);
}
.mfp-move-horizontal.mfp-bg {
  opacity: 0;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.mfp-move-horizontal.mfp-ready .mfp-with-anim {
  opacity: 1;
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
  transform: translateX(0);
}
.mfp-move-horizontal.mfp-ready.mfp-bg {
  opacity: 0.95;
}
.mfp-move-horizontal.mfp-removing .mfp-with-anim {
  -webkit-transform: translateX(50px);
  -moz-transform: translateX(50px);
  -ms-transform: translateX(50px);
  -o-transform: translateX(50px);
  transform: translateX(50px);
  opacity: 0;
}
.mfp-move-horizontal.mfp-removing.mfp-bg {
  opacity: 0;
}
/**
* Move-from-top effect
* ----------------------------------------------------------------------------
*/
.mfp-move-from-top {
  /* start state */
  /* animate in */
  /* animate out */
}
.mfp-move-from-top .mfp-content {
  vertical-align: top;
}
.mfp-move-from-top .mfp-with-anim {
  opacity: 0;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  -webkit-transform: translateY(-100px);
  -moz-transform: translateY(-100px);
  -ms-transform: translateY(-100px);
  -o-transform: translateY(-100px);
  transform: translateY(-100px);
}
.mfp-move-from-top .mfp-close,
.mfp-move-from-top.mfp-bg {
  opacity: 0;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  -webkit-transition-delay: 0s;
  -moz-transition-delay: 0s;
  -o-transition-delay: 0s;
  transition-delay: 0s;
}
.mfp-move-from-top.mfp-ready .mfp-with-anim {
  opacity: 1;
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  transform: translateY(0);
  -webkit-transition-delay: 0.5s;
  -moz-transition-delay: 0.5s;
  -o-transition-delay: 0.5s;
  transition-delay: 0.5s;
}
.mfp-move-from-top.mfp-ready.mfp-bg {
  opacity: 0.95;
}
.mfp-move-from-top.mfp-ready .mfp-close {
  opacity: 1;
  top: 50px;
}
.mfp-move-from-top.mfp-removing .mfp-with-anim {
  -webkit-transform: translateY(-50px);
  -moz-transform: translateY(-50px);
  -ms-transform: translateY(-50px);
  -o-transform: translateY(-50px);
  transform: translateY(-50px);
  opacity: 0;
  -webkit-transition-delay: 0s;
  -moz-transition-delay: 0s;
  -o-transition-delay: 0s;
  transition-delay: 0s;
}
.mfp-move-from-top.mfp-removing .mfp-close,
.mfp-move-from-top.mfp-removing.mfp-bg {
  opacity: 0;
  -webkit-transition-delay: 0.5s;
  -moz-transition-delay: 0.5s;
  -o-transition-delay: 0.5s;
  transition-delay: 0.5s;
}
/**
* 3d unfold
* ----------------------------------------------------------------------------
*/
.mfp-3d-unfold {
  /* start state */
  /* animate in */
  /* animate out */
}
.mfp-3d-unfold .mfp-content {
  -webkit-perspective: 2000px;
  -moz-perspective: 2000px;
  -ms-perspective: 2000px;
  perspective: 2000px;
}
.mfp-3d-unfold .mfp-with-anim {
  opacity: 0;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  -webkit-transform-style: preserve-3d;
  -moz-transform-style: preserve-3d;
  -ms-transform-style: preserve-3d;
  transform-style: preserve-3d;
  -webkit-transform: rotateY(-60deg);
  -moz-transform: rotateY(-60deg);
  -ms-transform: rotateY(-60deg);
  -o-transform: rotateY(-60deg);
  transform: rotateY(-60deg);
}
.mfp-3d-unfold.mfp-bg {
  opacity: 0;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}
.mfp-3d-unfold.mfp-ready .mfp-with-anim {
  opacity: 1;
  -webkit-transform: rotateY(0deg);
  -moz-transform: rotateY(0deg);
  -ms-transform: rotateY(0deg);
  -o-transform: rotateY(0deg);
  transform: rotateY(0deg);
}
.mfp-3d-unfold.mfp-ready.mfp-bg {
  opacity: 0.95;
}
.mfp-3d-unfold.mfp-removing .mfp-with-anim {
  -webkit-transform: rotateY(60deg);
  -moz-transform: rotateY(60deg);
  -ms-transform: rotateY(60deg);
  -o-transform: rotateY(60deg);
  transform: rotateY(60deg);
  opacity: 0;
}
.mfp-3d-unfold.mfp-removing.mfp-bg {
  opacity: 0;
}
/**
* Zoom-out effect
* ----------------------------------------------------------------------------
*/
.mfp-zoom-out {
  /* start state */
  /* animate in */
  /* animate out */
}
.mfp-zoom-out .mfp-with-anim {
  opacity: 0;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  -webkit-transform: scale(1.3);
  -moz-transform: scale(1.3);
  -ms-transform: scale(1.3);
  -o-transform: scale(1.3);
  transform: scale(1.3);
}
.mfp-zoom-out.mfp-bg {
  opacity: 0;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.mfp-zoom-out.mfp-ready .mfp-with-anim {
  opacity: 1;
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
}
.mfp-zoom-out.mfp-ready.mfp-bg {
  opacity: 0.95;
}
.mfp-zoom-out.mfp-removing .mfp-with-anim {
  -webkit-transform: scale(1.3);
  -moz-transform: scale(1.3);
  -ms-transform: scale(1.3);
  -o-transform: scale(1.3);
  transform: scale(1.3);
  opacity: 0;
}
.mfp-zoom-out.mfp-removing.mfp-bg {
  opacity: 0;
}
/**
* Simple fade transition
* ----------------------------------------------------------------------------
*/
.mfp-fade.mfp-bg {
  opacity: 0;
  -webkit-transition: all 0.15s ease-out;
  -moz-transition: all 0.15s ease-out;
  transition: all 0.15s ease-out;
}
.mfp-fade.mfp-bg.mfp-ready {
  opacity: 0.8;
}
.mfp-fade.mfp-bg.mfp-removing {
  opacity: 0;
}
.mfp-fade.mfp-wrap .mfp-content {
  opacity: 0;
  -webkit-transition: all 0.15s ease-out;
  -moz-transition: all 0.15s ease-out;
  transition: all 0.15s ease-out;
}
.mfp-fade.mfp-wrap.mfp-ready .mfp-content {
  opacity: 1;
}
.mfp-fade.mfp-wrap.mfp-removing .mfp-content {
  opacity: 0;
}
#gf-wrapper .vc_col-has-fill > .vc_column-inner,
#gf-wrapper .vc_row-has-fill > .vc_column_container > .vc_column-inner {
  padding-top: 0;
}
#gf-wrapper [class*="vc_column-gap-"] > .vc_column_container {
  padding-top: 0;
  padding-bottom: 0;
}
#gf-wrapper .vc_row > .gf-container,
#gf-wrapper #primary-content:not(.gf-content-full-width) .gf-container {
  padding-left: 0;
  padding-right: 0;
}
.container {
  max-width: 100%;
}
.container .container {
  padding-left: 0;
  padding-right: 0;
}
@media (min-width: 1400px) {
  .container {
    width: 1370px !important;
  }
}
.gf-bg-overlay-wrap {
  position: relative !important;
  z-index: 1;
}
.gf-bg-overlay-wrap .gf-bg-overlay {
  position: absolute !important;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  display: block !important;
  content: '';
  z-index: 1;
}
.gf-bg-overlay-wrap .wpb_wrapper {
  position: relative;
  z-index: 2;
}
@media (max-width: 767px) {
  .vc_row.vc_row-flex > .gf-container {
    width: 100%;
  }
}
.vc_row.vc_row-flex > .gf-container {
  box-sizing: border-box;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.vc_row.vc_row-flex > .gf-container:after,
.vc_row.vc_row-flex > .gf-container:before {
  display: none;
}
.vc_row.vc_row-flex > .gf-container > .vc_column_container {
  display: flex;
}
.vc_ie-flexbox-fixer > .gf-container,
.vc_row.vc_row-flex > .gf-container > .vc_column_container > .vc_column-inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
}
.vc_row.vc_row-flex > .gf-container > .vc_column_container > .vc_column-inner {
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  display: flex;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  z-index: 1;
}
@media (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .vc_row.vc_row-flex > .gf-container > .vc_column_container > .vc_column-inner > * {
    min-height: 1em;
  }
}
.vc_row.vc_row-o-columns-stretch > .gf-container {
  -webkit-align-content: stretch;
  -ms-flex-line-pack: stretch;
  align-content: stretch;
}
.vc_row.vc_row-o-columns-top > .gf-container {
  -webkit-align-content: flex-start;
  -ms-flex-line-pack: start;
  align-content: flex-start;
}
.vc_row.vc_row-o-columns-bottom > .gf-container {
  -webkit-align-content: flex-end;
  -ms-flex-line-pack: end;
  align-content: flex-end;
}
.vc_row.vc_row-o-columns-middle > .gf-container {
  -webkit-align-content: center;
  -ms-flex-line-pack: center;
  align-content: center;
}
.vc_row.vc_row-o-columns-bottom > .gf-container::after,
.vc_row.vc_row-o-columns-middle > .gf-container::after,
.vc_row.vc_row-o-columns-top > .gf-container::after {
  content: '';
  width: 100%;
  height: 0;
  overflow: hidden;
  visibility: hidden;
  display: block;
}
.vc_row.vc_row-o-content-top > .gf-container > .vc_column_container > .vc_column-inner {
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}
.vc_row.vc_row-o-content-top:not(.vc_row-o-equal-height) > .gf-container > .vc_column_container {
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
}
.vc_row.vc_row-o-content-bottom > .gf-container > .vc_column_container > .vc_column-inner {
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}
.vc_row.vc_row-o-content-bottom:not(.vc_row-o-equal-height) > .gf-container > .vc_column_container {
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
  -ms-flex-align: end;
  align-items: flex-end;
}
.vc_row.vc_row-o-content-middle > .gf-container > .vc_column_container > .vc_column-inner {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.vc_row.vc_row-o-content-middle:not(.vc_row-o-equal-height) > .gf-container > .vc_column_container {
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
.vc_ie-flexbox-fixer {
  display: flex;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}
.vc_ie-flexbox-fixer > .vc_row > .gf-container {
  -webkit-box-flex: 1;
  -webkit-flex: 1 1 auto;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
.vc_row.vc_column-gap-1 > .gf-container > .vc_column_container {
  padding: .5px;
}
.vc_row.vc_column-gap-2 > .gf-container > .vc_column_container {
  padding: 1px;
}
.vc_row.vc_column-gap-3 > .gf-container > .vc_column_container {
  padding: 1.5px;
}
.vc_row.vc_column-gap-4 > .gf-container > .vc_column_container {
  padding: 2px;
}
.vc_row.vc_column-gap-5 > .gf-container > .vc_column_container {
  padding: 2.5px;
}
.vc_row.vc_column-gap-10 > .gf-container > .vc_column_container {
  padding: 5px;
}
.vc_row.vc_column-gap-15 > .gf-container > .vc_column_container {
  padding: 7.5px;
}
.vc_row.vc_column-gap-20 > .gf-container > .vc_column_container {
  padding: 10px;
}
.vc_row.vc_column-gap-25 > .gf-container > .vc_column_container {
  padding: 12.5px;
}
.vc_row.vc_column-gap-30 > .gf-container > .vc_column_container {
  padding: 15px;
}
.vc_row.vc_column-gap-35 > .gf-container > .vc_column_container {
  padding: 17.5px;
}
.vc_section.vc_section-flex > .gf-container {
  box-sizing: border-box;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: column nowrap;
  flex-flow: column nowrap;
}
.vc_section.vc_section-flex > .gf-container:after,
.vc_section.vc_section-flex > .gf-container:before {
  display: none;
}
.vc_section.vc_section-o-content-top > .gf-container {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}
.vc_section.vc_section-o-content-bottom > .gf-container {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}
.vc_section.vc_section-o-content-middle > .gf-container {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.vc_section.vc_section-o-content-bottom > .gf-container::after,
.vc_section.vc_section-o-content-middle > .gf-container::after,
.vc_section.vc_section-o-content-top > .gf-container::after {
  content: '';
  width: 100%;
  height: 0;
  overflow: hidden;
  visibility: hidden;
  display: block;
}
.vc_row.vc_column-gap-1 > .gf-container > .vc_vc_column > .vc_column_container,
.vc_row.vc_column-gap-1 > .gf-container > .vc_vc_column_inner > .vc_column_container {
  padding-left: .5px;
  padding-right: .5px;
}
.vc_row.vc_column-gap-2 > .gf-container > .vc_vc_column > .vc_column_container,
.vc_row.vc_column-gap-2 > .gf-container > .vc_vc_column_inner > .vc_column_container {
  padding-left: 1px;
  padding-right: 1px;
}
.vc_row.vc_column-gap-3 > .gf-container > .vc_vc_column > .vc_column_container,
.vc_row.vc_column-gap-3 > .gf-container > .vc_vc_column_inner > .vc_column_container {
  padding-left: 1.5px;
  padding-right: 1.5px;
}
.vc_row.vc_column-gap-4 > .gf-container > .vc_vc_column > .vc_column_container,
.vc_row.vc_column-gap-4 > .gf-container > .vc_vc_column_inner > .vc_column_container {
  padding-left: 2px;
  padding-right: 2px;
}
.vc_row.vc_column-gap-5 > .gf-container > .vc_vc_column > .vc_column_container,
.vc_row.vc_column-gap-5 > .gf-container > .vc_vc_column_inner > .vc_column_container {
  padding-left: 2.5px;
  padding-right: 2.5px;
}
.vc_row.vc_column-gap-10 > .gf-container > .vc_vc_column > .vc_column_container,
.vc_row.vc_column-gap-10 > .gf-container > .vc_vc_column_inner > .vc_column_container {
  padding-left: 5px;
  padding-right: 5px;
}
.vc_row.vc_column-gap-15 > .gf-container > .vc_vc_column > .vc_column_container,
.vc_row.vc_column-gap-15 > .gf-container > .vc_vc_column_inner > .vc_column_container {
  padding-left: 7.5px;
  padding-right: 7.5px;
}
.vc_row.vc_column-gap-20 > .gf-container > .vc_vc_column > .vc_column_container,
.vc_row.vc_column-gap-20 > .gf-container > .vc_vc_column_inner > .vc_column_container {
  padding-left: 10px;
  padding-right: 10px;
}
.vc_row.vc_column-gap-25 > .gf-container > .vc_vc_column > .vc_column_container,
.vc_row.vc_column-gap-25 > .gf-container > .vc_vc_column_inner > .vc_column_container {
  padding-left: 12.5px;
  padding-right: 12.5px;
}
.vc_row.vc_column-gap-30 > .gf-container > .vc_vc_column > .vc_column_container,
.vc_row.vc_column-gap-30 > .gf-container > .vc_vc_column_inner > .vc_column_container {
  padding-left: 15px;
  padding-right: 15px;
}
.vc_row.vc_column-gap-35 > .gf-container > .vc_vc_column > .vc_column_container,
.vc_row.vc_column-gap-35 > .gf-container > .vc_vc_column_inner > .vc_column_container {
  padding-left: 17.5px;
  padding-right: 17.5px;
}
.vc_row.vc_row-flex > .gf-container > .vc_vc_column,
.vc_row.vc_row-flex > .gf-container > .vc_vc_column_inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.vc_row.vc_row-flex > .gf-container > .vc_vc_column > .vc_column_container,
.vc_row.vc_row-flex > .gf-container > .vc_vc_column_inner > .vc_column_container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}
.vc_row.vc_row-flex > .gf-container > .vc_vc_column > .vc_column_container > .vc_column-inner,
.vc_row.vc_row-flex > .gf-container > .vc_vc_column_inner > .vc_column_container > .vc_column-inner {
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}
.vc_row.vc_row-o-equal-height > .gf-container > .vc_column_container {
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}
.vc_row.vc_row-o-content-top > .gf-container > .vc_vc_column > .vc_column_container > .vc_column-inner,
.vc_row.vc_row-o-content-top > .gf-container > .vc_vc_column_inner > .vc_column_container > .vc_column-inner {
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}
.vc_row.vc_row-o-content-top:not(.vc_row-o-equal-height) > .gf-container > .vc_vc_column > .vc_column_container,
.vc_row.vc_row-o-content-top:not(.vc_row-o-equal-height) > .gf-container > .vc_vc_column_inner > .vc_column_container {
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
}
.vc_row.vc_row-o-content-bottom > .gf-container > .vc_vc_column > .vc_column_container > .vc_column-inner,
.vc_row.vc_row-o-content-bottom > .gf-container > .vc_vc_column_inner > .vc_column_container > .vc_column-inner {
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}
.vc_row.vc_row-o-content-bottom:not(.vc_row-o-equal-height) > .gf-container > .vc_vc_column > .vc_column_container,
.vc_row.vc_row-o-content-bottom:not(.vc_row-o-equal-height) > .gf-container > .vc_vc_column_inner > .vc_column_container {
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
  -ms-flex-align: end;
  align-items: flex-end;
}
.vc_row.vc_row-o-content-middle > .gf-container > .vc_vc_column > .vc_column_container > .vc_column-inner,
.vc_row.vc_row-o-content-middle > .gf-container > .vc_vc_column_inner > .vc_column_container > .vc_column-inner {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.vc_row.vc_row-o-content-middle:not(.vc_row-o-equal-height) > .gf-container > .vc_vc_column > .vc_column_container,
.vc_row.vc_row-o-content-middle:not(.vc_row-o-equal-height) > .gf-container > .vc_vc_column_inner > .vc_column_container {
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
.top-drawer-mode-toggle {
  z-index: 99999;
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
.top-drawer-mode-toggle .top-drawer-inner {
  display: none;
}
.top-drawer-toggle {
  position: absolute;
  right: 0;
  border-top: 35px solid #363839;
  border-left: 35px solid transparent;
  cursor: pointer;
}
.top-drawer-toggle a {
  position: absolute;
  left: -14px;
  top: -30px;
  color: #fff;
  font-size: 12px;
  line-height: normal;
}
/**
* 2.0 Core
* ----------------------------------------------------------------------------
*/
* {
  padding: 0;
  margin: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
html {
  font-family: sans-serif;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}
body {
  overflow-x: hidden;
}
#gf-wrapper {
  position: relative;
  overflow: hidden;
}
input[type="color"],
input[type="date"],
input[type="datetime"],
input[type="datetime-local"],
input[type="email"],
input[type="month"],
input[type="number"],
input[type="password"],
input[type="search"],
input[type="tel"],
input[type="text"],
input[type="time"],
input[type="url"],
input[type="week"],
input:not([type]),
textarea,
select {
  border: 1px solid;
  line-height: 1;
  max-width: 100%;
  height: 40px;
}
textarea {
  height: auto;
}
/**
* Block Center
* ----------------------------------------------------------------------------
*/
.block-center:before {
  content: "";
  height: 100%;
  vertical-align: middle;
  display: inline-block;
}
.block-center {
  height: 100%;
  width: 100%;
  text-align: center;
  font-size: 0;
}
.block-center-inner {
  display: inline-block;
  margin: 0 auto;
  position: relative;
  vertical-align: middle;
  max-width: 100%;
  font-size: initial;
}
.block-center-inner > * {
  margin: auto;
}
/**
* Loading
* ----------------------------------------------------------------------------
*/
.site-loading {
  position: fixed;
  -webkit-backface-visibility: visible;
  -moz-backface-visibility: visible;
  -o-backface-visibility: visible;
  -ms-backface-visibility: visible;
  backface-visibility: visible;
  z-index: 9999;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  opacity: 0;
  display: none;
  -webkit-transition: opacify 600ms ease 200ms;
  -moz-transition: opacify 600ms ease 200ms;
  -ms-transition: opacify 600ms ease 200ms;
  -o-transition: opacify 600ms ease 200ms;
  transition: opacify 600ms ease 200ms;
}
body.page-loading .site-loading {
  opacity: 1;
  display: block;
}
.logo-loading {
  margin-bottom: 30px;
}
/**
* Hidden Mobile
* ----------------------------------------------------------------------------
*/
@media screen and (max-width: 1199px) {
  .gf-hidden-mobile {
    display: none;
  }
}
.gf-border-bottom {
  border-bottom: 1px solid;
  border-color: inherit;
}
.header-wrap.gf-border-bottom {
  -webkit-box-shadow: 0 0 17px 3px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 0 17px 3px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 17px 3px rgba(0, 0, 0, 0.1);
  border-bottom: none;
}
.gf-border-top {
  border-top: 1px solid;
  border-color: inherit;
}
/**
* Toggle Icon
* ----------------------------------------------------------------------------
*/
.gf-toggle-icon {
  cursor: pointer;
  display: inline-block;
  position: relative;
  vertical-align: middle;
  min-height: 20px;
  min-width: 30px;
}
.gf-toggle-icon.color-white > span {
  background: #fff !important;
}
.gf-toggle-icon.color-white > span:after,
.gf-toggle-icon.color-white > span:before {
  background-color: #fff !important;
}
.gf-toggle-icon.color-white h5 {
  color: #fff !important;
}
.gf-toggle-icon.color-accent > span {
  background: #e1757d !important;
}
.gf-toggle-icon.color-accent > span:after,
.gf-toggle-icon.color-accent > span:before {
  background-color: #e1757d !important;
}
.gf-toggle-icon.color-accent h5 {
  color: #e1757d !important;
}
.gf-toggle-icon.bg-accent {
  background: #e1757d !important;
}
.gf-toggle-icon > span {
  background: #000;
  bottom: 0;
  display: block;
  height: 2px;
  left: 0;
  margin: auto;
  position: absolute;
  top: 0;
  width: 30px;
  -webkit-transition: background 0.3s 0s ease-in-out;
  -moz-transition: background 0.3s 0s ease-in-out;
  -ms-transition: background 0.3s 0s ease-in-out;
  -o-transition: background 0.3s 0s ease-in-out;
  transition: background 0.3s 0s ease-in-out;
}
.gf-toggle-icon > span:after,
.gf-toggle-icon > span:before {
  background-color: #000;
  content: '';
  height: 2px;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  width: 100%;
  -webkit-transition: top 0.3s 0.6s ease-in-out, -webkit-transform 0.3s ease-in-out, background 0.3s 0s ease-in-out;
  -moz-transition: top 0.3s 0.6s ease-in-out, -moz-transform 0.3s ease-in-out, background 0.3s 0s ease-in-out;
  transition: top 0.3s 0.6s ease-in-out, transform 0.3s ease-in-out, background 0.3s 0s ease-in-out;
  -webkit-transform-origin: 50% 50% center;
  -moz-transform-origin: 50% 50% center;
  -ms-transform-origin: 50% 50% center;
  -o-transform-origin: 50% 50% center;
  transform-origin: 50% 50% center;
}
.gf-toggle-icon > span:before {
  top: 8px;
}
.gf-toggle-icon > span:after {
  top: -8px;
}
.gf-toggle-icon h5 {
  font-size: 18px;
  line-height: 55px;
  font-weight: 300;
  padding-left: 45px;
  display: inline;
}
.gf-toggle-icon.in > span {
  background: transparent !important;
}
.gf-toggle-icon.in > span:after,
.gf-toggle-icon.in > span:before {
  -webkit-transition: top 0.3s ease-in-out, -webkit-transform 0.3s 0.5s ease-in-out, background 0.3s 0s ease-in-out;
  -moz-transition: top 0.3s ease-in-out, -moz-transform 0.3s 0.5s ease-in-out, background 0.3s 0s ease-in-out;
  transition: top 0.3s ease-in-out, transform 0.3s 0.5s ease-in-out, background 0.3s 0s ease-in-out;
  top: 0;
}
.gf-toggle-icon.in > span:after {
  -webkit-transform: rotate3d(0, 0, 1, -45deg);
  -moz-transform: rotate3d(0, 0, 1, -45deg);
  -ms-transform: rotate3d(0, 0, 1, -45deg);
  -o-transform: rotate3d(0, 0, 1, -45deg);
  transform: rotate3d(0, 0, 1, -45deg);
}
.gf-toggle-icon.in > span:before {
  -webkit-transform: rotate3d(0, 0, 1, 45deg);
  -moz-transform: rotate3d(0, 0, 1, 45deg);
  -ms-transform: rotate3d(0, 0, 1, 45deg);
  -o-transform: rotate3d(0, 0, 1, 45deg);
  transform: rotate3d(0, 0, 1, 45deg);
}
.canvas-sidebar-close {
  position: absolute;
  width: 18px;
  height: 18px;
  top: 0;
  right: 18px;
  cursor: pointer;
  z-index: 1;
}
.canvas-sidebar-close span,
.canvas-sidebar-close:after,
.canvas-sidebar-close:before {
  position: absolute;
  width: 18px;
  height: 2px;
  content: '';
  display: inline-block;
  background: #a8a8a8;
  left: 0;
  top: 7px;
  margin-top: 0;
  border-radius: 14px;
  transition: 0.38s cubic-bezier(0.55, -0.01, 0.19, 0.98) 0s;
}
.canvas-sidebar-close:before {
  transform: rotate(45deg);
}
.canvas-sidebar-close:after {
  transform: rotate(-45deg);
}
.canvas-sidebar-close span {
  width: 0;
  left: inherit;
  right: 50%;
  margin-right: 0;
}
.off-canvas-left .canvas-sidebar-close:hover:before {
  width: 10px;
  left: 0;
  top: 10px;
  background: #fff;
}
.off-canvas-left .canvas-sidebar-close:hover:after {
  width: 10px;
  left: 0;
  top: 4px;
  background: #fff;
}
.off-canvas-left .canvas-sidebar-close:hover span {
  width: 16px;
  visibility: visible;
  position: absolute;
  right: 50%;
  margin-right: -8px;
  background: #fff;
}
.off-canvas-right .canvas-sidebar-close {
  left: 18px;
  right: auto;
}
.off-canvas-right .canvas-sidebar-close span {
  width: 0;
  right: inherit;
  left: 50%;
  margin-left: 0;
  margin-right: auto;
  background: #fff;
}
.off-canvas-right .canvas-sidebar-close:after,
.off-canvas-right .canvas-sidebar-close:before {
  right: 0;
  left: auto;
  background: #fff;
}
.off-canvas-right .canvas-sidebar-close:hover:before {
  width: 10px;
  right: 0;
  left: auto;
  top: 4px;
}
.off-canvas-right .canvas-sidebar-close:hover:after {
  width: 10px;
  right: 0;
  left: auto;
  top: 10px;
}
.off-canvas-right .canvas-sidebar-close:hover span {
  width: 16px;
  visibility: visible;
  position: absolute;
  left: 50%;
  margin-left: -8px;
  right: auto;
  margin-right: auto;
}
/**
* Canvas Sidebar
* ----------------------------------------------------------------------------
*/
.canvas-sidebar-wrapper {
  position: fixed;
  -webkit-backface-visibility: visible;
  -moz-backface-visibility: visible;
  -o-backface-visibility: visible;
  -ms-backface-visibility: visible;
  backface-visibility: visible;
  top: 0;
  bottom: 0;
  width: 350px;
  z-index: 100000;
  left: 0;
  visibility: hidden;
  border-top: 30px solid transparent !important;
  border-bottom: 30px solid transparent !important;
}
.canvas-sidebar-wrapper .canvas-sidebar-inner {
  padding: 0 30px 0 30px;
}
.canvas-sidebar-wrapper.right {
  right: 0;
  left: auto;
  visibility: visible;
  margin-right: -350px;
  -webkit-transition: margin 0.5s cubic-bezier(0.785, 0.135, 0.15, 0.86) 0.5s, visibility 0.1s 1s;
  -moz-transition: margin 0.5s cubic-bezier(0.785, 0.135, 0.15, 0.86) 0.5s, visibility 0.1s 1s;
  -ms-transition: margin 0.5s cubic-bezier(0.785, 0.135, 0.15, 0.86) 0.5s, visibility 0.1s 1s;
  -o-transition: margin 0.5s cubic-bezier(0.785, 0.135, 0.15, 0.86) 0.5s, visibility 0.1s 1s;
  transition: margin 0.5s cubic-bezier(0.785, 0.135, 0.15, 0.86) 0.5s, visibility 0.1s 1s;
}
.canvas-sidebar-wrapper.left {
  margin-left: -350px;
  -webkit-transition: margin 0.5s cubic-bezier(0.785, 0.135, 0.15, 0.86) 0.5s, visibility 0.1s 1s;
  -moz-transition: margin 0.5s cubic-bezier(0.785, 0.135, 0.15, 0.86) 0.5s, visibility 0.1s 1s;
  -ms-transition: margin 0.5s cubic-bezier(0.785, 0.135, 0.15, 0.86) 0.5s, visibility 0.1s 1s;
  -o-transition: margin 0.5s cubic-bezier(0.785, 0.135, 0.15, 0.86) 0.5s, visibility 0.1s 1s;
  transition: margin 0.5s cubic-bezier(0.785, 0.135, 0.15, 0.86) 0.5s, visibility 0.1s 1s;
}
.canvas-sidebar-wrapper .canvas-sidebar-inner {
  -webkit-transform: translateY(20px);
  -moz-transform: translateY(20px);
  -ms-transform: translateY(20px);
  -o-transform: translateY(20px);
  transform: translateY(20px);
  opacity: 0;
  -webkit-transition: -webkit-transform 0.5s cubic-bezier(0.785, 0.135, 0.15, 0.86), opacity 0.5s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  -moz-transition: -moz-transform 0.5s cubic-bezier(0.785, 0.135, 0.15, 0.86), opacity 0.5s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  transition: transform 0.5s cubic-bezier(0.785, 0.135, 0.15, 0.86), opacity 0.5s cubic-bezier(0.785, 0.135, 0.15, 0.86);
}
.canvas-overlay {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 999;
  background-color: rgba(0, 0, 0, 0.7);
  visibility: hidden;
  overflow: hidden;
  opacity: 0;
  max-width: 0;
  -webkit-transition: opacity 0.5s cubic-bezier(0.785, 0.135, 0.15, 0.86), visibility 0.5s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  -moz-transition: opacity 0.5s cubic-bezier(0.785, 0.135, 0.15, 0.86), visibility 0.5s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  -ms-transition: opacity 0.5s cubic-bezier(0.785, 0.135, 0.15, 0.86), visibility 0.5s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  -o-transition: opacity 0.5s cubic-bezier(0.785, 0.135, 0.15, 0.86), visibility 0.5s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  transition: opacity 0.5s cubic-bezier(0.785, 0.135, 0.15, 0.86), visibility 0.5s cubic-bezier(0.785, 0.135, 0.15, 0.86);
}
@media (max-width: 1199px) {
  body.off-canvas-in .canvas-overlay {
    max-width: 100%;
    opacity: 1;
    visibility: visible;
  }
}
body.bordered.off-canvas-in .canvas-overlay,
body.framed.off-canvas-in .canvas-overlay,
body.boxed.off-canvas-in .canvas-overlay {
  max-width: 100%;
  opacity: 1;
  visibility: visible;
}
body.bordered.off-canvas-in #gf-wrapper,
body.framed.off-canvas-in #gf-wrapper,
body.boxed.off-canvas-in #gf-wrapper {
  margin-top: 0;
  margin-bottom: 0;
}
body.off-canvas-right #gf-wrapper {
  margin: 0;
  -webkit-transition: margin 0.5s cubic-bezier(0.785, 0.135, 0.15, 0.86) 0.5s;
  -moz-transition: margin 0.5s cubic-bezier(0.785, 0.135, 0.15, 0.86) 0.5s;
  -ms-transition: margin 0.5s cubic-bezier(0.785, 0.135, 0.15, 0.86) 0.5s;
  -o-transition: margin 0.5s cubic-bezier(0.785, 0.135, 0.15, 0.86) 0.5s;
  transition: margin 0.5s cubic-bezier(0.785, 0.135, 0.15, 0.86) 0.5s;
  -webkit-backface-visibility: visible;
  -moz-backface-visibility: visible;
  -o-backface-visibility: visible;
  -ms-backface-visibility: visible;
  backface-visibility: visible;
}
body.off-canvas-right.off-canvas-in #gf-wrapper {
  -webkit-transition: margin 0.5s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  -moz-transition: margin 0.5s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  -ms-transition: margin 0.5s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  -o-transition: margin 0.5s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  transition: margin 0.5s cubic-bezier(0.785, 0.135, 0.15, 0.86);
}
body.off-canvas-left #gf-wrapper {
  margin: 0;
  -webkit-transition: margin 0.5s cubic-bezier(0.785, 0.135, 0.15, 0.86) 0.5s;
  -moz-transition: margin 0.5s cubic-bezier(0.785, 0.135, 0.15, 0.86) 0.5s;
  -ms-transition: margin 0.5s cubic-bezier(0.785, 0.135, 0.15, 0.86) 0.5s;
  -o-transition: margin 0.5s cubic-bezier(0.785, 0.135, 0.15, 0.86) 0.5s;
  transition: margin 0.5s cubic-bezier(0.785, 0.135, 0.15, 0.86) 0.5s;
}
body.off-canvas-left.off-canvas-in #gf-wrapper {
  -webkit-transition: margin 0.5s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  -moz-transition: margin 0.5s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  -ms-transition: margin 0.5s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  -o-transition: margin 0.5s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  transition: margin 0.5s cubic-bezier(0.785, 0.135, 0.15, 0.86);
}
.canvas-sidebar-wrapper.in {
  margin: 0;
  visibility: visible;
  -webkit-transition: margin 0.5s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  -moz-transition: margin 0.5s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  -ms-transition: margin 0.5s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  -o-transition: margin 0.5s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  transition: margin 0.5s cubic-bezier(0.785, 0.135, 0.15, 0.86);
}
.canvas-sidebar-wrapper.in .canvas-sidebar-inner {
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  transform: translateY(0);
  -webkit-transition: -webkit-transform 0.5s cubic-bezier(0.785, 0.135, 0.15, 0.86) 0.5s, opacity 0.5s 0.5s;
  -moz-transition: -moz-transform 0.5s cubic-bezier(0.785, 0.135, 0.15, 0.86) 0.5s, opacity 0.5s 0.5s;
  transition: transform 0.5s cubic-bezier(0.785, 0.135, 0.15, 0.86) 0.5s, opacity 0.5s 0.5s;
  opacity: 1;
}
/**
* Background Color Overlay
* ----------------------------------------------------------------------------
*/
.gf-section-bg-overlay {
  position: relative;
}
.gf-section-bg-overlay:before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}
/**
* Table Cell Layout
* ----------------------------------------------------------------------------
*/
.gf-table-cell-right,
.gf-table-cell-left {
  display: inline-block;
}
.gf-table-cell {
  display: table;
  width: 100%;
  line-height: 0;
}
.gf-table-cell .gf-table-cell-left {
  display: table-cell;
  width: 100%;
  vertical-align: middle;
}
.gf-table-cell .gf-table-cell-right {
  display: table-cell;
  vertical-align: middle;
  white-space: nowrap;
}
/**
* Back To Top
* ----------------------------------------------------------------------------
*/
.back-to-top {
  position: fixed;
  -webkit-backface-visibility: visible;
  -moz-backface-visibility: visible;
  -o-backface-visibility: visible;
  -ms-backface-visibility: visible;
  backface-visibility: visible;
  bottom: 10px;
  right: 10px;
  width: 44px;
  height: 44px;
  text-align: center;
  z-index: 2;
  -webkit-transform: translateX(100px);
  -moz-transform: translateX(100px);
  -ms-transform: translateX(100px);
  -o-transform: translateX(100px);
  transform: translateX(100px);
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  color: #fff;
  background-color: #666;
}
.back-to-top i {
  font-size: 22px;
  position: relative;
  top: 9px;
}
.back-to-top:focus,
.back-to-top:hover {
  text-decoration: none;
}
.back-to-top.in {
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
  transform: translateX(0);
}
ul.gf-inline {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0;
}
ul.gf-inline > li {
  display: inline-block;
  margin-right: 10px;
  vertical-align: middle;
}
ul.gf-inline > li:last-child {
  margin-right: 0 !important;
}
.gf-hover-circle {
  position: relative;
}
.gf-hover-circle:after,
.gf-hover-circle:before {
  content: '';
  display: block;
  position: absolute;
  background: transparent;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  border: 1px solid;
  border-color: inherit;
}
.gf-hover-circle:hover:before {
  -webkit-transform: scale(1.5);
  -moz-transform: scale(1.5);
  -ms-transform: scale(1.5);
  -o-transform: scale(1.5);
  transform: scale(1.5);
  opacity: 0;
}
.gf-hover-circle:hover:after {
  -webkit-transform: scale(1.2);
  -moz-transform: scale(1.2);
  -ms-transform: scale(1.2);
  -o-transform: scale(1.2);
  transform: scale(1.2);
}
/**
 * Gutter
 * ----------------------------------------------------------------------------
 */
.gf-gutter-0 {
  margin-left: -0px;
  margin-right: -0px;
}
.gf-gutter-0 > [class*="col-"] {
  padding-left: 0;
  padding-right: 0;
}
.gf-gutter-0.gf-blog-inner > article {
  padding-bottom: 0;
}
.gf-gutter-10 {
  margin-left: -5px;
  margin-right: -5px;
}
.gf-gutter-10 > [class*="col-"] {
  padding-left: 5px;
  padding-right: 5px;
}
.gf-gutter-10.gf-blog-inner > article {
  padding-bottom: 10px;
}
.gf-gutter-20 {
  margin-left: -10px;
  margin-right: -10px;
}
.gf-gutter-20 > [class*="col-"] {
  padding-left: 10px;
  padding-right: 10px;
}
.gf-gutter-20.gf-blog-inner > article {
  padding-bottom: 20px;
}
.gf-gutter-30 {
  margin-left: -15px;
  margin-right: -15px;
}
.gf-gutter-30 > [class*="col-"] {
  padding-left: 15px;
  padding-right: 15px;
}
.gf-gutter-30.gf-blog-inner > article {
  padding-bottom: 30px;
}
.gf-gutter-40 {
  margin-left: -20px;
  margin-right: -20px;
}
.gf-gutter-40 > [class*="col-"] {
  padding-left: 20px;
  padding-right: 20px;
}
.gf-gutter-40.gf-blog-inner > article {
  padding-bottom: 40px;
}
.gf-gutter-50 {
  margin-left: -25px;
  margin-right: -25px;
}
.gf-gutter-50 > [class*="col-"] {
  padding-left: 25px;
  padding-right: 25px;
}
.gf-gutter-50.gf-blog-inner > article {
  padding-bottom: 50px;
}
/**
* No Result
* ----------------------------------------------------------------------------
*/
.gf-no-results {
  text-align: center;
}
.gf-no-results .search-form {
  display: inline-block;
}
.gf-no-results .search-form .search-field {
  width: 350px;
}
.gf-no-results > p {
  font-size: 14px;
}
.gf-no-results h2 {
  text-transform: uppercase;
  overflow: hidden;
  margin-bottom: 10px;
}
.gf-no-results h2 span {
  position: relative;
  display: inline-block;
}
.gf-no-results h2 span:after,
.gf-no-results h2 span:before {
  content: '';
  display: block;
  border-top: 1px solid #ebebeb;
  position: absolute;
  width: 1000px;
  top: 50%;
}
.gf-no-results h2 span:after {
  right: 100%;
  margin-right: 30px;
}
.gf-no-results h2 span:before {
  left: 100%;
  margin-left: 30px;
}
.gf-no-widget-content,
.gf-content-block-none {
  padding: 10px;
  border: 2px dashed;
}
.gf-404-wrap {
  text-align: center;
}
.gf-404-wrap h2 {
  font-size: 300px;
  font-weight: 700;
  line-height: 1em;
  margin-bottom: -10px;
  color: #f1f7f8 !important;
  margin-top: 0;
}
.gf-404-wrap h4 {
  font-size: 30px;
  font-weight: 700;
  line-height: 32px;
  text-transform: uppercase;
  margin-bottom: 35px;
  margin-top: 25px;
}
.gf-404-wrap p {
  font-size: 16px;
  line-height: 20px;
  max-width: 440px;
  margin: auto;
  margin-bottom: 60px;
}
.gf-404-wrap .search-form {
  max-width: 420px;
  margin: auto;
}
.gf-404-wrap .search-form .search-field {
  border: none;
  border-bottom: dashed 1px #ebebeb;
}
@media (max-width: 992px) {
  .gf-404-wrap {
    text-align: center;
  }
  .gf-404-wrap h2 {
    font-size: 15em;
  }
  .gf-404-wrap h4 {
    font-size: 2em;
  }
}
@media (max-width: 480px) {
  .gf-404-wrap h2 {
    font-size: 8rem;
  }
  .gf-404-wrap h4 {
    font-size: 1.5em;
  }
}
input[type="color"],
input[type="date"],
input[type="datetime"],
input[type="datetime-local"],
input[type="email"],
input[type="month"],
input[type="number"],
input[type="password"],
input[type="search"],
input[type="tel"],
input[type="text"],
input[type="time"],
input[type="url"],
input[type="week"],
input:not([type]),
textarea,
select {
  padding: 0 15px;
}
textarea {
  padding-top: 10px;
}
/**
* Owl Carousel
* ----------------------------------------------------------------------------
*/
.owl-carousel.owl-theme > .owl-nav [class*='owl-'] {
  padding: 0;
  width: 40px;
  height: 60px;
  line-height: 60px;
  text-align: center;
  font-size: 30px;
  color: #fff;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  margin: 0;
  border: solid 1px #fff;
  background: transparent;
}
.owl-carousel.owl-theme > .owl-nav [class*='owl-']:hover {
  background: #000;
  border-color: #000;
}
.owl-carousel.owl-theme > .owl-nav [class*='owl-'].disabled {
  -webkit-opacity: 1;
  -moz-opacity: 1;
  opacity: 1;
  background-color: rgba(35, 34, 34, 0.5);
}
.owl-carousel.owl-theme > .owl-nav [class*='owl-'] i {
  padding-top: 15px;
}
.owl-carousel.owl-theme > .owl-nav > .owl-next {
  border-right: none;
}
.owl-carousel.owl-theme > .owl-nav > .owl-prev {
  border-left: none;
}
.owl-carousel.owl-theme .owl-dots .owl-dot span {
  width: 15px;
  height: 15px;
  background: transparent;
  border: solid 1px #252525;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.owl-carousel.owl-theme .owl-dots .owl-dot.active span,
.owl-carousel.owl-theme .owl-dots .owl-dot:hover span {
  background: #e1757d;
  border-color: #e1757d;
}
.gf-heading-title {
  font-family: 'Josefin Sans';
  font-size: 24px;
  line-height: 24px;
  font-weight: 300;
  text-transform: uppercase;
  margin-bottom: 34px;
  font-style: italic;
}
.mfp-wrap {
  z-index: 999999;
}
.gsf-pretty-tabs {
  opacity: 0;
}
.gsf-pretty-tabs-initialized {
  opacity: 1;
}
.nav-tabs {
  margin-bottom: 30px;
  padding-left: 0 !important;
}
.nav-tabs > li.active > a,
.nav-tabs > li.active > a:hover,
.nav-tabs > li.active > a:focus {
  border-bottom-color: transparent !important;
}
.nav-tabs > li > a:hover {
  border-color: #e1757d;
}
.nav > li > a:hover,
.nav > li > a:focus {
  background-color: #e1757d;
  color: #ffffff;
}
.nav .open > a,
.nav .open > a:hover,
.nav .open > a:focus {
  background-color: #e1757d;
  border-color: #e1757d;
  color: #ffffff;
}
.custom-dropdown-list {
  position: relative;
  text-align: center;
}
.custom-dropdown-list a {
  font-size: 12px;
  font-family: 'Oswald';
  font-weight: bold;
  cursor: pointer;
  color: inherit;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.custom-dropdown-list a:hover,
.custom-dropdown-list a:focus,
.custom-dropdown-list a:active {
  text-decoration: none !important;
}
.custom-dropdown-list i {
  position: relative;
  top: -1px;
  margin-left: 20px;
}
.custom-dropdown-list ul.fold-out-drop {
  list-style: none;
  margin: 0;
  background-color: #252525;
  min-width: 230px;
  width: 100%;
  padding: 25px;
  text-align: center;
}
.custom-dropdown-list ul.fold-out-drop li a {
  color: #fff !important;
  font-size: 14px !important;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.custom-dropdown-list ul.fold-out-drop li a:hover {
  color: #e1757d !important;
}
.custom-dropdown-list ul.fold-out-drop li + li {
  margin-top: 13px;
}
.custom-dropdown-list img {
  margin-right: 7px;
}
body:not(.safari) .fold-out.in .fold-out-drop,
body:not(.safari) .fold-out.hover:hover .fold-out-drop {
  -webkit-transform: translateY(15px);
  -moz-transform: translateY(15px);
  -ms-transform: translateY(15px);
  -o-transform: translateY(15px);
  transform: translateY(15px);
  max-height: 1000px;
  visibility: visible;
  opacity: 1;
}
body:not(.safari) .fold-out .fold-out-drop {
  max-height: 0;
  position: absolute;
  left: 0;
  z-index: 9999;
  overflow: hidden;
  visibility: hidden;
  opacity: 0;
  -webkit-transform: translateY(60px);
  -moz-transform: translateY(60px);
  -ms-transform: translateY(60px);
  -o-transform: translateY(60px);
  transform: translateY(60px);
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}
body.safari .fold-out.in .fold-out-drop,
body.safari .fold-out.hover:hover .fold-out-drop {
  display: block;
}
body.safari .fold-out .fold-out-drop {
  position: absolute;
  z-index: 9999;
  display: none;
}
#popup-product-quick-view-wrapper {
  background: transparent !important;
}
#gsf-popup-login-wrapper,
#gsf-popup-mailchimp-wrapper {
  background: transparent !important;
}
#gsf-popup-login-wrapper.modal .modal-dialog,
#gsf-popup-mailchimp-wrapper.modal .modal-dialog {
  -webkit-transition: 0.5;
  -moz-transition: 0.5;
  -ms-transition: 0.5;
  -o-transition: 0.5;
  transition: 0.5;
  -webkit-transition-delay: 0.1s;
  -moz-transition-delay: 0.1s;
  -o-transition-delay: 0.1s;
  transition-delay: 0.1s;
}
#gsf-popup-login-wrapper .modal-content,
#gsf-popup-mailchimp-wrapper .modal-content {
  -webkit-transform: scale(0);
  -moz-transform: scale(0);
  -ms-transform: scale(0);
  -o-transform: scale(0);
  transform: scale(0);
  -webkit-transition: 0.5;
  -moz-transition: 0.5;
  -ms-transition: 0.5;
  -o-transition: 0.5;
  transition: 0.5;
}
#gsf-popup-login-wrapper.in .modal-content,
#gsf-popup-mailchimp-wrapper.in .modal-content {
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
}
.tooltip {
  -webkit-transition: opacity 0.3s ease, -webkit-transform 0.3s cubic-bezier(0.71, 1.7, 0.77, 1.24);
  -moz-transition: opacity 0.3s ease, -moz-transform 0.3s cubic-bezier(0.71, 1.7, 0.77, 1.24);
  transition: opacity 0.3s ease, transform 0.3s cubic-bezier(0.71, 1.7, 0.77, 1.24);
}
.tooltip.top {
  -webkit-transform: translateY(5px);
  -moz-transform: translateY(5px);
  -ms-transform: translateY(5px);
  -o-transform: translateY(5px);
  transform: translateY(5px);
}
.tooltip.top.in {
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  transform: translateY(0);
}
.tooltip.bottom {
  -webkit-transform: translateY(-5px);
  -moz-transform: translateY(-5px);
  -ms-transform: translateY(-5px);
  -o-transform: translateY(-5px);
  transform: translateY(-5px);
}
.tooltip.bottom.in {
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  transform: translateY(0);
}
.tooltip.left {
  -webkit-transform: translateX(5px);
  -moz-transform: translateX(5px);
  -ms-transform: translateX(5px);
  -o-transform: translateX(5px);
  transform: translateX(5px);
}
.tooltip.left.in {
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
  transform: translateX(0);
}
.tooltip.right {
  -webkit-transform: translateX(-5px);
  -moz-transform: translateX(-5px);
  -ms-transform: translateX(-5px);
  -o-transform: translateX(-5px);
  transform: translateX(-5px);
}
.tooltip.right.in {
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
  transform: translateX(0);
}
.gsf-col-base {
  width: 1.666666666666667%;
  height: 0 !important;
  overflow: hidden !important;
  padding: 0 !important;
}
.gf-page-title {
  background-color: #ebebeb;
}
.page-title-inner {
  padding: 15px 0;
}
.page-title-inner .gf-title-container {
  margin-bottom: 10px;
}
.page-title-inner .gf-title-container h1 {
  margin: 0;
  font-size: 40px;
  text-transform: capitalize;
}
ul.gf-breadcrumbs {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 13px;
  color: #acacac;
}
ul.gf-breadcrumbs li {
  display: inline-block;
}
ul.gf-breadcrumbs li.breadcrumb-prefix {
  margin-right: 5px;
}
ul.gf-breadcrumbs li.breadcrumb-sep {
  margin: 0 5px;
}
ul.gf-breadcrumbs li.breadcrumb-sep:last-child {
  display: none;
}
.page-title-container h1 {
  text-transform: capitalize;
}
.wp-block-button__link,
input[type="submit"],
input[type="button"],
input[type="reset"],
.btn {
  display: inline-block;
  font-weight: 700;
  position: relative;
  text-align: center;
  vertical-align: middle;
  touch-action: manipulation;
  cursor: pointer;
  background-image: none;
  border: 1px solid transparent;
  text-transform: uppercase;
  padding: 9px 20px;
  font-size: 12px;
  line-height: 20px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.wp-block-button__link.btn-outline,
input[type="submit"].btn-outline,
input[type="button"].btn-outline,
input[type="reset"].btn-outline,
.btn.btn-outline {
  border-width: 2px;
  padding: 8px 20px;
}
.wp-block-button__link:hover,
input[type="submit"]:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
.btn:hover,
.wp-block-button__link:focus,
input[type="submit"]:focus,
input[type="button"]:focus,
input[type="reset"]:focus,
.btn:focus,
.wp-block-button__link.focus,
input[type="submit"].focus,
input[type="button"].focus,
input[type="reset"].focus,
.btn.focus {
  text-decoration: none;
}
.wp-block-button__link:active,
input[type="submit"]:active,
input[type="button"]:active,
input[type="reset"]:active,
.btn:active,
.wp-block-button__link.active,
input[type="submit"].active,
input[type="button"].active,
input[type="reset"].active,
.btn.active {
  outline: 0;
  background-image: none;
}
.wp-block-button__link.disabled,
input[type="submit"].disabled,
input[type="button"].disabled,
input[type="reset"].disabled,
.btn.disabled,
.wp-block-button__link[disabled],
input[type="submit"][disabled],
input[type="button"][disabled],
input[type="reset"][disabled],
.btn[disabled],
fieldset[disabled] .wp-block-button__link,
fieldset[disabled] input[type="submit"],
fieldset[disabled] input[type="button"],
fieldset[disabled] input[type="reset"],
fieldset[disabled] .btn {
  cursor: not-allowed;
  -webkit-opacity: 0.65;
  -moz-opacity: 0.65;
  opacity: 0.65;
}
.wp-block-button__link:not(.has-background):not(.has-text-color),
input[type="submit"],
input[type="button"],
input[type="reset"] {
  color: #ffffff;
  background-color: #e1757d;
  border-color: #e1757d;
}
.wp-block-button__link:not(.has-background):not(.has-text-color):focus,
input[type="submit"]:focus,
input[type="button"]:focus,
input[type="reset"]:focus,
.wp-block-button__link:not(.has-background):not(.has-text-color):hover,
input[type="submit"]:hover,
input[type="button"]:hover,
input[type="reset"]:hover {
  color: #ffffff;
  background-color: #2a2d2e;
  border-color: #2a2d2e;
}
.wp-block-button__link:not(.has-background):not(.has-text-color).disabled:hover,
input[type="submit"].disabled:hover,
input[type="button"].disabled:hover,
input[type="reset"].disabled:hover,
.wp-block-button__link:not(.has-background):not(.has-text-color)[disabled]:hover,
input[type="submit"][disabled]:hover,
input[type="button"][disabled]:hover,
input[type="reset"][disabled]:hover,
fieldset[disabled] .wp-block-button__link:not(.has-background):not(.has-text-color):hover,
fieldset[disabled] input[type="submit"]:hover,
fieldset[disabled] input[type="button"]:hover,
fieldset[disabled] input[type="reset"]:hover,
.wp-block-button__link:not(.has-background):not(.has-text-color).disabled:focus,
input[type="submit"].disabled:focus,
input[type="button"].disabled:focus,
input[type="reset"].disabled:focus,
.wp-block-button__link:not(.has-background):not(.has-text-color)[disabled]:focus,
input[type="submit"][disabled]:focus,
input[type="button"][disabled]:focus,
input[type="reset"][disabled]:focus,
fieldset[disabled] .wp-block-button__link:not(.has-background):not(.has-text-color):focus,
fieldset[disabled] input[type="submit"]:focus,
fieldset[disabled] input[type="button"]:focus,
fieldset[disabled] input[type="reset"]:focus,
.wp-block-button__link:not(.has-background):not(.has-text-color).disabled.focus,
input[type="submit"].disabled.focus,
input[type="button"].disabled.focus,
input[type="reset"].disabled.focus,
.wp-block-button__link:not(.has-background):not(.has-text-color)[disabled].focus,
input[type="submit"][disabled].focus,
input[type="button"][disabled].focus,
input[type="reset"][disabled].focus,
fieldset[disabled] .wp-block-button__link:not(.has-background):not(.has-text-color).focus,
fieldset[disabled] input[type="submit"].focus,
fieldset[disabled] input[type="button"].focus,
fieldset[disabled] input[type="reset"].focus {
  background-color: #e1757d;
  border-color: #e1757d;
}
.wp-block-button__link:not(.has-background):not(.has-text-color).btn-3d,
input[type="submit"].btn-3d,
input[type="button"].btn-3d,
input[type="reset"].btn-3d {
  top: 0;
  -webkit-box-shadow: 0 5px 0 #d84b56;
  -moz-box-shadow: 0 5px 0 #d84b56;
  box-shadow: 0 5px 0 #d84b56;
}
.wp-block-button__link:not(.has-background):not(.has-text-color).btn-3d:focus,
input[type="submit"].btn-3d:focus,
input[type="button"].btn-3d:focus,
input[type="reset"].btn-3d:focus,
.wp-block-button__link:not(.has-background):not(.has-text-color).btn-3d:hover,
input[type="submit"].btn-3d:hover,
input[type="button"].btn-3d:hover,
input[type="reset"].btn-3d:hover {
  top: 3px;
  -webkit-box-shadow: 0 2px 0 #d84b56;
  -moz-box-shadow: 0 2px 0 #d84b56;
  box-shadow: 0 2px 0 #d84b56;
  color: #ffffff;
  background-color: #e1757d;
  border-color: #e1757d;
}
.wp-block-button:not(.is-style-outline) .wp-block-button__link:hover,
.wp-block-button:not(.is-style-outline) .wp-block-button__link:focus,
.wp-block-button:not(.is-style-outline) .wp-block-button__link:active {
  color: #fff;
  background-color: #333;
  border-color: #333;
}
.wp-block-button:not(.is-style-outline) .wp-block-button__link.has-background,
.wp-block-button:not(.is-style-outline) .wp-block-button__link.has-text-color {
  border-color: transparent;
}
.wp-block-button.is-style-outline .wp-block-button__link {
  background: transparent !important;
  border: 2px solid currentcolor;
  color: #e1757d;
}
.wp-block-button.is-style-outline .wp-block-button__link:hover,
.wp-block-button.is-style-outline .wp-block-button__link:focus,
.wp-block-button.is-style-outline .wp-block-button__link:active {
  color: #e1757d;
}
.wp-block-button.is-style-outline .wp-block-button__link:not(.has-text-color):hover,
.wp-block-button.is-style-outline .wp-block-button__link:not(.has-text-color):focus,
.wp-block-button.is-style-outline .wp-block-button__link:not(.has-text-color):active {
  color: #333;
}
a.btn.disabled,
fieldset[disabled] a.btn {
  pointer-events: none;
}
.btn-block {
  display: block;
  width: 100%;
}
.btn.btn-xs {
  padding: 4px 20px;
  font-size: 12px;
  line-height: 20px;
}
.btn.btn-xs.btn-outline {
  border-width: 2px;
  padding: 3px 20px;
}
.btn.btn-sm {
  padding: 7px 20px;
  font-size: 12px;
  line-height: 20px;
}
.btn.btn-sm.btn-outline {
  border-width: 2px;
  padding: 6px 20px;
}
.btn.btn-md {
  padding: 10px 30px;
  font-size: 12px;
  line-height: 20px;
}
.btn.btn-md.btn-outline {
  border-width: 2px;
  padding: 9px 30px;
}
.btn.btn-lg {
  padding: 13px 35px;
  font-size: 14px;
  line-height: 20px;
}
.btn.btn-lg.btn-outline {
  border-width: 2px;
  padding: 12px 35px;
}
.btn.btn-xl {
  padding: 16px 40px;
  font-size: 14px;
  line-height: 20px;
}
.btn.btn-xl.btn-outline {
  border-width: 2px;
  padding: 15px 40px;
}
.btn.btn-xxl {
  padding: 19px 45px;
  font-size: 14px;
  line-height: 20px;
}
.btn.btn-xxl.btn-outline {
  border-width: 2px;
  padding: 18px 45px;
}
.wp-block-button:not(.is-style-squared) .wp-block-button__link,
.btn.btn-round {
  -webkit-border-radius: 2em;
  -moz-border-radius: 2em;
  border-radius: 2em;
}
.btn.btn-rounded {
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
}
.btn.btn-inline {
  display: inline-block;
  vertical-align: top;
}
.btn.btn-icon-left > i {
  margin-right: 10px;
}
.btn.btn-icon-right > i {
  margin-left: 10px;
}
.btn.btn-accent {
  color: #ffffff;
  background-color: #e1757d;
  border-color: #e1757d;
}
.btn.btn-accent:focus,
.btn.btn-accent:hover {
  color: #ffffff;
  background-color: #2a2d2e;
  border-color: #2a2d2e;
}
.btn.btn-accent.disabled:hover,
.btn.btn-accent[disabled]:hover,
fieldset[disabled] .btn.btn-accent:hover,
.btn.btn-accent.disabled:focus,
.btn.btn-accent[disabled]:focus,
fieldset[disabled] .btn.btn-accent:focus,
.btn.btn-accent.disabled.focus,
.btn.btn-accent[disabled].focus,
fieldset[disabled] .btn.btn-accent.focus {
  background-color: #e1757d;
  border-color: #e1757d;
}
.btn.btn-accent.btn-3d {
  top: 0;
  -webkit-box-shadow: 0 5px 0 #d84b56;
  -moz-box-shadow: 0 5px 0 #d84b56;
  box-shadow: 0 5px 0 #d84b56;
}
.btn.btn-accent.btn-3d:focus,
.btn.btn-accent.btn-3d:hover {
  top: 3px;
  -webkit-box-shadow: 0 2px 0 #d84b56;
  -moz-box-shadow: 0 2px 0 #d84b56;
  box-shadow: 0 2px 0 #d84b56;
  color: #ffffff;
  background-color: #e1757d;
  border-color: #e1757d;
}
.btn.btn-accent.btn-outline {
  color: #e1757d;
  background-color: transparent;
  border-color: #e1757d;
}
.btn.btn-accent.btn-outline:focus,
.btn.btn-accent.btn-outline:hover {
  color: #ffffff;
  background-color: #e1757d;
  border-color: #e1757d;
}
.btn.btn-accent.btn-outline.disabled:hover,
.btn.btn-accent.btn-outline[disabled]:hover,
fieldset[disabled] .btn.btn-accent.btn-outline:hover,
.btn.btn-accent.btn-outline.disabled:focus,
.btn.btn-accent.btn-outline[disabled]:focus,
fieldset[disabled] .btn.btn-accent.btn-outline:focus,
.btn.btn-accent.btn-outline.disabled.focus,
.btn.btn-accent.btn-outline[disabled].focus,
fieldset[disabled] .btn.btn-accent.btn-outline.focus {
  background-color: transparent;
  border-color: #e1757d;
}
.btn.btn-accent.btn-outline.btn-3d {
  top: 0;
  -webkit-box-shadow: 0 5px 0 rgba(0, 0, 0, 0);
  -moz-box-shadow: 0 5px 0 rgba(0, 0, 0, 0);
  box-shadow: 0 5px 0 rgba(0, 0, 0, 0);
}
.btn.btn-accent.btn-outline.btn-3d:focus,
.btn.btn-accent.btn-outline.btn-3d:hover {
  top: 3px;
  -webkit-box-shadow: 0 2px 0 rgba(0, 0, 0, 0);
  -moz-box-shadow: 0 2px 0 rgba(0, 0, 0, 0);
  box-shadow: 0 2px 0 rgba(0, 0, 0, 0);
  color: #e1757d;
  background-color: transparent;
  border-color: #e1757d;
}
.btn.btn-white {
  color: #333333;
  background-color: #ffffff;
  border-color: #333333;
}
.btn.btn-white:focus,
.btn.btn-white:hover {
  color: #ffffff;
  background-color: #333333;
  border-color: #333333;
}
.btn.btn-white.disabled:hover,
.btn.btn-white[disabled]:hover,
fieldset[disabled] .btn.btn-white:hover,
.btn.btn-white.disabled:focus,
.btn.btn-white[disabled]:focus,
fieldset[disabled] .btn.btn-white:focus,
.btn.btn-white.disabled.focus,
.btn.btn-white[disabled].focus,
fieldset[disabled] .btn.btn-white.focus {
  background-color: #ffffff;
  border-color: #333333;
}
.btn.btn-white.btn-3d {
  top: 0;
  -webkit-box-shadow: 0 5px 0 #e6e6e6;
  -moz-box-shadow: 0 5px 0 #e6e6e6;
  box-shadow: 0 5px 0 #e6e6e6;
}
.btn.btn-white.btn-3d:focus,
.btn.btn-white.btn-3d:hover {
  top: 3px;
  -webkit-box-shadow: 0 2px 0 #e6e6e6;
  -moz-box-shadow: 0 2px 0 #e6e6e6;
  box-shadow: 0 2px 0 #e6e6e6;
  color: #333333;
  background-color: #ffffff;
  border-color: #333333;
}
.btn.btn-white.btn-outline {
  color: #333333;
  background-color: transparent;
  border-color: #333333;
}
.btn.btn-white.btn-outline:focus,
.btn.btn-white.btn-outline:hover {
  color: #ffffff;
  background-color: #333333;
  border-color: #333333;
}
.btn.btn-white.btn-outline.disabled:hover,
.btn.btn-white.btn-outline[disabled]:hover,
fieldset[disabled] .btn.btn-white.btn-outline:hover,
.btn.btn-white.btn-outline.disabled:focus,
.btn.btn-white.btn-outline[disabled]:focus,
fieldset[disabled] .btn.btn-white.btn-outline:focus,
.btn.btn-white.btn-outline.disabled.focus,
.btn.btn-white.btn-outline[disabled].focus,
fieldset[disabled] .btn.btn-white.btn-outline.focus {
  background-color: transparent;
  border-color: #333333;
}
.btn.btn-white.btn-outline.btn-3d {
  top: 0;
  -webkit-box-shadow: 0 5px 0 rgba(0, 0, 0, 0);
  -moz-box-shadow: 0 5px 0 rgba(0, 0, 0, 0);
  box-shadow: 0 5px 0 rgba(0, 0, 0, 0);
}
.btn.btn-white.btn-outline.btn-3d:focus,
.btn.btn-white.btn-outline.btn-3d:hover {
  top: 3px;
  -webkit-box-shadow: 0 2px 0 rgba(0, 0, 0, 0);
  -moz-box-shadow: 0 2px 0 rgba(0, 0, 0, 0);
  box-shadow: 0 2px 0 rgba(0, 0, 0, 0);
  color: #333333;
  background-color: transparent;
  border-color: #333333;
}
.btn.btn-gray {
  color: #333333;
  background-color: #f8f8f8;
  border-color: #cacaca;
}
.btn.btn-gray:focus,
.btn.btn-gray:hover {
  color: #f8f8f8;
  background-color: #333333;
  border-color: #333333;
}
.btn.btn-gray.disabled:hover,
.btn.btn-gray[disabled]:hover,
fieldset[disabled] .btn.btn-gray:hover,
.btn.btn-gray.disabled:focus,
.btn.btn-gray[disabled]:focus,
fieldset[disabled] .btn.btn-gray:focus,
.btn.btn-gray.disabled.focus,
.btn.btn-gray[disabled].focus,
fieldset[disabled] .btn.btn-gray.focus {
  background-color: #f8f8f8;
  border-color: #cacaca;
}
.btn.btn-gray.btn-3d {
  top: 0;
  -webkit-box-shadow: 0 5px 0 #dfdfdf;
  -moz-box-shadow: 0 5px 0 #dfdfdf;
  box-shadow: 0 5px 0 #dfdfdf;
}
.btn.btn-gray.btn-3d:focus,
.btn.btn-gray.btn-3d:hover {
  top: 3px;
  -webkit-box-shadow: 0 2px 0 #dfdfdf;
  -moz-box-shadow: 0 2px 0 #dfdfdf;
  box-shadow: 0 2px 0 #dfdfdf;
  color: #333333;
  background-color: #f8f8f8;
  border-color: #cacaca;
}
.btn.btn-gray.btn-outline {
  color: #333333;
  background-color: transparent;
  border-color: #cacaca;
}
.btn.btn-gray.btn-outline:focus,
.btn.btn-gray.btn-outline:hover {
  color: #f8f8f8;
  background-color: #333333;
  border-color: #333333;
}
.btn.btn-gray.btn-outline.disabled:hover,
.btn.btn-gray.btn-outline[disabled]:hover,
fieldset[disabled] .btn.btn-gray.btn-outline:hover,
.btn.btn-gray.btn-outline.disabled:focus,
.btn.btn-gray.btn-outline[disabled]:focus,
fieldset[disabled] .btn.btn-gray.btn-outline:focus,
.btn.btn-gray.btn-outline.disabled.focus,
.btn.btn-gray.btn-outline[disabled].focus,
fieldset[disabled] .btn.btn-gray.btn-outline.focus {
  background-color: transparent;
  border-color: #cacaca;
}
.btn.btn-gray.btn-outline.btn-3d {
  top: 0;
  -webkit-box-shadow: 0 5px 0 rgba(0, 0, 0, 0);
  -moz-box-shadow: 0 5px 0 rgba(0, 0, 0, 0);
  box-shadow: 0 5px 0 rgba(0, 0, 0, 0);
}
.btn.btn-gray.btn-outline.btn-3d:focus,
.btn.btn-gray.btn-outline.btn-3d:hover {
  top: 3px;
  -webkit-box-shadow: 0 2px 0 rgba(0, 0, 0, 0);
  -moz-box-shadow: 0 2px 0 rgba(0, 0, 0, 0);
  box-shadow: 0 2px 0 rgba(0, 0, 0, 0);
  color: #333333;
  background-color: transparent;
  border-color: #cacaca;
}
.btn.btn-red {
  color: #ffffff;
  background-color: #e14e42;
  border-color: #e14e42;
}
.btn.btn-red:focus,
.btn.btn-red:hover {
  color: #ffffff;
  background-color: #e1757d;
  border-color: #e1757d;
}
.btn.btn-red.disabled:hover,
.btn.btn-red[disabled]:hover,
fieldset[disabled] .btn.btn-red:hover,
.btn.btn-red.disabled:focus,
.btn.btn-red[disabled]:focus,
fieldset[disabled] .btn.btn-red:focus,
.btn.btn-red.disabled.focus,
.btn.btn-red[disabled].focus,
fieldset[disabled] .btn.btn-red.focus {
  background-color: #e14e42;
  border-color: #e14e42;
}
.btn.btn-red.btn-3d {
  top: 0;
  -webkit-box-shadow: 0 5px 0 #cf2e21;
  -moz-box-shadow: 0 5px 0 #cf2e21;
  box-shadow: 0 5px 0 #cf2e21;
}
.btn.btn-red.btn-3d:focus,
.btn.btn-red.btn-3d:hover {
  top: 3px;
  -webkit-box-shadow: 0 2px 0 #cf2e21;
  -moz-box-shadow: 0 2px 0 #cf2e21;
  box-shadow: 0 2px 0 #cf2e21;
  color: #ffffff;
  background-color: #e14e42;
  border-color: #e14e42;
}
.btn.btn-red.btn-outline {
  color: #e14e42;
  background-color: transparent;
  border-color: #e14e42;
}
.btn.btn-red.btn-outline:focus,
.btn.btn-red.btn-outline:hover {
  color: #ffffff;
  background-color: #e14e42;
  border-color: #e14e42;
}
.btn.btn-red.btn-outline.disabled:hover,
.btn.btn-red.btn-outline[disabled]:hover,
fieldset[disabled] .btn.btn-red.btn-outline:hover,
.btn.btn-red.btn-outline.disabled:focus,
.btn.btn-red.btn-outline[disabled]:focus,
fieldset[disabled] .btn.btn-red.btn-outline:focus,
.btn.btn-red.btn-outline.disabled.focus,
.btn.btn-red.btn-outline[disabled].focus,
fieldset[disabled] .btn.btn-red.btn-outline.focus {
  background-color: transparent;
  border-color: #e14e42;
}
.btn.btn-red.btn-outline.btn-3d {
  top: 0;
  -webkit-box-shadow: 0 5px 0 rgba(0, 0, 0, 0);
  -moz-box-shadow: 0 5px 0 rgba(0, 0, 0, 0);
  box-shadow: 0 5px 0 rgba(0, 0, 0, 0);
}
.btn.btn-red.btn-outline.btn-3d:focus,
.btn.btn-red.btn-outline.btn-3d:hover {
  top: 3px;
  -webkit-box-shadow: 0 2px 0 rgba(0, 0, 0, 0);
  -moz-box-shadow: 0 2px 0 rgba(0, 0, 0, 0);
  box-shadow: 0 2px 0 rgba(0, 0, 0, 0);
  color: #e14e42;
  background-color: transparent;
  border-color: #e14e42;
}
.btn.btn-black {
  color: #ffffff;
  background-color: #000000;
  border-color: #000000;
}
.btn.btn-black:focus,
.btn.btn-black:hover {
  color: #ffffff;
  background-color: #e1757d;
  border-color: #e1757d;
}
.btn.btn-black.disabled:hover,
.btn.btn-black[disabled]:hover,
fieldset[disabled] .btn.btn-black:hover,
.btn.btn-black.disabled:focus,
.btn.btn-black[disabled]:focus,
fieldset[disabled] .btn.btn-black:focus,
.btn.btn-black.disabled.focus,
.btn.btn-black[disabled].focus,
fieldset[disabled] .btn.btn-black.focus {
  background-color: #000000;
  border-color: #000000;
}
.btn.btn-black.btn-3d {
  top: 0;
  -webkit-box-shadow: 0 5px 0 #000000;
  -moz-box-shadow: 0 5px 0 #000000;
  box-shadow: 0 5px 0 #000000;
}
.btn.btn-black.btn-3d:focus,
.btn.btn-black.btn-3d:hover {
  top: 3px;
  -webkit-box-shadow: 0 2px 0 #000000;
  -moz-box-shadow: 0 2px 0 #000000;
  box-shadow: 0 2px 0 #000000;
  color: #ffffff;
  background-color: #000000;
  border-color: #000000;
}
.btn.btn-black.btn-outline {
  color: #000000;
  background-color: transparent;
  border-color: #000000;
}
.btn.btn-black.btn-outline:focus,
.btn.btn-black.btn-outline:hover {
  color: #ffffff;
  background-color: #e1757d;
  border-color: #e1757d;
}
.btn.btn-black.btn-outline.disabled:hover,
.btn.btn-black.btn-outline[disabled]:hover,
fieldset[disabled] .btn.btn-black.btn-outline:hover,
.btn.btn-black.btn-outline.disabled:focus,
.btn.btn-black.btn-outline[disabled]:focus,
fieldset[disabled] .btn.btn-black.btn-outline:focus,
.btn.btn-black.btn-outline.disabled.focus,
.btn.btn-black.btn-outline[disabled].focus,
fieldset[disabled] .btn.btn-black.btn-outline.focus {
  background-color: transparent;
  border-color: #000000;
}
.btn.btn-black.btn-outline.btn-3d {
  top: 0;
  -webkit-box-shadow: 0 5px 0 rgba(0, 0, 0, 0);
  -moz-box-shadow: 0 5px 0 rgba(0, 0, 0, 0);
  box-shadow: 0 5px 0 rgba(0, 0, 0, 0);
}
.btn.btn-black.btn-outline.btn-3d:focus,
.btn.btn-black.btn-outline.btn-3d:hover {
  top: 3px;
  -webkit-box-shadow: 0 2px 0 rgba(0, 0, 0, 0);
  -moz-box-shadow: 0 2px 0 rgba(0, 0, 0, 0);
  box-shadow: 0 2px 0 rgba(0, 0, 0, 0);
  color: #000000;
  background-color: transparent;
  border-color: #000000;
}
.btn-container.btn-inline {
  display: inline-block;
}
ul.gf-social-icon {
  font-size: 18px;
  padding-left: 0;
}
ul.gf-social-icon > li {
  margin: 0 30px 9px 0;
  display: inline-block;
}
ul.social-icon-circle > li > a {
  width: 39px;
  height: 39px;
  text-align: center;
  display: block;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  color: #fff;
  position: relative;
}
ul.social-icon-circle > li > a > i {
  line-height: 39px;
}
ul.social-icon-square > li > a {
  display: inline-block;
  border: 1px solid #ebebeb;
  font-weight: bold;
  width: 75px;
  height: 40px;
  text-align: center;
  line-height: 40px;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}
ul.social-icon-square > li > a i {
  line-height: 38px;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}
ul.social-icon-circle-outline > li > a {
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  display: block;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  border: 1px solid #ebebeb;
  font-size: 14px;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}
/**
 * 3.0 - Typography
 * ----------------------------------------------------------------------------
 */
body {
  font-family: 'Josefin Sans';
  -webkit-font-smoothing: antialiased;
  font-size: 18px;
  font-weight: 400;
  font-style: normal;
  color: #555555;
  position: relative;
  line-height: 1.33;
}
img {
  max-width: 100%;
  height: auto;
}
a {
  color: inherit;
}
a {
  outline: none;
  text-decoration: none;
  color: inherit;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
a:hover,
a:focus,
a:active {
  text-decoration: none !important;
}
a:hover,
a:focus {
  color: #e1757d;
  outline: none;
  text-decoration: underline;
}
iframe {
  max-width: 100%;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.3;
  margin-top: 35px;
  margin-bottom: 15px;
}
h1 > a,
h2 > a,
h3 > a,
h4 > a,
h5 > a,
h6 > a {
  color: inherit;
}
h1 > a:hover,
h2 > a:hover,
h3 > a:hover,
h4 > a:hover,
h5 > a:hover,
h6 > a:hover,
h1 > a:focus,
h2 > a:focus,
h3 > a:focus,
h4 > a:focus,
h5 > a:focus,
h6 > a:focus,
h1 > a:active,
h2 > a:active,
h3 > a:active,
h4 > a:active,
h5 > a:active,
h6 > a:active {
  text-decoration: none !important;
}
h1 {
  font-family: 'Oswald';
  font-size: 36px;
  font-weight: 700;
  font-style: normal;
}
h2 {
  font-family: 'Oswald';
  font-size: 30px;
  font-weight: 700;
  font-style: normal;
}
h3 {
  font-family: 'Oswald';
  font-size: 24px;
  font-weight: 700;
  font-style: normal;
}
h4 {
  font-family: 'Oswald';
  font-size: 20px;
  font-weight: 700;
  font-style: normal;
}
h5 {
  font-family: 'Oswald';
  font-size: 16px;
  font-weight: 700;
  font-style: normal;
}
h6 {
  font-family: 'Oswald';
  font-size: 14px;
  font-weight: 700;
  font-style: normal;
}
p {
  margin: 0 0 20px 0;
}
input,
textarea,
button,
select {
  outline: none;
}
::-moz-selection {
  background-color: #e1757d;
  color: #ffffff;
}
::selection {
  background-color: #e1757d;
  color: #ffffff;
}
.alignright {
  margin: 5px 0 20px 20px;
  float: right;
}
.alignleft {
  margin: 5px 20px 15px 0;
  float: left;
}
.gf-entry-content h1,
.gf-entry-content h2,
.gf-entry-content h3,
.gf-entry-content h4,
.gf-entry-content h5,
.gf-entry-content h6,
.gf-entry-content p,
.gf-entry-content hr,
.gf-entry-content dl,
.gf-entry-content blockquote,
.gf-entry-content table,
.gf-entry-content ul,
.gf-entry-content ol,
.gf-entry-content address,
.gf-entry-content pre,
.gf-entry-content figure {
  margin-bottom: 20px;
}
.gf-entry-content h1:last-child,
.gf-entry-content h2:last-child,
.gf-entry-content h3:last-child,
.gf-entry-content h4:last-child,
.gf-entry-content h5:last-child,
.gf-entry-content h6:last-child,
.gf-entry-content p:last-child,
.gf-entry-content hr:last-child,
.gf-entry-content dl:last-child,
.gf-entry-content blockquote:last-child,
.gf-entry-content table:last-child,
.gf-entry-content ul:last-child,
.gf-entry-content ol:last-child,
.gf-entry-content address:last-child,
.gf-entry-content pre:last-child,
.gf-entry-content figure:last-child {
  margin-bottom: 0;
}
.gf-entry-content iframe {
  max-width: 100%;
}
.gf-entry-content hr {
  margin-top: 20px;
  border-top: 1px solid #ebebeb;
  clear: both;
}
.gf-entry-content table {
  border: 1px solid #ebebeb;
}
.gf-entry-content td,
.gf-entry-content th {
  padding: 8px;
  border: 1px solid #ebebeb;
  vertical-align: top;
}
.gf-entry-content thead th {
  font-weight: bold;
  vertical-align: bottom;
  color: #252525;
  background-color: #f7f7f7;
}
.gf-entry-content thead:first-child > tr:first-child > td,
.gf-entry-content thead:first-child > tr:first-child > th {
  border-top: none;
}
.gf-entry-content dt,
.gf-entry-content dd {
  line-height: 2;
}
.gf-entry-content dd {
  margin-bottom: 15px;
}
.gf-entry-content ul,
.gf-entry-content ol {
  padding-left: 30px;
}
.gf-entry-content li {
  line-height: 1.8;
}
.gf-entry-content li > ul,
.gf-entry-content li > ol {
  margin-bottom: 0;
}
.gf-entry-content address {
  line-height: 1.8;
  font-style: italic;
}
.gf-entry-content .wp-block-code,
.gf-entry-content pre {
  padding: 15px;
  background-color: #f7f7f7;
  color: #252525;
  border-color: #ebebeb;
}
.gf-entry-content label {
  vertical-align: top;
}
.gf-entry-content figure,
.gf-entry-content img {
  max-width: 100%;
  height: auto;
}
.gf-entry-content img.aligncenter {
  display: block;
  margin: 15px auto 25px;
}
.gf-entry-content figure.aligncenter {
  margin: 20px auto;
}
.gf-entry-content figure.aligncenter img {
  display: inline-block;
}
.gf-entry-content .wp-caption-text,
.gf-entry-content figcaption {
  font-size: 13px;
  margin-top: 0.5em;
  margin-bottom: 1em;
  text-align: center;
}
.gf-entry-content .gallery-caption {
  background-color: transparent !important;
  border: none;
  padding: 0;
  text-align: center;
}
.gf-entry-content blockquote:not(.is-large):not(.is-style-large) {
  border-left: 4px solid;
  padding-left: 1em;
  border-color: #252525;
}
.gf-entry-content .wp-block-quote cite,
.gf-entry-content .wp-block-quote footer,
.gf-entry-content .wp-block-quote__citation {
  color: #555555;
}
.gf-entry-content .twitter-tweet {
  width: 100% !important;
}
.gf-entry-content .gallery {
  margin: 0 -5px 10px -5px;
}
.gf-entry-content .gallery-item {
  margin: 0 0 10px 0;
  padding: 0 5px;
  display: inline-block;
  text-align: center;
  vertical-align: top;
  max-width: 33.33%;
  width: 100%;
}
.gf-entry-content .gallery-icon img {
  margin: 0 auto;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
  border: 1px solid #ebebeb;
  padding: 5px;
}
.gf-entry-content .gallery-icon img:hover {
  border-color: #e1757d !important;
}
.gf-entry-content .gallery-columns-1 .gallery-item {
  max-width: 100%;
}
.gf-entry-content .gallery-columns-2 .gallery-item {
  max-width: 50%;
}
.gf-entry-content .gallery-columns-4 .gallery-item {
  max-width: 25%;
}
.gf-entry-content .gallery-columns-5 .gallery-item {
  max-width: 20%;
}
.gf-entry-content .gallery-columns-6 .gallery-item {
  max-width: 16.66%;
}
.gf-entry-content .gallery-columns-7 .gallery-item {
  max-width: 14.28%;
}
.gf-entry-content .gallery-columns-8 .gallery-item {
  max-width: 12.5%;
}
.gf-entry-content .gallery-columns-9 .gallery-item {
  max-width: 11.11%;
}
.gf-entry-content .gallery-columns-6 .gallery-caption,
.gf-entry-content .gallery-columns-7 .gallery-caption,
.gf-entry-content .gallery-columns-8 .gallery-caption,
.gf-entry-content .gallery-columns-9 .gallery-caption {
  display: none;
}
.gf-entry-content .page-links {
  float: left;
  width: 100%;
}
.gf-entry-content .page-links span {
  display: inline-block;
  line-height: 50px;
  height: 50px;
  min-width: 50px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  font-size: 14px;
  font-weight: 600;
  vertical-align: middle;
  text-align: center;
  text-transform: uppercase;
  color: #252525 !important;
}
.gf-entry-content .page-links span.page-links-title {
  color: #252525 !important;
  background-color: transparent !important;
}
.gf-entry-content .page-links > a:hover > span,
.gf-entry-content .page-links > a:focus > span,
.gf-entry-content .page-links > span {
  color: #e1757d !important;
}
.gf-entry-content .page-links > .page-link {
  background: #e1757d;
  color: #fff !important;
}
.gf-entry-content .bypostauthor,
.gf-entry-content .sticky {
  color: inherit;
}
.gf-entry-content ul.wp-block-gallery {
  padding: 0;
}
.gf-entry-content .wp-block-pullquote {
  border-top: 4px solid #252525;
  border-bottom: 4px solid #252525;
  color: #252525;
}
.gf-entry-content .wp-block-pullquote blockquote:not(.is-large):not(.is-style-large) {
  padding-left: 0;
  border-left: none;
}
.gf-entry-content .wp-block-table.is-style-stripes tr:nth-child(odd) {
  background-color: #f7f7f7;
}
.gf-entry-content .wp-block-table.is-style-stripes td {
  border-color: transparent;
}
/**
* 4.0 - Widget
* ----------------------------------------------------------------------------
*/
.widget .screen-reader-text {
  display: none;
}
.widget:after {
  content: '';
  clear: both;
  display: block;
}
.widget + .widget {
  margin-top: 40px;
}
/**
* Archive, categories, nav_menu
* ----------------------------------------------------------------------------
*/
.widget_archive ul,
.widget_categories ul,
.widget_nav_menu ul,
.widget_pages ul,
.widget_product_categories ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.widget_archive li,
.widget_categories li,
.widget_nav_menu li,
.widget_pages li,
.widget_product_categories li {
  padding: 0;
  margin: 0;
  line-height: 20px;
  position: relative;
}
.widget_archive .count,
.widget_categories .count,
.widget_nav_menu .count,
.widget_pages .count,
.widget_product_categories .count {
  display: none;
  margin-left: 5px;
}
.widget_archive li > a,
.widget_categories li > a,
.widget_nav_menu li > a,
.widget_pages li > a,
.widget_product_categories li > a {
  display: block;
  padding: 10px 0;
  color: inherit;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}
.widget_archive li + li,
.widget_categories li + li,
.widget_nav_menu li + li,
.widget_pages li + li,
.widget_product_categories li + li {
  border-top: 1px dashed #ebebeb;
}
.widget_archive li li > a,
.widget_categories li li > a,
.widget_nav_menu li li > a,
.widget_pages li li > a,
.widget_product_categories li li > a {
  padding-left: 50px;
}
.widget_archive li li li > a,
.widget_categories li li li > a,
.widget_nav_menu li li li > a,
.widget_pages li li li > a,
.widget_product_categories li li li > a {
  padding-left: 70px;
}
.widget_archive li li li li > a,
.widget_categories li li li li > a,
.widget_nav_menu li li li li > a,
.widget_pages li li li li > a,
.widget_product_categories li li li li > a {
  padding-left: 90px;
}
.widget_archive ul ul,
.widget_categories ul ul,
.widget_nav_menu ul ul,
.widget_pages ul ul,
.widget_product_categories ul ul {
  display: none;
  border-top: 1px solid #ebebeb;
}
.widget_archive .cat-caret,
.widget_categories .cat-caret,
.widget_nav_menu .cat-caret,
.widget_pages .cat-caret,
.widget_product_categories .cat-caret {
  position: absolute;
  right: 0;
  top: 0;
  cursor: pointer;
  font-size: 10px;
  width: 40px;
  height: 40px;
  text-align: center;
  line-height: 40px;
  color: #e1757d;
}
.widget_archive .cat-caret.in:before,
.widget_categories .cat-caret.in:before,
.widget_nav_menu .cat-caret.in:before,
.widget_pages .cat-caret.in:before,
.widget_product_categories .cat-caret.in:before {
  content: '\f068';
}
.widget_archive .current_page_item > a + ul + span,
.widget_categories .current_page_item > a + ul + span,
.widget_nav_menu .current_page_item > a + ul + span,
.widget_pages .current_page_item > a + ul + span,
.widget_product_categories .current_page_item > a + ul + span,
.widget_archive .current-cat > a + ul + span,
.widget_categories .current-cat > a + ul + span,
.widget_nav_menu .current-cat > a + ul + span,
.widget_pages .current-cat > a + ul + span,
.widget_product_categories .current-cat > a + ul + span,
.widget_archive .current-menu-item > a + ul + span,
.widget_categories .current-menu-item > a + ul + span,
.widget_nav_menu .current-menu-item > a + ul + span,
.widget_pages .current-menu-item > a + ul + span,
.widget_product_categories .current-menu-item > a + ul + span,
.widget_archive li > a:hover + ul + span,
.widget_categories li > a:hover + ul + span,
.widget_nav_menu li > a:hover + ul + span,
.widget_pages li > a:hover + ul + span,
.widget_product_categories li > a:hover + ul + span {
  color: #fff;
}
.widget_archive .current_page_ancestor > ul,
.widget_categories .current_page_ancestor > ul,
.widget_nav_menu .current_page_ancestor > ul,
.widget_pages .current_page_ancestor > ul,
.widget_product_categories .current_page_ancestor > ul,
.widget_archive .current_page_parent > ul,
.widget_categories .current_page_parent > ul,
.widget_nav_menu .current_page_parent > ul,
.widget_pages .current_page_parent > ul,
.widget_product_categories .current_page_parent > ul,
.widget_archive .current-cat-parent > ul,
.widget_categories .current-cat-parent > ul,
.widget_nav_menu .current-cat-parent > ul,
.widget_pages .current-cat-parent > ul,
.widget_product_categories .current-cat-parent > ul,
.widget_archive .current-cat-ancestor > ul,
.widget_categories .current-cat-ancestor > ul,
.widget_nav_menu .current-cat-ancestor > ul,
.widget_pages .current-cat-ancestor > ul,
.widget_product_categories .current-cat-ancestor > ul {
  display: block;
}
.widget_rss ul,
.widget_recent_entries ul,
.widget_meta ul {
  padding-left: 0;
  margin: 0;
  list-style: none;
}
.widget_rss li,
.widget_recent_entries li,
.widget_meta li {
  font-weight: bold;
  color: #252525;
}
.widget_rss li > a,
.widget_recent_entries li > a,
.widget_meta li > a {
  display: inline-block;
  padding-left: 30px;
  overflow: hidden;
  position: relative;
}
.widget_rss li > a:before,
.widget_recent_entries li > a:before,
.widget_meta li > a:before {
  content: '';
  display: inline-block;
  vertical-align: middle;
  width: 5px;
  height: 5px;
  background-color: #e1757d;
  float: left;
  position: relative;
  top: 9px;
  left: -25px;
}
.widget_rss li + li,
.widget_recent_entries li + li,
.widget_meta li + li {
  margin-top: 10px;
}
.widget_recent_comments ul {
  padding-left: 20px;
  margin: 0;
  list-style: none;
}
.widget_recent_comments li {
  padding-left: 20px;
  font-weight: bold;
  color: #252525;
  position: relative;
}
.widget_recent_comments li:before {
  content: '';
  display: inline-block;
  vertical-align: middle;
  width: 5px;
  height: 5px;
  background-color: #e1757d;
  float: left;
  position: relative;
  top: 9px;
  left: -25px;
}
.widget_recent_comments li + li {
  margin-top: 10px;
}
.widget_rss ul .rsswidget {
  display: block;
  font-weight: bold;
}
.widget_rss ul .rss-date {
  font-style: italic;
  font-size: 13px;
  margin: 5px 0;
  display: block;
}
.widget_archive select,
.widget_categories select {
  width: 100%;
}
.widget_calendar .calendar_wrap caption {
  text-transform: uppercase;
  font-weight: bold;
  font-size: 15px;
  padding: 15px;
  color: #555555;
  background-color: #f7f7f7;
  border: solid 1px #ebebeb;
  margin-bottom: 5px;
  text-align: center;
}
.widget_calendar #wp-calendar {
  width: 100%;
}
.widget_calendar #wp-calendar td.active,
.widget_calendar #wp-calendar th {
  background-color: #f7f7f7;
}
.widget_calendar #wp-calendar tbody td,
.widget_calendar #wp-calendar th {
  border: solid 1px #ebebeb;
  text-align: center;
  padding: 5px 0;
}
.widget_calendar #wp-calendar tfoot td {
  text-transform: uppercase;
  font-weight: bold;
  padding: 5px 0 0 0;
  font-size: 13px;
}
.widget_calendar #wp-calendar td#next {
  text-align: right;
}
.search-form {
  position: relative;
}
.search-form .search-field {
  width: 100%;
  padding-right: 100px;
}
.search-form .search-field:focus {
  border-color: #e1757d !important;
}
.search-form .search-submit {
  position: absolute;
  top: 0;
  right: 0;
  padding-top: 11px;
  padding-bottom: 7px;
  padding-left: 19px;
  padding-right: 19px;
  background: #e1757d;
  color: #fff;
}
.search-form .search-submit i {
  display: none;
  line-height: inherit;
}
.search-form .search-submit:hover {
  background: #252525 !important;
}
.tagcloud {
  font-size: 0;
}
.tagcloud > a {
  display: inline-block;
  margin: 0 5px 5px 0;
  font-size: 12px !important;
  border: 1px solid #ebebeb;
  line-height: 20px;
  padding: 4px 7px;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}
.tagcloud > a:hover,
.tagcloud > a:focus {
  border-color: #e1757d !important;
  background-color: #e1757d !important;
  color: #ffffff !important;
}
.gf-sidebar-toggle {
  display: none;
}
@media (max-width: 991px) {
  .primary-sidebar {
    margin-top: 30px;
  }
  .gf-sidebar-canvas {
    margin-top: 0;
    position: fixed;
    -webkit-backface-visibility: visible;
    -moz-backface-visibility: visible;
    -o-backface-visibility: visible;
    -ms-backface-visibility: visible;
    backface-visibility: visible;
    top: 0;
    bottom: 0;
    width: 300px;
    z-index: 100000;
    left: 0;
    padding: 0;
    margin-left: -300px;
    -webkit-transition: margin 0.5s cubic-bezier(0.785, 0.135, 0.15, 0.86) 0.5s visibility 0.1s 1s;
    -moz-transition: margin 0.5s cubic-bezier(0.785, 0.135, 0.15, 0.86) 0.5s visibility 0.1s 1s;
    -ms-transition: margin 0.5s cubic-bezier(0.785, 0.135, 0.15, 0.86) 0.5s visibility 0.1s 1s;
    -o-transition: margin 0.5s cubic-bezier(0.785, 0.135, 0.15, 0.86) 0.5s visibility 0.1s 1s;
    transition: margin 0.5s cubic-bezier(0.785, 0.135, 0.15, 0.86) 0.5s visibility 0.1s 1s;
  }
  .gf-sidebar-canvas .primary-sidebar-inner {
    height: 100%;
    position: relative;
    padding: 0 30px;
    border-top: 30px solid transparent !important;
    border-bottom: 30px solid transparent !important;
    -webkit-transform: translateY(20px);
    -moz-transform: translateY(20px);
    -ms-transform: translateY(20px);
    -o-transform: translateY(20px);
    transform: translateY(20px);
    -webkit-opacity: 0;
    -moz-opacity: 0;
    opacity: 0;
    -webkit-transition: -webkit-transform 0.5s cubic-bezier(0.785, 0.135, 0.15, 0.86), opacity 0.5s cubic-bezier(0.785, 0.135, 0.15, 0.86);
    -moz-transition: -moz-transform 0.5s cubic-bezier(0.785, 0.135, 0.15, 0.86), opacity 0.5s cubic-bezier(0.785, 0.135, 0.15, 0.86);
    transition: transform 0.5s cubic-bezier(0.785, 0.135, 0.15, 0.86), opacity 0.5s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  }
  .gf-sidebar-canvas.in {
    margin-left: 0;
    -webkit-box-shadow: 5px 0px 7px -3px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 5px 0px 7px -3px rgba(0, 0, 0, 0.1);
    box-shadow: 5px 0px 7px -3px rgba(0, 0, 0, 0.1);
    -webkit-transition: margin 0.5s cubic-bezier(0.785, 0.135, 0.15, 0.86);
    -moz-transition: margin 0.5s cubic-bezier(0.785, 0.135, 0.15, 0.86);
    -ms-transition: margin 0.5s cubic-bezier(0.785, 0.135, 0.15, 0.86);
    -o-transition: margin 0.5s cubic-bezier(0.785, 0.135, 0.15, 0.86);
    transition: margin 0.5s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  }
  .gf-sidebar-canvas.in .primary-sidebar-inner {
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
    -webkit-transition: -webkit-transform 0.5s cubic-bezier(0.785, 0.135, 0.15, 0.86) 0.5s, opacity 0.5s 0.5s;
    -moz-transition: -moz-transform 0.5s cubic-bezier(0.785, 0.135, 0.15, 0.86) 0.5s, opacity 0.5s 0.5s;
    transition: transform 0.5s cubic-bezier(0.785, 0.135, 0.15, 0.86) 0.5s, opacity 0.5s 0.5s;
    -webkit-opacity: 1;
    -moz-opacity: 1;
    opacity: 1;
  }
  .gf-sidebar-toggle {
    position: absolute;
    top: 300px;
    left: 100%;
    display: block;
    height: 40px;
    width: 40px;
    background-color: #353535;
    color: #f7f7f7;
    text-align: center;
    line-height: 40px;
    font-size: 18px;
    border-radius: 0 4px 4px 0;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
  }
}
.gsf-field-select-inner select {
  width: 100%;
}
.widget-title {
  font-family: 'Josefin Sans';
  font-size: 18px;
  line-height: 24px;
  text-align: center;
  text-transform: uppercase;
  color: #e1757d !important;
  border-bottom: solid 1px #ebebeb;
  position: relative;
  margin-top: -5px;
  padding-bottom: 11px;
  margin-bottom: 30px;
}
.widget-title:after {
  content: '';
  display: block;
  height: 3px;
  width: 200px;
  background: #000;
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  margin: auto;
}
/**
* Search Form
* ----------------------------------------------------------------------------
*/
input[type="search"].search-field {
  font-size: 14px;
  height: 40px;
}
/**
* Archive, categories
* ----------------------------------------------------------------------------
*/
.widget_archive li,
.widget_categories li,
.widget_nav_menu li,
.widget_pages li,
.widget_product_categories li {
  font-weight: 700;
  color: #252525;
}
.widget_archive li > a,
.widget_categories li > a,
.widget_nav_menu li > a,
.widget_pages li > a,
.widget_product_categories li > a {
  padding-top: 12px;
  padding-bottom: 12px;
  background-color: transparent;
  text-decoration: none;
  padding-left: 30px;
  display: block;
  position: relative;
  overflow: hidden;
}
.widget_archive li > a:before,
.widget_categories li > a:before,
.widget_nav_menu li > a:before,
.widget_pages li > a:before,
.widget_product_categories li > a:before {
  content: '';
  display: inline-block;
  width: 5px;
  height: 5px;
  background: #e1757d;
  float: left;
  position: relative;
  top: 9px;
  left: -25px;
}
.widget_archive ul ul,
.widget_categories ul ul,
.widget_nav_menu ul ul,
.widget_pages ul ul,
.widget_product_categories ul ul,
.widget_archive li + li,
.widget_categories li + li,
.widget_nav_menu li + li,
.widget_pages li + li,
.widget_product_categories li + li {
  border-top-color: #ebebeb;
}
.widget_archive .cat-caret,
.widget_categories .cat-caret,
.widget_nav_menu .cat-caret,
.widget_pages .cat-caret,
.widget_product_categories .cat-caret {
  width: 50px;
  height: 50px;
  line-height: 50px;
}
.widget_archive .current_page_item > a,
.widget_categories .current_page_item > a,
.widget_nav_menu .current_page_item > a,
.widget_pages .current_page_item > a,
.widget_product_categories .current_page_item > a,
.widget_archive .current-cat > a,
.widget_categories .current-cat > a,
.widget_nav_menu .current-cat > a,
.widget_pages .current-cat > a,
.widget_product_categories .current-cat > a,
.widget_archive .current-menu-item > a,
.widget_categories .current-menu-item > a,
.widget_nav_menu .current-menu-item > a,
.widget_pages .current-menu-item > a,
.widget_product_categories .current-menu-item > a,
.widget_archive li > a:hover,
.widget_categories li > a:hover,
.widget_nav_menu li > a:hover,
.widget_pages li > a:hover,
.widget_product_categories li > a:hover {
  color: #e1757d;
}
.widget_archive .current_page_item > a + ul + span,
.widget_categories .current_page_item > a + ul + span,
.widget_nav_menu .current_page_item > a + ul + span,
.widget_pages .current_page_item > a + ul + span,
.widget_product_categories .current_page_item > a + ul + span,
.widget_archive .current-cat > a + ul + span,
.widget_categories .current-cat > a + ul + span,
.widget_nav_menu .current-cat > a + ul + span,
.widget_pages .current-cat > a + ul + span,
.widget_product_categories .current-cat > a + ul + span,
.widget_archive .current-menu-item > a + ul + span,
.widget_categories .current-menu-item > a + ul + span,
.widget_nav_menu .current-menu-item > a + ul + span,
.widget_pages .current-menu-item > a + ul + span,
.widget_product_categories .current-menu-item > a + ul + span,
.widget_archive li > a:hover + ul + span,
.widget_categories li > a:hover + ul + span,
.widget_nav_menu li > a:hover + ul + span,
.widget_pages li > a:hover + ul + span,
.widget_product_categories li > a:hover + ul + span {
  color: #e1757d;
}
.widget_archive .current_page_item > a:before,
.widget_categories .current_page_item > a:before,
.widget_nav_menu .current_page_item > a:before,
.widget_pages .current_page_item > a:before,
.widget_product_categories .current_page_item > a:before,
.widget_archive .current-cat > a:before,
.widget_categories .current-cat > a:before,
.widget_nav_menu .current-cat > a:before,
.widget_pages .current-cat > a:before,
.widget_product_categories .current-cat > a:before,
.widget_archive .current-menu-item > a:before,
.widget_categories .current-menu-item > a:before,
.widget_nav_menu .current-menu-item > a:before,
.widget_pages .current-menu-item > a:before,
.widget_product_categories .current-menu-item > a:before,
.widget_archive li > a:hover:before,
.widget_categories li > a:hover:before,
.widget_nav_menu li > a:hover:before,
.widget_pages li > a:hover:before,
.widget_product_categories li > a:hover:before {
  background-color: #e1757d;
}
.tagcloud > a {
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
}
/* Twitter */
.widget-twitter i {
  float: left;
  width: 36px;
  height: 36px;
  line-height: 36px;
  text-align: center;
  border-radius: 50%;
  background-color: #e1757d;
  margin-top: 20px;
  margin-right: 2px;
  font-size: 18px;
  color: #fff;
}
.widget-twitter .widget-twitter-item .twitter-content {
  overflow: hidden;
  font-size: 15px;
  padding: 22px 0 22px 10px;
  border-top: 1px solid #ebebeb;
  line-height: 2;
}
.widget-twitter .widget-twitter-item .twitter-content a {
  color: #e1757d;
}
.widget-twitter .widget-twitter-item:first-child .twitter-content {
  padding-top: 0;
  border: none;
}
.widget-twitter .widget-twitter-item:first-child i {
  margin-top: 0;
}
.widget-twitter .follow-us {
  width: 100%;
  padding-top: 10px;
  padding-bottom: 10px;
  margin-top: 18px;
  border-radius: 2px;
  font-size: 15px;
  letter-spacing: 0;
  text-transform: inherit;
  font-weight: 600;
}
.widget-twitter .follow-us:hover,
.widget-twitter .follow-us:focus {
  border: 1px solid #fff;
}
.widget-twitter .follow-us:before {
  content: "\f099";
  font-family: FontAwesome;
  display: inline-block;
  padding-right: 20px;
  vertical-align: middle;
  font-size: 18px;
}
.widget-twitter .follow-us:after {
  content: "\24";
  font-family: 'ElegantIcons';
  display: inline-block;
  vertical-align: middle;
  padding-left: 20px;
}
/*mailchimp*/
.g5plus-mailchimp {
  position: relative;
}
.g5plus-mailchimp .email {
  width: 100%;
  background: #fff !important;
  height: 48px;
  display: inline-block;
  padding-right: 150px;
  padding-left: 20px;
  color: #acacac;
  border: solid 1px;
  border-color: transparent !important;
}
.g5plus-mailchimp .email::-webkit-input-placeholder {
  color: #acacac;
}
.g5plus-mailchimp .email:-moz-placeholder {
  color: #acacac;
}
.g5plus-mailchimp .email::-moz-placeholder {
  color: #acacac;
}
.g5plus-mailchimp .email:-ms-input-placeholder {
  color: #acacac;
}
.g5plus-mailchimp .email:focus {
  border-color: #e1757d !important;
}
.g5plus-mailchimp .btn {
  position: absolute;
  right: 0;
  top: 0;
  font-family: 'Oswald';
  font-weight: 400;
  padding: 13px 35px;
}
.g5plus-mailchimp .btn-black {
  display: none;
}
.mailchimp-button-small .g5plus-mailchimp .btn {
  padding: 13px 15px;
}
.mailchimp-button-large .g5plus-mailchimp .btn {
  padding: 13px 73px;
}
.mailchimp-dark-button-accent .g5plus-mailchimp .email {
  background: #181818 !important;
}
.mailchimp-light-button-black .g5plus-mailchimp .btn-black {
  display: block;
}
.mailchimp-light-button-black .g5plus-mailchimp .btn-accent {
  display: none;
}
.mailchimp-black .g5plus-mailchimp .email {
  background: #181818 !important;
}
.mailchimp-black .g5plus-mailchimp .btn-black {
  display: block;
  margin: 5px;
  padding: 8px 35px;
}
.mailchimp-black .g5plus-mailchimp .btn-accent {
  display: none;
}
@media (max-width: 479px) {
  .g5plus-mailchimp .btn {
    position: inherit;
    right: auto;
    top: auto;
    margin-top: 15px;
    float: right;
  }
}
.review-wrapper {
  border: none;
  font-size: 0;
}
.review-wrapper * {
  border: none !important;
}
.review-wrapper .review-title,
.review-wrapper .review-list li {
  padding: 0;
}
.review-wrapper .review-title {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding-bottom: 28px;
  position: relative;
  margin-bottom: 0;
}
.review-wrapper .review-title:before {
  position: absolute;
  content: '';
  display: block;
  left: 0;
  bottom: 20px;
  height: 1px;
  width: 180px;
  background-color: #d5d5d5;
}
.review-wrapper .review-list {
  padding-bottom: 70px;
}
.review-wrapper .review-list li span {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.05em;
  display: inline-block;
  padding-bottom: 2px;
}
.review-wrapper .review-list li:not(:last-child) {
  padding-bottom: 18px;
}
.review-wrapper .review-point .review-result-wrapper,
.review-wrapper .review-percentage .review-result-wrapper,
.review-wrapper .review-point .review-result,
.review-wrapper .review-percentage .review-result {
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  height: 13px;
}
.review-wrapper .review-star {
  top: 0 !important;
}
.review-wrapper .review-star.review-total {
  display: none;
}
.review-wrapper .review-desc {
  padding-left: 45px;
  padding-top: 30px;
  width: 65%;
}
.review-wrapper .review-desc .review-summary-title {
  font-size: 20px;
  text-transform: uppercase;
  font-weight: bold;
  letter-spacing: 0.05em;
  margin-bottom: 0;
}
.review-wrapper .review-desc p:last-child {
  font-size: 14px;
  letter-spacing: 0.07em;
  line-height: 30px;
  color: #fff;
}
.review-wrapper .review-total-wrapper {
  margin: 30px 0;
}
.review-wrapper .review-total-wrapper .review-total-box {
  color: #fff;
  padding: 27px 50px;
  font-size: 49px;
}
.review-wrapper .user-review-area {
  padding: 10px 0 30px;
  font-size: 15px;
  overflow: auto;
}
.review-wrapper .user-total-wrapper {
  margin-bottom: 3px;
}
div.review-wrapper {
  background-color: #484848 !important;
}
div.review-wrapper .review-list,
div.review-wrapper .review-title,
div.review-wrapper .review-list li,
div.review-wrapper .user-review-area {
  background-color: #ffffff !important;
  color: #3b3b3b;
}
div.review-wrapper .review-point .review-result-wrapper,
div.review-wrapper .review-percentage .review-result-wrapper {
  background-color: #f4f4f4;
}
div.review-wrapper .review-star .review-result-wrapper > i {
  color: #ddd;
}
.widget-social-share ul.gf-social-icon {
  padding: 30px;
}
.widget-social-share ul.gf-social-icon > li {
  margin-right: 0;
  display: block;
}
.widget-social-share ul.gf-social-icon > li > a {
  width: 100%;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  text-align: left;
  padding-left: 70px;
  color: #fff !important;
}
.widget-social-share ul.gf-social-icon > li > a i {
  margin-left: -30px;
  line-height: 40px;
  opacity: 1;
  color: #fff !important;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}
.widget-social-share ul.gf-social-icon > li > a:hover {
  background: transparent !important;
}
.widget-social-share ul.gf-social-icon > li > a:hover i {
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
  transform: translateX(0);
}
.widget-social-share ul.gf-social-icon > li:last-child {
  margin-bottom: 0;
}
.widget-social-share ul.gf-social-icon li.facebook a {
  background-color: #3b5998;
  border-color: #3b5998 !important;
}
.widget-social-share ul.gf-social-icon li.facebook a:hover {
  color: #3b5998 !important;
}
.widget-social-share ul.gf-social-icon li.facebook a:hover i {
  color: #3b5998 !important;
}
.widget-social-share ul.gf-social-icon li.twitter a {
  background-color: #1da1f2;
  border-color: #1da1f2 !important;
}
.widget-social-share ul.gf-social-icon li.twitter a:hover {
  color: #1da1f2 !important;
}
.widget-social-share ul.gf-social-icon li.twitter a:hover i {
  color: #1da1f2 !important;
}
.widget-social-share ul.gf-social-icon li.google a {
  background-color: #ea4335;
  border-color: #ea4335 !important;
}
.widget-social-share ul.gf-social-icon li.google a:hover {
  color: #ea4335 !important;
}
.widget-social-share ul.gf-social-icon li.google a:hover i {
  color: #ea4335 !important;
}
.widget-social-share ul.gf-social-icon li.linkedin a {
  background-color: #0077b5;
  border-color: #0077b5 !important;
}
.widget-social-share ul.gf-social-icon li.linkedin a:hover {
  color: #0077b5 !important;
}
.widget-social-share ul.gf-social-icon li.linkedin a:hover i {
  color: #0077b5 !important;
}
.widget-social-share ul.gf-social-icon li.tumblr a {
  background-color: #35465c;
  border-color: #35465c !important;
}
.widget-social-share ul.gf-social-icon li.tumblr a:hover {
  color: #35465c !important;
}
.widget-social-share ul.gf-social-icon li.tumblr a:hover i {
  color: #35465c !important;
}
.widget-social-share ul.gf-social-icon li.pinterest a {
  background-color: #bd081c;
  border-color: #bd081c !important;
}
.widget-social-share ul.gf-social-icon li.pinterest a:hover {
  color: #bd081c !important;
}
.widget-social-share ul.gf-social-icon li.pinterest a:hover i {
  color: #bd081c !important;
}
.widget-social-share ul.gf-social-icon li.email a {
  background-color: #4285f4;
  border-color: #4285f4 !important;
}
.widget-social-share ul.gf-social-icon li.email a:hover {
  color: #4285f4 !important;
}
.widget-social-share ul.gf-social-icon li.email a:hover i {
  color: #4285f4 !important;
}
.widget-social-share ul.gf-social-icon li.telegram a {
  background-color: #0088cc;
  border-color: #0088cc !important;
}
.widget-social-share ul.gf-social-icon li.telegram a:hover {
  color: #0088cc !important;
}
.widget-social-share ul.gf-social-icon li.telegram a:hover i {
  color: #0088cc !important;
}
.widget-social-share ul.gf-social-icon li.whatsapp a {
  background-color: #25d366;
  border-color: #25d366 !important;
}
.widget-social-share ul.gf-social-icon li.whatsapp a:hover {
  color: #25d366 !important;
}
.widget-social-share ul.gf-social-icon li.whatsapp a:hover i {
  color: #25d366 !important;
}
.widget-posts .gf-blog-wrap .layout-tall-4 {
  margin-bottom: -15px;
}
.widget-posts .gf-blog-wrap .layout-tall-4 .thumbnail-size-post-tall-1:before,
.widget-posts .gf-blog-wrap .layout-tall-4 .embed-responsive-post-tall-1 {
  padding-bottom: 131.081%;
}
.widget-posts .gf-blog-wrap .layout-tall-4.nav-top-right {
  padding-top: 0;
}
.widget-posts .gf-blog-wrap .layout-tall-4.nav-top-right > .owl-nav {
  top: 15px;
  right: 20px;
}
.widget-posts .gf-blog-wrap .layout-tall-4 .term-badge,
.widget-posts .gf-blog-wrap .layout-tall-4 .gf-post-meta {
  display: none;
}
.widget-posts .gf-blog-wrap .layout-tall-4 .gf-post-content {
  padding-top: 18px;
}
.widget-posts .gf-blog-wrap .layout-tall-4 .entry-thumb-wrap > .owl-carousel.owl-theme > .owl-nav {
  bottom: 15px;
  top: auto;
  left: 15px;
}
.widget-posts .gf-blog-wrap .layout-mix-9 {
  margin-bottom: -20px;
}
.widget-posts .gf-blog-wrap .layout-mix-9 .thumbnail-size-post-mix-9:before,
.widget-posts .gf-blog-wrap .layout-mix-9 .embed-responsive-post-mix-9 {
  padding-bottom: 77.941%;
}
.widget-posts .gf-blog-wrap .layout-mix-9 .term-badge {
  display: none;
}
.widget-posts .gf-blog-wrap .layout-mix-9 .gf-post-content .gf-post-title {
  margin-bottom: 10px;
}
.widget-posts .gf-blog-wrap .layout-mix-9 .gf-post-content .gf-post-meta {
  font-size: 12px;
}
.widget-posts .gf-blog-wrap .layout-mix-9 .post-grid-3 .gf-post-content {
  padding-top: 24px;
}
.widget-posts .gf-blog-wrap .layout-mix-9 .post-grid-3 .gf-post-content .gf-post-title {
  font-size: 17px;
  margin-bottom: 8px;
}
.widget-posts .gf-blog-wrap .layout-mix-9 .post-grid-3 .gf-post-content .gf-post-meta {
  font-size: 12px;
}
.widget-posts .gf-blog-wrap .layout-mix-9 article.post-medium-image-2 .entry-thumb-wrap + .gf-post-content {
  padding-top: 17px;
}
.widget-posts .gf-blog-wrap .layout-medium-image-3 .term-badge,
.widget-posts .gf-blog-wrap .layout-medium-image-3 .gf-post-excerpt {
  display: none;
}
.widget-posts .gf-blog-wrap .layout-medium-image-3 .gf-post-inner {
  background: transparent;
}
.widget-posts .gf-blog-wrap .layout-medium-image-3 .gf-post-title {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 20px;
}
.widget-posts .gf-blog-wrap .layout-medium-image-3 .gf-post-title a {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
}
.widget-posts .gf-blog-wrap .layout-medium-image-3 .gf-post-content {
  padding: 0 !important;
  border-bottom: solid 1px;
}
.widget-posts .gf-blog-wrap .layout-medium-image-3 .gf-post-meta-wrap {
  margin-bottom: 43px;
  font-size: 14px;
}
.widget-posts .gf-blog-wrap .layout-medium-image-3 .gf-post-meta-wrap .gf-table-cell,
.widget-posts .gf-blog-wrap .layout-medium-image-3 .gf-post-meta-wrap .gf-table-cell .gf-table-cell-right {
  display: inline;
}
.widget-posts .gf-blog-wrap .layout-medium-image-3 article:last-child .gf-post-content {
  border-bottom: none;
}
.widget-posts .gf-blog-wrap .layout-list {
  padding: 34px 25px;
  margin-left: 0;
  margin-right: 0;
}
.widget-posts .gf-blog-wrap .layout-list .term-badge {
  display: none;
}
.widget-posts .gf-blog-wrap .layout-list .gf-post-content {
  margin-top: 16px;
}
.widget-posts .gf-blog-wrap .layout-list .gf-post-title {
  font-size: 16px;
  line-height: 20px;
  margin-bottom: 8px;
}
.widget-posts .gf-blog-wrap .layout-list .gf-post-meta {
  font-size: 12px;
  margin-bottom: 5px;
}
.widget-posts .gf-blog-wrap .layout-list .gf-post-meta li.meta-author:after {
  content: '-';
  display: inline-block;
  margin-left: 3px;
}
.widget-posts .gf-blog-wrap .layout-list .gf-post-meta.gf-inline > li {
  margin-right: 3px;
}
.widget-posts .gf-blog-wrap .layout-list .zoom-video {
  width: 47px;
  height: 47px;
  background: transparent;
}
.widget-posts .gf-blog-wrap .layout-list .zoom-video i {
  font-size: 55px;
  color: #2f2f2f;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.widget-posts .gf-blog-wrap .layout-list .zoom-video i:before {
  content: "\f01d";
}
.widget-posts .gf-blog-wrap .layout-list .zoom-video + .entry-thumbnail-overlay:after {
  opacity: 0.56;
}
.widget-posts .gf-blog-wrap .layout-list .zoom-video:hover i {
  color: #e1757d;
}
.widget-posts .gf-blog-wrap .layout-list .entry-thumbnail-overlay:after {
  background: #fff;
}
@media (max-width: 767px) {
  .review-wrapper .review-desc {
    width: 100%;
  }
  .review-wrapper .review-total-wrapper {
    float: left;
    margin-left: 45px;
  }
}
@media (min-width: 481px) {
  .widget-posts .gf-blog-wrap .layout-mix-9 article.post-medium-image-2 .entry-thumb-wrap {
    width: 136px;
    margin: 0 15px 0 0;
  }
  .widget-posts .gf-blog-wrap .layout-medium-image-3 article.post-medium-image-5 .entry-thumb-wrap {
    width: 90px;
    margin: 0 20px 0 0;
  }
  .widget-post-tabs article.post-medium-image-5 .entry-thumb-wrap {
    width: 90px;
    margin: 0 20px 0 0;
  }
}
@media (max-width: 480px) {
  .widget-posts .gf-blog-wrap .layout-medium-image-3 article.post-medium-image-5 .gf-post-content {
    margin-top: 15px;
  }
}
@media (max-width: 470px) {
  .review-wrapper .review-total-wrapper {
    width: 100%;
    margin-left: 0;
    margin-bottom: 0;
  }
  .review-wrapper .review-total-wrapper span.review-total-box {
    text-align: center;
  }
}
.widget-social-profile ul {
  padding: 0 !important;
  margin: 0 !important;
}
.widget-social-profile ul li {
  margin: 0 !important;
}
.widget-social-profile ul li a {
  font-size: 18px;
  margin-right: 25px;
  -webkit-transition: all 0.6s;
  -moz-transition: all 0.6s;
  -ms-transition: all 0.6s;
  -o-transition: all 0.6s;
  transition: all 0.6s;
}
.widget-social-profile ul li:last-child a {
  margin-right: 0 !important;
}
.widget-social-profile ul.social-icon-dark li a:hover {
  color: #000;
}
.widget-social-profile ul.social-icon-light li a:hover {
  color: #fff;
}
.widget-banner {
  font-size: 0;
}
.widget-banner .widget-banner-content {
  display: inline-block;
}
.widget-banner .widget-banner-content a {
  position: relative;
  display: inline-block;
  z-index: 10;
}
.widget-banner .suprema-effect:after,
.widget-banner .layla-effect:after,
.widget-banner .bubba-effect:after,
.widget-banner .jazz-effect:after {
  background-color: rgba(0, 0, 0, 0.3) !important;
}
.widget-banner .suprema-effect .banner-overlay,
.widget-banner .layla-effect .banner-overlay,
.widget-banner .bubba-effect .banner-overlay,
.widget-banner .jazz-effect .banner-overlay {
  -webkit-transition: opacity 0.8s ease 0.15s;
  -moz-transition: opacity 0.8s ease 0.15s;
  -ms-transition: opacity 0.8s ease 0.15s;
  -o-transition: opacity 0.8s ease 0.15s;
  transition: opacity 0.8s ease 0.15s;
  position: absolute;
  content: '';
  display: block;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  z-index: 0;
  background-color: rgba(0, 0, 0, 0.3) !important;
}
.widget-banner .suprema-effect:hover .banner-overlay,
.widget-banner .layla-effect:hover .banner-overlay,
.widget-banner .bubba-effect:hover .banner-overlay,
.widget-banner .jazz-effect:hover .banner-overlay {
  opacity: 1;
}
.widget-banner .layla-effect .effect-content:after,
.widget-banner .bubba-effect .effect-content:after {
  top: 15px !important;
  bottom: 15px !important;
}
.widget-banner .layla-effect .effect-content:before,
.widget-banner .bubba-effect .effect-content:before {
  left: 15px !important;
  right: 15px !important;
}
.widget-banner .layla-effect:hover .effect-content:after {
  left: 8px !important;
  right: 8px !important;
}
.widget-banner .layla-effect:hover .effect-content:before {
  top: 8px !important;
  bottom: 8px !important;
}
.widget-banner .bubba-effect:hover .effect-content:after {
  left: 15px !important;
  right: 15px !important;
}
.widget-banner .bubba-effect:hover .effect-content:before {
  top: 15px !important;
  bottom: 15px !important;
}
.widget-gallery .gf-gallery-item {
  font-size: 0;
  text-align: center;
}
.widget-gallery .gallery-zoom {
  font-size: 15px !important;
}
.widget-gallery .gallery-zoom:hover {
  opacity: 1 !important;
}
.widget-gallery img {
  width: 100%;
}
.widget-gallery .wd-gallery-content {
  padding: 30px 20px !important;
}
.widget-gallery .gf-gallery.col-gap-30,
.widget-gallery .gf-gallery.col-gap-20,
.widget-gallery .gf-gallery.col-gap-10,
.widget-gallery .gf-gallery.col-gap-0 {
  margin-left: 0 !important;
  margin-right: 0 !important;
}
.widget-gallery .gf-gallery.col-gap-30 .wd-gallery-action a,
.widget-gallery .gf-gallery.col-gap-20 .wd-gallery-action a,
.widget-gallery .gf-gallery.col-gap-10 .wd-gallery-action a,
.widget-gallery .gf-gallery.col-gap-0 .wd-gallery-action a {
  width: 100%;
}
.widget-gallery .gf-gallery.col-gap-30 .wd-gallery-action {
  padding: 0 15px !important;
}
.widget-gallery .gf-gallery.col-gap-20 .wd-gallery-action {
  padding: 0 10px !important;
}
.widget-gallery .gf-gallery.col-gap-10 .wd-gallery-action {
  padding: 0 5px !important;
}
.widget-gallery .gf-gallery.col-gap-0 .wd-gallery-action {
  padding: 0 !important;
}
ul.menu-top-bar-right {
  list-style: none;
  margin-bottom: 0;
  font-size: 12px;
  letter-spacing: 0.07em;
}
ul.menu-top-bar-right li {
  display: inline-block;
}
ul.menu-top-bar-right li a {
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
ul.menu-top-bar-right li + li {
  margin-left: 20px;
}
.menu-footer-1 {
  list-style: none;
}
.menu-footer-1 li a {
  font-size: 14px;
  line-height: 30px;
  color: #ccc;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.menu-footer-1 li a i {
  padding-right: 14px;
  color: #e1757d;
}
.menu-footer-1 li a:hover {
  color: #e1757d;
}
.top-drawer-wrap .widget_nav_menu li,
.top-bar .widget_nav_menu li {
  display: inline-block;
}
.top-drawer-wrap .widget_nav_menu li a,
.top-bar .widget_nav_menu li a {
  font-size: 14px;
  font-weight: 400;
  color: #555555;
  padding: 5px 10px;
}
.top-drawer-wrap .widget_nav_menu li a:before,
.top-bar .widget_nav_menu li a:before {
  display: none;
}
.top-drawer-wrap .widget_nav_menu li a:hover,
.top-bar .widget_nav_menu li a:hover {
  color: #e1757d !important;
  background: transparent !important;
}
.top-drawer-wrap .widget_nav_menu li + li,
.top-bar .widget_nav_menu li + li {
  border-top: none;
}
/* Follower Count */
.g5p-follower-count ul {
  padding: 0;
  list-style: none;
}
.g5p-follower-count ul li.count-item {
  float: left;
}
.g5p-follower-count ul a.icons {
  text-decoration: none;
}
.g5p-follower-count ul a.icons i {
  font-size: 30px;
}
.g5p-follower-count ul a.icons i:before {
  display: block;
}
.g5p-follower-count ul:not(.layout-3) li.count-item span.icon {
  position: relative;
  display: inline-block;
}
.g5p-follower-count ul:not(.layout-3) li.count-item span.icon:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0;
  background-color: rgba(255, 255, 255, 0.1);
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.g5p-follower-count ul:not(.layout-3) li.count-item:hover span.icon:after {
  height: 100%;
}
.g5p-follower-count.g5p-column-1 li.count-item {
  width: 100%;
}
.g5p-follower-count.g5p-column-2 li.count-item {
  width: 50%;
}
.g5p-follower-count.g5p-column-2 li.count-item:nth-child(2n+1) {
  clear: both;
}
.g5p-follower-count.g5p-column-3 li.count-item {
  width: 33.33333334%;
}
.g5p-follower-count.g5p-column-3 li.count-item:nth-child(3n+1) {
  clear: both;
}
.g5p-follower-count.g5p-column-4 li.count-item {
  width: 25%;
}
.g5p-follower-count.g5p-column-4 li.count-item:nth-child(4n+1) {
  clear: both;
}
.g5p-follower-count span.social-count {
  display: inline-block;
  font-size: 14px;
  color: #000;
}
.g5p-follower-count span.social-label {
  display: inline-block;
  font-size: 12px;
  color: #999;
  text-transform: capitalize;
}
.g5p-follower-count.layout-1 {
  text-align: center;
}
.g5p-follower-count.layout-1 a.icons i {
  width: 50px;
  height: 50px;
  display: inline-block;
  line-height: 50px;
  text-align: center;
  vertical-align: middle;
}
.g5p-follower-count.layout-1 span.icon {
  margin: 0 0 10px;
}
.g5p-follower-count.layout-1 li.count-item {
  margin-bottom: 5px;
  padding: 10px 0 12px;
  display: block;
}
.g5p-follower-count.layout-1 span.social-count,
.g5p-follower-count.layout-1 span.social-label {
  display: block;
}
.g5p-follower-count.layout-2 {
  text-align: center;
}
.g5p-follower-count.layout-2 a.icons span.icon {
  display: block;
  width: 100%;
}
.g5p-follower-count.layout-2 a.icons span.icon:after {
  height: 100% !important;
}
.g5p-follower-count.layout-2 a.icons span.icon i {
  line-height: 58px;
}
.g5p-follower-count.layout-2 li.count-item {
  margin: 0 0 10px;
  padding: 5px;
}
.g5p-follower-count.layout-2 li.count-item:hover span.items:before {
  height: 100%;
}
.g5p-follower-count.layout-2 span.items {
  display: block;
  position: relative;
  padding: 5px 0;
}
.g5p-follower-count.layout-2 span.items:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  background: rgba(255, 255, 255, 0.1);
  width: 100%;
  height: 0;
}
.g5p-follower-count.layout-2 span.items span {
  display: block;
  color: #fff;
}
.g5p-follower-count.layout-3 span.icon {
  display: block;
  float: left;
  margin-right: 10px;
}
.g5p-follower-count.layout-3 span.icon i {
  width: 50px;
  height: 50px;
  display: inline-block;
  line-height: 50px;
  text-align: center;
  vertical-align: middle;
  float: left;
}
.g5p-follower-count.layout-3 li.count-item {
  margin-bottom: 12px;
  padding: 0 0 12px;
}
.g5p-follower-count.layout-3 span.items {
  display: block;
  overflow: hidden;
  padding-top: 4.5px;
}
.g5p-follower-count.layout-3 span.items span {
  display: block;
}
.g5p-follower-count.layout-4 {
  text-align: center;
}
.g5p-follower-count.layout-4 a.icons i {
  display: inline-block;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  line-height: 50px;
  text-align: center;
  vertical-align: middle;
}
.g5p-follower-count.layout-4 span.icon {
  margin: 0 0 10px;
}
.g5p-follower-count.layout-4 li.count-item {
  margin-bottom: 5px;
  padding: 10px 0 12px;
  display: block;
}
.g5p-follower-count.layout-4 span.social-count,
.g5p-follower-count.layout-4 span.social-label {
  display: block;
}
.g5p-follower-count.layout-5 {
  text-align: center;
}
.g5p-follower-count.layout-5 a.icons i {
  width: 50px;
  height: 50px;
  display: inline-block;
  line-height: 50px;
  text-align: center;
  vertical-align: middle;
}
.g5p-follower-count.layout-5 span.icon {
  margin: 0 0 10px;
  color: #000;
}
.g5p-follower-count.layout-5 li.count-item {
  display: block;
}
.g5p-follower-count.layout-5 span.social-count {
  display: block;
}
.g5p-follower-count.layout-5 span.social-label {
  display: none;
}
@media (max-width: 991px) {
  .g5p-follower-count.g5p-column-4 li.count-item {
    width: 33.33333334%;
  }
  .g5p-follower-count.g5p-column-4 li.count-item:nth-child(4n+1) {
    clear: inherit;
  }
  .g5p-follower-count.g5p-column-4 li.count-item:nth-child(3n+1) {
    clear: both;
  }
}
/* Login & Register */
.widget-login-register {
  font-weight: 600;
  font-size: 14px;
}
.widget-login-register a {
  font-weight: 400;
}
#gsf-popup-login-form {
  padding: 60px;
  box-shadow: none;
  border: none;
  border-radius: 0;
  text-align: center;
}
#gsf-popup-login-form .close {
  display: inline-block;
  position: absolute;
  top: 8px;
  right: 9px;
  font-size: 14px;
  color: #e1757d;
  opacity: 1;
}
#gsf-popup-login-form .modal-header {
  padding: 0;
  border: none;
}
#gsf-popup-login-form .modal-header .modal-title {
  font-size: 26px;
  line-height: 1;
  letter-spacing: 0;
  text-transform: uppercase;
}
#gsf-popup-login-form .modal-header .modal-title:after {
  content: '';
  display: block;
  width: 50px;
  height: 2px;
  margin: 15px auto 24px;
  background-color: #e1757d;
}
#gsf-popup-login-form .modal-header p {
  margin-bottom: 25px;
}
#gsf-popup-login-form .modal-body {
  padding: 0;
}
#gsf-popup-login-form .modal-body .form-group {
  margin-bottom: 15px;
}
#gsf-popup-login-form .modal-body input[type="text"],
#gsf-popup-login-form .modal-body input[type="password"],
#gsf-popup-login-form .modal-body input[type="email"] {
  height: 40px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  border: 1px solid #ebebeb;
  outline: none;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
}
#gsf-popup-login-form .modal-footer {
  padding: 0;
  margin-top: 20px;
  border: none;
  text-align: center;
}
#gsf-popup-login-form .modal-footer .modal-footer-left {
  float: left;
  margin-top: 10px;
}
#gsf-popup-login-form .modal-footer .modal-footer-right {
  float: right;
}
#gsf-popup-login-wrapper.modal.fade .modal-dialog {
  -webkit-transform: translate(0, -100%);
  -moz-transform: translate(0, -100%);
  -ms-transform: translate(0, -100%);
  -o-transform: translate(0, -100%);
  transform: translate(0, -100%);
}
#gsf-popup-login-wrapper.modal.in .modal-dialog {
  top: 50%;
  -webkit-transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  -o-transform: translate(0, -50%);
  transform: translate(0, -50%);
}
#gsf-popup-login-wrapper .modal-backdrop.in {
  opacity: .8;
}
@media (min-width: 768px) {
  #gsf-popup-login-wrapper .modal-dialog {
    width: 450px;
    margin: auto;
  }
}
.apsl-login-networks {
  margin-bottom: 20px;
}
.apsl-login-networks.theme-4 .social-networks a {
  width: 100%;
  display: block;
}
.apsl-login-networks.theme-4 .social-networks a .apsl-icon-block {
  margin-right: 0;
  width: 100%;
}
.weather-container {
  position: relative;
  height: 320px;
  margin-bottom: 15px;
}
.weather-container .bw-error {
  text-align: center;
  padding: 10px;
  width: 100%;
  height: 85px;
  position: absolute;
  top: 50%;
  margin-top: -44px;
  font-size: 13px;
  color: #616161;
  text-shadow: none;
}
.weather-container .bw-error .bw-error-sign {
  font-size: 29px;
  line-height: 30px;
  margin: 0 0 2px;
}
.weather-container .bw-error .bw-error-title {
  font-weight: 600;
  margin: 0 0 2px;
}
.weather-container .bw-error .bw-error-text {
  margin: 0 0 2px;
  font-size: 13px;
}
.weather-container .bw_date-loc {
  padding-top: 30px;
  text-align: center;
  text-transform: uppercase;
}
.weather-container .bw_separator {
  margin: 0 7px;
}
.weather-container .bw_summary {
  position: absolute;
  top: 142px;
  left: 0;
  width: 100%;
  text-align: center;
}
.weather-container .bw_summary .bw_icon {
  font-size: 35px;
}
.weather-container .bw_degree {
  position: absolute;
  top: 90px;
  left: 0;
  height: 60px;
  width: 100%;
  line-height: 60px;
}
.weather-container .bw_degree p {
  font-size: 60px;
  text-align: center;
}
.weather-container .bw_currently {
  text-align: center;
}
.weather-container .bw_currently .bw_degree-up-down {
  position: absolute;
  bottom: 0;
  left: 10px;
}
.weather-container .bw_currently .bw_degree-up-down .bw_up-degree:before,
.weather-container .bw_currently .bw_degree-up-down .bw_down-degree:before {
  font-family: weather;
  margin-right: 3px;
}
.weather-container .bw_currently .bw_degree-up-down .bw_down-degree:before {
  margin-left: 10px;
}
.weather-container.style-modern .bw_degree {
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  height: 60px;
  width: 100%;
  line-height: 60px;
  padding-left: 6px;
}
.weather-container.style-modern .bw_date-loc {
  text-align: center;
  padding: 30px 100px 0 10px;
}
.weather-container.style-modern .bw_summary {
  position: absolute;
  top: 0;
  left: auto;
  width: 100px;
  right: 4px;
}
/* bw_days */
.weather-container .bw_days {
  background-color: rgba(0, 0, 0, 0.2);
  height: 85px;
  padding: 14px 0;
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
}
.weather-container .bw_days ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.weather-container .bw_days ul li {
  margin: 0;
  font-size: 16px;
  text-align: center;
  width: 25%;
  padding: 0;
  float: left;
  border: none;
  color: inherit;
}
.weather-container .bw_days ul li .bw_icon-container {
  display: inline-block;
}
.weather-container .bw_days ul li:after,
.weather-container .bw_days ul li:before {
  display: none;
}
.weather-container .bw_days ul li .bw_day-title {
  margin-top: 7px;
}
.weather-container .bw_days ul li p {
  line-height: 15px;
  text-align: center;
  text-transform: uppercase;
}
.weather-container .bw_days ul p {
  margin: 0;
}
/* new magazine*/
.widget-new-magazine .widget-new-magazine-content {
  position: relative;
}
.widget-new-magazine .widget-new-magazine-content .gf-new-magazine-title {
  font-weight: 400;
}
.widget-new-magazine .widget-new-magazine-content .new-magazine-content > a {
  font-family: 'Oswald';
}
.widget-new-magazine .widget-new-magazine-content .new-magazine-content > a.btn-normal {
  text-transform: uppercase;
  text-decoration: underline !important;
  margin-top: -4px;
  display: block;
  font-size: 12px;
  font-weight: bold;
}
.widget-new-magazine .widget-new-magazine-content .new-magazine-content > a.btn-normal:hover {
  text-decoration: underline !important;
}
.widget-new-magazine .widget-new-magazine-content.img-left {
  text-align: left;
}
.widget-new-magazine .widget-new-magazine-content.img-left img {
  float: left;
  margin-right: 20px;
}
.widget-new-magazine .widget-new-magazine-content.img-left img + .new-magazine-content {
  position: relative;
  overflow: hidden;
}
.widget-new-magazine .widget-new-magazine-content.img-right img {
  float: right;
  margin-left: 20px;
}
.widget-new-magazine .widget-new-magazine-content.img-right img + .new-magazine-content {
  position: relative;
  overflow: hidden;
}
.widget-new-magazine .widget-new-magazine-content.img-left-middle img {
  float: left;
  margin-right: 20px;
}
.widget-new-magazine .widget-new-magazine-content.img-left-middle .new-magazine-content {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
}
.widget-new-magazine .widget-new-magazine-content.img-left-middle .gf-new-magazine-title {
  margin-bottom: 35px !important;
}
.widget-new-magazine .widget-new-magazine-content.img-right-middle img {
  float: right;
  margin-left: 20px;
}
.widget-new-magazine .widget-new-magazine-content.img-right-middle .new-magazine-content {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
}
.widget-new-magazine .widget-new-magazine-content.img-right-middle.text-normal .gf-new-magazine-title {
  margin-bottom: 35px !important;
}
.widget-new-magazine .widget-new-magazine-content.text-small .gf-new-magazine-title,
.widget-new-magazine .widget-new-magazine-content.text-small .gf-new-magazine-sub-title {
  font-size: 11px;
  line-height: 18px;
}
.widget-new-magazine .widget-new-magazine-content.text-small .gf-new-magazine-title {
  margin-top: 5px;
  margin-bottom: 19px;
}
.widget-new-magazine .widget-new-magazine-content.text-normal .gf-new-magazine-sub-title {
  font-size: 14px;
  line-height: 20px;
}
.widget-new-magazine .widget-new-magazine-content.text-normal .gf-new-magazine-title {
  font-size: 18px;
  line-height: 20px;
  margin-top: 10px;
  margin-bottom: 25px;
}
.widget-new-magazine .widget-new-magazine-content.text-light .gf-new-magazine-title {
  color: #fff;
}
.widget-new-magazine .widget-new-magazine-content .gf-new-magazine-sub-title {
  display: block;
}
.body-font.widget-new-magazine .gf-new-magazine-title {
  font-family: 'Josefin Sans';
  font-style: italic;
  font-weight: 600;
  color: #636363;
}
@media (max-width: 767px) {
  .widget-new-magazine .widget-new-magazine-content {
    text-align: center;
  }
  .widget-new-magazine .widget-new-magazine-content.img-left img {
    float: inherit;
    margin-right: 0;
    margin-bottom: 20px;
  }
  .widget-new-magazine .widget-new-magazine-content.img-right img {
    float: inherit;
    margin-right: 0;
    margin-bottom: 20px;
  }
  .widget-new-magazine .widget-new-magazine-content.img-left-middle img {
    float: inherit;
    margin-right: 0;
    margin-bottom: 20px;
  }
  .widget-new-magazine .widget-new-magazine-content.img-left-middle .new-magazine-content {
    position: inherit;
    top: auto;
    -webkit-transform: none;
    -moz-transform: none;
    -ms-transform: none;
    -o-transform: none;
    transform: none;
    margin-left: 0 !important;
  }
  .widget-new-magazine .widget-new-magazine-content.img-right-middle img {
    float: inherit;
    margin-right: 0;
    margin-bottom: 20px;
  }
  .widget-new-magazine .widget-new-magazine-content.img-right-middle .new-magazine-content {
    position: inherit;
    top: auto;
    -webkit-transform: none;
    -moz-transform: none;
    -ms-transform: none;
    -o-transform: none;
    transform: none;
    margin-right: 0 !important;
  }
}
.widget-heading {
  z-index: 2;
  position: relative;
}
.widget-heading .sub-title {
  color: #000;
}
.widget-heading h4.title {
  margin-top: -5px;
  overflow: hidden;
}
.widget-heading.style-2 h4.title span {
  position: relative;
  padding-right: 25px;
  overflow: hidden;
}
.widget-heading.style-2 h4.title span:after {
  content: '';
  display: block;
  width: 20000px;
  height: 1px;
  background: #000;
  position: absolute;
  left: 100%;
  top: 50%;
}
.widget-heading.style-2.text-right h4.title span {
  padding-left: 25px;
  padding-right: 0;
}
.widget-heading.style-2.text-right h4.title span:after {
  left: auto;
  right: 100%;
}
.widget-heading.style-2.text-center .sub-title {
  padding-right: 25px;
}
.widget-heading.style-3 h4.title span {
  position: relative;
  padding-right: 25px;
  overflow: hidden;
}
.widget-heading.style-3 h4.title span:after {
  content: '';
  display: block;
  width: 20000px;
  height: 1px;
  background: #000;
  position: absolute;
  left: 100%;
  top: 50%;
}
.widget-heading.style-3.text-right h4.title span {
  padding-left: 25px;
  padding-right: 0;
}
.widget-heading.style-3.text-right h4.title span:after {
  left: auto;
  right: 100%;
}
.widget-heading.style-3.text-center h4.title span {
  padding-left: 25px;
}
.widget-heading.style-3.text-center h4.title span:before {
  content: '';
  display: block;
  width: 20000px;
  height: 1px;
  background: #000;
  position: absolute;
  right: 100%;
  top: 50%;
}
.widget-heading.style-4 {
  position: relative;
  border-bottom: solid 1px #ebebeb;
  padding-bottom: 7px;
}
.widget-heading.style-4:after {
  content: '';
  display: block;
  height: 3px;
  width: 200px;
  background: #000;
  position: absolute;
  bottom: -1px;
}
.widget-heading.style-4.text-left:after {
  left: 0;
  right: auto;
}
.widget-heading.style-4.text-center:after {
  left: 0;
  right: 0;
  margin: auto;
}
.widget-heading.style-4.text-right:after {
  left: auto;
  right: 0;
}
.widget-heading.text-accent h4.title {
  color: #e1757d;
}
.widget-heading.text-black h4.title {
  color: #000;
}
.widget-heading.text-white h4.title {
  color: #fff;
}
#gsf-popup-login-wrapper.modal .modal-dialog,
#gsf-popup-mailchimp-wrapper.modal .modal-dialog {
  top: 50%;
  -webkit-transition: 0.5;
  -moz-transition: 0.5;
  -ms-transition: 0.5;
  -o-transition: 0.5;
  transition: 0.5;
  -webkit-transition-delay: 0.1s;
  -moz-transition-delay: 0.1s;
  -o-transition-delay: 0.1s;
  transition-delay: 0.1s;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  margin: auto;
}
#gsf-popup-login-wrapper .modal-backdrop.in,
#gsf-popup-mailchimp-wrapper .modal-backdrop.in {
  opacity: .8;
}
@media (min-width: 768px) {
  #gsf-popup-login-wrapper .modal-dialog {
    width: 600px;
    margin: auto;
  }
}
@media (max-width: 767px) {
  #gsf-popup-login-wrapper .modal-dialog {
    padding: 0 15px;
  }
  #gsf-popup-login-form {
    padding-left: 20px;
    padding-right: 20px;
  }
  #gsf-popup-login-form > *:not(.modal-header) {
    padding: 0 20px !important;
  }
}
.instagram-6-columns .instagram-pics li {
  display: inline-block;
  font-size: 0;
  width: 16.6666666667%;
}
.instagram-5-columns .instagram-pics {
  margin-left: -10px;
  margin-right: -10px;
  margin-bottom: 30px;
}
.instagram-5-columns .instagram-pics li {
  display: inline-block;
  font-size: 0;
  width: 20%;
  padding-left: 10px;
  padding-right: 10px;
}
.instagram-5-columns .instagram-pics li:nth-child(2n) {
  position: relative;
  top: 30px;
}
.instagram-5-columns-2 .instagram-pics {
  margin-left: -10px;
  margin-right: -10px;
}
.instagram-5-columns-2 .instagram-pics li {
  display: inline-block;
  font-size: 0;
  width: 20%;
  padding-left: 10px;
  padding-right: 10px;
}
@media (max-width: 767px) {
  .instagram-6-columns .instagram-pics li,
  .instagram-5-columns-2 .instagram-pics li {
    width: 33.333333333%;
  }
  .instagram-5-columns .instagram-pics li {
    width: 33.333333333%;
    top: 0 !important;
    margin-top: 20px;
  }
}
/**
* Widget Instagram
* ----------------------------------------------------------------------------
*/
ul.instagram-pics {
  list-style-type: none;
  margin: 0;
  padding: 0;
  font-size: 0;
}
ul.instagram-pics li a {
  display: block;
  position: relative;
  overflow: hidden;
}
ul.instagram-pics li a:before,
ul.instagram-pics li a:after {
  position: absolute;
  content: '';
  display: block;
  left: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.3);
  opacity: 0;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}
ul.instagram-pics li a:before {
  bottom: 100%;
  top: 0;
}
ul.instagram-pics li a:after {
  top: 100%;
  bottom: 0;
}
ul.instagram-pics li a:hover:before,
ul.instagram-pics li a:hover:after {
  opacity: 1;
  top: 0;
  bottom: 0;
}
.instagram-grid-4-columns ul,
.instagram-grid-3-columns ul,
.instagram-grid-2-columns ul {
  margin-left: -10px;
  margin-right: -10px;
  margin-top: -10px;
}
.instagram-grid-4-columns ul li,
.instagram-grid-3-columns ul li,
.instagram-grid-2-columns ul li {
  width: 50%;
  padding: 10px;
  float: left;
}
.instagram-grid-4-columns ul li img,
.instagram-grid-3-columns ul li img,
.instagram-grid-2-columns ul li img {
  width: 100%;
}
.instagram-grid-4-columns ul li {
  width: 25%;
}
.instagram-grid-3-columns ul li {
  width: 33.33333333333333%;
}
.instagram-grid-2-columns ul li {
  width: 50%;
}
@media (max-width: 767px) {
  .instagram-grid-4-columns ul li {
    width: 50%;
  }
}
/**
* 5.0 - Header
* ----------------------------------------------------------------------------
*/
.logo-text {
  margin: 0;
  font-size: 24px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: bold;
  display: inline-block;
  line-height: 90px;
}
/**
* Desktop
* ----------------------------------------------------------------------------
*/
@media screen and (min-width: 1200px) {
  .logo-header {
    display: table-cell;
    vertical-align: middle;
    height: 90px;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
  }
  .logo-header a {
    line-height: 90px;
  }
  .logo-header .main-logo-text {
    line-height: inherit;
  }
  .logo-header img {
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
    max-height: 90px;
    padding-top: 25px;
    padding-bottom: 25px;
  }
  .sticky-logo {
    display: none;
  }
}
/**
* Mobile
* ----------------------------------------------------------------------------
*/
@media (max-width: 1199px) {
  .mobile-logo-header {
    height: 80px;
    display: table-cell;
    vertical-align: middle;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
  }
  .mobile-logo-header img {
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
    max-height: 80px;
    padding-top: 10pxpx;
    padding-bottom: 10pxpx;
  }
}
/**
* Desktop
* ----------------------------------------------------------------------------
*/
.primary-menu {
  display: table-cell;
  width: 100%;
  vertical-align: middle;
}
.primary-menu .no-menu {
  line-height: 55px;
  list-style: none;
  padding: 0;
  margin: 0;
  display: table-cell;
  vertical-align: middle;
}
.primary-menu-inner {
  display: table;
  width: 100%;
}
.main-menu {
  list-style: none;
  padding: 0;
  margin: 0;
  display: table-cell;
  vertical-align: middle;
  font-size: 0;
}
.main-menu li.menu-item-has-children > a:after {
  content: '\f107';
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.main-menu a:hover,
.main-menu a:focus,
.main-menu a:active {
  text-decoration: none !important;
}
.main-menu .menu-item > a {
  display: block;
  padding: 10px 0;
  position: relative;
}
.main-menu > .menu-item {
  position: relative;
  display: inline-block;
  line-height: 24px;
  -webkit-transition: padding 0.5s;
  -moz-transition: padding 0.5s;
  -ms-transition: padding 0.5s;
  -o-transition: padding 0.5s;
  transition: padding 0.5s;
  padding-top: 5.5px;
  padding-bottom: 5.5px;
}
.main-menu > .menu-item + .menu-item {
  margin-left: 40px;
}
.main-menu > .menu-item > a {
  font-family: 'Oswald';
  font-size: 14px;
  font-weight: 700;
  font-style: normal;
}
.main-menu > .menu-item.menu-item-has-children > a:after {
  display: inline-block;
  vertical-align: middle;
  margin-left: 5px;
}
.main-menu > .menu-item:before {
  content: '';
  display: block;
  width: 20%;
  height: 3px;
  position: absolute;
  bottom: -2px;
  left: 50%;
  z-index: 9999;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
  -webkit-transition: all .5s ease;
  -moz-transition: all .5s ease;
  -o-transition: all .5s ease;
  transition: all .5s ease;
  visibility: hidden;
}
.main-menu > .menu-item:hover:before {
  background: #e1757d;
  width: 100%;
  visibility: visible;
}
.main-menu > .menu-item:not(.menu-item-has-children) > a > .x-menu-link-featured {
  right: 0;
}
.main-menu ul.sub-menu {
  display: none;
  font-family: 'Oswald';
  font-size: 14px;
  font-weight: 700;
  font-style: normal;
  text-align: left;
  position: absolute;
  list-style: none;
  padding: 0;
  margin: 0;
  z-index: 999;
  -webkit-box-shadow: 0 4px 10px 1px rgba(0, 0, 0, 0.15);
  -moz-box-shadow: 0 4px 10px 1px rgba(0, 0, 0, 0.15);
  box-shadow: 0 4px 10px 1px rgba(0, 0, 0, 0.15);
  border-bottom: solid 2px #ebebeb;
  border-top: solid 1px #ebebeb;
  top: 100%;
  background-color: #fff;
}
.main-menu ul.sub-menu .menu-item {
  position: relative;
  min-width: 210px;
}
.main-menu ul.sub-menu .menu-item.menu-item-has-children > a:after {
  content: '\f105';
  position: absolute;
  right: 20px;
  line-height: 20px;
}
.main-menu ul.sub-menu .menu-item > a {
  line-height: 20px;
  padding: 10px 20px;
  white-space: nowrap;
}
.main-menu ul.sub-menu .menu-item + .menu-item {
  border-top: 1px solid #ebebeb;
}
.main-menu ul.sub-menu ul.sub-menu {
  left: 100%;
  top: 0;
  margin-left: 1px;
}
.main-menu ul.sub-menu .x-submenu-position-left ul.sub-menu {
  right: 100%;
  left: auto;
  margin-left: 0;
  margin-right: 1px;
}
.main-menu .x-active > ul.sub-menu {
  display: block;
}
.main-menu li:hover > ul.sub-menu {
  display: block;
}
.main-menu.sub-menu-left ul.sub-menu .sub-menu {
  left: auto;
  right: 100%;
  margin-left: 0;
  margin-right: 1px;
}
.main-menu > .x-submenu-position-left > ul.sub-menu {
  right: 0;
  left: auto;
}
.main-menu > .x-submenu-position-right > ul.sub-menu {
  left: 0;
  right: auto;
}
/**
* Vertical Menu
* ----------------------------------------------------------------------------
*/
.gf-menu-vertical {
  list-style: none;
  padding: 0;
  margin: 0;
}
.gf-menu-vertical li {
  position: relative;
  line-height: 24px;
  cursor: pointer;
}
.gf-menu-vertical .menu-caret {
  width: 45px;
  height: 45px;
  text-align: center;
  line-height: 45px;
  top: 0;
  right: 0;
  position: absolute;
  cursor: pointer;
}
.gf-menu-vertical .menu-caret:before {
  content: "\f0d7";
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.gf-menu-vertical a {
  color: inherit;
  font-size: 13px;
  font-weight: bold;
  text-transform: uppercase;
  padding: 10px 20px;
  display: inline-block;
}
.gf-menu-vertical a:hover,
.gf-menu-vertical a:focus,
.gf-menu-vertical a:active {
  text-decoration: none !important;
}
.gf-menu-vertical ul.sub-menu {
  list-style: none;
  padding: 0;
  margin: 0;
  display: none;
  position: relative;
}
.gf-menu-vertical ul.sub-menu a {
  text-transform: none;
}
.gf-menu-vertical li.menu-open > a .menu-caret:before {
  content: '\f0d8';
}
/**
* Mobile
* ----------------------------------------------------------------------------
*/
.mobile-navigation-wrapper {
  width: 280px;
  background-color: #212121;
  color: #fff;
  border: none !important;
}
.mobile-navigation-wrapper .canvas-sidebar-inner {
  padding: 0;
}
.mobile-navigation-wrapper .search-form {
  padding: 20px;
  background-color: #111;
}
.mobile-navigation-wrapper .search-form .search-field {
  background-color: #353535;
  border-color: #353535;
  color: #fff;
}
.mobile-navigation-wrapper .search-form .search-field::-webkit-input-placeholder {
  color: #999999;
}
.mobile-navigation-wrapper .search-form .search-field:-moz-placeholder {
  color: #999999;
}
.mobile-navigation-wrapper .search-form .search-field::-moz-placeholder {
  color: #999999;
}
.mobile-navigation-wrapper .search-form .search-field:-ms-input-placeholder {
  color: #999999;
}
.mobile-navigation-wrapper .search-form .search-submit {
  top: 20px;
  right: 20px;
  font-size: 0;
  line-height: 1;
  background-color: transparent;
  border-color: transparent;
  color: #999;
}
.mobile-navigation-wrapper .search-form .search-submit i {
  display: inline-block;
  font-size: 14px;
  line-height: 20px;
}
.mobile-navigation-wrapper .mobile-menu {
  border-top: 1px solid #313131 !important;
}
.mobile-navigation-wrapper .mobile-menu li + li {
  border-color: #313131 !important;
}
.mobile-navigation-wrapper .mobile-menu ul.sub-menu {
  background-color: #313131 !important;
}
.mobile-navigation-wrapper .mobile-menu ul.sub-menu li + li {
  border-color: #414141 !important;
}
.mobile-navigation-wrapper .mobile-menu ul.sub-menu:before {
  border-top-color: #212121;
}
.mobile-navigation-wrapper .mobile-menu ul.sub-menu ul.sub-menu {
  background-color: #414141 !important;
}
.mobile-navigation-wrapper .mobile-menu ul.sub-menu ul.sub-menu li + li {
  border-color: #515151 !important;
}
.mobile-navigation-wrapper .mobile-menu ul.sub-menu ul.sub-menu:before {
  border-top-color: #313131;
}
.mobile-navigation-wrapper .mobile-menu ul.sub-menu ul.sub-menu ul.sub-menu {
  background-color: #515151 !important;
}
.mobile-navigation-wrapper .mobile-menu ul.sub-menu ul.sub-menu ul.sub-menu li + li {
  border-color: #616161 !important;
}
.mobile-navigation-wrapper .mobile-menu ul.sub-menu ul.sub-menu ul.sub-menu:before {
  border-top-color: #414141;
}
.mobile-navigation-wrapper .mobile-menu ul.sub-menu ul.sub-menu ul.sub-menu ul.sub-menu {
  background-color: #616161 !important;
}
.mobile-navigation-wrapper .mobile-menu ul.sub-menu ul.sub-menu ul.sub-menu ul.sub-menu li + li {
  border-color: #717171 !important;
}
.mobile-navigation-wrapper .mobile-menu ul.sub-menu ul.sub-menu ul.sub-menu ul.sub-menu:before {
  border-top-color: #515151;
}
.x-menu-link-featured {
  position: absolute;
  text-transform: none;
}
.x-menu-link-featured-new,
.x-menu-link-featured-hot {
  top: -10px;
  right: 15px;
  display: block;
  padding: 0 5px;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.5;
  color: #fff !important;
  -webkit-transition: all 0.1s;
  -moz-transition: all 0.1s;
  -ms-transition: all 0.1s;
  -o-transition: all 0.1s;
  transition: all 0.1s;
}
.x-menu-link-featured-new:after,
.x-menu-link-featured-hot:after {
  position: absolute;
  content: '';
  display: block;
  top: 100%;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
  border-top: 5px solid;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  -webkit-transition: all 0.1s;
  -moz-transition: all 0.1s;
  -ms-transition: all 0.1s;
  -o-transition: all 0.1s;
  transition: all 0.1s;
}
.x-menu-link-featured-hot {
  background-color: #e1757d;
}
.x-menu-link-featured-hot:after {
  border-top-color: #e1757d;
}
.x-menu-list {
  list-style-type: none;
}
.x-menu-list li {
  min-width: 210px;
}
.x-menu-list li a {
  line-height: 20px;
  padding: 15px 20px;
  white-space: nowrap;
  display: block;
  font-size: 13px;
  position: relative;
}
.x-menu-list li a:hover i {
  color: #e1757d !important;
}
.x-menu-list li i {
  display: inline-block;
  margin-right: 14px;
}
.x-menu-list li + li {
  border-top: 1px solid;
}
.x-menu-heading {
  font-size: 14px;
  text-transform: uppercase;
  position: relative;
  line-height: 1;
  display: block;
  padding: 0;
  margin-bottom: 35px;
  letter-spacing: 0.1em;
  color: #e1757d !important;
  padding-left: 15px;
}
.canvas-sidebar-wrapper.in .canvas-sidebar-inner .widget_nav_menu li {
  border: none;
}
.canvas-sidebar-wrapper.in .canvas-sidebar-inner .widget_nav_menu li > a {
  display: inline-block;
  text-transform: uppercase;
  padding: 10px 0;
  font-size: 16px;
  font-family: 'Oswald';
}
.canvas-sidebar-wrapper.in .canvas-sidebar-inner .widget_nav_menu li > a:before {
  display: none;
}
.canvas-sidebar-wrapper.in .canvas-sidebar-inner .widget_nav_menu .cat-caret {
  width: 40px;
  height: 40px;
  line-height: 40px;
}
.canvas-sidebar-wrapper.in .canvas-sidebar-inner .widget_nav_menu .cat-caret:before {
  content: "\f0d7";
  color: #555555;
  font-size: 16px;
}
.canvas-sidebar-wrapper.in .canvas-sidebar-inner .widget_nav_menu .cat-caret.in:before {
  content: "\f0d8";
}
.canvas-sidebar-wrapper.in .canvas-sidebar-inner .widget_nav_menu .sub-menu {
  border-top: none;
  padding-left: 18px;
  margin-top: 6px;
  margin-bottom: 13px;
}
.canvas-sidebar-wrapper.in .canvas-sidebar-inner .widget_nav_menu .sub-menu li > a {
  font-family: 'Josefin Sans';
  text-transform: capitalize;
  color: #acacac;
}
.canvas-sidebar-wrapper.in .canvas-sidebar-inner .search-form .search-field {
  background: transparent;
  border: solid 1px #363636;
}
.header-vertical .primary-menu li {
  border: none;
}
.header-vertical .primary-menu li > a {
  display: inline-block;
  text-transform: uppercase;
  padding: 10px 0;
  font-size: 16px;
  font-family: 'Oswald';
}
.header-vertical .primary-menu li > a:before {
  display: none;
}
.header-vertical .primary-menu .cat-caret {
  width: 40px;
  height: 40px;
  line-height: 40px;
}
.header-vertical .primary-menu .cat-caret:before {
  content: "\f0d7";
  color: #555555;
  font-size: 16px;
}
.header-vertical .primary-menu .cat-caret.in:before {
  content: "\f0d8";
}
.header-vertical .primary-menu .sub-menu {
  border-top: none;
  padding-left: 18px;
  margin-top: 6px;
  margin-bottom: 13px;
}
.header-vertical .primary-menu .sub-menu li > a {
  font-family: 'Josefin Sans';
  text-transform: capitalize;
  color: #acacac;
}
.header-vertical .search-form .search-field {
  background: transparent;
  border: solid 1px #363636;
}
.x-is-mega-menu article.post-default .gf-post-title {
  font-size: 16px;
}
ul.header-customize {
  white-space: nowrap;
}
ul.header-customize .widget_custom_html a {
  font-size: 12px !important;
  font-family: 'Oswald';
  font-weight: 700;
}
.customize-search > a {
  font-size: 18px;
}
ul.header-customize.header-customize-nav_left {
  line-height: 55px;
}
ul.header-customize.header-customize-nav_left > li {
  line-height: 1;
  margin-right: 40px !important;
}
ul.header-customize.header-customize-nav_left .gf-toggle-icon {
  padding: 0 23px;
}
ul.header-customize.header-customize-nav_left .gf-toggle-icon span {
  left: 23px;
}
ul.header-customize.header-customize-nav_right {
  line-height: 55px;
}
ul.header-customize.header-customize-nav_right > li {
  line-height: 1;
  margin-left: 40px !important;
}
ul.header-customize.header-customize-nav_right .gf-toggle-icon {
  padding: 0 23px;
}
ul.header-customize.header-customize-nav_right .gf-toggle-icon span {
  right: 60px;
}
ul.header-customize-mobile > li {
  margin-right: 40px;
}
/**
* Header Desktop
* ----------------------------------------------------------------------------
*/
@media screen and (min-width: 1200px) {
  header.mobile-header {
    display: none;
  }
  header.main-header {
    position: relative;
    z-index: 999;
  }
  header.main-header.header-float {
    position: absolute;
    left: 0;
    right: 0;
  }
  header.main-header .header-above .header-inner {
    position: relative;
  }
  header.main-header .header-above .header-inner ul.header-customize {
    display: inline-block;
    line-height: 90px;
  }
  header.main-header .header-above .header-inner ul.header-customize > li {
    max-height: 90px;
    margin-right: 0;
    margin-left: 0;
    position: relative;
    line-height: 1;
  }
  header.main-header .header-above .header-inner ul.header-customize.header-customize-left {
    float: left;
    text-align: left;
  }
  header.main-header .header-above .header-inner ul.header-customize.header-customize-left > li {
    padding-left: 20px;
    padding-right: 20px;
  }
  header.main-header .header-above .header-inner ul.header-customize.header-customize-left > li:first-child:after {
    content: '';
    display: block;
    width: 1px;
    height: 90px;
    background: #ebebeb;
    position: absolute;
    right: 0;
    top: 49%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
  }
  header.main-header .header-above .header-inner ul.header-customize.header-customize-right {
    float: right;
    text-align: right;
  }
  header.main-header .header-above .header-inner ul.header-customize.header-customize-right > li {
    padding-left: 20px;
    padding-right: 20px;
  }
  header.main-header .header-above .header-inner ul.header-customize.header-customize-right > li:last-child:before {
    content: '';
    display: block;
    width: 1px;
    height: 90px;
    background: #ebebeb;
    position: absolute;
    left: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
  }
  header.main-header .header-above .logo-header {
    display: inline-block;
  }
  header.main-header.header-1 .primary-menu {
    display: block;
  }
  header.main-header.header-1 .primary-menu-inner {
    display: table;
    width: 100%;
  }
  header.main-header.header-1 .main-menu {
    width: 100%;
  }
  header.main-header.header-2 .primary-menu {
    display: block;
  }
  header.main-header.header-2 .header-above .header-inner {
    text-align: center;
  }
  header.main-header.header-2 .header-above .header-inner .logo-header {
    text-align: center;
  }
  header.main-header.header-2 .main-menu {
    width: 100%;
  }
  header.main-header.header-2 .header-above .header-customize {
    width: 40%;
    white-space: normal;
  }
  header.main-header.header-2 .logo-header {
    width: 20%;
    text-align: center;
  }
  header.main-header.header-3 .primary-menu {
    text-align: right;
  }
  header.main-header.header-3 .header-inner {
    display: table;
    width: 100%;
    table-layout: fixed;
    position: relative;
  }
  header.main-header.header-3 .logo-header {
    width: 300px;
  }
  header.main-header.header-4 {
    text-align: center;
  }
  header.main-header.header-4 .mobile-logo-header {
    width: 100%;
  }
  header.main-header.header-4 .logo-header {
    width: 300px;
    text-align: left;
  }
  header.main-header.header-4 .header-inner {
    display: table;
    width: 100%;
    table-layout: fixed;
    position: relative;
  }
  header.main-header.header-4 ul.header-customize-mobile > li:last-child {
    padding-right: 40px;
  }
  header.main-header.header-4 .header-customize-nav_right {
    text-align: right;
  }
  header.main-header.header-5 .header-above {
    text-align: center;
  }
  header.main-header.header-5 .primary-menu {
    display: block;
  }
  header.main-header.header-5 .header-above .header-customize {
    width: 40%;
    white-space: normal;
  }
  header.main-header.header-5 .logo-header {
    width: 20%;
    text-align: center;
  }
  header.main-header.header-5 .header-customize-nav_right {
    text-align: right;
  }
  header.main-header.header-vertical {
    position: fixed;
    -webkit-backface-visibility: visible;
    -moz-backface-visibility: visible;
    -o-backface-visibility: visible;
    -ms-backface-visibility: visible;
    backface-visibility: visible;
    top: 0;
    bottom: 0;
    width: 350px;
    z-index: 99998;
    left: 0;
    padding: 0 30px 0 30px;
  }
  header.main-header.header-vertical .header-above {
    display: table;
    width: 100%;
    text-align: center;
  }
  header.main-header.header-vertical .logo-header {
    width: 100%;
  }
  header.main-header.header-vertical .primary-menu {
    display: block;
    position: relative;
  }
  header.main-header.header-vertical .primary-menu .no-menu {
    padding: 0 20px;
    line-height: 24px;
  }
  header.main-header.header-vertical ul.header-customize {
    display: block;
    white-space: normal;
    text-align: center;
    padding: 50px 0 20px;
  }
  header.main-header.header-vertical ul.header-customize > li {
    margin-bottom: 40px;
    margin-right: 0;
    display: block;
  }
  header.main-header.header-vertical ul.header-customize > li:first-child {
    padding-left: 0;
  }
  header.main-header.header-vertical ul.header-customize > li:last-child {
    margin-bottom: 0 !important;
  }
  header.main-header.skin-dark .header-above .header-inner ul.header-customize.header-customize-right > li:last-child:before,
  header.main-header.skin-dark .header-above .header-inner ul.header-customize.header-customize-left > li:first-child:after {
    background: #363636;
  }
  body.header-left {
    padding-left: 350px;
  }
  body.header-right {
    padding-right: 350px;
  }
  body.header-right header.main-header.header-vertical {
    left: auto;
    right: 0;
  }
  body.framed,
  body.boxed,
  body.bordered {
    background-color: #eee !important;
  }
  body.framed #gf-wrapper,
  body.boxed #gf-wrapper {
    max-width: 1370px;
    margin: auto;
    position: relative;
  }
  body.framed .header-sticky.affix,
  body.boxed .header-sticky.affix {
    max-width: 1370px;
  }
  body.framed #gf-wrapper {
    margin-top: 50px;
    margin-bottom: 50px;
  }
  body.bordered #gf-wrapper {
    margin: 30px;
  }
  body.bordered:before,
  body.bordered:after {
    content: '';
    display: block;
    position: fixed;
    left: 0;
    right: 0;
    z-index: 9999;
    background: inherit;
    height: 30px;
  }
  body.bordered:before {
    top: 0;
  }
  body.bordered:after {
    bottom: 0;
  }
  body.bordered.admin-bar:before {
    top: 32px;
  }
  body.bordered .back-to-top {
    bottom: 40px;
    right: 40px;
  }
}
.main-header .header-sticky-wrapper.affix-wrap {
  height: 70px;
}
.mobile-header .header-sticky-wrapper.affix-wrap {
  height: 70px;
}
.mobile-header .header-sticky-wrapper.affix-wrap .logo-header {
  display: none;
}
.main-header .primary-menu-inner .logo-header {
  display: none;
}
.main-header .primary-menu-inner .logo-header .main-logo {
  display: none;
}
.main-header .header-sticky-wrapper.affix-wrap .primary-menu-inner .logo-header {
  display: table-cell;
  padding-right: 40px;
}
.main-header .header-sticky-wrapper.affix-wrap .primary-menu-inner .logo-header .sticky-logo {
  line-height: 70px;
  width: 150px;
  display: block;
}
.main-header .header-sticky-wrapper.affix-wrap .primary-menu-inner .logo-header .logo-text {
  line-height: 70px;
}
.header-sticky {
  position: relative;
  z-index: 999;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}
.header-sticky .mobile-header-inner,
.header-sticky .header-inner {
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}
.header-sticky.affix {
  position: fixed;
  -webkit-backface-visibility: visible;
  -moz-backface-visibility: visible;
  -o-backface-visibility: visible;
  -ms-backface-visibility: visible;
  backface-visibility: visible;
  left: 0;
  right: 0;
  margin: auto;
}
.header-sticky.affix .primary-menu .no-menu {
  line-height: 70px;
}
.header-sticky.affix .main-menu > li {
  padding-top: 13px;
  padding-bottom: 13px;
}
.header-sticky.affix .mobile-header-inner,
.header-sticky.affix .header-inner {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}
.header-sticky.affix .logo-header {
  height: 70px;
}
.header-sticky.affix .logo-header img {
  max-height: 70px;
  padding-top: 13px;
  padding-bottom: 13px;
}
.header-sticky.affix .logo-header.has-logo-sticky .main-logo {
  display: none;
}
.header-sticky.affix .logo-header.has-logo-sticky .sticky-logo {
  display: block;
}
.header-sticky.affix.gsf-border-bottom,
.header-sticky.affix .gsf-border-bottom {
  border-bottom: none;
}
.header-sticky.affix .mobile-logo-header {
  height: 70px;
}
.header-sticky.affix .mobile-logo-header img {
  max-height: 70px;
  padding-top: 5px;
  padding-bottom: 5px;
}
.header-sticky.affix ul.header-customize-nav_left,
.header-sticky.affix ul.header-customize-nav_right {
  line-height: 70px;
}
.header-sticky.affix ul.header-customize-nav_left .gf-toggle-icon,
.header-sticky.affix ul.header-customize-nav_right .gf-toggle-icon {
  padding-top: 7.5px;
  padding-bottom: 7.5px;
}
.header-sticky.affix.primary-menu .no-menu {
  line-height: 70px;
}
.header-sticky.header-hidden {
  -webkit-transform: translate(0, -100%);
  -moz-transform: translate(0, -100%);
  -ms-transform: translate(0, -100%);
  -o-transform: translate(0, -100%);
  transform: translate(0, -100%);
}
@media (min-width: 1200px) {
  .header-full-width > .container {
    width: 100% !important;
    padding-left: 0;
    padding-right: 0;
  }
}
@media (max-width: 1199px) {
  .header-full-width .header-inner {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
}
/**
* Header Mobile
* ----------------------------------------------------------------------------
*/
@media (max-width: 1199px) {
  header.main-header {
    display: none;
  }
  header.mobile-header {
    display: block;
    position: relative;
    z-index: 999;
  }
  header.mobile-header .mobile-header-inner {
    display: table;
    width: 100%;
  }
  header.mobile-header .mobile-header-inner .mobile-header-nav,
  header.mobile-header .mobile-header-inner .mobile-header-menu {
    display: table-cell;
    vertical-align: middle;
  }
  header.mobile-header .mobile-header-nav-inner {
    display: table;
    width: 100%;
  }
  header.mobile-header.header-1 .mobile-header-menu {
    width: 30%;
  }
  header.mobile-header.header-1 .mobile-logo-header {
    width: 40%;
    text-align: center;
  }
  header.mobile-header.header-1 ul.header-customize-mobile > li:first-child {
    padding-left: 40px;
  }
  header.mobile-header.header-1 .header-customize {
    width: 30%;
    display: table-cell;
    vertical-align: middle;
    text-align: right;
    white-space: normal;
  }
  .mobile-header-search {
    border-top: 1px solid #ebebeb;
    border-bottom: 1px solid #ebebeb;
  }
  .mobile-header-search .search-form .search-field {
    border-color: transparent !important;
    background-color: transparent !important;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    padding-left: 0;
    padding-right: 40px;
    height: 45px;
  }
  .mobile-header-search .search-form .search-submit {
    font-size: 0;
    line-height: 1;
    background-color: transparent !important;
    border-color: transparent !important;
    top: 0;
    bottom: 0;
    margin: auto;
    right: -20px;
  }
  .mobile-header-search .search-form .search-submit i {
    display: inline-block;
    font-size: 16px;
    line-height: 20px;
  }
}
.customize-social-networks .gf-social-icon > li {
  margin-bottom: 0;
}
.customize-search > a {
  display: inline-block;
  width: 40px;
  height: 40px;
  text-align: center;
  line-height: 40px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
}
.customize-search > a > i {
  line-height: inherit;
}
.main-menu > li > a {
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.main-menu ul.sub-menu {
  letter-spacing: 0.03em;
}
.main-menu ul.sub-menu .menu-item > a {
  padding-top: 15px;
  padding-bottom: 15px;
}
.top-bar .wpb_content_element {
  margin-bottom: 0;
}
.top-bar .widget + .widget {
  margin-top: 0;
  margin-left: 20px;
}
/**
* 6.0 - Footer
* ----------------------------------------------------------------------------
*/
.main-footer-wrapper h4.widget-title {
  font-size: 18px;
  line-height: 24px;
  text-transform: capitalize;
  border-bottom: none;
  margin-bottom: 35px;
}
.main-footer-wrapper h4.widget-title:before {
  display: none;
}
.main-footer-wrapper .widget_nav_menu li a {
  font-weight: 400;
  color: #555555;
  padding-top: 2px;
  padding-bottom: 2px;
  padding-left: 0;
  font-size: 14px;
}
.main-footer-wrapper .widget_nav_menu li a:before {
  display: none;
}
.main-footer-wrapper .widget_nav_menu li a:hover {
  color: #e1757d !important;
  background: transparent !important;
}
.main-footer-wrapper .widget_nav_menu li + li {
  border-top: none;
}
@media only screen and (min-width: 992px) {
  footer.footer-fixed {
    position: fixed !important;
    bottom: 0;
    left: 0;
    z-index: -1;
    right: 0;
    margin: auto;
    -webkit-backface-visibility: visible;
    -moz-backface-visibility: visible;
    -ms-backface-visibility: visible;
    backface-visibility: visible;
  }
  footer.footer-fixed.static {
    position: static !important;
  }
  body.boxed footer.footer-fixed,
  body.framed footer.footer-fixed {
    max-width: 1236px;
  }
  body.bordered footer.footer-fixed {
    margin-left: 30px;
    margin-right: 30px;
    margin-bottom: 30px;
  }
}
@media (max-width: 767px) {
  .main-footer-wrapper {
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media screen and (min-width: 1200px) {
  body.header-left footer.footer-fixed {
    left: 300px;
  }
  body.header-right footer.footer-fixed {
    right: 300px;
  }
}
/**
* 7.0 - Blog
* ----------------------------------------------------------------------------
*/
.entry-thumbnail-overlay {
  position: relative;
  display: block;
}
.entry-thumbnail-overlay:after {
  content: '';
  display: block;
  position: absolute;
  z-index: 1;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  -webkit-opacity: 0;
  -moz-opacity: 0;
  opacity: 0;
  background-color: rgba(0, 0, 0, 0.45);
  -webkit-transition: opacity 0.3s;
  -moz-transition: opacity 0.3s;
  -ms-transition: opacity 0.3s;
  -o-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.zoom-image {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  color: #fff;
  font-size: 16px;
  -webkit-opacity: 0;
  -moz-opacity: 0;
  opacity: 0;
  -webkit-transform: scale(0.8);
  -moz-transform: scale(0.8);
  -ms-transform: scale(0.8);
  -o-transform: scale(0.8);
  transform: scale(0.8);
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  z-index: 2;
}
.zoom-video {
  position: absolute;
  z-index: 2;
  display: block;
  font-size: 24px;
  width: 70px;
  height: 70px;
  background: #fff;
  text-align: center;
  line-height: 70px;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  margin: auto;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.zoom-video:focus,
.zoom-video:hover {
  background: #e1757d;
}
.zoom-video:focus i,
.zoom-video:hover i {
  color: #fff;
}
.zoom-video i {
  color: #e1757d;
  padding-left: 4px;
  vertical-align: middle;
  line-height: 40px;
}
.zoom-video + .entry-thumbnail-overlay:after {
  -webkit-opacity: 1;
  -moz-opacity: 1;
  opacity: 1;
}
.entry-thumb-wrap.thumb-small .zoom-video {
  width: 40px;
  height: 40px;
  line-height: 40px;
  font-size: 16px;
}
.entry-thumb-wrap {
  position: relative;
}
.entry-thumbnail {
  position: relative;
}
.entry-thumbnail img {
  width: 100%;
}
.entry-thumbnail:hover .entry-thumbnail-overlay:after {
  -webkit-opacity: 1;
  -moz-opacity: 1;
  opacity: 1;
}
.entry-thumbnail:hover .zoom-image {
  -webkit-opacity: 1;
  -moz-opacity: 1;
  opacity: 1;
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
}
.placeholder-image {
  background-color: #E0E8EE;
  background-repeat: no-repeat;
  background-position: center center;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}
.placeholder-image:before {
  content: '';
  display: block;
  width: 100%;
  padding-bottom: 56.25%;
}
.entry-quote-thumbnail {
  position: relative;
}
.entry-quote-thumbnail:before {
  content: '';
  display: inline-block;
  padding-bottom: 56.25%;
}
.entry-quote-content {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  z-index: 1;
  background-color: rgba(0, 0, 0, 0.8);
  padding: 0 15px;
}
.entry-quote-content i {
  width: 40px;
  height: 40px;
  background: #fff;
  line-height: 40px;
  border-radius: 100%;
  margin-bottom: 15px;
  display: block;
}
.entry-quote-content p {
  color: #fff;
  font-size: 24px;
  font-style: italic;
  margin-bottom: 10px;
}
.entry-quote-content p:after {
  content: "";
  width: 30px;
  border-top: 1px solid #fff;
  display: block;
  margin: 20px auto 0 auto;
}
.entry-quote-content a {
  font-size: 12px;
  font-weight: bold;
  letter-spacing: 0.4em;
  color: #fff;
  text-transform: uppercase;
}
.entry-quote-bg {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  background-clip: content-box;
  background-size: cover;
  background-position: center center;
}
.entry-quote-thumbnail.normal:before {
  display: none;
}
.entry-quote-thumbnail.normal .entry-quote-content {
  position: relative;
  padding: 30px 15px;
}
.entry-quote-thumbnail.normal .block-center::before {
  display: none;
}
.isotope {
  -webkit-transition: height 0.5s ease-in-out;
  -moz-transition: height 0.5s ease-in-out;
  -ms-transition: height 0.5s ease-in-out;
  -o-transition: height 0.5s ease-in-out;
  transition: height 0.5s ease-in-out;
}
/*.isotope,
.isotope .isotope-item {
  .transition-duration(0.8s);
}

.isotope {
  .transition-property(height,width);
}

.isotope .isotope-item {
  .transition-property(transform,opacity);
}*/
/**** disabling Isotope CSS3 transitions ****/
.isotope.no-transition,
.isotope.no-transition .isotope-item,
.isotope .isotope-item.no-transition {
  -webkit-transition-duration: 0s;
  -moz-transition-duration: 0s;
  -o-transition-duration: 0s;
  transition-duration: 0s;
}
.entry-thumb-wrap.thumb-small .zoom-image {
  font-size: 14px;
}
.gf-paging.next-prev {
  font-size: 0;
}
.gf-paging.next-prev > a {
  font-size: 12px;
  width: 27px;
  height: 27px;
  line-height: 25px;
  text-align: center;
  display: inline-block;
  border: 1px solid #252525;
}
.gf-paging.next-prev > a.gf-button-prev {
  margin-right: 10px;
}
.gf-paging.next-prev > a.disable {
  -webkit-opacity: 0.5;
  -moz-opacity: 0.5;
  opacity: 0.5;
  cursor: not-allowed;
}
.gf-paging.load-more > a {
  font-size: 14px;
  line-height: 19px;
  color: #acacac;
  border-top: dashed 1px #ebebeb;
  border-bottom: dashed 1px #ebebeb;
  letter-spacing: 0;
}
.entry-thumb-wrap.entry-thumb-single.entry-thumb-mode-image {
  text-align: center;
  font-size: 0;
}
.entry-thumb-wrap.entry-thumb-single.entry-thumb-mode-image .entry-thumbnail {
  display: inline-block;
}
.entry-thumb-wrap.entry-thumb-single.entry-thumb-mode-image .entry-thumbnail img {
  width: auto;
}
.entry-thumb-wrap.entry-thumb-single.entry-thumb-mode-image .owl-carousel .owl-item .entry-thumbnail {
  display: block;
}
.entry-thumb-wrap.entry-thumb-single.entry-thumb-mode-image .owl-carousel .owl-item .entry-thumbnail img {
  width: 100%;
}
@media (min-width: 768px) {
  .gf-post-navigation {
    display: table;
    width: 100%;
    table-layout: fixed;
  }
  .gf-post-navigation > div {
    display: table-cell;
    width: 50%;
  }
  .gf-post-navigation > div.post-prev {
    border-right: 1px solid #ffffff;
    border-left: 0 solid #ffffff;
  }
}
.gf-post-navigation > div {
  padding: 30px;
  background-color: #f7f7f7;
}
.gf-post-navigation > div span {
  position: relative;
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.gf-post-navigation > div .gf-post-title {
  position: relative;
  margin-bottom: 0;
  font-size: 15px;
}
.gf-post-navigation > div.post-prev {
  text-align: left;
}
.gf-post-navigation > div.post-next {
  text-align: right;
}
.gf-post-navigation > div.post-nav-bg {
  position: relative;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
.gf-post-navigation > div.post-nav-bg:before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.5);
}
.gf-post-navigation > div.post-nav-bg span {
  color: #aaa !important;
}
@media (max-width: 767px) {
  .gf-post-navigation > div {
    text-align: center !important;
  }
  .gf-post-navigation > div.post-prev {
    margin-bottom: 1px;
  }
}
.gf-author-info-wrap .gf-author-avatar img {
  float: left;
  margin-right: 23px;
}
.gf-author-info-wrap .gf-author-name {
  font-size: 12px;
  text-transform: uppercase;
  margin-bottom: 5px;
}
.gf-author-info-wrap .gf-author-description {
  margin-bottom: 0;
  font-size: 16px;
}
.gf-comments-area {
  margin-top: 30px;
}
.gf-comments-area .comment-list {
  list-style-type: none;
  margin: 0;
}
.gf-comments-area .comment-list .avatar {
  margin: 0;
  padding: 0;
  float: left;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
}
.gf-comments-area .comment-list .avatar + .comment-text {
  padding-left: 60px;
}
.gf-comments-area .comment-list li.comment {
  margin-top: 15px;
  padding-top: 20px;
  border-top: 1px dashed #ebebeb;
}
.gf-comments-area .comment-list li.comment:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}
.gf-comments-area .comment-list li.pingback {
  margin-top: 15px;
  padding-top: 20px;
  border-top: 1px dashed #ebebeb;
}
.gf-comments-area .comment-list li.pingback:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}
.gf-comments-area .comment-list .children {
  list-style: none;
  padding-left: 0;
  margin-top: 15px;
  padding-top: 20px;
  border-top: 1px dashed #ebebeb;
}
.gf-comments-area .comment-list li.depth-2 {
  margin-left: 30px;
}
.gf-comments-area .comment-list li.depth-3 {
  margin-left: 60px;
}
.gf-comments-area .comment-list li.depth-4 {
  margin-left: 90px;
}
.gf-comments-area .comment-list li.depth-5 {
  margin-left: 120px;
}
.gf-comments-area .comments-list + .comment-respond {
  margin-top: 60px;
}
.gf-comments-area .comment-body + .comment-respond {
  margin-top: 35px;
}
.gf-comments-area .comment-respond p > label {
  display: none;
}
.gf-comments-area .comment-respond p:last-child {
  margin-bottom: 0;
}
.gf-comments-area .comment-respond input[type="color"],
.gf-comments-area .comment-respond input[type="date"],
.gf-comments-area .comment-respond input[type="datetime"],
.gf-comments-area .comment-respond input[type="datetime-local"],
.gf-comments-area .comment-respond input[type="email"],
.gf-comments-area .comment-respond input[type="month"],
.gf-comments-area .comment-respond input[type="number"],
.gf-comments-area .comment-respond input[type="password"],
.gf-comments-area .comment-respond input[type="search"],
.gf-comments-area .comment-respond input[type="tel"],
.gf-comments-area .comment-respond input[type="text"],
.gf-comments-area .comment-respond input[type="time"],
.gf-comments-area .comment-respond input[type="url"],
.gf-comments-area .comment-respond input[type="week"],
.gf-comments-area .comment-respond input:not([type]),
.gf-comments-area .comment-respond textarea,
.gf-comments-area .comment-respond select {
  width: 100%;
}
@media (min-width: 768px) {
  .gf-comment-area-wrap.comment-layout-2 .gf-comments-area .comment-respond .comment-form-author,
  .gf-comment-area-wrap.comment-layout-2 .gf-comments-area .comment-respond .comment-form-email {
    float: left;
    width: 50%;
  }
  .gf-comment-area-wrap.comment-layout-2 .gf-comments-area .comment-respond .comment-form-author {
    padding-right: 15px;
  }
  .gf-comment-area-wrap.comment-layout-2 .gf-comments-area .comment-respond .comment-form-email {
    padding-left: 15px;
  }
}
@media (max-width: 767px) {
  .gf-comments-area .comment-list li.depth-2 {
    margin-left: 5%;
  }
  .gf-comments-area .comment-list li.depth-3 {
    margin-left: 10%;
  }
  .gf-comments-area .comment-list li.depth-4 {
    margin-left: 15%;
  }
  .gf-comments-area .comment-list li.depth-5 {
    margin-left: 20%;
  }
}
@media (max-width: 480px) {
  .gf-comments-area .comment-list .avatar {
    display: none;
  }
  .gf-comments-area .comment-list .avatar + .comment-text {
    padding-left: 0;
  }
}
.entry-thumb-wrap > .owl-carousel.owl-theme > .owl-nav {
  position: absolute;
  top: 15px;
  left: 15px;
  margin: 0;
}
.gf-post-excerpt p {
  margin: 0;
}
/**
* Paging Navigation
* ----------------------------------------------------------------------------
*/
.blog-pagination {
  font-size: 0;
  position: relative;
  text-align: center;
}
.blog-pagination .page-numbers {
  width: 50px;
  height: 50px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 600;
  display: inline-block;
  text-align: center;
  line-height: 50px;
  vertical-align: middle;
}
.blog-pagination .page-numbers:hover {
  color: #e1757d !important;
}
.blog-pagination .page-numbers.current {
  background-color: #e1757d !important;
  color: #ffffff !important;
}
.blog-pagination .page-numbers.next,
.blog-pagination .page-numbers.prev {
  position: absolute;
  width: auto;
  font-size: 12px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0 40px;
  background-color: #2a2d2e;
  color: #fff;
}
.blog-pagination .page-numbers.next:hover,
.blog-pagination .page-numbers.prev:hover,
.blog-pagination .page-numbers.next:focus,
.blog-pagination .page-numbers.prev:focus {
  background-color: #e1757d !important;
  color: #ffffff !important;
}
.blog-pagination .page-numbers.next i,
.blog-pagination .page-numbers.prev i {
  font-size: 14px;
  line-height: 50px;
}
.blog-pagination .page-numbers.prev {
  left: 0;
}
.blog-pagination .page-numbers.next {
  right: 0;
}
@media (max-width: 767px) {
  .blog-pagination {
    text-align: left;
  }
  .blog-pagination .page-numbers {
    width: 40px;
    height: 40px;
    line-height: 40px;
  }
  .blog-pagination .page-numbers.next,
  .blog-pagination .page-numbers.prev {
    position: relative;
    width: 40px;
    height: 40px;
    line-height: 40px;
    font-size: 0;
    padding: 0;
  }
  .blog-pagination .page-numbers.next i,
  .blog-pagination .page-numbers.prev i {
    line-height: 40px;
  }
}
.comment-navigation {
  text-align: right;
}
.comment-navigation .page-numbers {
  width: 40px;
  height: 40px;
  line-height: 40px;
}
.comment-navigation .page-numbers.next,
.comment-navigation .page-numbers.prev {
  position: relative;
  width: 40px;
  height: 40px;
  line-height: 40px;
  font-size: 0;
  padding: 0;
}
.comment-navigation .page-numbers.next i,
.comment-navigation .page-numbers.prev i {
  line-height: 40px;
}
.gf-gutter-0 + .gf-paging {
  margin-top: 50px;
}
.gf-gutter-10 + .gf-paging {
  margin-top: 40px;
}
.gf-gutter-20 + .gf-paging {
  margin-top: 30px;
}
.gf-gutter-30 + .gf-paging {
  margin-top: 20px;
}
.gf-gutter-40 + .gf-paging {
  margin-top: 10px;
}
.term-badge {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 0.07em;
  background-color: #0b0b0b;
  color: #fff;
  height: 24px;
  line-height: 24px;
  padding: 0 15px;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  -webkit-transition: background-color 0.3s;
  -moz-transition: background-color 0.3s;
  -ms-transition: background-color 0.3s;
  -o-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
.term-badge-highlight {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
/**
* Image Size
* ----------------------------------------------------------------------------
*/
.thumbnail-size-blog-large:before,
.embed-responsive-blog-large {
  padding-bottom: 56.52173913043478%;
}
.thumbnail-size-medium-image-1:before,
.embed-responsive-medium-image-1 {
  padding-bottom: 76.31578947368421%;
}
.thumbnail-size-medium-image-2:before,
.embed-responsive-medium-image-2 {
  padding-bottom: 139.1304347826087%;
}
.thumbnail-size-medium-image-3:before,
.embed-responsive-medium-image-3 {
  padding-bottom: 173.6842105263158%;
}
.thumbnail-size-medium-image-4:before,
.embed-responsive-medium-image-4 {
  padding-bottom: 100%;
}
.thumbnail-size-medium-image-5:before,
.embed-responsive-medium-image-5 {
  padding-bottom: 62.61682242990654%;
}
.thumbnail-size-medium-image-6:before,
.embed-responsive-medium-image-6 {
  padding-bottom: 136.8421052631579%;
}
.thumbnail-size-medium-image-7:before,
.embed-responsive-medium-image-7 {
  padding-bottom: 108.9108910891089%;
}
.thumbnail-size-medium-image-8:before,
.embed-responsive-medium-image-8 {
  padding-bottom: 72.8260869565217%;
}
.thumbnail-size-medium-image-9:before,
.embed-responsive-medium-image-9 {
  padding-bottom: 85.71428571428571%;
}
.thumbnail-size-medium-image-10:before,
.embed-responsive-medium-image-10 {
  padding-bottom: 64.6739130434783%;
}
.thumbnail-size-medium-image-11:before,
.embed-responsive-medium-image-11 {
  padding-bottom: 68.42105263157895%;
}
.thumbnail-size-tall-1:before,
.embed-responsive-tall-1 {
  padding-bottom: 130.8411214953271%;
}
.thumbnail-size-tall-2:before,
.embed-responsive-tall-2 {
  padding-bottom: 64.34782608695652%;
}
.thumbnail-size-tall-3:before,
.embed-responsive-tall-3 {
  padding-bottom: 127.6923076923077%;
}
.thumbnail-size-tall-4:before,
.embed-responsive-tall-4 {
  padding-bottom: 59.79899497487437%;
}
.thumbnail-size-tall-5:before,
.embed-responsive-tall-5 {
  padding-bottom: 69.84924623115578%;
}
.thumbnail-size-tall-6:before,
.embed-responsive-tall-6 {
  padding-bottom: 56.20915032679739%;
}
.thumbnail-size-tall-7:before,
.embed-responsive-tall-7 {
  padding-bottom: 51.86567164179104%;
}
.thumbnail-size-tall-8:before,
.embed-responsive-tall-8 {
  padding-bottom: 75%;
}
.thumbnail-size-tall-9:before,
.embed-responsive-tall-9 {
  padding-bottom: 127.3809523809524%;
}
.thumbnail-size-tall-10:before,
.embed-responsive-tall-10 {
  padding-bottom: 62.3115577889447%;
}
.thumbnail-size-tall-11:before,
.embed-responsive-tall-11 {
  padding-bottom: 68.3417085427136%;
}
.thumbnail-size-tall-12:before,
.embed-responsive-tall-12 {
  padding-bottom: 109.2307692307690%;
}
.thumbnail-size-tall-13:before,
.embed-responsive-tall-13 {
  padding-bottom: 106.9230769230770%;
}
.thumbnail-size-tall-14:before,
.embed-responsive-tall-14 {
  padding-bottom: 47.76119402985075%;
}
.thumbnail-size-tall-15:before,
.embed-responsive-tall-15 {
  padding-bottom: 145.4545454545455%;
}
.thumbnail-size-tall-16:before,
.embed-responsive-tall-16 {
  padding-bottom: 77.27272727272727%;
}
.thumbnail-size-tall-17:before,
.embed-responsive-tall-17 {
  padding-bottom: 97.72727272727273%;
}
.thumbnail-size-tall-18:before,
.embed-responsive-tall-18 {
  padding-bottom: 100%;
}
.thumbnail-size-tall-19:before,
.embed-responsive-tall-19 {
  padding-bottom: 100%;
}
.thumbnail-size-tall-20:before,
.embed-responsive-tall-21 {
  padding-bottom: 140%;
}
.thumbnail-size-tall-21:before,
.embed-responsive-tall-21 {
  padding-bottom: 114.8148148148148%;
}
.thumbnail-size-tall-22:before,
.embed-responsive-tall-22 {
  padding-bottom: 114%;
}
.thumbnail-size-tall-23:before,
.embed-responsive-tall-23 {
  padding-bottom: 95.95959595959596%;
}
.thumbnail-size-large-image-1:before,
.embed-responsive-large-image-1 {
  padding-bottom: 56.07476635514019%;
}
.thumbnail-size-large-image-2:before,
.embed-responsive-large-image-2 {
  padding-bottom: 64.28571428571429%;
}
.thumbnail-size-large-image-3:before,
.embed-responsive-large-image-3 {
  padding-bottom: 65.57377049180328%;
}
.thumbnail-size-large-image-4:before,
.embed-responsive-large-image-4 {
  padding-bottom: 65.90909090909091%;
}
.thumbnail-size-large-image-5:before,
.embed-responsive-large-image-5 {
  padding-bottom: 85.18518518518519%;
}
.thumbnail-size-large-image-6:before,
.embed-responsive-large-image-6 {
  padding-bottom: 110%;
}
.thumbnail-size-large-image-7:before,
.embed-responsive-large-image-7 {
  padding-bottom: 67.21311475409836%;
}
.thumbnail-size-large-image-8:before,
.embed-responsive-large-image-8 {
  padding-bottom: 78.26086956521739%;
}
.thumbnail-size-large-image-9:before,
.embed-responsive-large-image-9 {
  padding-bottom: 69.23076923076923%;
}
.thumbnail-size-large-image-10:before,
.embed-responsive-large-image-10 {
  padding-bottom: 73.80952380952381%;
}
.thumbnail-size-large-image-11:before,
.embed-responsive-large-image-11 {
  padding-bottom: 77.04918032786885%;
}
.thumbnail-size-large-image-12:before,
.embed-responsive-large-image-12 {
  padding-bottom: 107.1428571428571%;
}
.thumbnail-size-large-image-13:before,
.embed-responsive-large-image-13 {
  padding-bottom: 149.1071428571429%;
}
.thumbnail-size-large-image-14:before,
.embed-responsive-large-image-14 {
  padding-bottom: 65.3409090909091%;
}
.thumbnail-size-large-image-15:before,
.embed-responsive-large-image-15 {
  padding-bottom: 165.5737704918030%;
}
.thumbnail-size-large-image-16:before,
.embed-responsive-large-image-16 {
  padding-bottom: 71.01449275362319%;
}
.thumbnail-size-large-image-17:before,
.embed-responsive-large-image-17 {
  padding-bottom: 65.21739130434783%;
}
.thumbnail-size-large-image-18:before,
.embed-responsive-large-image-18 {
  padding-bottom: 100%;
}
.thumbnail-size-large-image-19:before,
.embed-responsive-large-image-19 {
  padding-bottom: 130.4347826086957%;
}
.thumbnail-size-large-image-20:before,
.embed-responsive-large-image-20 {
  padding-bottom: 55.62130177514793%;
}
.thumbnail-size-large-image-21:before,
.embed-responsive-large-image-21 {
  padding-bottom: 71.00591715976331%;
}
.thumbnail-size-list-1:before,
.embed-responsive-list-1 {
  padding-bottom: 134.8684210526316%;
}
.thumbnail-size-list-2:before,
.embed-responsive-list-2 {
  padding-bottom: 121.7391304347826%;
}
.thumbnail-size-grid-1:before,
.embed-responsive-grid-1 {
  padding-bottom: 83.17757009345794%;
}
.thumbnail-size-grid-2:before,
.embed-responsive-grid-2 {
  padding-bottom: 82.60869565217391%;
}
.thumbnail-size-grid-3:before,
.embed-responsive-grid-3 {
  padding-bottom: 43.13725490196078%;
}
.thumbnail-size-grid-4:before,
.embed-responsive-grid-4 {
  padding-bottom: 77.92207792207792%;
}
.thumbnail-size-grid-5:before,
.embed-responsive-grid-5 {
  padding-bottom: 113.3333333333333%;
}
.thumbnail-size-grid-6:before,
.embed-responsive-grid-6 {
  padding-bottom: 56.07966457023061%;
}
.gf-post-like {
  font-size: 12px;
  letter-spacing: 0.07em;
}
/**
* Layout Default
* ----------------------------------------------------------------------------
*/
article.post-default .gf-post-title {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 15px;
  margin-top: 10px;
  line-height: 26px;
  color: #252525;
}
article.post-default .gf-post-meta {
  font-size: 11px;
  padding-left: 0;
  text-transform: uppercase;
  margin-bottom: 0;
  font-weight: 400;
}
article.post-default .gf-post-meta > li {
  display: inline;
  color: #acacac;
}
article.post-default .gf-post-meta > li > a {
  color: #acacac;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
article.post-default .gf-post-meta > li > a:hover {
  color: #e1757d;
  text-decoration: none;
}
article.post-default .gf-post-meta .meta-cat > a {
  color: #e1757d;
  font-weight: bold;
  text-transform: uppercase;
}
article.post-default .gf-post-meta .meta-author {
  text-transform: uppercase;
}
article.post-default .gf-post-excerpt {
  font-size: 16px;
  line-height: 1.25;
}
article.post-default .gf-post-inner {
  position: relative;
}
article.post-default.format-gallery .owl-theme .owl-nav.disabled + .owl-dots {
  margin-top: 25px;
}
article.sticky .gf-post-content {
  padding: 40px;
  background: #ebebeb;
}
/* Template Blog*/
/*Grid 1*/
article.post-grid-1 {
  text-align: center;
}
article.post-grid-1 .gf-post-title {
  margin-bottom: 10px;
  width: 60%;
  margin-left: auto;
  margin-right: auto;
}
article.post-grid-1 .gf-post-meta .meta-cat > a:hover {
  color: #252525;
}
article.post-grid-1 .gf-post-content {
  background: #fff;
  padding-top: 35px;
  padding-bottom: 45px;
}
article.post-grid-1.format-gallery .owl-theme .owl-nav.disabled + .owl-dots {
  margin-top: -30px;
  position: relative;
}
@media (max-width: 767px) {
  article.post-grid-1 .gf-post-title {
    width: inherit;
    padding-left: 15px;
    padding-right: 15px;
  }
}
/*Grid 2*/
article.post-grid-2 {
  text-align: center;
}
article.post-grid-2 .gf-post-title {
  margin-bottom: 10px;
}
article.post-grid-2 .gf-post-meta .meta-cat > a:hover {
  color: #252525;
}
article.post-grid-2 .gf-post-content {
  background: #fff;
  padding-top: 47px;
  padding-bottom: 67px;
}
article.post-grid-2.format-gallery .owl-theme .owl-nav.disabled + .owl-dots {
  margin-top: -30px;
  position: relative;
}
/*Grid 3*/
article.post-grid-3 .gf-post-title {
  margin-bottom: 7px;
  color: #fff;
}
article.post-grid-3 .gf-post-meta .meta-cat > a:hover {
  color: #fff;
}
article.post-grid-3 .gf-post-content {
  background: #000;
  padding: 20px 35px 40px;
}
article.post-grid-3.format-gallery .owl-theme .owl-nav.disabled + .owl-dots {
  margin-top: -30px;
  position: relative;
}
/* Large Image 1*/
article.post-large-image-1 .gf-post-excerpt {
  margin-bottom: 5px;
}
article.post-large-image-1 .gf-post-title {
  margin-top: 8px;
}
article.post-large-image-1 .gf-post-meta .meta-cat > a:hover {
  color: #252525;
}
article.post-large-image-1 .gf-post-meta .meta-author > a {
  color: #636363;
}
article.post-large-image-1 .entry-thumb-wrap + .gf-post-content {
  padding-top: 18px;
}
/* Large Image 2*/
article.post-large-image-2 .gf-post-title {
  font-size: 30px;
  margin-bottom: 0;
  line-height: 32px;
  margin-top: 8px;
}
article.post-large-image-2 .gf-post-meta .meta-cat > a:hover {
  color: #252525;
}
article.post-large-image-2 .entry-thumb-wrap + .gf-post-content {
  padding-top: 20px;
}
/* Large Image 3*/
article.post-large-image-3 .gf-post-title {
  font-size: 20px;
  margin-bottom: 0;
  line-height: 22px;
}
article.post-large-image-3 .gf-post-meta .meta-cat > a:hover {
  color: #252525;
}
article.post-large-image-3 .entry-thumb-wrap + .gf-post-content {
  padding-top: 15px;
}
/* Large Image 4*/
article.post-large-image-4 {
  text-align: center;
}
article.post-large-image-4 .gf-post-inner {
  margin-bottom: -5px;
}
article.post-large-image-4 .gf-post-title {
  font-size: 18px;
  margin-bottom: 9px;
  line-height: 20px;
}
article.post-large-image-4 .gf-post-meta .meta-cat > a:hover {
  color: #252525;
}
article.post-large-image-4 .entry-thumb-wrap + .gf-post-content {
  padding-top: 20px;
}
/* Large Image 5*/
article.post-large-image-5 .gf-post-title {
  font-size: 20px;
  margin-bottom: 13px;
  line-height: 22px;
}
article.post-large-image-5 .gf-post-meta .meta-cat > a:hover {
  color: #252525;
}
article.post-large-image-5 .gf-post-meta .meta-author > a {
  color: #636363;
}
article.post-large-image-5 .entry-thumb-wrap + .gf-post-content {
  padding-top: 15px;
}
/* Large Image 6*/
article.post-large-image-6 .gf-post-title {
  font-size: 18px;
  margin-bottom: 10px;
  line-height: 20px;
}
article.post-large-image-6 .gf-post-excerpt {
  margin-bottom: 15px;
}
article.post-large-image-6 .gf-post-meta .meta-cat > a:hover {
  color: #252525;
}
article.post-large-image-6 .gf-post-meta .meta-author > a {
  color: #636363;
}
article.post-large-image-6 .entry-thumb-wrap + .gf-post-content {
  padding-top: 15px;
}
/* Large Image 7*/
article.post-large-image-7 {
  text-align: center;
}
article.post-large-image-7 .gf-post-inner {
  margin-bottom: -5px;
}
article.post-large-image-7 .gf-post-title {
  font-size: 30px;
  margin-bottom: 15px;
  line-height: 32px;
}
article.post-large-image-7 .gf-post-meta .meta-cat > a:hover {
  color: #252525;
}
article.post-large-image-7 .entry-thumb-wrap + .gf-post-content {
  padding-top: 15px;
}
/* Large Image 8*/
article.post-large-image-8 .gf-post-title {
  font-size: 30px;
  margin-bottom: 8px;
  margin-top: 15px;
  line-height: 32px;
}
article.post-large-image-8 .gf-post-meta .meta-cat > a:hover {
  color: #252525;
}
article.post-large-image-8 .gf-post-meta .meta-author > a {
  color: #636363;
}
article.post-large-image-8 .entry-thumb-wrap + .gf-post-content {
  padding-top: 17px;
}
/* Large Image 9*/
article.post-large-image-9 .gf-post-title {
  font-size: 18px;
  margin-bottom: 5px;
  line-height: 20px;
}
article.post-large-image-9 .gf-post-meta .meta-author > a {
  color: #636363;
}
article.post-large-image-9 .entry-thumb-wrap + .gf-post-content {
  padding-top: 15px;
}
/* Large Image 10*/
article.post-large-image-10 .gf-post-title {
  font-size: 20px;
  margin-bottom: 0;
  line-height: 22px;
}
article.post-large-image-10 .gf-post-meta .meta-date > a {
  color: #e1757d;
}
article.post-large-image-10 .gf-post-meta .meta-date > a:hover {
  color: #252525;
}
article.post-large-image-10 .entry-thumb-wrap + .gf-post-content {
  padding-top: 35px;
}
article.post-large-image-10 .entry-thumbnail-overlay {
  margin: auto;
}
/* Large Image 11*/
article.post-large-image-11 .gf-post-title {
  font-size: 30px;
  margin-bottom: 11px;
  margin-top: 15px;
  line-height: 32px;
  text-transform: uppercase;
}
article.post-large-image-11 .gf-post-meta .meta-cat > a:hover {
  color: #252525;
}
article.post-large-image-11 .gf-post-meta .meta-author > a {
  color: #636363;
}
article.post-large-image-11 .gf-post-content + .entry-thumb-wrap {
  padding-top: 20px;
}
/* Large Image 12*/
article.post-large-image-12 .gf-post-title {
  font-size: 30px;
  margin-bottom: 12px;
  margin-top: 11px;
  line-height: 32px;
  text-transform: uppercase;
}
article.post-large-image-12 .gf-post-meta .meta-cat > a:hover {
  color: #252525;
}
article.post-large-image-12 .gf-post-meta .meta-author > a {
  color: #636363;
}
article.post-large-image-12 .gf-post-content {
  padding-bottom: 18px;
}
article.post-large-image-12 .entry-thumb-wrap,
article.post-large-image-12 .gf-post-excerpt {
  padding-bottom: 17px;
}
article.post-large-image-12 .gf-post-excerpt .read-more {
  display: block;
  margin-top: 12px;
  font-size: 11px;
  overflow: hidden;
  text-decoration: none;
}
article.post-large-image-12 .gf-post-excerpt .read-more:hover {
  color: #252525;
}
article.post-large-image-12 .gf-post-excerpt .read-more span {
  position: relative;
}
article.post-large-image-12 .gf-post-excerpt .read-more span:after {
  content: '';
  display: block;
  position: absolute;
  left: 100%;
  width: 1000px;
  height: 1px;
  top: 50%;
  background: #ebebeb;
  margin-left: 13px;
}
/* Large Image 13*/
article.post-large-image-13 .gf-post-title {
  font-size: 48px;
  line-height: 50px;
  text-transform: uppercase;
  margin-top: 0;
  position: relative;
  overflow: hidden;
}
article.post-large-image-13 .gf-post-meta {
  float: left;
  margin-right: 35px;
  margin-top: 1px;
}
article.post-large-image-13 .gf-post-meta .meta-cat > a:hover {
  color: #252525;
}
article.post-large-image-13 .gf-post-meta .meta-author > a {
  color: #e1757d;
}
article.post-large-image-13 .gf-post-meta > li {
  display: block;
}
article.post-large-image-13 .gf-post-meta > li.slash {
  display: none;
}
article.post-large-image-13 .gf-post-content {
  margin-top: 23px;
}
/* Large Image 14*/
article.post-large-image-14 .gf-post-title {
  font-size: 24px;
  line-height: 26px;
  text-transform: uppercase;
  margin-top: 14px;
}
article.post-large-image-14 .gf-post-meta .meta-author > a {
  color: #e1757d;
}
article.post-large-image-14 .entry-thumb-wrap + .gf-post-content {
  padding-top: 23px;
}
/* Medium Image 1*/
article.post-medium-image-1 .entry-thumb-wrap {
  float: left;
  margin-right: 20px;
  width: 190px;
}
article.post-medium-image-1 .entry-thumb-wrap + .gf-post-content {
  position: relative;
  overflow: hidden;
}
article.post-medium-image-1 .gf-post-title {
  font-size: 14px;
  margin-top: 7px;
  margin-bottom: 13px;
  line-height: 17px;
}
article.post-medium-image-1 .gf-post-meta .meta-cat > a:hover {
  color: #252525;
}
article.post-medium-image-1.sticky .gf-post-inner .entry-thumb-wrap + .gf-post-content {
  padding: 25px 15px 0 0;
}
@media (max-width: 767px) {
  article.post-medium-image-1 .entry-thumb-wrap {
    float: inherit !important;
    margin-right: 0;
    margin-bottom: 20px;
  }
}
/* Medium Image 2*/
article.post-medium-image-2 .entry-thumb-wrap {
  float: left;
  margin-right: 20px;
  width: 190px;
}
article.post-medium-image-2 .entry-thumb-wrap + .gf-post-content {
  position: relative;
  overflow: hidden;
}
article.post-medium-image-2 .gf-author-avatar {
  margin-bottom: 17px;
}
article.post-medium-image-2 .gf-author-avatar img {
  width: 50px;
  height: 50px;
  margin-left: auto;
  margin-right: auto;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
}
article.post-medium-image-2 .gf-post-title {
  font-size: 18px;
  margin-top: 7px;
  margin-bottom: 12px;
  line-height: 20px;
}
article.post-medium-image-2 .gf-post-meta .meta-author > a {
  color: #636363;
}
article.post-medium-image-2.sticky .gf-post-inner .entry-thumb-wrap + .gf-post-content {
  padding: 25px 15px 0 0;
}
@media (max-width: 767px) {
  article.post-medium-image-2 .entry-thumb-wrap {
    float: inherit !important;
    margin-right: auto;
    margin-bottom: 20px;
    margin-left: auto;
  }
}
/* Medium Image 3*/
article.post-medium-image-3 .entry-thumb-wrap {
  float: left;
  margin-right: 20px;
  width: 115px;
}
article.post-medium-image-3 .entry-thumb-wrap + .gf-post-content {
  position: relative;
  overflow: hidden;
}
article.post-medium-image-3 .gf-post-title {
  font-size: 18px;
  margin-top: 0;
  margin-bottom: 9px;
  color: #fff;
  line-height: 20px;
}
article.post-medium-image-3 .gf-post-meta .meta-author {
  color: #fff;
}
article.post-medium-image-3 .gf-post-meta .meta-author > a {
  color: #d7d7d7;
}
article.post-medium-image-3.sticky .gf-post-inner .entry-thumb-wrap + .gf-post-content {
  padding: 25px 15px 0 0;
}
@media (max-width: 767px) {
  article.post-medium-image-3 .entry-thumb-wrap {
    float: inherit !important;
    margin-right: 0;
    margin-bottom: 20px;
  }
}
/* Medium Image 4*/
article.post-medium-image-4 .entry-thumb-wrap {
  float: left;
  margin-right: 20px;
  width: 190px;
}
article.post-medium-image-4 .entry-thumb-wrap + .gf-post-content {
  position: relative;
  overflow: hidden;
}
article.post-medium-image-4 .gf-post-title {
  font-size: 18px;
  margin-top: 10px;
  margin-bottom: 11px;
  line-height: 20px;
}
article.post-medium-image-4 .gf-post-meta .meta-cat > a:hover {
  color: #252525;
}
article.post-medium-image-4 .gf-post-meta .meta-author,
article.post-medium-image-4 .gf-post-meta .slash {
  display: none;
}
article.post-medium-image-4.sticky .gf-post-inner .entry-thumb-wrap + .gf-post-content {
  padding: 25px 15px 0 0;
}
@media (max-width: 767px) {
  article.post-medium-image-4 .entry-thumb-wrap {
    float: inherit !important;
    margin-right: 0;
    margin-bottom: 20px;
  }
}
/* Medium Image 5*/
article.post-medium-image-5 .entry-thumb-wrap {
  float: left;
  margin-right: 20px;
  width: 115px;
}
article.post-medium-image-5 .entry-thumb-wrap + .gf-post-content {
  position: relative;
  overflow: hidden;
}
article.post-medium-image-5 .gf-post-title {
  font-size: 20px;
  margin-top: 10px;
  margin-bottom: 10px;
  line-height: 22px;
}
article.post-medium-image-5 .gf-post-meta .meta-cat > a:hover {
  color: #252525;
}
article.post-medium-image-5 .gf-post-meta .meta-author > a {
  color: #636363;
}
article.post-medium-image-5.sticky .gf-post-inner .entry-thumb-wrap + .gf-post-content {
  padding: 25px 15px 0 0;
}
@media (max-width: 767px) {
  article.post-medium-image-5 .entry-thumb-wrap {
    float: inherit !important;
    margin-right: 0;
    margin-bottom: 20px;
  }
}
/* Medium Image 6*/
article.post-medium-image-6 .entry-thumb-wrap {
  float: left;
  margin-right: 20px;
  width: 535px;
}
article.post-medium-image-6 .entry-thumb-wrap + .gf-post-content {
  position: relative;
  overflow: hidden;
  padding-top: 0;
}
article.post-medium-image-6 .gf-post-title {
  font-size: 24px;
  margin-top: 10px;
  margin-bottom: 12px;
}
article.post-medium-image-6 .gf-post-excerpt {
  margin-bottom: 5px;
}
article.post-medium-image-6 .gf-post-meta .meta-cat > a:hover {
  color: #252525;
}
article.post-medium-image-6 .gf-post-meta .meta-author > a {
  color: #636363;
}
article.post-medium-image-6.sticky .gf-post-inner .entry-thumb-wrap + .gf-post-content {
  padding: 25px 15px 0 0;
}
@media (max-width: 767px) {
  article.post-medium-image-6 .entry-thumb-wrap {
    float: inherit !important;
    margin-right: 0;
    margin-bottom: 20px;
    width: 100%;
  }
}
/* Medium Image 7*/
article.post-medium-image-7 .entry-thumb-wrap {
  float: left;
  margin-right: 20px;
  width: 115px;
}
article.post-medium-image-7 .entry-thumb-wrap + .gf-post-content {
  position: relative;
  overflow: hidden;
}
article.post-medium-image-7 .gf-post-title {
  font-size: 18px;
  color: #fff;
  margin-top: 5px;
  margin-bottom: 0;
  line-height: 20px;
}
article.post-medium-image-7 .gf-post-meta .meta-author {
  color: #fff;
}
article.post-medium-image-7 .gf-post-meta .meta-author > a {
  color: #d7d7d7;
}
article.post-medium-image-7.sticky .gf-post-inner .entry-thumb-wrap + .gf-post-content {
  padding: 25px 15px 0 0;
}
@media (max-width: 767px) {
  article.post-medium-image-7 .entry-thumb-wrap {
    float: inherit !important;
    margin-right: 0;
    margin-bottom: 20px;
  }
}
/* Medium Image 8*/
article.post-medium-image-8 .entry-thumb-wrap {
  float: left;
  margin-right: 20px;
  width: 190px;
}
article.post-medium-image-8 .entry-thumb-wrap + .gf-post-content {
  position: relative;
  overflow: hidden;
}
article.post-medium-image-8 .gf-post-title {
  font-size: 18px;
  margin-top: 0;
  margin-bottom: 10px;
  line-height: 20px;
}
article.post-medium-image-8.sticky .gf-post-inner .entry-thumb-wrap + .gf-post-content {
  padding: 25px 15px 0 0;
}
@media (max-width: 767px) {
  article.post-medium-image-8 .entry-thumb-wrap {
    float: inherit !important;
    margin-right: 0;
    margin-bottom: 20px;
  }
}
/* Medium Image 9*/
article.post-medium-image-9 .entry-thumb-wrap {
  float: left;
  margin-right: 20px;
  width: 115px;
}
article.post-medium-image-9 .entry-thumb-wrap + .gf-post-content {
  position: relative;
  overflow: hidden;
}
article.post-medium-image-9 .gf-post-title {
  font-size: 20px;
  margin-top: 10px;
  margin-bottom: 12px;
  line-height: 22px;
}
article.post-medium-image-9 .gf-post-excerpt {
  margin-bottom: 5px;
}
article.post-medium-image-9 .gf-post-meta .meta-cat > a:hover {
  color: #252525;
}
article.post-medium-image-9 .gf-post-meta .meta-comment > a {
  color: #636363;
}
article.post-medium-image-9.sticky .gf-post-inner .entry-thumb-wrap + .gf-post-content {
  padding: 25px 15px 0 0;
}
@media (max-width: 767px) {
  article.post-medium-image-9 .entry-thumb-wrap {
    float: inherit !important;
    margin-right: 0;
    margin-bottom: 20px;
  }
}
/* Medium Image 10*/
article.post-medium-image-10 .gf-post-inner {
  margin-bottom: -5px;
}
article.post-medium-image-10 .gf-post-content-inner {
  margin-top: 15px;
  margin-bottom: 13px;
}
article.post-medium-image-10 .entry-thumb-wrap {
  width: 115px;
  margin-right: 15px;
  float: left;
}
article.post-medium-image-10 .entry-thumb-wrap + .gf-post-title {
  position: relative;
  overflow: hidden;
}
article.post-medium-image-10 .gf-post-title {
  font-size: 20px;
  margin-bottom: 0;
  margin-top: 0;
  line-height: 22px;
}
article.post-medium-image-10 .gf-post-excerpt {
  margin-bottom: 5px;
}
article.post-medium-image-10 .gf-post-meta .meta-cat > a:hover {
  color: #252525;
}
article.post-medium-image-10 .gf-post-meta .meta-comment > a {
  color: #636363;
}
article.post-medium-image-10.sticky .gf-post-inner .entry-thumb-wrap + .gf-post-content {
  padding: 25px 15px 0 0;
}
@media (max-width: 767px) {
  article.post-medium-image-10 .entry-thumb-wrap {
    float: inherit !important;
    margin-right: 0;
    margin-bottom: 15px;
  }
}
/* Medium Image 11*/
article.post-medium-image-11 .entry-thumb-wrap {
  display: table-cell;
  width: 575px;
}
article.post-medium-image-11 .gf-post-content {
  padding: 20px;
}
article.post-medium-image-11 .entry-thumb-wrap + .gf-post-content {
  background: #000;
  overflow: hidden;
  display: table-cell;
  vertical-align: middle;
}
article.post-medium-image-11 .gf-post-title {
  font-size: 24px;
  margin-top: 10px;
  margin-bottom: 12px;
  color: #fff;
  line-height: 26px;
}
article.post-medium-image-11 .gf-post-excerpt {
  margin-bottom: 5px;
}
article.post-medium-image-11 .gf-post-meta .meta-cat > a:hover {
  color: #fff;
}
article.post-medium-image-11.sticky .gf-post-inner .entry-thumb-wrap + .gf-post-content {
  padding: 25px 15px 0 0;
}
article.post-medium-image-11.post-default.format-gallery .owl-theme .owl-nav.disabled + .owl-dots {
  margin-top: 0;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
  bottom: 10px;
}
@media (max-width: 767px) {
  article.post-medium-image-11 .entry-thumb-wrap {
    display: block;
    width: 100%;
  }
  article.post-medium-image-11 .entry-thumb-wrap + .gf-post-content {
    display: block;
  }
}
/* Medium Image 12*/
article.post-medium-image-12 .entry-thumb-wrap {
  float: right;
  margin-left: 35px;
  width: 190px;
}
article.post-medium-image-12 .entry-thumb-wrap + .gf-post-content {
  position: relative;
  overflow: hidden;
}
article.post-medium-image-12 .gf-post-title {
  font-size: 20px;
  margin-top: 10px;
  margin-bottom: 12px;
  line-height: 22px;
}
article.post-medium-image-12 .gf-post-excerpt {
  margin-bottom: 5px;
}
article.post-medium-image-12 .gf-post-meta .meta-cat > a:hover {
  color: #252525;
}
article.post-medium-image-12 .gf-post-meta .meta-comment > a {
  color: #636363;
}
article.post-medium-image-12.sticky .gf-post-inner .entry-thumb-wrap + .gf-post-content {
  padding: 25px 15px 0 0;
}
@media (max-width: 767px) {
  article.post-medium-image-12 .entry-thumb-wrap {
    float: inherit !important;
    margin-left: 0;
    margin-bottom: 20px;
  }
}
/* Medium Image 13*/
article.post-medium-image-13 .entry-thumb-wrap {
  float: right;
  margin-left: 30px;
  width: 305px;
}
article.post-medium-image-13 .entry-thumb-wrap + .gf-post-content {
  position: relative;
  overflow: hidden;
}
article.post-medium-image-13 .gf-post-title {
  font-size: 20px;
  margin-top: 10px;
  margin-bottom: 7px;
  line-height: 22px;
}
article.post-medium-image-13 .gf-post-excerpt {
  margin-top: 13px;
  margin-bottom: 10px;
}
article.post-medium-image-13 .gf-post-meta .meta-cat > a:hover,
article.post-medium-image-13 .gf-post-meta .meta-tag > a:hover {
  color: #252525;
}
article.post-medium-image-13 .gf-post-meta .meta-author > a {
  color: #636363;
}
article.post-medium-image-13 .gf-post-meta .meta-tag a {
  color: #e1757d;
}
article.post-medium-image-13.sticky .gf-post-inner .entry-thumb-wrap + .gf-post-content {
  padding: 25px 15px 0 0;
}
@media (max-width: 767px) {
  article.post-medium-image-13 .entry-thumb-wrap {
    float: inherit !important;
    margin-left: 0;
    margin-bottom: 20px;
  }
}
/* Medium Image 14*/
article.post-medium-image-14 .gf-post-content-left {
  display: table-cell;
  vertical-align: top;
  padding-right: 20px;
}
article.post-medium-image-14 .entry-thumb-wrap {
  width: 115px;
  display: table-cell;
  vertical-align: top;
}
article.post-medium-image-14 .gf-post-title {
  font-size: 18px;
  line-height: 20px;
}
article.post-medium-image-14 .gf-post-excerpt {
  margin-bottom: 5px;
}
article.post-medium-image-14 .gf-post-meta .meta-cat > a:hover {
  color: #252525;
}
article.post-medium-image-14 .gf-post-meta .meta-comment > a {
  color: #636363;
}
article.post-medium-image-14.sticky .gf-post-inner .entry-thumb-wrap + .gf-post-content {
  padding: 25px 15px 0 0;
}
/* Medium Image 15*/
article.post-medium-image-15 .gf-post-content-left {
  float: left;
  border-top: solid 1px #000;
  text-align: right;
  padding-top: 16px;
  margin-right: 30px;
  max-width: 85px;
}
article.post-medium-image-15 .entry-thumb-wrap {
  width: 385px;
  float: left;
  margin-right: 22px;
}
article.post-medium-image-15 .entry-thumb-wrap + .gf-post-content-right {
  position: relative;
  overflow: hidden;
}
article.post-medium-image-15 .gf-post-content-left + .gf-post-content-right {
  position: relative;
  overflow: hidden;
}
article.post-medium-image-15 .gf-post-meta + .gf-post-meta {
  margin-top: 5px;
}
article.post-medium-image-15 .gf-post-title {
  margin-bottom: 9px;
}
article.post-medium-image-15 .gf-post-excerpt {
  margin-top: 12px;
}
article.post-medium-image-15 .gf-post-meta .meta-cat > a:hover {
  color: #252525;
}
article.post-medium-image-15 .gf-post-meta .meta-author > a {
  color: #636363;
}
article.post-medium-image-15.sticky .gf-post-inner .entry-thumb-wrap + .gf-post-content {
  padding: 25px 15px 0 0;
}
@media (max-width: 767px) {
  article.post-medium-image-15 .gf-post-content-left {
    float: inherit !important;
    margin-right: 0;
    max-width: inherit;
    text-align: left;
    margin-bottom: 15px;
  }
  article.post-medium-image-15 .entry-thumb-wrap {
    width: 100%;
    float: inherit !important;
    margin-right: 0;
  }
  article.post-medium-image-15 .gf-post-content-right {
    margin-top: 0;
  }
}
/* Medium Image 16*/
article.post-medium-image-16 .entry-thumb-wrap {
  width: 385px;
  float: right;
  margin-left: 30px;
}
article.post-medium-image-16 .entry-thumb-wrap + .gf-post-content {
  position: relative;
  overflow: hidden;
}
article.post-medium-image-16 .gf-post-content-col-1 {
  float: left;
  border-top: solid 1px #000;
  margin-right: 30px;
  max-width: 85px;
  text-align: right;
  padding-top: 16px;
}
article.post-medium-image-16 .gf-post-content-col-1 + .gf-post-content-col-2 {
  position: relative;
  overflow: hidden;
}
article.post-medium-image-16 .gf-post-meta + .gf-post-meta {
  margin-top: 5px;
}
article.post-medium-image-16 .gf-post-title {
  margin-bottom: 9px;
}
article.post-medium-image-16 .gf-post-excerpt {
  margin-top: 12px;
}
article.post-medium-image-16 .gf-post-meta .meta-cat > a:hover {
  color: #252525;
}
article.post-medium-image-16 .gf-post-meta .meta-author > a {
  color: #636363;
}
article.post-medium-image-16.sticky .gf-post-inner .entry-thumb-wrap + .gf-post-content {
  padding: 25px 15px 0 0;
}
@media (max-width: 767px) {
  article.post-medium-image-16 .gf-post-content-col-1 {
    float: inherit !important;
    max-width: inherit;
    text-align: left;
    margin-right: 0;
  }
  article.post-medium-image-16 .gf-post-content {
    margin-top: 15px;
  }
  article.post-medium-image-16 .entry-thumb-wrap {
    width: 100%;
    float: inherit !important;
    margin-left: 0;
  }
}
/* Medium Image 17*/
article.post-medium-image-17 .entry-thumb-wrap {
  float: right;
  margin-left: 20px;
  width: 535px;
}
article.post-medium-image-17 .entry-thumb-wrap + .gf-post-content {
  position: relative;
  overflow: hidden;
  padding-top: 0;
}
article.post-medium-image-17 .gf-post-title {
  font-size: 24px;
  margin-top: 10px;
  margin-bottom: 12px;
}
article.post-medium-image-17 .gf-post-excerpt {
  margin-bottom: 5px;
}
article.post-medium-image-17 .gf-post-meta .meta-cat > a:hover {
  color: #252525;
}
article.post-medium-image-17 .gf-post-meta .meta-author > a {
  color: #636363;
}
article.post-medium-image-17.sticky .gf-post-inner .entry-thumb-wrap + .gf-post-content {
  padding: 25px 15px 0 0;
}
@media (max-width: 767px) {
  article.post-medium-image-17 .entry-thumb-wrap {
    width: 100%;
    float: inherit !important;
    margin-left: 0;
  }
  article.post-medium-image-17 .entry-thumb-wrap + .gf-post-content {
    padding-top: 15px;
  }
}
/* Medium Image 17*/
article.post-medium-image-18 .entry-thumb-wrap {
  float: right;
  margin-left: 90px;
  width: 920px;
}
article.post-medium-image-18 .entry-thumb-wrap + .gf-post-content {
  position: relative;
  overflow: hidden;
  padding-top: 0;
}
article.post-medium-image-18 .gf-post-content {
  margin-top: 55px;
}
article.post-medium-image-18 .gf-post-title {
  font-size: 30px;
  margin-top: 12px;
  margin-bottom: 12px;
  color: #fff;
  line-height: 32px;
}
article.post-medium-image-18 .gf-post-meta .meta-cat > a:hover {
  color: #fff;
}
article.post-medium-image-18 .owl-theme .owl-dots {
  margin-top: -5px;
}
@media (max-width: 1024px) {
  article.post-medium-image-18 .entry-thumb-wrap {
    margin-left: 48px;
    width: 490px;
  }
}
@media (max-width: 767px) {
  article.post-medium-image-18 .entry-thumb-wrap {
    width: 100%;
    float: inherit !important;
    margin-left: 0;
  }
  article.post-medium-image-18 .entry-thumb-wrap + .gf-post-content {
    padding-top: 15px;
    margin-top: 30px;
  }
}
/* List 1*/
article.post-list-1 .gf-post-title {
  font-size: 14px;
  line-height: 22px;
  margin-bottom: 0;
  margin-top: 0;
}
article.post-list-1 .gf-post-title:before {
  content: '';
  display: inline-block;
  width: 5px;
  height: 5px;
  background: #e1757d;
  float: left;
  position: relative;
  top: 9px;
}
article.post-list-1 .gf-post-title > a {
  display: block;
  position: relative;
  overflow: hidden;
  padding-left: 15px;
}
/* List 2*/
article.post-list-2 .gf-post-content {
  margin-bottom: -6px;
}
article.post-list-2 .gf-post-title {
  font-size: 18px;
  margin-top: 10px;
  margin-bottom: 10px;
  line-height: 20px;
}
article.post-list-2 .gf-post-meta .meta-author > a {
  color: #636363;
}
article.post-list-2 .gf-post-meta .meta-cat > a:hover {
  color: #252525;
}
/* List 3*/
article.post-list-3 .gf-post-inner {
  margin-top: -14px;
}
article.post-list-3 .gf-post-index {
  float: left;
  margin-right: 20px;
  font-size: 72px;
  font-weight: 600;
  font-style: italic;
  color: #acacac;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
  line-height: 1;
}
article.post-list-3 .gf-post-index + .gf-post-content {
  position: relative;
  overflow: hidden;
}
article.post-list-3 .gf-post-title {
  font-size: 18px;
  margin-top: 8px;
  margin-bottom: 10px;
  line-height: 20px;
}
article.post-list-3 .gf-post-meta .meta-author > a,
article.post-list-3 .gf-post-meta .meta-comment > a {
  color: #636363;
}
article.post-list-3:hover .gf-post-index {
  color: #252525;
}
article.post-list-3.sticky .gf-post-index {
  padding: 30px 25px;
}
article.post-list-4 .gf-post-title {
  font-size: 16px;
  margin-top: 0;
  margin-bottom: 10px;
  line-height: 18px;
  font-family: 'Josefin Sans';
}
article.post-list-4 .gf-post-meta {
  font-family: 'Josefin Sans';
  font-weight: 400;
  margin-bottom: -6px;
}
article.post-list-4 .gf-post-meta .meta-comment > a {
  color: #636363;
}
article.post-list-4 .gf-post-meta .meta-cat > a:hover {
  color: #252525;
}
/*Tall 1*/
article.post-tall-1 .entry-thumb-wrap {
  width: 70.7%;
  float: right;
}
article.post-tall-1 .gf-post-title {
  margin-bottom: 10px;
}
article.post-tall-1 .gf-post-meta .meta-cat > a:hover {
  color: #fff;
}
article.post-tall-1 .entry-thumb-wrap + .gf-post-content {
  position: absolute;
  z-index: 2;
  bottom: -33px;
  margin-bottom: 0;
}
article.post-tall-1 .gf-post-content {
  width: 53%;
  padding: 35px 40px 40px;
  background: #071f2c;
  margin-bottom: -33px;
}
article.post-tall-1 .gf-post-inner {
  margin-bottom: 33px;
}
@media (max-width: 767px) {
  article.post-tall-1 .entry-thumb-wrap {
    width: 100%;
    float: inherit !important;
  }
  article.post-tall-1 .entry-thumb-wrap + .gf-post-content {
    position: inherit;
    right: 0;
    bottom: 0;
  }
  article.post-tall-1 .gf-post-content {
    width: 100%;
  }
  article.post-tall-1.format-gallery .owl-theme .owl-nav.disabled + .owl-dots {
    margin-top: -30px;
    position: relative;
  }
  article.post-tall-1 .gf-post-inner {
    margin-bottom: 0;
  }
}
/*Tall 2*/
article.post-tall-2 .gf-post-title {
  margin-bottom: 10px;
  color: #fff;
}
article.post-tall-2 .gf-post-title > a {
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
article.post-tall-2 .gf-post-title > a:hover,
article.post-tall-2 .gf-post-title > a:focus {
  color: #252525;
}
article.post-tall-2 .gf-post-meta .meta-cat {
  color: #d7d7d7;
}
article.post-tall-2 .gf-post-meta .meta-cat > a {
  color: #d7d7d7;
}
article.post-tall-2 .gf-post-meta .meta-cat > a:hover {
  color: #252525;
}
article.post-tall-2 .entry-thumb-wrap + .gf-post-content {
  position: absolute;
  z-index: 2;
  left: 30px;
  bottom: 30px;
}
article.post-tall-2 .gf-post-content {
  width: 56%;
  padding: 20px 40px;
  background: #e1757d;
}
article.post-tall-2.format-gallery .entry-thumb-wrap + .gf-post-content {
  bottom: 75px;
}
@media (max-width: 767px) {
  article.post-tall-2 .entry-thumb-wrap + .gf-post-content {
    right: 30px;
  }
  article.post-tall-2 .gf-post-content {
    width: inherit;
  }
}
/*Tall 3*/
article.post-tall-3 .gf-post-title {
  margin-bottom: 10px;
  color: #fff;
}
article.post-tall-3 .gf-post-title > a {
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
article.post-tall-3 .gf-post-title > a:hover,
article.post-tall-3 .gf-post-title > a:focus {
  color: #252525;
}
article.post-tall-3 .gf-post-meta .meta-cat {
  color: #d7d7d7;
}
article.post-tall-3 .gf-post-meta .meta-cat > a {
  color: #d7d7d7;
}
article.post-tall-3 .gf-post-meta .meta-cat > a:hover,
article.post-tall-3 .gf-post-meta .meta-cat > a:focus {
  color: #252525;
}
article.post-tall-3 .entry-thumb-wrap + .gf-post-content {
  position: absolute;
  z-index: 2;
  left: 0;
  right: 0;
  bottom: 40px;
  margin: auto;
}
article.post-tall-3 .gf-post-content {
  width: 55%;
  padding: 40px 20px 45px;
  background: #e1757d;
}
article.post-tall-3.format-gallery .entry-thumb-wrap + .gf-post-content {
  bottom: 85px;
}
@media (max-width: 767px) {
  article.post-tall-3 .entry-thumb-wrap + .gf-post-content {
    position: inherit;
    right: auto;
    left: auto;
    bottom: auto;
  }
  article.post-tall-3 .gf-post-content {
    width: inherit;
  }
}
/*Tall 4*/
article.post-tall-4 .entry-thumb-wrap {
  width: 65.3%;
}
article.post-tall-4 .gf-post-title {
  margin-top: 0;
  color: #fff;
  margin-bottom: 9px;
}
article.post-tall-4 .gf-post-meta .meta-date {
  color: #d7d7d7;
}
article.post-tall-4 .entry-thumb-wrap + .gf-post-content {
  position: absolute;
  z-index: 2;
  top: 58px;
  right: 0;
  margin-bottom: 0;
}
article.post-tall-4 .gf-post-content {
  width: 53%;
  padding: 35px;
  background: #000;
  display: inline-block;
}
article.post-tall-4 .gf-post-index {
  display: table-cell;
  font-size: 72px;
  font-weight: 600;
  font-style: italic;
  color: #fff;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  padding-right: 21px;
  vertical-align: middle;
  line-height: 1;
}
article.post-tall-4 .gf-post-content-inner {
  display: table-cell;
  vertical-align: middle;
  border-left: solid 1px #fff;
  padding: 10px 0 10px 23px;
}
@media (max-width: 767px) {
  article.post-tall-4 .entry-thumb-wrap {
    width: 100%;
    float: inherit !important;
  }
  article.post-tall-4 .entry-thumb-wrap + .gf-post-content {
    position: inherit;
    z-index: 2;
    right: auto;
    top: auto;
    width: 100%;
  }
  article.post-tall-4.format-gallery .owl-theme .owl-nav.disabled + .owl-dots {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 10px;
  }
}
/*Tall 5*/
article.post-tall-5 .gf-post-title {
  margin-bottom: 24px;
  color: #fff;
  margin-top: 7px;
}
article.post-tall-5 .gf-post-meta .meta-cat > a:hover {
  color: #fff;
}
article.post-tall-5 .gf-post-content {
  position: absolute;
  z-index: 2;
  left: 0;
  right: 0;
  bottom: 55px;
  margin: auto;
  text-align: center;
  max-width: 60%;
}
article.post-tall-5.format-gallery .entry-thumb-wrap + .gf-post-content {
  bottom: 100px;
}
@media (max-width: 767px) {
  article.post-tall-5 .gf-post-content {
    position: inherit;
    left: auto;
    bottom: auto;
    max-width: inherit;
    right: auto;
    padding: 0 15px;
    margin-top: 20px;
  }
  article.post-tall-5 .gf-post-title {
    color: #252525;
  }
}
/*Tall 6*/
article.post-tall-6 .gf-post-title {
  color: #fff;
}
article.post-tall-6 .gf-post-meta .meta-cat > a:hover {
  color: #fff;
}
article.post-tall-6 .gf-post-meta .meta-author > a {
  color: #fff;
}
article.post-tall-6 .gf-post-content {
  position: absolute;
  z-index: 2;
  left: 0;
  right: 0;
  bottom: 45px;
  margin: auto;
  text-align: center;
  max-width: 60%;
}
article.post-tall-6.format-gallery .entry-thumb-wrap + .gf-post-content {
  bottom: 90px;
}
@media (max-width: 767px) {
  article.post-tall-6 .gf-post-content {
    max-width: 100%;
    position: inherit;
    left: auto;
    bottom: auto;
    right: auto;
    margin-top: 20px;
  }
  article.post-tall-6 .gf-post-title {
    color: #252525;
  }
  article.post-tall-6 .gf-post-meta .meta-cat > a {
    color: #252525;
  }
  article.post-tall-6 .gf-post-meta .meta-author > a {
    color: inherit;
  }
}
/*Tall 7*/
article.post-tall-7 .gf-post-title {
  margin-bottom: 10px;
  color: #fff;
}
article.post-tall-7 .gf-post-meta .meta-cat > a:hover {
  color: #fff;
}
article.post-tall-7 .entry-thumb-wrap + .gf-post-content {
  position: relative;
  z-index: 2;
  top: -94px;
  margin-bottom: -94px;
}
article.post-tall-7 .gf-post-content {
  padding: 50px 67px;
  margin-left: 50px;
  margin-right: 50px;
  background: #000;
  text-align: center;
}
article.post-tall-7 .gf-post-content-inner {
  display: table-cell;
  vertical-align: middle;
  border-left: solid 1px #fff;
  padding: 10px 0 10px 23px;
}
article.post-tall-7.format-gallery .owl-theme .owl-nav.disabled + .owl-dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 105px;
}
@media (max-width: 767px) {
  article.post-tall-7 .gf-post-content {
    margin-left: 0;
    margin-right: 0;
    padding: 30px 37px;
    margin-bottom: 0;
    top: auto;
  }
}
/*Tall 8*/
article.post-tall-8 .gf-post-title {
  margin-bottom: 10px;
  color: #fff;
}
article.post-tall-8 .gf-post-title > a {
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
article.post-tall-8 .gf-post-title > a:hover,
article.post-tall-8 .gf-post-title > a:focus {
  color: #252525;
}
article.post-tall-8 .gf-post-meta .meta-cat {
  color: #fff;
}
article.post-tall-8 .gf-post-meta .meta-cat > a {
  color: #fff;
}
article.post-tall-8 .gf-post-meta .meta-cat > a:hover,
article.post-tall-8 .gf-post-meta .meta-cat > a:focus {
  color: #252525;
}
article.post-tall-8 .gf-post-meta .meta-date > a {
  color: #d7d7d7;
}
article.post-tall-8 .gf-post-meta .meta-date > a:hover,
article.post-tall-8 .gf-post-meta .meta-date > a:focus {
  color: #252525;
}
article.post-tall-8 .entry-thumb-wrap + .gf-post-content {
  position: relative;
  z-index: 2;
  top: -93px;
  margin-bottom: -93px;
}
article.post-tall-8 .gf-post-content {
  padding: 50px 30px;
  margin-right: 75px;
  background: #e1757d;
}
article.post-tall-8.format-gallery .owl-theme .owl-nav.disabled + .owl-dots {
  position: relative;
  left: 0;
  right: 0;
  bottom: 105px;
}
@media (max-width: 767px) {
  article.post-tall-8 .gf-post-content {
    padding: 30px 20px;
    margin-right: 30px;
  }
}
/*Tall 9*/
article.post-tall-9 {
  padding-bottom: 37px;
}
article.post-tall-9 .gf-post-title {
  margin-bottom: 10px;
  color: #fff;
  font-size: 30px;
  line-height: 32px;
}
article.post-tall-9 .gf-post-title > a {
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
article.post-tall-9 .gf-post-title > a:hover,
article.post-tall-9 .gf-post-title > a:focus {
  color: #252525;
}
article.post-tall-9 .gf-post-meta .meta-cat {
  color: #acacac;
}
article.post-tall-9 .gf-post-meta .meta-cat > a {
  font-size: 12px;
  color: #acacac;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
article.post-tall-9 .gf-post-meta .meta-cat > a:hover,
article.post-tall-9 .gf-post-meta .meta-cat > a:focus {
  color: #252525;
}
article.post-tall-9 .entry-thumb-wrap + .gf-post-content {
  position: absolute;
  z-index: 2;
  width: 37.3%;
  bottom: -37px;
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
}
article.post-tall-9 .gf-post-content {
  padding: 35px 40px 45px;
  background: #e1757d;
}
article.post-tall-9.format-gallery .owl-theme .owl-nav.disabled + .owl-dots {
  position: relative;
  left: 0;
  right: 0;
  bottom: 120px;
}
@media (max-width: 991px) and (min-width: 768px) {
  article.post-tall-9 .entry-thumb-wrap + .gf-post-content {
    width: 70%;
  }
}
@media (max-width: 767px) {
  article.post-tall-9 .entry-thumb-wrap + .gf-post-content {
    width: inherit;
    top: auto;
    margin-bottom: 0;
    position: inherit;
    bottom: 0;
  }
}
/*Tall 10*/
article.post-tall-10 .gf-post-title {
  margin-bottom: 10px;
  color: #fff;
  font-size: 30px;
  line-height: 32px;
}
article.post-tall-10 .gf-post-title > a {
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
article.post-tall-10 .gf-post-title > a:hover,
article.post-tall-10 .gf-post-title > a:focus {
  color: #252525;
}
article.post-tall-10 .gf-post-meta li > a {
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  color: #d7d7d7;
}
article.post-tall-10 .gf-post-meta li > a:hover,
article.post-tall-10 .gf-post-meta li > a:focus {
  color: #252525;
}
article.post-tall-10 .gf-post-meta > li {
  color: #d7d7d7;
}
article.post-tall-10 .gf-post-meta .meta-cat > a {
  color: #d7d7d7;
}
article.post-tall-10 .gf-post-meta .meta-author > a {
  color: #fff;
}
article.post-tall-10 .entry-thumb-wrap + .gf-post-content {
  position: absolute;
  z-index: 2;
  left: 0;
  bottom: 55px;
  margin: auto;
}
article.post-tall-10 .gf-post-content {
  width: 52%;
  padding: 37px 40px;
  background: #e1757d;
}
article.post-tall-10.format-gallery .entry-thumb-wrap + .gf-post-content {
  bottom: 100px;
}
@media (max-width: 767px) {
  article.post-tall-10 .entry-thumb-wrap + .gf-post-content {
    width: inherit;
    bottom: 0;
    position: inherit;
  }
  article.post-tall-10 .gf-post-content {
    width: inherit;
  }
}
/*Tall 11*/
article.post-tall-11 .gf-post-title {
  margin-bottom: 0;
  color: #fff;
  font-size: 36px;
  line-height: 38px;
  background: #000;
  padding-bottom: 9px;
  padding-left: 8px;
  padding-right: 8px;
  padding-top: 5px;
  margin-top: 6px;
  display: inline-block;
}
article.post-tall-11 .gf-post-title > a {
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
article.post-tall-11 .gf-post-title > a:hover {
  color: #e1757d;
}
article.post-tall-11 .gf-post-meta .meta-cat > a {
  font-size: 12px;
}
article.post-tall-11 .gf-post-meta .meta-cat > a:hover {
  color: #fff;
}
article.post-tall-11 .entry-thumb-wrap + .gf-post-content {
  position: absolute;
  z-index: 2;
  left: 69px;
  bottom: 68px;
}
article.post-tall-11 .gf-post-content {
  width: 56.3%;
}
@media (max-width: 767px) {
  article.post-tall-11 .entry-thumb-wrap + .gf-post-content {
    position: inherit;
    z-index: 2;
    left: auto;
    bottom: auto;
    margin-top: 15px;
  }
  article.post-tall-11 .gf-post-content {
    width: 100%;
  }
}
/*Tall 12*/
article.post-tall-12 .gf-post-title {
  margin-bottom: 0;
  margin-top: 7px;
}
article.post-tall-12 .gf-post-title > a {
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
article.post-tall-12 .gf-post-title > a:hover {
  color: #e1757d;
}
article.post-tall-12 .gf-post-meta .meta-cat {
  color: #e1757d;
}
article.post-tall-12 .gf-post-meta .meta-cat > a {
  color: #e1757d;
}
article.post-tall-12 .gf-post-meta .meta-cat > a:hover {
  color: #252525;
}
article.post-tall-12 .gf-post-content {
  padding: 34px 30px 33px;
  background: #f2f2ee;
}
article.post-tall-12.format-gallery .owl-theme .owl-nav.disabled + .owl-dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
}
/*Tall 13*/
article.post-tall-13 .post-default.post-tall-13 {
  position: relative;
}
article.post-tall-13 .gf-post-title {
  margin-bottom: 0;
  font-size: 18px;
  margin-top: 7px;
  color: #fff;
  line-height: 20px;
}
article.post-tall-13 .gf-post-title > a {
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
article.post-tall-13 .gf-post-meta .meta-cat {
  color: #fff;
}
article.post-tall-13 .gf-post-meta .meta-cat > a {
  color: #fff;
}
article.post-tall-13 .entry-thumb-wrap + .gf-post-content {
  position: absolute;
  z-index: 2;
  bottom: 0;
}
article.post-tall-13 .gf-post-content {
  padding: 28px 30px;
}
article.post-tall-13:hover .gf-post-title > a {
  color: #252525;
}
article.post-tall-13:hover .gf-post-meta .meta-cat > a {
  color: #e1757d;
}
article.post-tall-13:hover .entry-thumbnail-overlay:after {
  opacity: 1;
}
article.post-tall-13 .entry-thumbnail-overlay:after {
  background-color: rgba(255, 255, 255, 0.8);
}
article.post-tall-13.format-gallery .entry-thumb-wrap + .gf-post-content {
  bottom: 45px;
}
.gf-feature.feature-1 {
  border-bottom: dashed 1px #ebebeb;
  margin-bottom: 40px;
}
.gf-feature.feature-2 {
  border-bottom: dashed 1px #ebebeb;
  margin-bottom: 30px;
}
.gf-feature.feature-3 {
  /* Large Image 1*/
  border-bottom: dashed 1px #ebebeb;
  margin-bottom: 30px;
}
.gf-feature.feature-3 article.post-large-image-1 .gf-post-title {
  font-size: 30px;
  margin-top: 13px;
  margin-bottom: 18px;
  line-height: 32px;
}
.gf-feature.feature-3 article.post-large-image-1 .gf-post-meta .meta-cat > a {
  font-size: 12px;
}
.gf-feature.feature-4 {
  /*Tall 11*/
  border-bottom: dashed 1px #ebebeb;
  margin-bottom: 40px;
}
.gf-feature.feature-4 article.post-tall-11 .gf-post-title {
  font-size: 30px;
  line-height: 32px;
  background: #e1757d;
  margin-top: 15px;
}
.gf-feature.feature-4 article.post-tall-11 .gf-post-title > a:hover {
  color: #252525;
}
.gf-feature.feature-4 article.post-tall-11 .gf-post-meta .meta-cat > a {
  font-size: 12px;
}
.gf-feature.feature-4 article.post-tall-11 .entry-thumb-wrap + .gf-post-content {
  left: 40px;
  bottom: 40px;
}
.gf-feature.feature-4 article.post-tall-11 .gf-post-content {
  width: 69%;
}
.gf-feature.feature-5 {
  /*Tall 11*/
  border-bottom: dashed 1px #ebebeb;
  margin-bottom: 30px;
}
.gf-feature.feature-5 article.post-large-image-5 {
  padding-bottom: 30px;
}
.gf-feature.feature-5 .col-md-4 + .col-md-4 article.post-large-image-5 {
  border-top: solid 1px #ebebeb;
  padding-top: 40px;
}
.gf-feature.feature-5 article.post-tall-11 .gf-post-title {
  font-size: 30px;
  line-height: 32px;
  margin-top: 15px;
}
.gf-feature.feature-5 article.post-tall-11 .gf-post-meta .meta-cat > a {
  font-size: 12px;
}
.gf-feature.feature-5 article.post-tall-11 .entry-thumb-wrap + .gf-post-content {
  left: 40px;
  bottom: 40px;
}
.gf-feature.feature-5 article.post-tall-11 .gf-post-content {
  width: 69%;
}
.gf-feature.feature-6 {
  /*Tall 9*/
  /* Large Image 1*/
  border-bottom: dashed 1px #ebebeb;
  margin-bottom: 40px;
  padding-bottom: 40px;
}
.gf-feature.feature-6 article.post-tall-9 .entry-thumb-wrap + .gf-post-content {
  width: 77%;
}
.gf-feature.feature-6 article.post-large-image-1 .gf-post-title {
  font-size: 20px;
  margin-top: 10px;
  margin-bottom: 13px;
  line-height: 22px;
}
.gf-feature.feature-7 {
  /*Tall 5*/
  margin-bottom: 60px;
}
.gf-feature.feature-7 article.post-tall-5 {
  padding-bottom: 0 !important;
}
.gf-feature.feature-7 article.post-tall-5 .gf-post-title {
  margin-bottom: 0;
  color: #fff;
  font-size: 30px;
  line-height: 32px;
  margin-top: 7px;
}
.gf-feature.feature-7 article.post-tall-5 .gf-post-meta .meta-cat {
  display: none;
}
.gf-feature.feature-7 article.post-tall-5 .gf-post-content {
  position: absolute;
  z-index: 2;
  left: 167px;
  bottom: 78px;
  text-align: left;
  max-width: 31%;
  margin: inherit;
}
.gf-feature.feature-7 article.post-tall-5 .zoom-video {
  left: 75px;
  right: auto;
  bottom: 100px;
  top: auto;
  margin: auto;
}
.gf-feature.feature-8 {
  padding-bottom: 30px;
  border-bottom: dashed 1px #ebebeb;
  margin-bottom: 40px;
}
.gf-feature.feature-9 {
  background: #1b1918;
  padding-top: 40px;
  padding-bottom: 25px;
  margin-bottom: 60px;
  /*Grid 1*/
}
.gf-feature.feature-9 article.post-grid-1 {
  text-align: center;
}
.gf-feature.feature-9 article.post-grid-1 .gf-post-title {
  margin-bottom: 15px;
  font-size: 40px;
  text-transform: uppercase;
  margin-top: 19px;
  line-height: 42px;
  width: 74%;
}
.gf-feature.feature-9 article.post-grid-1 .gf-post-meta .meta-cat > a {
  font-size: 14px;
}
.gf-feature.feature-9 article.post-grid-1 .gf-post-meta .meta-cat > a:hover {
  color: #252525;
}
.gf-feature.feature-9 article.post-grid-1 .gf-post-content {
  background: #fff;
  padding-top: 33px;
  padding-bottom: 49px;
}
.gf-feature.feature-9 article.post-large-image-11 .gf-post-title {
  color: #fff;
}
.gf-feature.feature-10 {
  background: #252525;
  padding-top: 60px;
  padding-bottom: 42px;
  margin-bottom: 60px;
}
.gf-feature.feature-10.gf-feature-inside-content article.post-medium-image-18 .gf-post-content {
  margin-left: 20px;
}
.gf-feature.feature-10.gf-feature-inside-content article.post-medium-image-18 .entry-thumb-wrap {
  width: 585px;
  margin-right: 20px;
}
@media (min-width: 1200px) {
  .gf-feature.feature-6 {
    /* Medium Image 14*/
  }
  .gf-feature.feature-6 .col-lg-12 + .col-lg-12 article.post-medium-image-14 {
    border-top: dashed 1px #ebebeb;
    padding-top: 30px;
  }
  .gf-feature.feature-6 article.post-medium-image-14 {
    padding-bottom: 25px;
  }
}
@media (min-width: 992px) {
  .gf-feature.feature-4 article.post-large-image-5 {
    padding-bottom: 30px;
  }
  .gf-feature.feature-4 .col-md-4 + .col-md-4 article.post-large-image-5 {
    border-top: solid 1px #ebebeb;
    padding-top: 40px;
  }
}
@media (max-width: 991px) {
  .gf-feature.feature-10.gf-feature-inside-content article.post-medium-image-18 .entry-thumb-wrap {
    width: 384px;
  }
}
@media (max-width: 767px) {
  .gf-feature.feature-10.gf-feature-inside-content article.post-medium-image-18 .entry-thumb-wrap {
    width: 100%;
  }
  .gf-feature.feature-4 {
    /*Tall 11*/
  }
  .gf-feature.feature-4 article.post-tall-11 .entry-thumb-wrap + .gf-post-content {
    position: inherit;
    z-index: 2;
    left: auto;
    bottom: auto;
    margin-top: 15px;
  }
  .gf-feature.feature-4 article.post-tall-11 .gf-post-content {
    width: 100%;
  }
  .gf-feature.feature-5 {
    /*Tall 11*/
  }
  .gf-feature.feature-5 article.post-tall-11 .entry-thumb-wrap + .gf-post-content {
    position: inherit;
    z-index: 2;
    left: auto;
    bottom: auto;
    margin-top: 15px;
  }
  .gf-feature.feature-5 article.post-tall-11 .gf-post-content {
    width: 100%;
  }
  .gf-feature.feature-6 {
    /*Tall 9*/
  }
  .gf-feature.feature-6 article.post-tall-9 .entry-thumb-wrap + .gf-post-content {
    width: inherit;
  }
  .gf-feature.feature-7 {
    /*Tall 5*/
  }
  .gf-feature.feature-7 article.post-tall-5 .gf-post-content {
    position: inherit;
    left: auto;
    bottom: auto;
    max-width: inherit;
    right: auto;
    padding: 0 15px;
    margin-top: 20px;
  }
  .gf-feature.feature-7 article.post-tall-5 .gf-post-title {
    color: #252525;
  }
  .gf-feature.feature-9 article.post-grid-1 .gf-post-title {
    width: inherit;
    padding: 0 15px;
  }
}
.gf-blog-wrap {
  /*Medium Image 1*/
  /*Medium Image 4*/
  /*zigzac image */
  /*large image */
  /*grid image */
  /*grid image 2 */
  /*grid image 3 */
}
.gf-blog-wrap .layout-medium-image-1 article .gf-post-inner {
  border-bottom: dashed 1px #ebebeb;
  padding-bottom: 30px;
}
.gf-blog-wrap .layout-medium-image-1 article:last-child .gf-post-inner {
  border-bottom: none;
}
.gf-blog-wrap .layout-medium-image-4 article .gf-post-inner {
  border-bottom: dashed 1px #ebebeb;
  padding-bottom: 30px;
}
.gf-blog-wrap .layout-medium-image-4 article:last-child .gf-post-inner {
  border-bottom: none;
}
.gf-blog-wrap .layout-zigzac-image article .gf-post-inner {
  border-bottom: dashed 1px #ebebeb;
  padding-bottom: 30px;
}
.gf-blog-wrap .layout-zigzac-image article:last-child .gf-post-inner {
  border-bottom: none;
}
.gf-blog-wrap .layout-large-image {
  /* Large Image 1*/
}
.gf-blog-wrap .layout-large-image article .gf-post-inner {
  border-bottom: dashed 1px #ebebeb;
  padding-top: 40px;
  padding-bottom: 35px;
}
.gf-blog-wrap .layout-large-image article.post-large-image-1 .entry-thumb-wrap {
  font-size: 0;
}
.gf-blog-wrap .layout-large-image article.post-large-image-1 .entry-thumb-wrap .entry-thumbnail {
  display: inline-block;
}
.gf-blog-wrap .layout-large-image article:first-child .gf-post-inner {
  padding-top: 0;
}
.gf-blog-wrap .layout-large-image article:last-child .gf-post-inner {
  border-bottom: none;
}
.gf-blog-wrap .layout-grid-image article .gf-post-inner {
  border-bottom: dashed 1px #ebebeb;
  padding-bottom: 30px;
}
.gf-blog-wrap .layout-grid-image article:last-child .gf-post-inner {
  border-bottom: none;
}
.gf-blog-wrap .layout-grid-image-2 article {
  text-align: center;
}
.gf-blog-wrap .layout-grid-image-2 article .gf-post-content {
  padding-bottom: 20px;
}
.gf-blog-wrap .layout-grid-image-3 article .zoom-video {
  bottom: 20px;
  right: 20px;
  top: auto;
  left: auto;
}
.gf-blog-wrap .layout-grid-image-3 article .gf-post-title {
  font-size: 18px;
  line-height: 20px;
}
/**
* Single
* ----------------------------------------------------------------------------
*/
article.post-single {
  margin-bottom: 30px;
  border-bottom: dashed 1px #ebebeb;
  padding-bottom: 27px;
}
article.post-single .gf-post-title {
  font-size: 40px;
  font-weight: bold;
  letter-spacing: 0;
  line-height: 42px;
  margin-top: 9px;
  margin-bottom: 15px;
}
article.post-single .gf-entry-meta-top {
  padding-bottom: 21px;
  border-bottom: dashed 1px #ebebeb;
  margin-bottom: 25px;
}
article.post-single .gf-post-meta {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding-left: 0;
  color: #acacac;
}
article.post-single .gf-post-meta > li {
  margin-right: 5px;
}
article.post-single .gf-post-meta > li a {
  color: inherit;
}
article.post-single .gf-post-meta > li a:hover,
article.post-single .gf-post-meta > li a:focus,
article.post-single .gf-post-meta > li a:active {
  text-decoration: none !important;
}
article.post-single .gf-post-meta > li a:hover {
  color: #e1757d !important;
}
article.post-single .gf-post-meta > li i,
article.post-single .gf-post-meta > li a {
  font-size: 11px;
}
article.post-single .gf-post-meta > li.meta-cat {
  font-size: 16px;
  font-weight: bold;
  color: #e1757d;
}
article.post-single .gf-post-meta > li .post-views-count,
article.post-single .gf-post-meta > li .post-like-count {
  color: #636363;
}
article.post-single .gf-post-meta > li .post-views-count:hover,
article.post-single .gf-post-meta > li .post-like-count:hover {
  color: #e1757d;
}
article.post-single .gf-post-meta > li.meta-author > a,
article.post-single .gf-post-meta > li.meta-comment > a {
  color: #636363;
}
article.post-single .gf-post-meta + .gf-social-icon {
  margin-top: 21px;
}
article.post-single ul.gf-social-icon > li {
  margin-right: 10px;
}
article.post-single .gf-entry-content {
  margin-bottom: 25px;
  line-height: 1.7;
}
article.post-single .gf-entry-content a:not(.wp-block-button__link):hover,
article.post-single .gf-entry-content a:not(.wp-block-button__link):focus {
  text-decoration: underline;
}
article.post-single .gf-entry-content h1,
article.post-single .gf-entry-content h2,
article.post-single .gf-entry-content h3,
article.post-single .gf-entry-content h4,
article.post-single .gf-entry-content h5,
article.post-single .gf-entry-content h6 {
  margin-top: 35px;
  margin-bottom: 15px;
}
.entry-thumb-wrap.entry-thumb-single {
  margin-bottom: 30px;
}
body.single-post-layout-2 article.post-single .gf-entry-meta-middle {
  margin-bottom: 30px;
}
body.single-post-layout-2 article.post-single .gf-entry-meta-middle .gf-author-info-wrap {
  display: block;
  float: left;
  width: 50%;
}
body.single-post-layout-2 article.post-single .gf-entry-meta-middle ul.gf-social-icon {
  display: block;
  float: right;
  width: 50%;
  margin-top: 6px;
  text-align: right;
}
body.single-post-layout-2 article.post-single .gf-entry-meta-middle ul.gf-social-icon > li {
  margin: 0 0 9px 9px;
}
@media (max-width: 767px) {
  body.single-post-layout-2 article.post-single .gf-entry-meta-middle .gf-author-info-wrap {
    float: inherit !important;
    width: inherit;
  }
  body.single-post-layout-2 article.post-single .gf-entry-meta-middle ul.gf-social-icon {
    margin-top: 20px;
    float: inherit !important;
    width: inherit;
    text-align: left;
  }
  body.single-post-layout-2 article.post-single .gf-entry-meta-middle ul.gf-social-icon > li {
    margin: 0 9px 9px 0;
  }
}
body.single-post-layout-3 article.post-single .gf-entry-meta-top {
  padding-left: 115px;
  padding-bottom: 0;
  border-bottom: none;
  margin-bottom: 38px;
}
body.single-post-layout-3 .gf-post-content-inner-left {
  float: left;
  padding-right: 40px;
}
body.single-post-layout-3 .gf-post-content-inner-left ul.gf-social-icon > li {
  display: block;
  margin: 0 0 10px 0;
}
body.single-post-layout-3 .gf-post-content-inner-left + .gf-post-content-inner-right {
  position: relative;
  overflow: hidden;
}
@media (max-width: 767px) {
  body.single-post-layout-3 article.post-single .gf-entry-meta-top {
    padding-left: 0;
  }
  body.single-post-layout-3 .gf-post-content-inner-left {
    float: inherit !important;
    padding-right: 0;
    margin-bottom: 20px;
  }
  body.single-post-layout-3 .gf-post-content-inner-left ul.gf-social-icon > li {
    display: inline-block;
    margin: 0 9px 9px 0;
  }
}
body.single-post-layout-4 article.post-single {
  padding-bottom: 2px;
}
body.single-post-layout-4 article.post-single .entry-thumb-wrap.entry-thumb-single {
  margin-bottom: 25px;
}
body.single-post-layout-4 article.post-single .gf-entry-meta-top {
  padding-bottom: 0;
  border-bottom: inherit;
  margin-bottom: 31px;
}
body.single-post-layout-4 article.post-single .gf-post-title {
  margin-bottom: 20px;
}
body.single-post-layout-4 article.post-single .gf-author-info-wrap {
  float: left;
  padding-right: 40px;
  max-width: 115px;
  text-align: right;
}
body.single-post-layout-4 article.post-single .gf-author-info-wrap .gf-author-avatar img {
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  float: inherit;
  margin-right: 0;
}
body.single-post-layout-4 article.post-single .gf-author-info-wrap .gf-author-name {
  border-bottom: solid 1px #898989;
  line-height: 19px;
  margin-top: 14px;
  padding-bottom: 14px;
  margin-bottom: 13px;
}
body.single-post-layout-4 article.post-single .gf-author-info-wrap .gf-author-name span,
body.single-post-layout-4 article.post-single .gf-author-info-wrap .gf-author-name a {
  display: block;
}
body.single-post-layout-4 article.post-single .gf-author-info-wrap + .gf-entry-content-inner {
  position: relative;
  overflow: hidden;
}
body.single-post-layout-4 article.post-single .gf-entry-content-inner .gf-post-meta {
  margin-top: 28px;
}
@media (max-width: 767px) {
  body.single-post-layout-4 article.post-single .gf-author-info-wrap {
    float: inherit !important;
    padding-right: 0;
    max-width: inherit;
    text-align: left;
    margin-bottom: 20px;
  }
}
body.single-post-layout-5 .entry-thumb-wrap.entry-thumb-single.entry-thumb-mode-image .entry-thumbnail {
  display: inline;
}
body.single-post-layout-5 .entry-thumb-wrap.entry-thumb-single.entry-thumb-mode-image .entry-thumbnail img {
  width: 100%;
}
body.single-post-layout-5 .post-single-content-top {
  margin-bottom: 50px;
}
body.single-post-layout-5 .post-single-content-top .gf-post-title {
  font-size: 40px;
  font-weight: bold;
  letter-spacing: 0;
  line-height: 42px;
  margin-top: 9px;
}
body.single-post-layout-5 .post-single-content-top .gf-entry-meta-top {
  padding-bottom: 21px;
  border-bottom: dashed 1px #ebebeb;
  margin-bottom: 25px;
}
body.single-post-layout-5 .post-single-content-top .post-views-count,
body.single-post-layout-5 .post-single-content-top .post-like-count {
  color: #636363;
}
body.single-post-layout-5 .post-single-content-top .post-views-count:hover,
body.single-post-layout-5 .post-single-content-top .post-like-count:hover {
  color: #e1757d;
}
body.single-post-layout-5 .post-single-content-top .gf-post-meta {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding-left: 0;
  color: #acacac;
}
body.single-post-layout-5 .post-single-content-top .gf-post-meta > li {
  margin-right: 5px;
}
body.single-post-layout-5 .post-single-content-top .gf-post-meta > li a {
  color: inherit;
}
body.single-post-layout-5 .post-single-content-top .gf-post-meta > li a:hover,
body.single-post-layout-5 .post-single-content-top .gf-post-meta > li a:focus,
body.single-post-layout-5 .post-single-content-top .gf-post-meta > li a:active {
  text-decoration: none !important;
}
body.single-post-layout-5 .post-single-content-top .gf-post-meta > li a:hover {
  color: #e1757d !important;
}
body.single-post-layout-5 .post-single-content-top .gf-post-meta > li.meta-cat {
  font-size: 16px;
  font-weight: bold;
  color: #e1757d;
}
body.single-post-layout-5 .post-single-content-top .gf-post-meta > li.meta-author > a,
body.single-post-layout-5 .post-single-content-top .gf-post-meta > li.meta-comment > a {
  color: #636363;
}
body.single-post-layout-5 .post-single-content-top .gf-entry-meta-middle {
  margin-bottom: 20px;
}
body.single-post-layout-5 .post-single-content-top .gf-entry-meta-middle .gf-author-info-wrap {
  display: block;
  float: left;
  width: 50%;
}
body.single-post-layout-5 .post-single-content-top .gf-entry-meta-middle ul.gf-social-icon {
  display: block;
  float: right;
  width: 50%;
  margin-top: 6px;
  text-align: right;
}
body.single-post-layout-5 .post-single-content-top .gf-entry-meta-middle ul.gf-social-icon > li {
  margin: 0 0 9px 9px;
}
@media (max-width: 767px) {
  body.single-post-layout-5 .post-single-content-top .gf-entry-meta-middle .gf-author-info-wrap {
    float: inherit !important;
    width: inherit;
  }
  body.single-post-layout-5 .post-single-content-top .gf-entry-meta-middle ul.gf-social-icon {
    float: inherit !important;
    width: inherit;
    text-align: left;
    margin-top: 20px;
  }
  body.single-post-layout-5 .post-single-content-top .gf-entry-meta-middle ul.gf-social-icon > li {
    margin: 0 9px 9px 0;
  }
}
body.single-post-layout-6 .entry-thumb-wrap.entry-thumb-single.entry-thumb-mode-image .entry-thumbnail {
  display: inline;
}
body.single-post-layout-6 .entry-thumb-wrap.entry-thumb-single.entry-thumb-mode-image .entry-thumbnail img {
  width: 100%;
}
body.single-post-layout-6 article.post-single {
  padding-bottom: 2px;
}
body.single-post-layout-6 article.post-single .entry-thumb-wrap.entry-thumb-single {
  margin-bottom: 25px;
}
body.single-post-layout-6 article.post-single .gf-entry-meta-top {
  text-align: center;
  padding-bottom: 0;
  border-bottom: inherit;
  margin-bottom: 32px;
}
body.single-post-layout-6 article.post-single .gf-entry-meta-top .gf-author-info-wrap .gf-author-avatar {
  margin-bottom: 14px;
}
body.single-post-layout-6 article.post-single .gf-entry-meta-top .gf-author-info-wrap .gf-author-avatar img {
  float: inherit;
  margin-right: 0;
}
body.single-post-layout-6 article.post-single .gf-post-title {
  font-size: 48px;
  margin-bottom: 18px;
}
body.single-post-layout-6 article.post-single .gf-entry-content .gf-entry-content-left {
  float: left;
  margin-right: 40px;
  max-width: 75px;
  text-align: right;
  border-top: solid 1px #898989;
  padding-top: 14px;
}
body.single-post-layout-6 article.post-single .gf-entry-content ul.gf-social-icon {
  margin-top: 0;
  padding-left: 0;
}
body.single-post-layout-6 article.post-single .gf-entry-content ul.gf-social-icon > li {
  margin-bottom: 10px;
  margin-right: 0;
  display: block;
}
body.single-post-layout-6 article.post-single .gf-entry-content .gf-entry-content-left + .gf-entry-content-inner {
  position: relative;
  overflow: hidden;
}
body.single-post-layout-6 article.post-single .gf-entry-content .gf-entry-content-inner .gf-post-meta {
  margin-top: 5px;
}
body.single-post-layout-6 article.post-single .gf-author-info-wrap {
  margin-bottom: 10px;
}
@media (max-width: 767px) {
  body.single-post-layout-6 article.post-single .gf-entry-content .gf-entry-content-left {
    float: inherit !important;
    margin-right: 0;
    max-width: inherit;
    text-align: left;
  }
  body.single-post-layout-6 article.post-single .gf-entry-content ul.gf-social-icon {
    margin-top: 0;
    padding-left: 0;
    margin-bottom: 15px;
  }
  body.single-post-layout-6 article.post-single .gf-entry-content ul.gf-social-icon > li {
    margin-right: 10px;
    display: inline-block;
  }
}
body.single-post-layout-7 article.post-single {
  margin-bottom: 0;
  border-bottom: none;
  padding-bottom: 0;
}
body.single-post-layout-7 article.post-single .gf-entry-meta-top {
  padding-bottom: 0;
  border-bottom: none;
  margin-bottom: 40px;
}
body.single-post-layout-7 article.post-single .gf-author-info-wrap {
  float: left;
  margin-right: 70px;
  max-width: 75px;
}
body.single-post-layout-7 article.post-single .gf-author-info-wrap .gf-author-avatar img {
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  float: inherit;
  margin-right: 0;
}
body.single-post-layout-7 article.post-single .gf-author-info-wrap .gf-author-content {
  margin-top: 3px;
  margin-bottom: 14px;
}
body.single-post-layout-7 article.post-single .gf-post-title {
  font-size: 48px;
  margin-bottom: 20px;
}
body.single-post-layout-7 article.post-single .gf-author-info-wrap + .gf-entry-meta-top-right {
  position: relative;
  overflow: hidden;
}
body.single-post-layout-7 article.post-single .gf-entry-content-left {
  float: left;
  width: 100px;
  margin-right: 15px;
}
body.single-post-layout-7 article.post-single .gf-entry-content-left ul.gf-social-icon {
  margin-top: 0;
  padding-left: 0;
  text-align: center;
}
body.single-post-layout-7 article.post-single .gf-entry-content-left ul.gf-social-icon > li {
  margin-bottom: 17px;
  margin-right: 0;
  display: block;
  font-size: 18px;
}
body.single-post-layout-7 article.post-single .gf-entry-content-left ul.gf-social-icon > li a {
  color: #000;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
body.single-post-layout-7 article.post-single .gf-entry-content-left ul.gf-social-icon > li a:hover {
  color: #e1757d;
}
body.single-post-layout-7 article.post-single .gf-entry-content-left + .gf-entry-content-inner {
  position: relative;
  overflow: hidden;
}
body.single-post-layout-7 article.post-single .gf-entry-content-inner .gf-post-meta {
  margin-top: 30px;
  text-align: right;
}
@media (max-width: 767px) {
  body.single-post-layout-7 article.post-single .gf-author-info-wrap {
    float: inherit !important;
    margin-right: 0;
    max-width: inherit;
    margin-bottom: 20px;
  }
  body.single-post-layout-7 article.post-single .gf-entry-content-left {
    float: inherit !important;
    width: inherit;
    margin-right: 0;
  }
  body.single-post-layout-7 article.post-single .gf-entry-content-left ul.gf-social-icon {
    text-align: inherit;
  }
  body.single-post-layout-7 article.post-single .gf-entry-content-left ul.gf-social-icon > li {
    margin-right: 10px;
    display: inline-block;
  }
}
body.single-post-layout-8 article.post-single {
  margin-bottom: 27px;
  padding-bottom: 13px;
}
body.single-post-layout-8 article.post-single .gf-entry-meta-top {
  border-bottom: none;
  background: #fff;
  text-align: center;
  max-width: 65.6%;
  margin-left: auto;
  margin-right: auto;
  margin-top: -96px;
  position: relative;
  padding: 34px 39px 18px 39px;
  margin-bottom: 15px;
  z-index: 2;
}
body.single-post-layout-8 article.post-single .gf-author-info-wrap .gf-author-avatar {
  margin-bottom: 8px;
}
body.single-post-layout-8 article.post-single .gf-author-info-wrap .gf-author-avatar img {
  float: inherit;
  margin-right: 0;
}
body.single-post-layout-8 article.post-single .gf-author-content .gf-author-name,
body.single-post-layout-8 article.post-single .gf-author-content .gf-post-meta {
  display: inline-block;
}
body.single-post-layout-8 article.post-single .gf-author-content .gf-author-name {
  margin-bottom: 0;
  margin-right: 10px;
}
body.single-post-layout-8 article.post-single .gf-author-content .gf-post-meta + .gf-post-meta {
  margin-left: 10px;
}
body.single-post-layout-8 article.post-single .gf-post-title {
  margin-top: 7px;
  margin-bottom: 23px;
}
body.single-post-layout-8 article.post-single .gf-author-info-wrap + .gf-entry-meta-top-right {
  position: relative;
  overflow: hidden;
}
body.single-post-layout-8 article.post-single .gf-entry-content-left {
  float: left;
  width: 100px;
  margin-right: 15px;
}
body.single-post-layout-8 article.post-single .gf-entry-content-left ul.gf-social-icon {
  margin-top: 0;
  padding-left: 0;
  text-align: center;
}
body.single-post-layout-8 article.post-single .gf-entry-content-left ul.gf-social-icon > li {
  margin-bottom: 17px;
  margin-right: 0;
  display: block;
  font-size: 18px;
}
body.single-post-layout-8 article.post-single .gf-entry-content-left ul.gf-social-icon > li a {
  color: #000;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
body.single-post-layout-8 article.post-single .gf-entry-content-left ul.gf-social-icon > li a:hover {
  color: #e1757d;
}
body.single-post-layout-8 article.post-single .gf-entry-content-left + .gf-entry-content-inner {
  position: relative;
  overflow: hidden;
}
body.single-post-layout-8 article.post-single .gf-entry-content-inner .gf-post-meta {
  margin-top: 30px;
  text-align: right;
}
@media (max-width: 767px) {
  body.single-post-layout-8 article.post-single .gf-entry-meta-top {
    max-width: inherit;
    margin-top: -20px;
    padding: 15px;
  }
  body.single-post-layout-8 article.post-single .gf-entry-content-left {
    float: inherit !important;
    width: inherit;
    margin-right: 0;
  }
  body.single-post-layout-8 article.post-single .gf-entry-content-left ul.gf-social-icon {
    text-align: inherit;
  }
  body.single-post-layout-8 article.post-single .gf-entry-content-left ul.gf-social-icon > li {
    margin-right: 10px;
    display: inline-block;
  }
}
body.single-post-layout-9 .post-single-content-top .gf-entry-meta-top {
  border-bottom: none;
  background: #fff;
  text-align: center;
  max-width: 50%;
  margin-left: auto;
  margin-right: auto;
  margin-top: -96px;
  position: relative;
  padding: 34px 39px 18px 39px;
  margin-bottom: 13px;
  z-index: 2;
}
body.single-post-layout-9 .post-single-content-top .gf-post-title {
  margin-top: 0;
  margin-bottom: 5px;
  font-size: 48px;
  text-transform: uppercase;
}
body.single-post-layout-9 .post-single-content-top .gf-author-content .gf-author-name,
body.single-post-layout-9 .post-single-content-top .gf-author-content .gf-post-meta {
  display: inline-block;
  color: #acacac;
}
body.single-post-layout-9 .post-single-content-top .gf-author-content .gf-author-name {
  margin-bottom: 0;
}
body.single-post-layout-9 .post-single-content-top .gf-author-content .gf-author-name > a {
  color: #636363;
  font-weight: 400;
}
body.single-post-layout-9 .post-single-content-top .gf-author-content .gf-author-name > a:hover {
  color: #e1757d !important;
}
body.single-post-layout-9 .post-single-content-top .gf-author-content > span {
  font-size: 11px;
  color: #acacac;
}
body.single-post-layout-9 .post-single-content-top .post-views-count,
body.single-post-layout-9 .post-single-content-top .post-like-count {
  color: #636363;
}
body.single-post-layout-9 .post-single-content-top .post-views-count:hover,
body.single-post-layout-9 .post-single-content-top .post-like-count:hover {
  color: #e1757d;
}
body.single-post-layout-9 .post-single-content-top .gf-post-meta {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding-left: 0;
  color: #acacac;
}
body.single-post-layout-9 .post-single-content-top .gf-post-meta > li {
  margin-right: 5px;
}
body.single-post-layout-9 .post-single-content-top .gf-post-meta > li a {
  color: inherit;
}
body.single-post-layout-9 .post-single-content-top .gf-post-meta > li a:hover,
body.single-post-layout-9 .post-single-content-top .gf-post-meta > li a:focus,
body.single-post-layout-9 .post-single-content-top .gf-post-meta > li a:active {
  text-decoration: none !important;
}
body.single-post-layout-9 .post-single-content-top .gf-post-meta > li a:hover {
  color: #e1757d !important;
}
body.single-post-layout-9 .post-single-content-top .gf-post-meta > li.meta-cat {
  font-size: 16px;
  font-weight: bold;
  color: #e1757d;
}
body.single-post-layout-9 .post-single-content-top .gf-post-meta > li.meta-author > a,
body.single-post-layout-9 .post-single-content-top .gf-post-meta > li.meta-comment > a {
  color: #636363;
}
body.single-post-layout-9 article.post-single {
  margin-bottom: 27px;
  padding-bottom: 13px;
}
body.single-post-layout-9 article.post-single .gf-entry-content-left {
  float: left;
  width: 100px;
  margin-right: 15px;
}
body.single-post-layout-9 article.post-single .gf-entry-content-left ul.gf-social-icon {
  margin-top: 0;
  padding-left: 0;
  text-align: center;
}
body.single-post-layout-9 article.post-single .gf-entry-content-left ul.gf-social-icon > li {
  margin-bottom: 17px;
  margin-right: 0;
  display: block;
  font-size: 18px;
}
body.single-post-layout-9 article.post-single .gf-entry-content-left ul.gf-social-icon > li a {
  color: #000;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
body.single-post-layout-9 article.post-single .gf-entry-content-left ul.gf-social-icon > li a:hover {
  color: #e1757d;
}
body.single-post-layout-9 article.post-single .gf-entry-content-left + .gf-entry-content-inner {
  position: relative;
  overflow: hidden;
}
body.single-post-layout-9 article.post-single .gf-entry-content-inner .gf-post-meta {
  margin-top: 30px;
  text-align: right;
}
@media (max-width: 767px) {
  body.single-post-layout-9 .post-single-content-top .gf-entry-meta-top {
    max-width: inherit;
    margin-top: -20px;
    padding: 15px;
  }
  body.single-post-layout-9 article.post-single .gf-entry-content-left {
    float: inherit !important;
    width: inherit;
    margin-right: 0;
  }
  body.single-post-layout-9 article.post-single .gf-entry-content-left ul.gf-social-icon {
    text-align: inherit;
  }
  body.single-post-layout-9 article.post-single .gf-entry-content-left ul.gf-social-icon > li {
    margin-right: 10px;
    display: inline-block;
  }
}
@media (min-width: 1024px) {
  body.single-post-layout-8 article.post-single .gf-entry-content,
  body.single-post-layout-9 article.post-single .gf-entry-content {
    padding-left: 95px;
    padding-right: 95px;
  }
}
@media (min-width: 767px) {
  body.single-post-layout-8 article.post-single .gf-entry-content,
  body.single-post-layout-9 article.post-single .gf-entry-content {
    padding-left: 30px;
    padding-right: 30px;
  }
}
.entry-meta-tag-and-share-wrap {
  margin-bottom: 30px;
}
.gf-post-meta-tag {
  float: left;
  width: 50%;
  margin-bottom: 30px;
}
.gf-post-meta-tag .gf-heading-title {
  font-size: 11px;
  color: #555555;
  margin-top: 0;
  margin-bottom: 0;
  margin-right: 10px;
  display: inline-block;
}
.gf-post-meta-tag .tagcloud {
  display: inline-block;
}
.gf-post-meta-tag .tagcloud a {
  font-size: 11px !important;
  text-transform: uppercase;
  color: #636363 !important;
  border: none;
  padding: 0;
  margin: 0 10px 10px 0;
  text-decoration: none;
}
.gf-post-meta-tag .tagcloud a + a:before {
  content: '|';
  display: inline-block;
  color: #636363;
  margin-right: 10px;
}
.gf-post-meta-tag .tagcloud a:hover {
  color: #e1757d !important;
  background: transparent !important;
}
.gf-post-meta-share {
  float: right;
  width: 50%;
  text-align: right;
  margin-bottom: 30px;
}
.gf-post-meta-share ul.gf-social-icon > li {
  margin: 0 0 9px 9px;
}
.gf-post-navigation {
  margin-bottom: 60px;
}
.gf-post-navigation .gf-post-title {
  margin-top: 5px;
}
.gf-post-navigation > div {
  text-align: center !important;
  padding: 50px 30px;
}
.gf-post-navigation > div span {
  font-size: 14px;
  font-weight: bold;
}
.gf-post-navigation > div.post-prev span a:before,
.gf-post-navigation > div.post-next span a:after {
  font-family: 'FontAwesome';
  display: inline-block;
  content: '\f0d9';
  font-size: 23px;
  vertical-align: middle;
  line-height: 1;
  position: relative;
  top: -1px;
}
.gf-post-navigation > div.post-prev span a:before {
  margin-right: 10px;
}
.gf-post-navigation > div.post-next span a:after {
  margin-left: 10px;
  content: '\f0da';
}
.gf-post-navigation > div.post-nav-bg:before {
  background-color: rgba(229, 229, 229, 0.8);
}
.gf-post-navigation > div.post-nav-bg span {
  color: #070707 !important;
}
.gf-author-info-wrap .gf-author-avatar img {
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  margin-right: 23px;
}
.gf-author-info-wrap .gf-author-avatar + .gf-author-content {
  position: relative;
  overflow: hidden;
}
.gf-author-info-wrap .gf-author-name {
  margin-top: 0;
  color: #acacac;
  font-weight: 400;
}
.gf-author-info-wrap .gf-author-name a {
  color: #e1757d;
  font-weight: bold;
}
.gf-author-info-wrap .gf-author-email {
  font-size: 12px;
  color: #555555;
  text-transform: uppercase;
  margin-top: 6px;
  margin-bottom: 12px;
}
.gf-author-info-wrap .gf-author-content ul.gf-social-icon {
  font-size: 18px;
  margin-top: 18px;
}
.gf-author-info-wrap .gf-author-content ul.gf-social-icon li {
  margin: 0 25px 10px 0;
}
.gf-author-info-wrap .gf-author-content ul.gf-social-icon li a {
  color: #252525;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.gf-author-info-wrap .gf-author-content ul.gf-social-icon li a:hover {
  color: #e1757d;
}
.gf-author-info-wrap.author-layout-1 {
  margin-bottom: 50px;
}
.gf-author-info-wrap.author-layout-1 .gf-author-avatar img {
  margin-right: 20px;
}
.gf-author-info-wrap.author-layout-2 {
  border: 10px solid transparent;
  -webkit-border-image: url(https://www.ictsd.org/wp-content/themes/g5plus-achilles/assets/images/border.png) 10 round;
  -o-border-image: url(https://www.ictsd.org/wp-content/themes/g5plus-achilles/assets/images/border.png) 10 round;
  border-image: url(https://www.ictsd.org/wp-content/themes/g5plus-achilles/assets/images/border.png) 10 round;
  margin-bottom: 47px;
  padding: 60px 33px 42px;
}
.gf-author-info-wrap.author-layout-3 {
  text-align: center;
  border: 10px solid transparent;
  -webkit-border-image: url(https://www.ictsd.org/wp-content/themes/g5plus-achilles/assets/images/border.png) 10 round;
  -o-border-image: url(https://www.ictsd.org/wp-content/themes/g5plus-achilles/assets/images/border.png) 10 round;
  border-image: url(https://www.ictsd.org/wp-content/themes/g5plus-achilles/assets/images/border.png) 10 round;
  margin-bottom: 47px;
  padding: 47px 150px 30px;
}
.gf-author-info-wrap.author-layout-3 .gf-author-avatar {
  margin-bottom: 17px;
}
.gf-author-info-wrap.author-layout-3 .gf-author-avatar img {
  float: inherit;
  margin-right: 0;
}
.gf-author-info-wrap.author-layout-3 .gf-author-email {
  margin-bottom: 8px;
}
@media (max-width: 767px) {
  .gf-author-info-wrap.author-layout-1,
  .gf-author-info-wrap.author-layout-2 {
    text-align: center;
  }
  .gf-author-info-wrap.author-layout-1 .gf-author-avatar,
  .gf-author-info-wrap.author-layout-2 .gf-author-avatar {
    margin-bottom: 20px;
  }
  .gf-author-info-wrap.author-layout-1 .gf-author-avatar img,
  .gf-author-info-wrap.author-layout-2 .gf-author-avatar img {
    float: inherit;
    margin-right: 0;
  }
  .gf-author-info-wrap.author-layout-3 {
    padding: 50px;
  }
  .gf-post-meta-tag {
    float: inherit;
    width: 100%;
  }
  .gf-post-meta-share {
    float: inherit;
    width: 100%;
    text-align: left;
  }
  .gf-post-meta-share ul.gf-social-icon > li {
    margin: 0 9px 9px 0;
  }
}
.gf-single-related-wrap {
  border-bottom: dashed 1px #ebebeb;
}
.gf-single-related-wrap .layout-large-image-6 > article {
  text-align: center;
}
.gf-single-related-wrap .owl-carousel {
  margin-bottom: 20px;
}
.gf-single-related-wrap .gf-blog-wrap {
  margin-bottom: -13px;
}
.gf-single-related-wrap article.post-default .gf-post-meta .meta-cat {
  font-size: 0;
}
.gf-single-related-wrap article.post-default .gf-post-meta .meta-cat > a {
  display: none;
  font-size: 11px;
}
.gf-single-related-wrap article.post-default .gf-post-meta .meta-cat > a:first-child {
  display: block;
}
.gf-single-content-block-wrap {
  border-bottom: dashed 1px #ebebeb;
}
.gf-comment-area-wrap .gf-comments-area .gf-heading-title {
  margin-bottom: 40px;
  margin-top: 0;
}
.gf-comment-area-wrap .gf-comments-area .comment-list .author-name {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 0;
  margin-top: 0;
}
.gf-comment-area-wrap .gf-comments-area .comment-list ul.comment-top {
  margin-bottom: 6px;
  margin-top: -5px;
}
.gf-comment-area-wrap .gf-comments-area .comment-list ul.comment-top > li {
  margin-right: 2px;
  line-height: 1;
  vertical-align: bottom;
}
.gf-comment-area-wrap .gf-comments-area .comment-list .comment-meta-date {
  font-size: 11px;
  text-transform: uppercase;
}
.gf-comment-area-wrap .gf-comments-area .comment-list .gf-entry-content {
  margin-bottom: 10px;
  font-size: 16px;
}
.gf-comment-area-wrap .gf-comments-area .comment-list .comment-meta {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #e1757d;
  font-weight: 700;
}
.gf-comment-area-wrap .gf-comments-area .comment-list .comment-meta a + a {
  margin-left: 35px;
}
.gf-comment-area-wrap .gf-comments-area .comment-list .comment-meta a:hover {
  color: #252525;
}
.gf-comment-area-wrap .gf-comments-area .comment-list .pingback {
  margin-bottom: 20px;
}
.gf-comment-area-wrap .gf-comments-area .comment-respond p {
  margin-bottom: 30px;
}
.gf-comment-area-wrap .gf-comments-area .comment-respond p.form-submit {
  width: 180px;
}
.gf-comment-area-wrap .gf-comments-area .comment-respond input[type="color"],
.gf-comment-area-wrap .gf-comments-area .comment-respond input[type="date"],
.gf-comment-area-wrap .gf-comments-area .comment-respond input[type="datetime"],
.gf-comment-area-wrap .gf-comments-area .comment-respond input[type="datetime-local"],
.gf-comment-area-wrap .gf-comments-area .comment-respond input[type="email"],
.gf-comment-area-wrap .gf-comments-area .comment-respond input[type="month"],
.gf-comment-area-wrap .gf-comments-area .comment-respond input[type="number"],
.gf-comment-area-wrap .gf-comments-area .comment-respond input[type="password"],
.gf-comment-area-wrap .gf-comments-area .comment-respond input[type="search"],
.gf-comment-area-wrap .gf-comments-area .comment-respond input[type="tel"],
.gf-comment-area-wrap .gf-comments-area .comment-respond input[type="text"],
.gf-comment-area-wrap .gf-comments-area .comment-respond input[type="time"],
.gf-comment-area-wrap .gf-comments-area .comment-respond input[type="url"],
.gf-comment-area-wrap .gf-comments-area .comment-respond input[type="week"],
.gf-comment-area-wrap .gf-comments-area .comment-respond input:not([type]),
.gf-comment-area-wrap .gf-comments-area .comment-respond textarea,
.gf-comment-area-wrap .gf-comments-area .comment-respond select {
  height: 45px;
}
.gf-comment-area-wrap .gf-comments-area .comment-respond input[type="color"]::-webkit-input-placeholder,
.gf-comment-area-wrap .gf-comments-area .comment-respond input[type="date"]::-webkit-input-placeholder,
.gf-comment-area-wrap .gf-comments-area .comment-respond input[type="datetime"]::-webkit-input-placeholder,
.gf-comment-area-wrap .gf-comments-area .comment-respond input[type="datetime-local"]::-webkit-input-placeholder,
.gf-comment-area-wrap .gf-comments-area .comment-respond input[type="email"]::-webkit-input-placeholder,
.gf-comment-area-wrap .gf-comments-area .comment-respond input[type="month"]::-webkit-input-placeholder,
.gf-comment-area-wrap .gf-comments-area .comment-respond input[type="number"]::-webkit-input-placeholder,
.gf-comment-area-wrap .gf-comments-area .comment-respond input[type="password"]::-webkit-input-placeholder,
.gf-comment-area-wrap .gf-comments-area .comment-respond input[type="search"]::-webkit-input-placeholder,
.gf-comment-area-wrap .gf-comments-area .comment-respond input[type="tel"]::-webkit-input-placeholder,
.gf-comment-area-wrap .gf-comments-area .comment-respond input[type="text"]::-webkit-input-placeholder,
.gf-comment-area-wrap .gf-comments-area .comment-respond input[type="time"]::-webkit-input-placeholder,
.gf-comment-area-wrap .gf-comments-area .comment-respond input[type="url"]::-webkit-input-placeholder,
.gf-comment-area-wrap .gf-comments-area .comment-respond input[type="week"]::-webkit-input-placeholder,
.gf-comment-area-wrap .gf-comments-area .comment-respond input:not([type])::-webkit-input-placeholder,
.gf-comment-area-wrap .gf-comments-area .comment-respond textarea::-webkit-input-placeholder,
.gf-comment-area-wrap .gf-comments-area .comment-respond select::-webkit-input-placeholder,
.gf-comment-area-wrap .gf-comments-area .comment-respond input[type="color"]:-moz-placeholder,
.gf-comment-area-wrap .gf-comments-area .comment-respond input[type="date"]:-moz-placeholder,
.gf-comment-area-wrap .gf-comments-area .comment-respond input[type="datetime"]:-moz-placeholder,
.gf-comment-area-wrap .gf-comments-area .comment-respond input[type="datetime-local"]:-moz-placeholder,
.gf-comment-area-wrap .gf-comments-area .comment-respond input[type="email"]:-moz-placeholder,
.gf-comment-area-wrap .gf-comments-area .comment-respond input[type="month"]:-moz-placeholder,
.gf-comment-area-wrap .gf-comments-area .comment-respond input[type="number"]:-moz-placeholder,
.gf-comment-area-wrap .gf-comments-area .comment-respond input[type="password"]:-moz-placeholder,
.gf-comment-area-wrap .gf-comments-area .comment-respond input[type="search"]:-moz-placeholder,
.gf-comment-area-wrap .gf-comments-area .comment-respond input[type="tel"]:-moz-placeholder,
.gf-comment-area-wrap .gf-comments-area .comment-respond input[type="text"]:-moz-placeholder,
.gf-comment-area-wrap .gf-comments-area .comment-respond input[type="time"]:-moz-placeholder,
.gf-comment-area-wrap .gf-comments-area .comment-respond input[type="url"]:-moz-placeholder,
.gf-comment-area-wrap .gf-comments-area .comment-respond input[type="week"]:-moz-placeholder,
.gf-comment-area-wrap .gf-comments-area .comment-respond input:not([type]):-moz-placeholder,
.gf-comment-area-wrap .gf-comments-area .comment-respond textarea:-moz-placeholder,
.gf-comment-area-wrap .gf-comments-area .comment-respond select:-moz-placeholder,
.gf-comment-area-wrap .gf-comments-area .comment-respond input[type="color"]::-moz-placeholder,
.gf-comment-area-wrap .gf-comments-area .comment-respond input[type="date"]::-moz-placeholder,
.gf-comment-area-wrap .gf-comments-area .comment-respond input[type="datetime"]::-moz-placeholder,
.gf-comment-area-wrap .gf-comments-area .comment-respond input[type="datetime-local"]::-moz-placeholder,
.gf-comment-area-wrap .gf-comments-area .comment-respond input[type="email"]::-moz-placeholder,
.gf-comment-area-wrap .gf-comments-area .comment-respond input[type="month"]::-moz-placeholder,
.gf-comment-area-wrap .gf-comments-area .comment-respond input[type="number"]::-moz-placeholder,
.gf-comment-area-wrap .gf-comments-area .comment-respond input[type="password"]::-moz-placeholder,
.gf-comment-area-wrap .gf-comments-area .comment-respond input[type="search"]::-moz-placeholder,
.gf-comment-area-wrap .gf-comments-area .comment-respond input[type="tel"]::-moz-placeholder,
.gf-comment-area-wrap .gf-comments-area .comment-respond input[type="text"]::-moz-placeholder,
.gf-comment-area-wrap .gf-comments-area .comment-respond input[type="time"]::-moz-placeholder,
.gf-comment-area-wrap .gf-comments-area .comment-respond input[type="url"]::-moz-placeholder,
.gf-comment-area-wrap .gf-comments-area .comment-respond input[type="week"]::-moz-placeholder,
.gf-comment-area-wrap .gf-comments-area .comment-respond input:not([type])::-moz-placeholder,
.gf-comment-area-wrap .gf-comments-area .comment-respond textarea::-moz-placeholder,
.gf-comment-area-wrap .gf-comments-area .comment-respond select::-moz-placeholder,
.gf-comment-area-wrap .gf-comments-area .comment-respond input[type="color"]:-ms-input-placeholder,
.gf-comment-area-wrap .gf-comments-area .comment-respond input[type="date"]:-ms-input-placeholder,
.gf-comment-area-wrap .gf-comments-area .comment-respond input[type="datetime"]:-ms-input-placeholder,
.gf-comment-area-wrap .gf-comments-area .comment-respond input[type="datetime-local"]:-ms-input-placeholder,
.gf-comment-area-wrap .gf-comments-area .comment-respond input[type="email"]:-ms-input-placeholder,
.gf-comment-area-wrap .gf-comments-area .comment-respond input[type="month"]:-ms-input-placeholder,
.gf-comment-area-wrap .gf-comments-area .comment-respond input[type="number"]:-ms-input-placeholder,
.gf-comment-area-wrap .gf-comments-area .comment-respond input[type="password"]:-ms-input-placeholder,
.gf-comment-area-wrap .gf-comments-area .comment-respond input[type="search"]:-ms-input-placeholder,
.gf-comment-area-wrap .gf-comments-area .comment-respond input[type="tel"]:-ms-input-placeholder,
.gf-comment-area-wrap .gf-comments-area .comment-respond input[type="text"]:-ms-input-placeholder,
.gf-comment-area-wrap .gf-comments-area .comment-respond input[type="time"]:-ms-input-placeholder,
.gf-comment-area-wrap .gf-comments-area .comment-respond input[type="url"]:-ms-input-placeholder,
.gf-comment-area-wrap .gf-comments-area .comment-respond input[type="week"]:-ms-input-placeholder,
.gf-comment-area-wrap .gf-comments-area .comment-respond input:not([type]):-ms-input-placeholder,
.gf-comment-area-wrap .gf-comments-area .comment-respond textarea:-ms-input-placeholder,
.gf-comment-area-wrap .gf-comments-area .comment-respond select:-ms-input-placeholder {
  font-family: 'Felix Titling';
  color: #636363;
  font-size: 12px;
  font-weight: bold;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.gf-comment-area-wrap .gf-comments-area .comment-respond textarea {
  height: 260px;
}
@media (min-width: 768px) {
  .gf-comment-area-wrap.comment-layout-1 .gf-comments-area .container > div:last-child:not(.comment-respond) {
    float: inherit;
    width: 100%;
    padding-right: 0;
  }
  .gf-comment-area-wrap.comment-layout-1 .gf-comments-area .comments-list {
    float: left;
    width: 50%;
    padding-right: 37.5px;
  }
  .gf-comment-area-wrap.comment-layout-1 .gf-comments-area .comments-list + .comment-respond {
    position: relative;
    overflow: hidden;
    padding-left: 37.5px;
    margin-top: 0;
  }
}
/**
* Shortcode Blog Sync Carousel
*/
.heading-wrap {
  display: table;
  width: 100%;
}
.heading-wrap .gf-heading {
  display: table-cell;
  width: 100%;
  vertical-align: top;
}
.heading-wrap .posts-sync-thumb-wrap {
  max-width: 363px;
  display: table-cell;
  white-space: nowrap;
  vertical-align: top;
  padding-left: 30px;
}
.heading-wrap .posts-sync-thumb-wrap [data-owl-sync="thumb"] {
  padding-bottom: 27px;
}
.heading-wrap .posts-sync-thumb-wrap [data-owl-sync="thumb"] > .owl-stage-outer {
  padding-right: 3px;
}
.heading-wrap .posts-sync-thumb-wrap [data-owl-sync="thumb"] > .owl-stage-outer > .owl-stage > .current:before {
  left: 3px;
  top: 3px;
  bottom: 3px;
}
.heading-wrap .posts-sync-thumb-wrap [data-owl-sync="thumb"] > .owl-stage-outer > .owl-stage > .current .entry-thumb-wrap {
  position: relative;
}
.heading-wrap .posts-sync-thumb-wrap [data-owl-sync="thumb"] > .owl-stage-outer > .owl-stage > .current .entry-thumb-wrap:after {
  position: absolute;
  content: '';
  display: block;
  top: 0;
  bottom: 0;
  width: 3px;
  left: 100%;
  background-color: #81be45;
  -webkit-border-radius: 0 3px 3px 0;
  -moz-border-radius: 0 3px 3px 0;
  border-radius: 0 3px 3px 0;
}
.heading-wrap .posts-sync-thumb-wrap [data-owl-sync="thumb"] > .owl-stage-outer > .owl-stage > .current .entry-thumbnail {
  border-color: #81be45;
}
.heading-wrap .posts-sync-thumb-wrap [data-owl-sync="thumb"] .entry-thumb-wrap {
  width: 55px;
}
.heading-wrap .posts-sync-thumb-wrap [data-owl-sync="thumb"] .entry-thumb-wrap .entry-thumbnail {
  margin-right: -3px;
  border: 3px solid transparent;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
}
[data-owl-sync="thumb"] {
  padding-bottom: 20px;
}
[data-owl-sync="thumb"] > .owl-stage-outer > .owl-stage > .current {
  position: relative;
}
[data-owl-sync="thumb"] > .owl-stage-outer > .owl-stage > .current:before {
  position: absolute;
  content: '';
  display: block;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background-color: rgba(255, 255, 255, 0.8);
  z-index: 2;
}
[data-owl-sync="thumb"] > .owl-stage-outer > .owl-stage > .current:after {
  content: '\f0d7';
  font-family: FontAwesome;
  font-size: 17px;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  color: #81be45;
  z-index: 3;
}
[data-owl-sync="thumb"] .owl-nav {
  display: none;
}
.posts-sync-main-item .gf-post-title {
  margin-top: 35px;
  margin-bottom: 6px;
  font-weight: bold;
}
.posts-sync-main-item .gf-post-title a {
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
@media (max-width: 767px) {
  .heading-wrap {
    display: block;
  }
  .heading-wrap .gf-heading {
    display: block;
    margin-bottom: 40px;
  }
  .heading-wrap .blog-sync-thumb-wrap {
    max-width: none;
    display: block;
    padding-left: 0;
  }
  .heading-wrap .blog-sync-thumb-wrap [data-owl-sync="thumb"] {
    padding-bottom: 20px;
  }
  .heading-wrap .blog-sync-thumb-wrap [data-owl-sync="thumb"] > .owl-stage-outer {
    padding-right: 0;
  }
  .heading-wrap .blog-sync-thumb-wrap [data-owl-sync="thumb"] > .owl-stage-outer > .owl-stage > .current:before {
    left: 0;
    top: 0;
    bottom: 0;
  }
  .heading-wrap .blog-sync-thumb-wrap [data-owl-sync="thumb"] > .owl-stage-outer > .owl-stage > .current .entry-thumb-wrap:after {
    display: none;
  }
  .heading-wrap .blog-sync-thumb-wrap [data-owl-sync="thumb"] .entry-thumb-wrap {
    width: auto;
  }
  .heading-wrap .blog-sync-thumb-wrap [data-owl-sync="thumb"] .entry-thumb-wrap .entry-thumbnail {
    margin-right: 0;
    border: none;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
  }
}
@media (max-width: 599px) {
  .heading-wrap .posts-sync-thumb-wrap [data-owl-sync="thumb"] {
    padding-bottom: 10px;
  }
  [data-owl-sync="thumb"] {
    padding-bottom: 10px;
  }
}
.gf-posts article:last-child .gf-post-inner,
.widget-posts article:last-child .gf-post-inner {
  border-bottom: none !important;
  padding-bottom: 0 !important;
}
.gf-posts .layout-grid-1 article.post-default.sticky .gf-post-inner,
.widget-posts .layout-grid-1 article.post-default.sticky .gf-post-inner {
  background: #ebebeb;
}
.gf-posts .layout-large-1 article.post-large-image-10,
.widget-posts .layout-large-1 article.post-large-image-10 {
  margin-bottom: 15px;
}
.gf-posts .layout-large-1 article.post-large-image-10 .entry-thumb-wrap,
.widget-posts .layout-large-1 article.post-large-image-10 .entry-thumb-wrap {
  padding-left: 40px;
  padding-right: 40px;
}
.gf-posts .layout-large-1 article.post-large-image-10 + article.post-list-1,
.widget-posts .layout-large-1 article.post-large-image-10 + article.post-list-1 {
  margin-top: 15px;
}
.gf-posts .layout-large-1 article.post-list-1 + article.post-list-1,
.widget-posts .layout-large-1 article.post-list-1 + article.post-list-1 {
  margin-top: 5px;
}
.gf-posts .layout-large-2 article.post-large-image-1 .gf-post-inner,
.widget-posts .layout-large-2 article.post-large-image-1 .gf-post-inner {
  padding-bottom: 23px;
  border-bottom: dashed 1px #ebebeb;
}
.gf-posts .layout-large-3 article.post-large-image-10 + article.post-list-1,
.widget-posts .layout-large-3 article.post-large-image-10 + article.post-list-1 {
  margin-top: 15px;
}
.gf-posts .layout-large-3 article.post-list-1 + article.post-list-1,
.widget-posts .layout-large-3 article.post-list-1 + article.post-list-1 {
  margin-top: 5px;
}
.gf-posts .layout-large-6 article.post-large-image-3 .zoom-video,
.widget-posts .layout-large-6 article.post-large-image-3 .zoom-video {
  width: 40px;
  height: 40px;
  right: 25px;
  bottom: 19px;
  left: auto;
  top: auto;
  line-height: 40px;
  font-size: 14px;
}
.gf-posts .layout-large-6 article.post-large-image-3 .zoom-video i,
.widget-posts .layout-large-6 article.post-large-image-3 .zoom-video i {
  padding-left: 2px;
}
.gf-posts .layout-list-1 article.post-list-2 .gf-post-inner,
.widget-posts .layout-list-1 article.post-list-2 .gf-post-inner {
  padding-bottom: 16px;
  border-bottom: dashed 1px #ebebeb;
}
.gf-posts .layout-list-2 article.post-list-3 .gf-post-inner,
.widget-posts .layout-list-2 article.post-list-3 .gf-post-inner {
  border-bottom: dashed 1px #ebebeb;
}
.gf-posts .layout-list-2 article.post-list-3 .gf-post-inner .gf-post-content,
.widget-posts .layout-list-2 article.post-list-3 .gf-post-inner .gf-post-content {
  padding-bottom: 16px;
}
.gf-posts .layout-medium-1 article.post-medium-image-8 .entry-thumb-wrap,
.widget-posts .layout-medium-1 article.post-medium-image-8 .entry-thumb-wrap {
  width: 115px;
}
.gf-posts .layout-medium-1 article.post-medium-image-8 + article.post-list-1,
.widget-posts .layout-medium-1 article.post-medium-image-8 + article.post-list-1 {
  margin-top: 15px;
}
.gf-posts .layout-medium-1 article.post-list-1 + article.post-list-1,
.widget-posts .layout-medium-1 article.post-list-1 + article.post-list-1 {
  margin-top: 10px;
}
.gf-posts .layout-medium-3 article.post-medium-image-10 .gf-post-inner,
.widget-posts .layout-medium-3 article.post-medium-image-10 .gf-post-inner {
  border-bottom: dashed 1px #ebebeb;
}
.gf-posts .layout-medium-3 article.post-medium-image-10 .gf-post-inner .gf-post-content,
.widget-posts .layout-medium-3 article.post-medium-image-10 .gf-post-inner .gf-post-content {
  padding-bottom: 16px;
}
.gf-posts .layout-medium-4 article.post-medium-image-6 .gf-post-inner,
.widget-posts .layout-medium-4 article.post-medium-image-6 .gf-post-inner {
  padding-bottom: 30px;
  border-bottom: dashed 1px #ebebeb;
}
.gf-posts .layout-medium-5 article.post-medium-image-13 .gf-post-inner,
.widget-posts .layout-medium-5 article.post-medium-image-13 .gf-post-inner {
  padding-bottom: 30px;
  border-bottom: dashed 1px #ebebeb;
}
.gf-posts .layout-small-1 article.post-medium-image-4 .gf-post-title,
.widget-posts .layout-small-1 article.post-medium-image-4 .gf-post-title {
  margin-bottom: 8px;
}
.gf-posts .layout-mix-1 article.post-tall-2,
.widget-posts .layout-mix-1 article.post-tall-2 {
  margin-bottom: -13px;
}
.gf-posts .layout-mix-1 article.post-large-image-1 .gf-post-inner,
.widget-posts .layout-mix-1 article.post-large-image-1 .gf-post-inner {
  padding-bottom: 23px;
  border-bottom: dashed 1px #ebebeb;
}
.gf-posts .layout-mix-2 article .gf-post-inner,
.widget-posts .layout-mix-2 article .gf-post-inner {
  padding-bottom: 14px;
  border-bottom: dashed 1px #ebebeb;
}
.gf-posts .layout-mix-2 article.post-large-image-2 .gf-post-inner,
.widget-posts .layout-mix-2 article.post-large-image-2 .gf-post-inner {
  padding-bottom: 27px;
}
.gf-posts .layout-mix-3 article.post-medium-image-3 .gf-post-title a,
.widget-posts .layout-mix-3 article.post-medium-image-3 .gf-post-title a,
.gf-posts .layout-mix-3 article.post-medium-image-3 .gf-post-meta .meta-author a,
.widget-posts .layout-mix-3 article.post-medium-image-3 .gf-post-meta .meta-author a {
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.gf-posts .layout-mix-3 article.post-medium-image-3 .gf-post-title a:hover,
.widget-posts .layout-mix-3 article.post-medium-image-3 .gf-post-title a:hover,
.gf-posts .layout-mix-3 article.post-medium-image-3 .gf-post-meta .meta-author a:hover,
.widget-posts .layout-mix-3 article.post-medium-image-3 .gf-post-meta .meta-author a:hover,
.gf-posts .layout-mix-3 article.post-medium-image-3 .gf-post-title a:focus,
.widget-posts .layout-mix-3 article.post-medium-image-3 .gf-post-title a:focus,
.gf-posts .layout-mix-3 article.post-medium-image-3 .gf-post-meta .meta-author a:focus,
.widget-posts .layout-mix-3 article.post-medium-image-3 .gf-post-meta .meta-author a:focus {
  color: #252525;
}
.gf-posts .layout-mix-5 article.post-large-image-5 .gf-post-inner,
.widget-posts .layout-mix-5 article.post-large-image-5 .gf-post-inner {
  padding-bottom: 28px;
  border-bottom: dashed 1px #ebebeb;
}
.gf-posts .layout-mix-5 article:nth-child(4) .gf-post-inner,
.widget-posts .layout-mix-5 article:nth-child(4) .gf-post-inner {
  border-bottom: none;
}
.gf-posts .layout-mix-6 article.post-grid-1 .gf-post-title,
.widget-posts .layout-mix-6 article.post-grid-1 .gf-post-title {
  width: inherit;
  padding-left: 40px;
  padding-right: 40px;
}
.gf-posts .layout-mix-7 article.post-medium-image-7 .gf-post-title a,
.widget-posts .layout-mix-7 article.post-medium-image-7 .gf-post-title a,
.gf-posts .layout-mix-7 article.post-medium-image-7 .gf-post-meta .meta-author a,
.widget-posts .layout-mix-7 article.post-medium-image-7 .gf-post-meta .meta-author a {
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.gf-posts .layout-mix-7 article.post-medium-image-7 .gf-post-title a:hover,
.widget-posts .layout-mix-7 article.post-medium-image-7 .gf-post-title a:hover,
.gf-posts .layout-mix-7 article.post-medium-image-7 .gf-post-meta .meta-author a:hover,
.widget-posts .layout-mix-7 article.post-medium-image-7 .gf-post-meta .meta-author a:hover,
.gf-posts .layout-mix-7 article.post-medium-image-7 .gf-post-title a:focus,
.widget-posts .layout-mix-7 article.post-medium-image-7 .gf-post-title a:focus,
.gf-posts .layout-mix-7 article.post-medium-image-7 .gf-post-meta .meta-author a:focus,
.widget-posts .layout-mix-7 article.post-medium-image-7 .gf-post-meta .meta-author a:focus {
  color: #252525;
}
.gf-posts .layout-mix-9 article.post-tall-11.format-gallery .entry-thumb-wrap > .owl-carousel.owl-theme > .owl-nav,
.widget-posts .layout-mix-9 article.post-tall-11.format-gallery .entry-thumb-wrap > .owl-carousel.owl-theme > .owl-nav {
  position: initial;
  display: block;
}
.gf-posts .layout-mix-9 article.post-tall-11.format-gallery .entry-thumb-wrap > .owl-carousel.owl-theme > .owl-nav [class*='owl-']:hover,
.widget-posts .layout-mix-9 article.post-tall-11.format-gallery .entry-thumb-wrap > .owl-carousel.owl-theme > .owl-nav [class*='owl-']:hover {
  background: #e1757d;
  border-color: #e1757d;
}
.gf-posts .layout-mix-9 article.post-tall-11.format-gallery .entry-thumb-wrap > .owl-carousel.owl-theme .owl-dots,
.widget-posts .layout-mix-9 article.post-tall-11.format-gallery .entry-thumb-wrap > .owl-carousel.owl-theme .owl-dots {
  display: none;
}
.gf-posts .layout-mix-10 article.post-medium-image-7 .gf-post-title,
.widget-posts .layout-mix-10 article.post-medium-image-7 .gf-post-title {
  color: #252525;
}
.gf-posts .layout-mix-10 article.post-medium-image-7 .gf-post-meta .meta-author,
.widget-posts .layout-mix-10 article.post-medium-image-7 .gf-post-meta .meta-author {
  color: #acacac;
}
.gf-posts .layout-mix-10 article.post-medium-image-7 .gf-post-meta .meta-author > a,
.widget-posts .layout-mix-10 article.post-medium-image-7 .gf-post-meta .meta-author > a {
  color: #636363;
}
.gf-posts .layout-mix-10 article.post-medium-image-7 .gf-post-meta .meta-author > a:hover,
.widget-posts .layout-mix-10 article.post-medium-image-7 .gf-post-meta .meta-author > a:hover {
  color: #e1757d;
}
.gf-posts .layout-mix-12 article.post-list-2,
.widget-posts .layout-mix-12 article.post-list-2 {
  padding-bottom: 20px;
}
.gf-posts .layout-mix-12 article.post-list-2 .gf-post-inner,
.widget-posts .layout-mix-12 article.post-list-2 .gf-post-inner {
  padding-bottom: 15px;
  border-bottom: dashed 1px #ebebeb;
}
.gf-posts .layout-mix-12 article:nth-child(6) .gf-post-inner,
.widget-posts .layout-mix-12 article:nth-child(6) .gf-post-inner {
  border-bottom: none;
}
.gf-posts .layout-mix-13 article.post-list-2,
.widget-posts .layout-mix-13 article.post-list-2 {
  padding-bottom: 15px;
}
.gf-posts .layout-mix-13 article.post-list-2 .gf-post-inner,
.widget-posts .layout-mix-13 article.post-list-2 .gf-post-inner {
  padding-bottom: 20px !important;
  border-bottom: dashed 1px #ebebeb !important;
}
.gf-posts .layout-mix-13 article.post-large-image-1,
.widget-posts .layout-mix-13 article.post-large-image-1 {
  padding-bottom: 40px;
}
.gf-posts .layout-mix-13 article.post-medium-image-5,
.widget-posts .layout-mix-13 article.post-medium-image-5 {
  padding-bottom: 40px;
}
.gf-posts .layout-mix-13 [class*='col-'],
.widget-posts .layout-mix-13 [class*='col-'] {
  padding-left: 20px;
  padding-right: 20px;
}
.gf-posts .layout-mix-13 .row,
.widget-posts .layout-mix-13 .row {
  margin-left: -20px;
  margin-right: -20px;
}
.gf-posts .layout-mix-13 .col-md-3 .col-lg-12:last-child article.post-list-2 .gf-post-inner,
.widget-posts .layout-mix-13 .col-md-3 .col-lg-12:last-child article.post-list-2 .gf-post-inner {
  border-bottom: none !important;
}
.gf-posts .layout-mix-14 article.post-medium-image-3 .gf-post-title a,
.widget-posts .layout-mix-14 article.post-medium-image-3 .gf-post-title a,
.gf-posts .layout-mix-14 article.post-medium-image-3 .gf-post-meta .meta-author a,
.widget-posts .layout-mix-14 article.post-medium-image-3 .gf-post-meta .meta-author a {
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.gf-posts .layout-mix-14 article.post-medium-image-3 .gf-post-title a:hover,
.widget-posts .layout-mix-14 article.post-medium-image-3 .gf-post-title a:hover,
.gf-posts .layout-mix-14 article.post-medium-image-3 .gf-post-meta .meta-author a:hover,
.widget-posts .layout-mix-14 article.post-medium-image-3 .gf-post-meta .meta-author a:hover,
.gf-posts .layout-mix-14 article.post-medium-image-3 .gf-post-title a:focus,
.widget-posts .layout-mix-14 article.post-medium-image-3 .gf-post-title a:focus,
.gf-posts .layout-mix-14 article.post-medium-image-3 .gf-post-meta .meta-author a:focus,
.widget-posts .layout-mix-14 article.post-medium-image-3 .gf-post-meta .meta-author a:focus {
  color: #252525;
}
.gf-posts .layout-mix-16 article.post-medium-image-4 .gf-post-title,
.widget-posts .layout-mix-16 article.post-medium-image-4 .gf-post-title {
  color: #fff;
}
.gf-posts .layout-mix-16 article.post-medium-image-4 .gf-post-title a,
.widget-posts .layout-mix-16 article.post-medium-image-4 .gf-post-title a {
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.gf-posts .layout-mix-16 article.post-medium-image-4 .gf-post-title a:hover,
.widget-posts .layout-mix-16 article.post-medium-image-4 .gf-post-title a:hover,
.gf-posts .layout-mix-16 article.post-medium-image-4 .gf-post-title a:focus,
.widget-posts .layout-mix-16 article.post-medium-image-4 .gf-post-title a:focus {
  color: #252525;
}
.gf-posts .layout-mix-16 article.post-medium-image-4 .gf-post-meta > li > a,
.widget-posts .layout-mix-16 article.post-medium-image-4 .gf-post-meta > li > a {
  color: #d7d7d7;
}
.gf-posts .layout-mix-16 article.post-medium-image-4 .gf-post-meta > li > a:hover,
.widget-posts .layout-mix-16 article.post-medium-image-4 .gf-post-meta > li > a:hover {
  color: #252525;
}
.gf-posts .layout-mix-16 article.post-medium-image-4 .gf-post-meta > li,
.widget-posts .layout-mix-16 article.post-medium-image-4 .gf-post-meta > li {
  color: #d7d7d7;
}
.gf-posts .layout-mix-16 article.post-medium-image-4 .gf-post-meta .meta-cat a,
.widget-posts .layout-mix-16 article.post-medium-image-4 .gf-post-meta .meta-cat a {
  color: #d7d7d7;
}
.gf-posts .layout-mix-16 article.post-medium-image-4 .gf-post-meta .meta-author,
.widget-posts .layout-mix-16 article.post-medium-image-4 .gf-post-meta .meta-author,
.gf-posts .layout-mix-16 article.post-medium-image-4 .gf-post-meta .slash,
.widget-posts .layout-mix-16 article.post-medium-image-4 .gf-post-meta .slash {
  display: inline;
}
.gf-posts .layout-mix-16 article.post-medium-image-4 .gf-post-meta .meta-author a,
.widget-posts .layout-mix-16 article.post-medium-image-4 .gf-post-meta .meta-author a {
  color: #fff;
}
.gf-posts .layout-mix-16 article.post-medium-image-4 .entry-thumb-wrap,
.widget-posts .layout-mix-16 article.post-medium-image-4 .entry-thumb-wrap {
  width: 115px;
}
.gf-posts .layout-mix-16 .owl-carousel.owl-theme .owl-dots .owl-dot.active span,
.widget-posts .layout-mix-16 .owl-carousel.owl-theme .owl-dots .owl-dot.active span,
.gf-posts .layout-mix-16 .owl-carousel.owl-theme .owl-dots .owl-dot:hover span,
.widget-posts .layout-mix-16 .owl-carousel.owl-theme .owl-dots .owl-dot:hover span {
  border-color: #fff;
}
.gf-posts .layout-mix-17 article.post-list-2 .gf-post-inner,
.widget-posts .layout-mix-17 article.post-list-2 .gf-post-inner {
  margin-left: 50px;
  margin-right: 50px;
}
.gf-posts .layout-mix-18 article .gf-post-inner,
.widget-posts .layout-mix-18 article .gf-post-inner {
  padding-bottom: 22px;
  border-bottom: dashed 1px #ebebeb;
}
.gf-posts .layout-mix-18 article.post-large-image-8 .gf-post-inner,
.widget-posts .layout-mix-18 article.post-large-image-8 .gf-post-inner {
  padding-bottom: 17px;
}
.gf-posts .layout-mix-19 article.post-medium-image-4 .entry-thumb-wrap,
.widget-posts .layout-mix-19 article.post-medium-image-4 .entry-thumb-wrap {
  width: 115px;
}
.gf-posts .layout-mix-20 article.post-large-image-9,
.widget-posts .layout-mix-20 article.post-large-image-9,
.gf-posts .layout-mix-20 article.post-grid-3,
.widget-posts .layout-mix-20 article.post-grid-3 {
  padding-bottom: 40px;
}
.gf-posts .layout-mix-20 [class*='col-'],
.widget-posts .layout-mix-20 [class*='col-'] {
  padding-left: 20px;
  padding-right: 20px;
}
.gf-posts .layout-mix-20 .row,
.widget-posts .layout-mix-20 .row {
  margin-left: -20px;
  margin-right: -20px;
}
.gf-posts .layout-mix-22 article .gf-post-inner,
.widget-posts .layout-mix-22 article .gf-post-inner {
  padding-bottom: 22px;
  border-bottom: dashed 1px #ebebeb;
}
.gf-posts .layout-mix-22 article.post-large-image-5 .gf-post-inner,
.widget-posts .layout-mix-22 article.post-large-image-5 .gf-post-inner {
  padding-bottom: 17px;
}
.gf-posts .layout-mix-22 article.post-large-image-5 .gf-post-inner .gf-post-title,
.widget-posts .layout-mix-22 article.post-large-image-5 .gf-post-inner .gf-post-title {
  font-size: 24px;
  line-height: 26px;
}
.gf-posts .layout-mix-23 article,
.widget-posts .layout-mix-23 article {
  padding-bottom: 50px;
}
.gf-posts .layout-mix-23 [class*='col-'],
.widget-posts .layout-mix-23 [class*='col-'] {
  padding-left: 20px;
  padding-right: 20px;
}
.gf-posts .layout-mix-23 .row,
.widget-posts .layout-mix-23 .row {
  margin-left: -20px;
  margin-right: -20px;
}
.gf-posts .layout-mix-24 article.post-large-image-14,
.widget-posts .layout-mix-24 article.post-large-image-14 {
  margin-top: 140px;
}
.gf-posts .layout-mix-24 article.post-large-image-13 .gf-post-title,
.widget-posts .layout-mix-24 article.post-large-image-13 .gf-post-title {
  margin-bottom: 0;
}
.gf-posts .layout-mix-25 article.post-grid-1 .gf-post-title,
.widget-posts .layout-mix-25 article.post-grid-1 .gf-post-title {
  width: inherit;
  padding-left: 60px;
  padding-right: 60px;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 5px;
}
.gf-posts .layout-mix-25 article.post-grid-1 .gf-post-content,
.widget-posts .layout-mix-25 article.post-grid-1 .gf-post-content {
  background-color: #000;
  padding-top: 23px;
  padding-bottom: 43px;
}
.gf-posts .layout-mix-25 article.post-large-image-4 .entry-thumb-wrap + .gf-post-content,
.widget-posts .layout-mix-25 article.post-large-image-4 .entry-thumb-wrap + .gf-post-content {
  padding-top: 14px;
}
.gf-posts .layout-mix-25 article.post-large-image-4 .gf-post-title,
.widget-posts .layout-mix-25 article.post-large-image-4 .gf-post-title {
  text-transform: uppercase;
  margin-bottom: 11px;
}
.gf-posts .layout-tall-1 article.post-list-1,
.widget-posts .layout-tall-1 article.post-list-1 {
  padding-bottom: 13px;
}
.gf-posts .layout-tall-1 article.post-list-1 .gf-post-inner,
.widget-posts .layout-tall-1 article.post-list-1 .gf-post-inner {
  left: 50%;
  width: 50%;
  margin-left: -40px;
}
.gf-posts .layout-tall-1 article.post-tall-1,
.widget-posts .layout-tall-1 article.post-tall-1 {
  padding-bottom: 30px;
}
.gf-posts .layout-tall-2,
.widget-posts .layout-tall-2 {
  position: relative;
}
.gf-posts .layout-tall-2 article.post-list-3,
.widget-posts .layout-tall-2 article.post-list-3 {
  padding-bottom: 35px;
}
.gf-posts .layout-tall-2 .list-3-wrap,
.widget-posts .layout-tall-2 .list-3-wrap {
  position: absolute;
  right: 0;
}
@media (max-width: 991px) and (min-width: 768px) {
  .gf-posts .layout-mix-12 article.post-list-2 .gf-post-inner {
    padding-bottom: 0;
    border-bottom: none;
  }
}
@media (max-width: 991px) {
  .layout-tall-2 article.post-tall-4 {
    padding-bottom: 40px !important;
  }
  .layout-tall-2 article.post-tall-4 .gf-post-content {
    padding: 15px;
  }
  .layout-tall-2 .list-3-wrap {
    position: inherit !important;
    right: auto !important;
    top: auto !important;
  }
  .gf-posts .layout-mix-24 article.post-large-image-14 {
    margin-top: 100px;
  }
}
@media (max-width: 767px) {
  .gf-posts .layout-mix-17 article.post-list-2,
  .gf-posts .layout-mix-17 article.post-list-2 .gf-post-inner,
  .gf-posts .widget-posts .layout-mix-17 article.post-list-2 .gf-post-inner {
    margin-left: 0;
    margin-right: 0;
  }
  .gf-posts .layout-tall-1 article.post-list-1 {
    padding-bottom: 13px;
  }
  .gf-posts .layout-tall-1 article.post-list-1 .gf-post-inner {
    left: auto;
    width: inherit;
    margin-left: 0;
  }
  .gf-posts .layout-tall-1 article.post-list-1 .gf-post-title {
    color: #252525;
  }
  .gf-posts .layout-mix-6 article.post-grid-1 .gf-post-title,
  .gf-posts .layout-mix-25 article.post-grid-1 .gf-post-title {
    width: inherit;
    padding-left: 15px;
    padding-right: 15px;
  }
  .gf-posts .layout-mix-24 article.post-large-image-13 .gf-post-content {
    margin-top: 22px;
  }
  .gf-posts .layout-mix-24 article.post-large-image-13 .gf-post-title {
    font-size: 24px;
    line-height: 26px;
    margin-top: 15px;
  }
  .gf-posts .layout-mix-24 article.post-large-image-13 .gf-post-meta {
    float: initial;
  }
  .gf-posts .layout-mix-24 article.post-large-image-13 .gf-post-meta > li {
    display: inline;
  }
  .gf-posts .layout-mix-24 article.post-large-image-13 .gf-post-meta > li.slash {
    display: inline;
  }
  .gf-posts .layout-mix-24 article.post-large-image-14 {
    margin-top: 0;
  }
}
.gf_posts .gf-heading {
  margin-bottom: 30px;
}
.gf_posts .gf-heading + .gf-blog-wrap {
  position: relative;
}
.gf_posts .gf-heading + .gf-blog-wrap .next-prev {
  position: absolute;
  right: 0;
  top: -68px;
  margin-top: 0;
}
.gf_posts .gf-heading + .gf-blog-wrap .gf-cate-filter {
  position: absolute;
  top: -62px;
  right: 0;
}
.gf_posts .gf-heading + .gf-blog-wrap .gf-cate-filter + div + .next-prev {
  position: static;
}
.cate-filter-left .gf-cate-filter {
  text-align: left;
}
.cate-filter-center .gf-cate-filter {
  text-align: center;
}
.cate-filter-right .gf-cate-filter {
  text-align: right;
}
.nav.gf-cate-filter > li > a:hover,
.nav.gf-cate-filter > li > a:focus {
  color: #e1757d;
}
.gf-cate-filter {
  text-align: right;
  margin-bottom: 0;
  border: none;
  font-size: 0;
}
.gf-cate-filter li {
  margin-bottom: 0;
  float: none;
  display: inline-block;
}
.gf-cate-filter li a {
  display: block;
  margin-right: 0;
  font-family: 'Josefin Sans';
  border: none !important;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  font-weight: 400;
  font-size: 16px;
  text-transform: capitalize;
  background: transparent !important;
}
.gf-cate-filter li + li {
  margin-left: 8px;
}
.gf-cate-filter[data-filter-vertical="1"] li {
  display: block;
}
.gf-cate-filter .dropdown {
  display: inline-block;
  margin-left: 8px;
  float: right;
}
.gf-cate-filter .dropdown li {
  display: block;
}
.gf-cate-filter .dropdown li + li {
  margin-left: 0;
}
.gf-cate-filter .dropdown .dropdown-toggle {
  margin-bottom: 0 !important;
  font-size: 24px;
  cursor: pointer;
  width: 42px;
  height: 42px;
  line-height: 42px;
  padding: 0;
}
.gf-cate-filter .dropdown .dropdown-menu {
  margin-top: 0;
  right: 0;
  left: auto;
  background-color: #ffffff;
  border: none;
  border-bottom: 1px solid #ebebeb;
  -webkit-box-shadow: 0 3px 10px rgba(111, 111, 111, 0.7);
  -moz-box-shadow: 0 3px 10px rgba(111, 111, 111, 0.7);
  box-shadow: 0 3px 10px rgba(111, 111, 111, 0.7);
  padding: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
}
.gf-cate-filter .dropdown .dropdown-menu a {
  border-top: 1px solid #ebebeb;
  text-align: left;
  padding: 5px 10px;
}
@media (min-width: 992px) {
  [data-filter-vertical="1"].gf-cate-filter {
    width: 18%;
    float: left;
    font-size: 0;
    margin-bottom: 0;
  }
  [data-filter-vertical="1"].gf-cate-filter li a {
    display: inline-block;
    width: 100%;
    text-align: left;
    padding: 0;
  }
  [data-filter-vertical="1"].gf-cate-filter li + li {
    margin-left: 0 !important;
  }
  [data-filter-vertical="1"] + .gf-blog-inner {
    width: 82%;
    float: left;
    padding-left: 60px;
    padding-right: 60px;
    border-left: dashed 1px #e1e1e1;
    border-right: dashed 1px #e1e1e1;
  }
}
.cate-filter-dark .gf-cate-filter {
  background-color: rgba(0, 0, 0, 0.81);
  margin-bottom: 0;
  padding: 15px 30px;
}
.cate-filter-dark .gf-cate-filter li a {
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 700;
  line-height: 20px;
  padding: 7px 15px;
  color: #fff;
}
.cate-filter-dark .gf-cate-filter li + li {
  margin-left: 60px;
  position: relative;
  overflow: inherit;
}
.cate-filter-dark .gf-cate-filter li + li:before {
  position: absolute;
  content: '';
  display: block;
  left: -31px;
  width: 2px;
  height: 15px;
  background-color: #5c5c5c;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
}
.cate-filter-dark .gf-cate-filter .dropdown {
  margin-left: 55px;
  top: 2px;
}
.cate-filter-dark .gf-cate-filter .dropdown li:before {
  display: none;
}
.cate-filter-dark .gf-cate-filter .dropdown li + li {
  margin-left: 0;
}
.cate-filter-dark .gf-cate-filter .dropdown .dropdown-toggle {
  line-height: 30px;
  padding: 0;
  width: 30px;
  text-align: center;
}
.cate-filter-dark .gf-cate-filter .dropdown .dropdown-menu {
  background-color: #000;
  border: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}
.cate-filter-dark .gf-cate-filter .dropdown .dropdown-menu a {
  text-align: left;
}
.cate-filter-mg-bottom-40 .gf-cate-filter {
  margin-bottom: 40px !important;
}
.cate-filter-mg-bottom-60 .gf-cate-filter {
  margin-bottom: 60px !important;
}
#gsf-reading-process {
  display: block;
  height: 5px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  position: fixed;
  bottom: 0;
  left: 0;
  background-color: #e1757d;
  -webkit-box-shadow: 0 -2px 10px rgba(93, 151, 175, 0.7);
  -moz-box-shadow: 0 -2px 10px rgba(93, 151, 175, 0.7);
  box-shadow: 0 -2px 10px rgba(93, 151, 175, 0.7);
  width: 0;
  z-index: 9999;
  max-width: 100%;
}
.gf-cate-title h1 {
  font-family: 'Josefin Sans';
  color: #e1757d !important;
  text-transform: uppercase;
  margin-bottom: 22px;
  margin-top: 0;
}
/**
* 8.0 - Shortcode
* ----------------------------------------------------------------------------
*/
.gf-cate-filter {
  text-align: right;
  margin-bottom: 0;
}
.gf-cate-filter a.btn {
  background-color: transparent;
  font-weight: 400;
  font-size: 12px;
  text-transform: capitalize;
  line-height: 19px;
  padding: 0 9px;
  border: none;
}
.gf-cate-filter a.btn.active,
.gf-cate-filter a.btn:hover {
  color: #fff;
}
.gf-cate-filter a.btn + a {
  margin-left: 6px;
}
.gf-cate-filter .cate-expanded {
  display: inline-block;
  margin-left: 6px;
  top: 2px;
}
.gf-cate-filter .cate-expanded .dropdown-toggle {
  margin-bottom: 0 !important;
  font-size: 16px;
  cursor: pointer;
  line-height: 19px;
  padding: 0 9px;
  color: #fff;
}
.gf-cate-filter .cate-expanded .dropdown-menu {
  padding-left: 0;
  right: 0;
  left: auto;
}
.gf-cate-filter .cate-expanded .dropdown-menu a {
  text-align: left;
}
.cate-filter-dark .gf-cate-filter {
  background-color: rgba(0, 0, 0, 0.81);
  margin-bottom: 0;
  padding: 15px 30px;
}
.cate-filter-dark .gf-cate-filter a.btn {
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 700;
  line-height: 20px;
  padding: 7px 15px;
  color: #fff;
}
.cate-filter-dark .gf-cate-filter a.btn + a {
  margin-left: 60px;
}
.cate-filter-dark .gf-cate-filter > a + a {
  position: relative;
  overflow: inherit;
}
.cate-filter-dark .gf-cate-filter > a + a:before {
  position: absolute;
  content: '';
  display: block;
  left: -31px;
  width: 2px;
  height: 15px;
  background-color: #5c5c5c;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
}
.cate-filter-dark .gf-cate-filter .cate-expanded {
  margin-left: 55px;
  top: 2px;
}
.cate-filter-dark .gf-cate-filter .cate-expanded .dropdown-toggle {
  line-height: 30px;
  padding: 0;
  width: 30px;
  text-align: center;
}
.cate-filter-dark .gf-cate-filter .cate-expanded .dropdown-menu {
  background-color: #000;
  border: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}
.cate-filter-dark .gf-cate-filter .cate-expanded .dropdown-menu a {
  text-align: left;
}
div.cate-filter-mg-bottom-40 .gf-cate-filter {
  margin-bottom: 40px !important;
}
div.cate-filter-mg-bottom-40 .gf-blog-wrap {
  margin-top: 40px !important;
}
div.cate-filter-mg-bottom-40 .gf-heading + .gf-blog-wrap .gf-cate-filter {
  top: -72px;
}
div.cate-filter-mg-bottom-60 .gf-cate-filter {
  margin-bottom: 60px !important;
}
.nav-center > .owl-nav {
  margin-top: 0;
}
.nav-center > .owl-nav > .owl-next,
.nav-center > .owl-nav > .owl-prev {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
}
.nav-center > .owl-nav > .owl-next {
  right: 0;
}
.nav-center > .owl-nav > .owl-prev {
  left: 0;
}
.nav-center:hover > .owl-nav > .owl-next,
.nav-center:hover > .owl-nav > .owl-prev {
  opacity: 1;
}
.default-effect,
.suprema-effect,
.layla-effect,
.bubba-effect,
.jazz-effect {
  overflow: hidden;
  position: relative;
}
.default-effect:after,
.suprema-effect:after,
.layla-effect:after,
.bubba-effect:after,
.jazz-effect:after {
  -webkit-transition: opacity .8s ease .2s;
  transition: opacity .8s ease .15s;
  position: absolute;
  content: '';
  display: block;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  z-index: 0;
}
.default-effect .effect-content,
.suprema-effect .effect-content,
.layla-effect .effect-content,
.bubba-effect .effect-content,
.jazz-effect .effect-content {
  position: relative;
}
.default-effect .effect-content:before,
.suprema-effect .effect-content:before,
.layla-effect .effect-content:before,
.bubba-effect .effect-content:before,
.jazz-effect .effect-content:before,
.default-effect .effect-content:after,
.suprema-effect .effect-content:after,
.layla-effect .effect-content:after,
.bubba-effect .effect-content:after,
.jazz-effect .effect-content:after {
  position: absolute;
  content: '';
  display: block;
}
.default-effect:hover:after,
.suprema-effect:hover:after,
.layla-effect:hover:after,
.bubba-effect:hover:after,
.jazz-effect:hover:after,
.default-effect:hover .effect-content:before,
.suprema-effect:hover .effect-content:before,
.layla-effect:hover .effect-content:before,
.bubba-effect:hover .effect-content:before,
.jazz-effect:hover .effect-content:before,
.default-effect:hover .effect-content:after,
.suprema-effect:hover .effect-content:after,
.layla-effect:hover .effect-content:after,
.bubba-effect:hover .effect-content:after,
.jazz-effect:hover .effect-content:after {
  opacity: 1;
}
.suprema-effect .effect-content:before,
.suprema-effect .effect-content:after {
  width: 45%;
  height: 2px;
  top: 50%;
  background: #fff;
  opacity: 0;
  z-index: 1;
  -webkit-transition: opacity 0.2s ease, -webkit-transform 0s 0.2s;
  transition: opacity .2s ease, transform 0s .2s;
}
.suprema-effect .effect-content:before {
  -webkit-transform-origin: 0 50%;
  transform-origin: 0 50%;
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
  left: 50%;
}
.suprema-effect .effect-content:after {
  right: 50%;
  -webkit-transform-origin: 100% 50%;
  transform-origin: 100% 50%;
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.suprema-effect:hover .effect-content:before {
  transition: opacity 0.3s ease 50ms, transform 2s cubic-bezier(0.26, 0.63, 0, 0.96);
  -webkit-transform: rotate(-45deg) translateX(-1000px);
  -moz-transform: rotate(-45deg) translateX(-1000px);
  -ms-transform: rotate(-45deg) translateX(-1000px);
  -o-transform: rotate(-45deg) translateX(-1000px);
  transform: rotate(-45deg) translateX(-1000px);
}
.suprema-effect:hover .effect-content:after {
  transition: opacity 0.4s ease, transform 2s cubic-bezier(0.26, 0.63, 0, 0.96);
  -webkit-transform: rotate(-45deg) translateX(1000px);
  -moz-transform: rotate(-45deg) translateX(1000px);
  -ms-transform: rotate(-45deg) translateX(1000px);
  -o-transform: rotate(-45deg) translateX(1000px);
  transform: rotate(-45deg) translateX(1000px);
}
.layla-effect .effect-content:after,
.bubba-effect .effect-content:after,
.layla-effect .effect-content:before,
.bubba-effect .effect-content:before {
  content: '';
  display: block;
  background-color: transparent;
  position: absolute;
  z-index: 1;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}
.layla-effect .effect-content:after,
.bubba-effect .effect-content:after {
  top: 25px;
  bottom: 25px;
  left: 50%;
  right: 50%;
  border-top-width: 1px;
  border-top-style: solid;
  border-top-color: #fff;
  border-bottom-width: 1px;
  border-bottom-style: solid;
  border-bottom-color: #fff;
}
.layla-effect .effect-content:before,
.bubba-effect .effect-content:before {
  top: 50%;
  bottom: 50%;
  left: 25px;
  right: 25px;
  border-left-width: 1px;
  border-left-style: solid;
  border-left-color: #fff;
  border-right-width: 1px;
  border-right-style: solid;
  border-right-color: #fff;
}
.layla-effect:hover .effect-content:after {
  left: 10px;
  right: 10px;
}
.layla-effect:hover .effect-content:before {
  top: 10px;
  bottom: 10px;
}
.bubba-effect:hover .effect-content:after {
  left: 25px;
  right: 25px;
}
.bubba-effect:hover .effect-content:before {
  top: 25px;
  bottom: 25px;
}
.jazz-effect .effect-content:before {
  background-color: transparent;
  z-index: 1;
  width: 100%;
  height: 100%;
  top: 0;
  opacity: 0;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  border-top-width: 1px;
  border-top-style: solid;
  border-top-color: #fff;
  border-bottom-width: 1px;
  border-bottom-style: solid;
  border-bottom-color: #fff;
  -webkit-transform: rotate(45deg) scale(0.5);
  -moz-transform: rotate(45deg) scale(0.5);
  -ms-transform: rotate(45deg) scale(0.5);
  -o-transform: rotate(45deg) scale(0.5);
  transform: rotate(45deg) scale(0.5);
}
.jazz-effect:hover .effect-content:before {
  -webkit-transform: rotate(45deg) scale(1);
  -moz-transform: rotate(45deg) scale(1);
  -ms-transform: rotate(45deg) scale(1);
  -o-transform: rotate(45deg) scale(1);
  transform: rotate(45deg) scale(1);
}
/*
------- Custom VC_Progress_Bar -------*/
.vc_progress_bar .wpb_heading {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #3b3b3b;
  display: inline-block;
  padding-bottom: 8px;
  border-bottom: 1px solid #d5d5d5;
  margin-bottom: 30px;
}
.vc_progress_bar .vc_single_bar:not(:last-child) {
  margin-top: 20px;
  margin-bottom: 50px;
}
.vc_progress_bar .vc_general.vc_single_bar {
  background-color: #f4f4f4;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  height: 13px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
}
.vc_progress_bar .vc_general.vc_single_bar .vc_bar {
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
}
.vc_progress_bar .vc_label {
  padding: 0 !important;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #3b3b3b !important;
  top: -25px;
}
.g5plus-contact-form input:not([type="submit"]),
.g5plus-contact-form textarea {
  width: 100% !important;
  height: 45px;
  background-color: transparent;
  border: 1px solid #ebebeb;
  font-weight: 400;
  margin-bottom: 30px;
  font-size: 14px;
}
.g5plus-contact-form input:not([type="submit"]):focus,
.g5plus-contact-form textarea:focus {
  border-color: #e1757d;
}
.g5plus-contact-form textarea {
  height: 175px;
  width: 100%;
  max-width: 100%;
}
.g5plus-contact-form img {
  display: none;
}
.g5plus-contact-form span.wpcf7-form-control-wrap {
  display: block;
}
.g5plus-contact-form span.wpcf7-not-valid-tip {
  color: #e1757d;
  display: block;
  position: absolute;
  bottom: 0;
}
div.wpcf7-response-output {
  margin: 10px 0 0;
}
#gsf-popup-mailchimp-wrapper .modal-dialog {
  width: 880px;
}
#gsf-popup-mailchimp-wrapper .modal-content {
  border: none;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  box-shadow: none;
}
#gsf-popup-mailchimp-wrapper .modal-content .mailchimp-image {
  vertical-align: middle;
  width: 47.73px;
  display: table-cell;
}
#gsf-popup-mailchimp-wrapper .modal-content .mailchimp-image img {
  width: 100%;
  height: 100%;
}
#gsf-popup-mailchimp-wrapper .modal-content .mailchimp-image + .mailchimp-content-inner {
  width: 52.27%;
  padding: 0 50px;
}
#gsf-popup-mailchimp-wrapper .modal-content .mailchimp-content-inner {
  vertical-align: middle;
  width: 100%;
  display: table-cell;
  padding: 50px;
  text-align: center;
}
#gsf-popup-mailchimp-wrapper .modal-content .mailchimp-content-inner .g5plus-mailchimp .email {
  border: solid 1px #ebebeb !important;
}
#gsf-popup-mailchimp-wrapper .modal-content .mailchimp-content-inner .modal-title {
  line-height: 34px;
  font-size: 30px;
  margin-bottom: 18px;
}
#gsf-popup-mailchimp-wrapper .modal-content .mailchimp-content-inner p {
  font-size: 16px;
  line-height: 20px;
}
#gsf-popup-mailchimp-wrapper .modal-content .mailchimp-content-inner .modal-header {
  padding: 0;
  border-bottom: none;
}
#gsf-popup-mailchimp-wrapper .modal-content .mailchimp-content-inner .modal-footer {
  text-align: left;
  border-top: none;
  font-size: 16px;
}
#gsf-popup-mailchimp-wrapper .modal-content .mailchimp-content-inner button.close {
  position: absolute;
  top: 0;
  right: 0;
}
#gsf-popup-mailchimp-wrapper .modal-content .mailchimp-content-inner button.close i:before {
  font-size: 50px;
  color: #000;
}
@media (max-width: 991px) {
  #gsf-popup-mailchimp-wrapper .modal-dialog {
    width: 600px;
  }
  #gsf-popup-mailchimp-wrapper .modal-content .mailchimp-image + .mailchimp-content-inner {
    padding: 0 15px;
  }
  #gsf-popup-mailchimp-wrapper .modal-content .mailchimp-content-inner {
    padding: 50px 15px;
  }
}
@media (max-width: 767px) {
  #gsf-popup-mailchimp-wrapper {
    padding: 0 !important;
  }
  #gsf-popup-mailchimp-wrapper .modal-dialog {
    width: auto;
  }
  #gsf-popup-mailchimp-wrapper .modal-content .mailchimp-image {
    display: none;
  }
  #gsf-popup-mailchimp-wrapper .modal-content .mailchimp-content-inner {
    width: 100%;
    padding: 15px;
  }
  #gsf-popup-mailchimp-wrapper .modal-content .modal-footer {
    margin-top: 50px;
  }
}
/*New magazine*/
.gf-new-magazine .new-magazine-content > a {
  font-family: 'Oswald';
}
.body-font.gf-new-magazine .gf-new-magazine-title {
  font-family: 'Josefin Sans';
}
/*Heading*/
.gf-heading.style-4 {
  border-bottom: solid 1px #ebebeb;
}
.gf-heading.text-accent h4.title {
  color: #e1757d !important;
}
/*Post*/
.gf-posts .gf-blog-wrap {
  position: relative;
}
.gf-posts .gf-heading + .gf-blog-wrap .layout-grid + .next-prev,
.gf-posts .gf-heading + .gf-blog-wrap .layout-grid-2 + .next-prev {
  position: absolute;
  right: 0;
  top: -68px;
  margin-top: 0;
}
.gf-posts .gf-heading + .gf-blog-wrap .gf-cate-filter {
  position: absolute;
  top: -62px;
  right: 0;
}
.gf-posts .gf-heading + .gf-blog-wrap .gf-cate-filter + div + .next-prev {
  position: static;
}
/**
* 9.0 - Mixin
* ----------------------------------------------------------------------------
*/
/**
* Font
* ----------------------------------------------------------------------------
*/
.body-font {
  font-family: 'Josefin Sans';
}
.primary-font,
ul.search-popup-list .sa-post-title,
ul.search-popup-list .sa-post-meta,
.review-wrapper .review-list li span,
.review-wrapper .review-desc .review-summary-title,
.entry-quote-content a,
.gf-post-navigation > div span,
.blog-pagination .page-numbers.next,
.blog-pagination .page-numbers.prev,
.term-badge-highlight,
.vc_progress_bar .vc_label {
  font-family: 'Felix Titling';
}
.heading-font {
  font-family: 'Oswald';
}
/**
* Color
* ----------------------------------------------------------------------------
*/
.accent-color,
ul.search-popup-list .sa-post-title:hover,
ul.search-popup-list .sa-post-title:focus,
.review-wrapper .review-star .review-result,
.review-wrapper .review-desc .review-summary-title,
.widget-social-profile ul li a:hover,
.main-menu .menu-item > a:focus,
.main-menu .menu-item > a:hover,
.main-menu li.current-menu-ancestor:not(.menu-item-type-taxonomy) > a,
.main-menu li.current-menu-parent:not(.menu-item-type-taxonomy) > a,
.main-menu li.current-menu-item > a,
.main-menu li .menu-current > a,
.gf-menu-vertical li.current-menu-ancestor > a,
.gf-menu-vertical li.current-menu-parent > a,
.gf-menu-vertical li.current-menu-item > a,
.gf-menu-vertical li .menu-current > a,
.gf-post-like,
article.post-single .gf-entry-content a:not(.wp-block-button__link) {
  color: #e1757d;
}
.bg-accent-color,
.back-to-top:focus,
.back-to-top:hover,
ul.social-icon-circle > li > a,
ul.social-icon-circle-outline > li > a:hover,
ul.social-icon-circle-outline > li > a:focus,
.review-wrapper .review-point .review-result,
.review-wrapper .review-percentage .review-result,
.review-wrapper .review-total-wrapper,
.term-badge:hover,
.term-badge:focus {
  background-color: #e1757d;
}
.border-accent-color,
ul.social-icon-circle > li > a,
ul.social-icon-circle-outline > li > a:hover,
ul.social-icon-circle-outline > li > a:focus {
  border-color: #e1757d;
}
.foreground-accent-color,
.back-to-top:focus,
.back-to-top:hover,
ul.social-icon-circle-outline > li > a:hover,
ul.social-icon-circle-outline > li > a:focus,
.term-badge:hover,
.term-badge:focus {
  color: #ffffff;
}
.border-color {
  border-color: #ebebeb;
}
.disable-color,
ul.gf-social-icon > li > a,
ul.social-icon-circle-outline > li > a,
.gf-entry-content address,
.gf-entry-content del,
.gf-entry-content .wp-caption-text,
.gf-entry-content figcaption,
.widget-social-profile ul li a,
.gf-post-navigation > div span {
  color: #acacac;
}
.heading-color,
.gf-paging.next-prev > a,
.blog-pagination .page-numbers,
.gf-post-navigation > div span,
.gf-cate-filter a.btn {
  color: #252525;
}
.white-color {
  color: #fff;
}
/**
* Font Weight
* ----------------------------------------------------------------------------
*/
.fw-light {
  font-weight: 300 !important;
}
.fw-normal {
  font-weight: 400 !important;
}
.fw-medium {
  font-weight: 500 !important;
}
.fw-semi-bold {
  font-weight: 600 !important;
}
.fw-bold {
  font-weight: 700 !important;
}
.fw-extra-bold {
  font-weight: 800 !important;
}
.fw-black {
  font-weight: 900 !important;
}
/**
* Font Size
* ----------------------------------------------------------------------------
*/
.fs-10 {
  font-size: 10px !important;
}
.fs-11 {
  font-size: 11px !important;
}
.fs-12 {
  font-size: 12px !important;
}
.fs-13 {
  font-size: 13px !important;
}
.fs-14 {
  font-size: 14px !important;
}
.fs-15 {
  font-size: 15px !important;
}
.fs-16 {
  font-size: 16px !important;
}
.fs-18 {
  font-size: 18px !important;
}
.fs-20 {
  font-size: 20px !important;
}
.fs-21 {
  font-size: 21px !important;
}
.fs-22 {
  font-size: 22px !important;
}
.fs-24 {
  font-size: 24px !important;
}
.fs-25 {
  font-size: 25px !important;
}
.fs-28 {
  font-size: 28px !important;
}
.fs-30 {
  font-size: 30px !important;
}
.fs-31 {
  font-size: 31px !important;
}
.fs-32 {
  font-size: 32px !important;
}
.fs-36 {
  font-size: 36px !important;
}
.fs-38 {
  font-size: 38px !important;
}
.fs-40 {
  font-size: 40px !important;
}
.fs-42 {
  font-size: 42px !important;
}
.fs-46 {
  font-size: 46px !important;
}
.fs-48 {
  font-size: 48px !important;
}
.fs-50 {
  font-size: 50px !important;
}
.fs-55 {
  font-size: 55px !important;
}
.fs-60 {
  font-size: 60px !important;
}
.fs-80 {
  font-size: 80px !important;
}
.fs-170 {
  font-size: 170px !important;
}
.fs-200 {
  font-size: 200px !important;
}
/**
* Font Style
* ----------------------------------------------------------------------------
*/
.text-italic {
  font-style: italic !important;
}
.text-normal {
  font-style: normal;
}
.uppercase {
  text-transform: uppercase !important;
}
.gsf-link {
  color: inherit;
}
.gsf-link:hover,
.gsf-link:focus,
.gsf-link:active {
  text-decoration: none !important;
}
/**
* Padding Top
* ----------------------------------------------------------------------------
*/
.pd-top-0 {
  padding-top: 0px !important;
}
.pd-top-5 {
  padding-top: 5px !important;
}
.pd-top-10 {
  padding-top: 10px !important;
}
.pd-top-15 {
  padding-top: 15px !important;
}
.pd-top-20 {
  padding-top: 20px !important;
}
.pd-top-25 {
  padding-top: 25px !important;
}
.pd-top-30 {
  padding-top: 30px !important;
}
.pd-top-35 {
  padding-top: 35px !important;
}
.pd-top-40 {
  padding-top: 40px !important;
}
.pd-top-45 {
  padding-top: 45px !important;
}
.pd-top-50 {
  padding-top: 50px !important;
}
.pd-top-55 {
  padding-top: 55px !important;
}
.pd-top-60 {
  padding-top: 60px !important;
}
.pd-top-65 {
  padding-top: 65px !important;
}
.pd-top-70 {
  padding-top: 70px !important;
}
.pd-top-75 {
  padding-top: 75px !important;
}
.pd-top-80 {
  padding-top: 80px !important;
}
.pd-top-85 {
  padding-top: 85px !important;
}
.pd-top-90 {
  padding-top: 90px !important;
}
.pd-top-95 {
  padding-top: 95px !important;
}
.pd-top-100 {
  padding-top: 100px !important;
}
@media screen and (max-width: 991px) {
  .sm-pd-top-0 {
    padding-top: 0px !important;
  }
  .sm-pd-top-5 {
    padding-top: 5px !important;
  }
  .sm-pd-top-10 {
    padding-top: 10px !important;
  }
  .sm-pd-top-15 {
    padding-top: 15px !important;
  }
  .sm-pd-top-20 {
    padding-top: 20px !important;
  }
  .sm-pd-top-25 {
    padding-top: 25px !important;
  }
  .sm-pd-top-30 {
    padding-top: 30px !important;
  }
  .sm-pd-top-35 {
    padding-top: 35px !important;
  }
  .sm-pd-top-40 {
    padding-top: 40px !important;
  }
  .sm-pd-top-45 {
    padding-top: 45px !important;
  }
  .sm-pd-top-50 {
    padding-top: 50px !important;
  }
  .sm-pd-top-55 {
    padding-top: 55px !important;
  }
  .sm-pd-top-60 {
    padding-top: 60px !important;
  }
  .sm-pd-top-65 {
    padding-top: 65px !important;
  }
  .sm-pd-top-70 {
    padding-top: 70px !important;
  }
  .sm-pd-top-75 {
    padding-top: 75px !important;
  }
  .sm-pd-top-80 {
    padding-top: 80px !important;
  }
  .sm-pd-top-85 {
    padding-top: 85px !important;
  }
  .sm-pd-top-90 {
    padding-top: 90px !important;
  }
  .sm-pd-top-95 {
    padding-top: 95px !important;
  }
  .sm-pd-top-100 {
    padding-top: 100px !important;
  }
}
@media screen and (max-width: 767px) {
  .xs-pd-top-0 {
    padding-top: 0px !important;
  }
  .xs-pd-top-5 {
    padding-top: 5px !important;
  }
  .xs-pd-top-10 {
    padding-top: 10px !important;
  }
  .xs-pd-top-15 {
    padding-top: 15px !important;
  }
  .xs-pd-top-20 {
    padding-top: 20px !important;
  }
  .xs-pd-top-25 {
    padding-top: 25px !important;
  }
  .xs-pd-top-30 {
    padding-top: 30px !important;
  }
  .xs-pd-top-35 {
    padding-top: 35px !important;
  }
  .xs-pd-top-40 {
    padding-top: 40px !important;
  }
  .xs-pd-top-45 {
    padding-top: 45px !important;
  }
  .xs-pd-top-50 {
    padding-top: 50px !important;
  }
  .xs-pd-top-55 {
    padding-top: 55px !important;
  }
  .xs-pd-top-60 {
    padding-top: 60px !important;
  }
  .xs-pd-top-65 {
    padding-top: 65px !important;
  }
  .xs-pd-top-70 {
    padding-top: 70px !important;
  }
  .xs-pd-top-75 {
    padding-top: 75px !important;
  }
  .xs-pd-top-80 {
    padding-top: 80px !important;
  }
  .xs-pd-top-85 {
    padding-top: 85px !important;
  }
  .xs-pd-top-90 {
    padding-top: 90px !important;
  }
  .xs-pd-top-95 {
    padding-top: 95px !important;
  }
  .xs-pd-top-100 {
    padding-top: 100px !important;
  }
}
/**
* Padding Bottom
* ----------------------------------------------------------------------------
*/
.pd-bottom-0 {
  padding-bottom: 0px !important;
}
.pd-bottom-5 {
  padding-bottom: 5px !important;
}
.pd-bottom-10 {
  padding-bottom: 10px !important;
}
.pd-bottom-15 {
  padding-bottom: 15px !important;
}
.pd-bottom-20 {
  padding-bottom: 20px !important;
}
.pd-bottom-25 {
  padding-bottom: 25px !important;
}
.pd-bottom-30 {
  padding-bottom: 30px !important;
}
.pd-bottom-35 {
  padding-bottom: 35px !important;
}
.pd-bottom-40 {
  padding-bottom: 40px !important;
}
.pd-bottom-45 {
  padding-bottom: 45px !important;
}
.pd-bottom-50 {
  padding-bottom: 50px !important;
}
.pd-bottom-55 {
  padding-bottom: 55px !important;
}
.pd-bottom-60 {
  padding-bottom: 60px !important;
}
.pd-bottom-65 {
  padding-bottom: 65px !important;
}
.pd-bottom-70 {
  padding-bottom: 70px !important;
}
.pd-bottom-75 {
  padding-bottom: 75px !important;
}
.pd-bottom-80 {
  padding-bottom: 80px !important;
}
.pd-bottom-85 {
  padding-bottom: 85px !important;
}
.pd-bottom-90 {
  padding-bottom: 90px !important;
}
.pd-bottom-95 {
  padding-bottom: 95px !important;
}
.pd-bottom-100 {
  padding-bottom: 100px !important;
}
@media screen and (max-width: 991px) {
  .sm-pd-bottom-0 {
    padding-bottom: 0px !important;
  }
  .sm-pd-bottom-5 {
    padding-bottom: 5px !important;
  }
  .sm-pd-bottom-10 {
    padding-bottom: 10px !important;
  }
  .sm-pd-bottom-15 {
    padding-bottom: 15px !important;
  }
  .sm-pd-bottom-20 {
    padding-bottom: 20px !important;
  }
  .sm-pd-bottom-25 {
    padding-bottom: 25px !important;
  }
  .sm-pd-bottom-30 {
    padding-bottom: 30px !important;
  }
  .sm-pd-bottom-35 {
    padding-bottom: 35px !important;
  }
  .sm-pd-bottom-40 {
    padding-bottom: 40px !important;
  }
  .sm-pd-bottom-45 {
    padding-bottom: 45px !important;
  }
  .sm-pd-bottom-50 {
    padding-bottom: 50px !important;
  }
  .sm-pd-bottom-55 {
    padding-bottom: 55px !important;
  }
  .sm-pd-bottom-60 {
    padding-bottom: 60px !important;
  }
  .sm-pd-bottom-65 {
    padding-bottom: 65px !important;
  }
  .sm-pd-bottom-70 {
    padding-bottom: 70px !important;
  }
  .sm-pd-bottom-75 {
    padding-bottom: 75px !important;
  }
  .sm-pd-bottom-80 {
    padding-bottom: 80px !important;
  }
  .sm-pd-bottom-85 {
    padding-bottom: 85px !important;
  }
  .sm-pd-bottom-90 {
    padding-bottom: 90px !important;
  }
  .sm-pd-bottom-95 {
    padding-bottom: 95px !important;
  }
  .sm-pd-bottom-100 {
    padding-bottom: 100px !important;
  }
}
@media screen and (max-width: 767px) {
  .xs-pd-bottom-0 {
    padding-bottom: 0px !important;
  }
  .xs-pd-bottom-5 {
    padding-bottom: 5px !important;
  }
  .xs-pd-bottom-10 {
    padding-bottom: 10px !important;
  }
  .xs-pd-bottom-15 {
    padding-bottom: 15px !important;
  }
  .xs-pd-bottom-20 {
    padding-bottom: 20px !important;
  }
  .xs-pd-bottom-25 {
    padding-bottom: 25px !important;
  }
  .xs-pd-bottom-30 {
    padding-bottom: 30px !important;
  }
  .xs-pd-bottom-35 {
    padding-bottom: 35px !important;
  }
  .xs-pd-bottom-40 {
    padding-bottom: 40px !important;
  }
  .xs-pd-bottom-45 {
    padding-bottom: 45px !important;
  }
  .xs-pd-bottom-50 {
    padding-bottom: 50px !important;
  }
  .xs-pd-bottom-55 {
    padding-bottom: 55px !important;
  }
  .xs-pd-bottom-60 {
    padding-bottom: 60px !important;
  }
  .xs-pd-bottom-65 {
    padding-bottom: 65px !important;
  }
  .xs-pd-bottom-70 {
    padding-bottom: 70px !important;
  }
  .xs-pd-bottom-75 {
    padding-bottom: 75px !important;
  }
  .xs-pd-bottom-80 {
    padding-bottom: 80px !important;
  }
  .xs-pd-bottom-85 {
    padding-bottom: 85px !important;
  }
  .xs-pd-bottom-90 {
    padding-bottom: 90px !important;
  }
  .xs-pd-bottom-95 {
    padding-bottom: 95px !important;
  }
  .xs-pd-bottom-100 {
    padding-bottom: 100px !important;
  }
}
/**
* Margin Top
* ----------------------------------------------------------------------------
*/
.mg-top-0 {
  margin-top: 0px !important;
}
.mg-top-5 {
  margin-top: 5px !important;
}
.mg-top-10 {
  margin-top: 10px !important;
}
.mg-top-15 {
  margin-top: 15px !important;
}
.mg-top-20 {
  margin-top: 20px !important;
}
.mg-top-25 {
  margin-top: 25px !important;
}
.mg-top-30 {
  margin-top: 30px !important;
}
.mg-top-35 {
  margin-top: 35px !important;
}
.mg-top-40 {
  margin-top: 40px !important;
}
.mg-top-45 {
  margin-top: 45px !important;
}
.mg-top-50 {
  margin-top: 50px !important;
}
.mg-top-55 {
  margin-top: 55px !important;
}
.mg-top-60 {
  margin-top: 60px !important;
}
.mg-top-65 {
  margin-top: 65px !important;
}
.mg-top-70 {
  margin-top: 70px !important;
}
.mg-top-75 {
  margin-top: 75px !important;
}
.mg-top-80 {
  margin-top: 80px !important;
}
.mg-top-85 {
  margin-top: 85px !important;
}
.mg-top-90 {
  margin-top: 90px !important;
}
.mg-top-95 {
  margin-top: 95px !important;
}
.mg-top-100 {
  margin-top: 100px !important;
}
@media screen and (max-width: 991px) {
  .sm-mg-top-0 {
    margin-top: 0px !important;
  }
  .sm-mg-top-5 {
    margin-top: 5px !important;
  }
  .sm-mg-top-10 {
    margin-top: 10px !important;
  }
  .sm-mg-top-15 {
    margin-top: 15px !important;
  }
  .sm-mg-top-20 {
    margin-top: 20px !important;
  }
  .sm-mg-top-25 {
    margin-top: 25px !important;
  }
  .sm-mg-top-30 {
    margin-top: 30px !important;
  }
  .sm-mg-top-35 {
    margin-top: 35px !important;
  }
  .sm-mg-top-40 {
    margin-top: 40px !important;
  }
  .sm-mg-top-45 {
    margin-top: 45px !important;
  }
  .sm-mg-top-50 {
    margin-top: 50px !important;
  }
  .sm-mg-top-55 {
    margin-top: 55px !important;
  }
  .sm-mg-top-60 {
    margin-top: 60px !important;
  }
  .sm-mg-top-65 {
    margin-top: 65px !important;
  }
  .sm-mg-top-70 {
    margin-top: 70px !important;
  }
  .sm-mg-top-75 {
    margin-top: 75px !important;
  }
  .sm-mg-top-80 {
    margin-top: 80px !important;
  }
  .sm-mg-top-85 {
    margin-top: 85px !important;
  }
  .sm-mg-top-90 {
    margin-top: 90px !important;
  }
  .sm-mg-top-95 {
    margin-top: 95px !important;
  }
  .sm-mg-top-100 {
    margin-top: 100px !important;
  }
}
@media screen and (max-width: 767px) {
  .xs-mg-top-0 {
    margin-top: 0px !important;
  }
  .xs-mg-top-5 {
    margin-top: 5px !important;
  }
  .xs-mg-top-10 {
    margin-top: 10px !important;
  }
  .xs-mg-top-15 {
    margin-top: 15px !important;
  }
  .xs-mg-top-20 {
    margin-top: 20px !important;
  }
  .xs-mg-top-25 {
    margin-top: 25px !important;
  }
  .xs-mg-top-30 {
    margin-top: 30px !important;
  }
  .xs-mg-top-35 {
    margin-top: 35px !important;
  }
  .xs-mg-top-40 {
    margin-top: 40px !important;
  }
  .xs-mg-top-45 {
    margin-top: 45px !important;
  }
  .xs-mg-top-50 {
    margin-top: 50px !important;
  }
  .xs-mg-top-55 {
    margin-top: 55px !important;
  }
  .xs-mg-top-60 {
    margin-top: 60px !important;
  }
  .xs-mg-top-65 {
    margin-top: 65px !important;
  }
  .xs-mg-top-70 {
    margin-top: 70px !important;
  }
  .xs-mg-top-75 {
    margin-top: 75px !important;
  }
  .xs-mg-top-80 {
    margin-top: 80px !important;
  }
  .xs-mg-top-85 {
    margin-top: 85px !important;
  }
  .xs-mg-top-90 {
    margin-top: 90px !important;
  }
  .xs-mg-top-95 {
    margin-top: 95px !important;
  }
  .xs-mg-top-100 {
    margin-top: 100px !important;
  }
}
/**
* Margin Bottom
* ----------------------------------------------------------------------------
*/
.mg-bottom-0 {
  margin-bottom: 0px !important;
}
.mg-bottom-5 {
  margin-bottom: 5px !important;
}
.mg-bottom-10 {
  margin-bottom: 10px !important;
}
.mg-bottom-15 {
  margin-bottom: 15px !important;
}
.mg-bottom-20 {
  margin-bottom: 20px !important;
}
.mg-bottom-25 {
  margin-bottom: 25px !important;
}
.mg-bottom-30 {
  margin-bottom: 30px !important;
}
.mg-bottom-35 {
  margin-bottom: 35px !important;
}
.mg-bottom-40 {
  margin-bottom: 40px !important;
}
.mg-bottom-45 {
  margin-bottom: 45px !important;
}
.mg-bottom-50 {
  margin-bottom: 50px !important;
}
.mg-bottom-55 {
  margin-bottom: 55px !important;
}
.mg-bottom-60 {
  margin-bottom: 60px !important;
}
.mg-bottom-65 {
  margin-bottom: 65px !important;
}
.mg-bottom-70 {
  margin-bottom: 70px !important;
}
.mg-bottom-75 {
  margin-bottom: 75px !important;
}
.mg-bottom-80 {
  margin-bottom: 80px !important;
}
.mg-bottom-85 {
  margin-bottom: 85px !important;
}
.mg-bottom-90 {
  margin-bottom: 90px !important;
}
.mg-bottom-95 {
  margin-bottom: 95px !important;
}
.mg-bottom-100 {
  margin-bottom: 100px !important;
}
@media screen and (max-width: 991px) {
  .sm-mg-bottom-0 {
    margin-bottom: 0px !important;
  }
  .sm-mg-bottom-5 {
    margin-bottom: 5px !important;
  }
  .sm-mg-bottom-10 {
    margin-bottom: 10px !important;
  }
  .sm-mg-bottom-15 {
    margin-bottom: 15px !important;
  }
  .sm-mg-bottom-20 {
    margin-bottom: 20px !important;
  }
  .sm-mg-bottom-25 {
    margin-bottom: 25px !important;
  }
  .sm-mg-bottom-30 {
    margin-bottom: 30px !important;
  }
  .sm-mg-bottom-35 {
    margin-bottom: 35px !important;
  }
  .sm-mg-bottom-40 {
    margin-bottom: 40px !important;
  }
  .sm-mg-bottom-45 {
    margin-bottom: 45px !important;
  }
  .sm-mg-bottom-50 {
    margin-bottom: 50px !important;
  }
  .sm-mg-bottom-55 {
    margin-bottom: 55px !important;
  }
  .sm-mg-bottom-60 {
    margin-bottom: 60px !important;
  }
  .sm-mg-bottom-65 {
    margin-bottom: 65px !important;
  }
  .sm-mg-bottom-70 {
    margin-bottom: 70px !important;
  }
  .sm-mg-bottom-75 {
    margin-bottom: 75px !important;
  }
  .sm-mg-bottom-80 {
    margin-bottom: 80px !important;
  }
  .sm-mg-bottom-85 {
    margin-bottom: 85px !important;
  }
  .sm-mg-bottom-90 {
    margin-bottom: 90px !important;
  }
  .sm-mg-bottom-95 {
    margin-bottom: 95px !important;
  }
  .sm-mg-bottom-100 {
    margin-bottom: 100px !important;
  }
}
@media screen and (max-width: 767px) {
  .xs-mg-bottom-0 {
    margin-bottom: 0px !important;
  }
  .xs-mg-bottom-5 {
    margin-bottom: 5px !important;
  }
  .xs-mg-bottom-10 {
    margin-bottom: 10px !important;
  }
  .xs-mg-bottom-15 {
    margin-bottom: 15px !important;
  }
  .xs-mg-bottom-20 {
    margin-bottom: 20px !important;
  }
  .xs-mg-bottom-25 {
    margin-bottom: 25px !important;
  }
  .xs-mg-bottom-30 {
    margin-bottom: 30px !important;
  }
  .xs-mg-bottom-35 {
    margin-bottom: 35px !important;
  }
  .xs-mg-bottom-40 {
    margin-bottom: 40px !important;
  }
  .xs-mg-bottom-45 {
    margin-bottom: 45px !important;
  }
  .xs-mg-bottom-50 {
    margin-bottom: 50px !important;
  }
  .xs-mg-bottom-55 {
    margin-bottom: 55px !important;
  }
  .xs-mg-bottom-60 {
    margin-bottom: 60px !important;
  }
  .xs-mg-bottom-65 {
    margin-bottom: 65px !important;
  }
  .xs-mg-bottom-70 {
    margin-bottom: 70px !important;
  }
  .xs-mg-bottom-75 {
    margin-bottom: 75px !important;
  }
  .xs-mg-bottom-80 {
    margin-bottom: 80px !important;
  }
  .xs-mg-bottom-85 {
    margin-bottom: 85px !important;
  }
  .xs-mg-bottom-90 {
    margin-bottom: 90px !important;
  }
  .xs-mg-bottom-95 {
    margin-bottom: 95px !important;
  }
  .xs-mg-bottom-100 {
    margin-bottom: 100px !important;
  }
}
/**
* Custom Columns Mobile
* ----------------------------------------------------------------------------
*/
@media (max-width: 599px) {
  .col-mb-1,
  .col-mb-2,
  .col-mb-3,
  .col-mb-4,
  .col-mb-5,
  .col-mb-6,
  .col-mb-7,
  .col-mb-8,
  .col-mb-9,
  .col-mb-10,
  .col-mb-11,
  .col-mb-12 {
    float: left !important;
  }
  .col-mb-12 {
    width: 100% !important;
  }
  .col-mb-11 {
    width: 91.66666667% !important;
  }
  .col-mb-10 {
    width: 83.33333333% !important;
  }
  .col-mb-9 {
    width: 75% !important;
  }
  .col-mb-8 {
    width: 66.66666667% !important;
  }
  .col-mb-7 {
    width: 58.33333333% !important;
  }
  .col-mb-6 {
    width: 50% !important;
  }
  .col-mb-5 {
    width: 41.66666667% !important;
  }
  .col-mb-4 {
    width: 33.33333333% !important;
  }
  .col-mb-3 {
    width: 25% !important;
  }
  .col-mb-2 {
    width: 16.66666667% !important;
  }
  .col-mb-1 {
    width: 8.33333333% !important;
  }
  .col-mb-pull-12 {
    right: 100% !important;
  }
  .col-mb-pull-11 {
    right: 91.66666667% !important;
  }
  .col-mb-pull-10 {
    right: 83.33333333% !important;
  }
  .col-mb-pull-9 {
    right: 75% !important;
  }
  .col-mb-pull-8 {
    right: 66.66666667% !important;
  }
  .col-mb-pull-7 {
    right: 58.33333333% !important;
  }
  .col-mb-pull-6 {
    right: 50% !important;
  }
  .col-mb-pull-5 {
    right: 41.66666667% !important;
  }
  .col-mb-pull-4 {
    right: 33.33333333% !important;
  }
  .col-mb-pull-3 {
    right: 25% !important;
  }
  .col-mb-pull-2 {
    right: 16.66666667% !important;
  }
  .col-mb-pull-1 {
    right: 8.33333333% !important;
  }
  .col-mb-pull-0 {
    right: auto !important;
  }
  .col-mb-push-12 {
    left: 100% !important;
  }
  .col-mb-push-11 {
    left: 91.66666667% !important;
  }
  .col-mb-push-10 {
    left: 83.33333333% !important;
  }
  .col-mb-push-9 {
    left: 75% !important;
  }
  .col-mb-push-8 {
    left: 66.66666667% !important;
  }
  .col-mb-push-7 {
    left: 58.33333333% !important;
  }
  .col-mb-push-6 {
    left: 50% !important;
  }
  .col-mb-push-5 {
    left: 41.66666667% !important;
  }
  .col-mb-push-4 {
    left: 33.33333333% !important;
  }
  .col-mb-push-3 {
    left: 25% !important;
  }
  .col-mb-push-2 {
    left: 16.66666667% !important;
  }
  .col-mb-push-1 {
    left: 8.33333333% !important;
  }
  .col-mb-push-0 {
    left: auto !important;
  }
  .col-mb-offset-12 {
    margin-left: 100% !important;
  }
  .col-mb-offset-11 {
    margin-left: 91.66666667% !important;
  }
  .col-mb-offset-10 {
    margin-left: 83.33333333% !important;
  }
  .col-mb-offset-9 {
    margin-left: 75% !important;
  }
  .col-mb-offset-8 {
    margin-left: 66.66666667% !important;
  }
  .col-mb-offset-7 {
    margin-left: 58.33333333% !important;
  }
  .col-mb-offset-6 {
    margin-left: 50% !important;
  }
  .col-mb-offset-5 {
    margin-left: 41.66666667% !important;
  }
  .col-mb-offset-4 {
    margin-left: 33.33333333% !important;
  }
  .col-mb-offset-3 {
    margin-left: 25% !important;
  }
  .col-mb-offset-2 {
    margin-left: 16.66666667% !important;
  }
  .col-mb-offset-1 {
    margin-left: 8.33333333% !important;
  }
  .col-mb-offset-0 {
    margin-left: 0 !important;
  }
}
.bg-transparent {
  background-color: transparent;
}
@media (min-width: 1200px) {
  .row-fix-content {
    max-height: 685px;
    margin-top: 80px;
  }
  .row-fix-content .gf-posts {
    position: relative;
    top: -140px;
    margin-bottom: -50px;
  }
}
.gsf-white-text {
  color: #fff !important;
}
.pos-absolute {
  position: absolute !important;
}
.bottom-0 {
  bottom: 0 !important;
}
.right-neg-30 {
  right: -30px !important;
}
.display-inline-block {
  display: inline-block;
}
.pd-right-100 {
  padding-right: 100px !important;
}
.pd-left-0 {
  padding-left: 0 !important;
}
.pd-right-0 {
  padding-right: 0 !important;
}
.content-mg-top-45 .new-magazine-content {
  margin-top: 45px;
}
.mg-bottom--105 {
  margin-bottom: -105px !important;
}
@media screen and (max-width: 991px) {
  .sm-pos-inherit {
    position: inherit !important;
  }
  .sm-text-center {
    text-align: center !important;
  }
  .sm-pd-left-20 {
    padding-left: 20px !important;
  }
  .sm-pd-right-20 {
    padding-right: 20px !important;
  }
}
@media screen and (max-width: 767px) {
  .xs-text-center {
    text-align: center !important;
  }
  .xs-pd-left-0 {
    padding-left: 0 !important;
  }
  .xs-pd-left-20 {
    padding-left: 20px !important;
  }
  .xs-pd-right-20 {
    padding-right: 20px !important;
  }
  .xs-pd-left-15 {
    padding-left: 15px !important;
  }
  .xs-pd-right-15 {
    padding-right: 15px !important;
  }
  .xs-mg-bottom-0 {
    margin-bottom: 0 !important;
  }
}
@keyframes slideInLeft {
  from {
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.slideInLeft {
  animation-name: slideInLeft;
}
.typed-cursor {
  opacity: 1;
  -webkit-animation: blink 0.7s infinite;
  -moz-animation: blink 0.7s infinite;
  animation: blink 0.7s infinite;
}
@keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-moz-keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@media screen and (max-width: 1199px) {
  .md-mg-top-50 {
    margin-top: 50px !important;
  }
  .md-mg-bottom-50 {
    margin-bottom: 50px !important;
  }
}
.gf-gutter-0 .row {
  margin-left: -0px;
  margin-right: -0px;
}
.gf-gutter-0.gf-feature {
  margin-left: 0;
  margin-right: 0;
}
.gf-gutter-0.gf-feature [class*="col-"] {
  padding-left: 0;
  padding-right: 0;
}
.gf-gutter-0.gf-feature article {
  padding-bottom: 0;
}
.gf-gutter-10 .row {
  margin-left: -5px;
  margin-right: -5px;
}
.gf-gutter-10.gf-feature {
  margin-left: 0;
  margin-right: 0;
}
.gf-gutter-10.gf-feature [class*="col-"] {
  padding-left: 5px;
  padding-right: 5px;
}
.gf-gutter-10.gf-feature article {
  padding-bottom: 10px;
}
.gf-gutter-20 .row {
  margin-left: -10px;
  margin-right: -10px;
}
.gf-gutter-20.gf-feature {
  margin-left: 0;
  margin-right: 0;
}
.gf-gutter-20.gf-feature [class*="col-"] {
  padding-left: 10px;
  padding-right: 10px;
}
.gf-gutter-20.gf-feature article {
  padding-bottom: 20px;
}
.gf-gutter-30 .row {
  margin-left: -15px;
  margin-right: -15px;
}
.gf-gutter-30.gf-feature {
  margin-left: 0;
  margin-right: 0;
}
.gf-gutter-30.gf-feature [class*="col-"] {
  padding-left: 15px;
  padding-right: 15px;
}
.gf-gutter-30.gf-feature article {
  padding-bottom: 30px;
}
.gf-gutter-40 .row {
  margin-left: -20px;
  margin-right: -20px;
}
.gf-gutter-40.gf-feature {
  margin-left: 0;
  margin-right: 0;
}
.gf-gutter-40.gf-feature [class*="col-"] {
  padding-left: 20px;
  padding-right: 20px;
}
.gf-gutter-40.gf-feature article {
  padding-bottom: 40px;
}
.border-image {
  border: 17px solid transparent;
  -webkit-border-image: url(https://www.ictsd.org/wp-content/themes/g5plus-achilles/assets/images/border.png) 17 round;
  -o-border-image: url(https://www.ictsd.org/wp-content/themes/g5plus-achilles/assets/images/border.png) 17 round;
  border-image: url(https://www.ictsd.org/wp-content/themes/g5plus-achilles/assets/images/border.png) 17 round;
}
@media (max-width: 1199px) {
  .md-mg-left-15 {
    margin-left: 15px;
  }
  .md-mg-right-15 {
    margin-right: 15px;
  }
  .md-mg-left-0 {
    margin-left: 0 !important;
  }
}
.mg-left--35 {
  margin-left: -35px;
}
.mg-left--50 {
  margin-left: -50px;
}
.mg-left-20 {
  margin-left: 20px;
}
.mg-right-20 {
  margin-right: 20px;
}
.mg-right-40 {
  margin-right: 40px !important;
}
.mg-right-60 {
  margin-right: 60px !important;
}
.mg-right-90 {
  margin-right: 90px !important;
}
.mg-right-100 {
  margin-right: 100px !important;
}
.mg-right-150 {
  margin-right: 150px !important;
}
.mg-left-auto {
  margin-left: auto;
  margin-right: 0;
}
.weather-custom i {
  font-size: 30px;
  display: inline-block;
  color: #fff;
  margin-right: 32px;
  vertical-align: middle;
}
.weather-custom span {
  font-size: 12px;
  font-family: 'Oswald';
  color: #acacac;
  line-height: 30px;
  vertical-align: middle;
}
.search-form-404 .search-form .search-field {
  border: none;
  border-bottom: dashed 1px #ebebeb;
}
.border-bottom-dashed {
  border-bottom: dashed 1px #363636;
  padding-bottom: 30px;
}
.gsf-login-link-sign-in:focus,
.gsf-login-link-sign-up:focus,
.gsf-login-link-sign-in:hover,
.gsf-login-link-sign-up:hover {
  color: #e1757d !important;
}
.bg-transparent {
  background: transparent !important;
}
