@charset "utf-8";
/*
Theme Name: Guff
Theme URI: https://themeforest.net/item/guff-blog-magazine-wordpress-theme/49300812
Description: Guff – Blog & Magazine WordPress Theme
Text Domain: guff
Author: Frenify
Author URI: http://themeforest.net/user/frenify
Version: 1.0.2
Tested up to: 6.5
Requires PHP: 5.6
License: Located in 'licensing' folder
License URI: license.txt
Tags: custom-header, custom-background, threaded-comments, custom-menu, featured-images, full-width-template, theme-options, translation-ready
*/
/*

	@Author: Frenify
	@URL: http://themeforest.net/user/frenify


	This file contains the styling for the actual theme, this
	is the file you need to edit to change the look of the
	theme.

	This files contents are outlined below.
	
	01) Root
	02) Body
	03) Logo
	04) Desktop Navigation
	05) Searchbox
	06) Ajax Preloader
	07) Page Title
	08) Mobile Menu
	09) Blog Item
	10) Breadcrumbs
	11) Pagination
	12) Page Links
	13) Footer
	14) Sidebar Page
	15) Totop Button
	16) 404 Page
	17) Protected Page
	18) Featured Posts
	19) Blog Single
	20) Prev & Next Box
	21) Sharebox
	22) Comments
	23) Quote Format
	24) Author Information Box
	25) Popup Iframe
	26) Sticky Navigation
	27) Quick Navigation
	28) Reactions
	29) Votes
	30) Footer Subscribe Form
	31) Magic Cursor
	32) Author Archive Page
	33) Contact Page
	34) Responsive CSS (small devices)
	


*/

/*************************************************************************/
/* 01) Root
/*************************************************************************/
:root{
	--guff-bbc: #fff;
	--guff-mc1: #01a290;
	--guff-mc2: #ec345a;
	--guff-hc: #000;
	--guff-bc: #000;
	--hff: 'Heebo', sans-serif;
	--bff: 'Work Sans', sans-serif;
	--guff-border: 4px;
}
/*************************************************************************/
/* 02) Body
/*************************************************************************/
html{
	padding: 0px;
	margin: 0px;
}
*:after,
*:before,
*{
	margin: 0;
	padding: 0;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
body{
	font-family: var(--bff);
	font-size: 18px;
	letter-spacing: 0;
	line-height: 1.33;
	font-weight: 500;
	color: var(--guff-bc);
	background-color: var(--guff-bbc);
	position: relative;
	font-display: swap;
	
	-ms-word-wrap: break-word;
	word-wrap: break-word;
	word-break: break-word;
	
	cursor: default;
}
@media(min-width: 1041px){
	body.frenify_auto_overflow{
		overflow: visible;
		max-width: 100%;
	}
}

body.admin-bar:after{
	min-height: -moz-calc(100vh - 32px);
	min-height: -webkit-calc(100vh - 32px);
	min-height: -o-calc(100vh - 32px);
	min-height: calc(100vh - 32px);
}
@media(max-width: 782px){
	body.admin-bar:after{
		min-height: -moz-calc(100vh - 46px);
		min-height: -webkit-calc(100vh - 46px);
		min-height: -o-calc(100vh - 46px);
		min-height: calc(100vh - 46px);
	}
}
.guff-fn-wrapper{
	position: relative;
	z-index: 1;
	width: 100%;
	max-width: 100%;
}
/* Preloader */
.guff_fn_preloader.ready{
	opacity: 0;
	visibility: hidden;
}
.guff_fn_preloader{
	opacity: 1;
	visibility: visible;
	transition: all .3s ease;
	width: 100%;
	height: 100%;
	position: fixed;
	left: 0;
	top: 0;
	z-index: 99999;
	background-color: #fff;
}
.guff_fn_preloader .spinner{
	position: absolute;
	top: 50%;
	left: 50%;
	margin: -38px 0 0 -38px;
	width: 76px;
    height: 76px;
    background: transparent;
    border-top: 4px solid var(--guff-mc2);
    border-right: 4px solid transparent;
    border-radius: 50%;
    -webkit-animation: 1s guff_spin linear infinite;
    animation: 1s guff_spin linear infinite;
}
@-webkit-keyframes guff_spin {
    from {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    to {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}
@keyframes guff_spin {
    from {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    to {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}
/****************************************************/
body,
html{
	width: 100%;
    margin: 0px;
    padding: 0px;
}
body{
	height: auto;
}
body{
	overflow: hidden;
}
html:after,
html:before{
	clear: both;
	display: table;
	content: '';
}
html{
	overflow-x: hidden;
}
.fn__svg{
	fill: currentcolor;
	width: 18px;
	height: 18px;
}
.frenify-hidden-svg{
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	position: absolute;
	z-index: -1000;
}
::-webkit-input-placeholder { /* WebKit, Blink, Edge */
    color:    #000;
}
:-moz-placeholder { /* Mozilla Firefox 4 to 18 */
   color:    #000;
   opacity:  1;
}
::-moz-placeholder { /* Mozilla Firefox 19+ */
   color:    #000;
   opacity:  1;
}
:-ms-input-placeholder { /* Internet Explorer 10-11 */
   color:    #000;
}
::-ms-input-placeholder { /* Microsoft Edge */
   color:    #000;
}

::placeholder { /* Most modern browsers support this now. */
   color:    #000;
}
p{
	letter-spacing: 0;
	margin-bottom: 20px;
}
h1, h2, h3, h4, h5, h6{
	color: var(--guff-hc);
	font-family: var(--hff);
	line-height: 1.22;
	letter-spacing: 0;
}
input[type="password"],
input[type="email"],
input[type="tel"],
input[type="text"]{
	background-color: transparent;
	letter-spacing: 0;
	outline: none;
	outline-color: transparent;
    border: 4px solid #000;
    border-radius: 10px;
    height: 50px;
    padding: 0 20px;
    font-size: 16px;
    font-weight: 500;
    font-family: var(--hff);
    color: #000;
}
textarea{
	width: 100%;
    max-width: 100%;
    min-width: 100%;
    display: block;
    border: 4px solid #000;
    border-radius: 30px;
    padding: 21px 26px;
    font-size: 18px;
    font-weight: 600;
    font-family: var(--hff);
    font-style: normal;
    color: #000;
}
textarea:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
input[type="password"]:focus,
input[type="text"]:focus{
	outline: none;
	background-color: transparent;
	border-color: #000;
}
.guff_fn_single[data-ps="contained"],
.container{
	max-width: 1420px;
	padding: 0 50px;
	margin: 0 auto;
	width: 100%;
}
.container .container{
	padding: 0;
}
@media(max-width: 1500px){
	.guff_fn_single[data-ps="contained"],
	.container{max-width: 1360px;}
}
@media(max-width: 1040px){
	.guff_fn_single[data-ps="contained"],
	.container{padding: 0 20px;}
}
@media(max-width: 480px){
	.guff_fn_single[data-ps="contained"],
	.container{padding: 0 10px;}
}
/* COMMON */
.fn__svg {
	width: 20px;
	height: 20px;
	fill: currentcolor;
}
/*Ads*/
.guff_fn_banner__off_canvas{
	width: 100%;
	position: relative;
	z-index: 1;
	background-color: var(--guff-bbc);
	padding: 30px 0;
	text-align: center;
}
.guff_fn_banner__header_below{
	width: 100%;
	position: relative;
	z-index: 1;
	text-align: center;
	margin-bottom: 90px;
}
.guff_fn_banner__footer_above{
	width: 100%;
	position: relative;
	z-index: 1;
	text-align: center;
	margin-bottom: 90px;
}
.guff_fn_banner__listpost_btwn{
	width: 100%;
	position: relative;
	z-index: 1;
	text-align: center;
}
.guff_fn_banner__singlepost_in{
	width: 100%;
	position: relative;
	z-index: 1;
	text-align: center;
	margin-bottom: 50px;
}
.guff_fn_banner__singlepost_after{
	width: 100%;
	position: relative;
	z-index: 1;
	text-align: center;
	margin-bottom: 90px;
}
/*************************************************************************/
/* 03) Logo
/*************************************************************************/
.mobile_retina_logo,
.retina_logo{
	display: none;
}
@media (-webkit-min-device-pixel-ratio: 1.1),(min-device-pixel-ratio: 1.1),(min-resolution: 120dpi){
	.mobile_retina_logo,
	.retina_logo{display: block;}
	.mobile_logo,
	.desktop_logo{display: none;}
}
.full_link{
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
}


/* Hidden Infromation */
.guff_fn_hidden{
	display: none;
}


.fn__boxed_layout{
	max-width: 860px;
	margin: 0 auto;
	border: var(--guff-border) solid #000;
    background-color: #fff;
    position: relative;
}
.fn__boxed_layout:after{
	content: '';
    position: absolute;
    left: 50px;
    right: 50px;
    height: var(--guff-border);
    background-color: #000;
    top: 100%;
    margin-top: var(--guff-border);
}
.fn__boxed_layout:before{
	content: '';
    position: absolute;
    left: 50px;
    right: 50px;
    height: var(--guff-border);
    background-color: #000;
    bottom: 100%;
    margin-bottom: var(--guff-border);
}
.fn__boxed_layout > *:last-child{
	margin-bottom: 0;
}
.fn__boxed_layout .guff_fn_pagetitle .fn__title{
	color: #000;
}

/*************************************************************************/
/* 04) Desktop Navigation
/*************************************************************************/
#guff_fn_header{
	max-width: 100%;
	width: 100%;
	position: relative;
	z-index: 10;
	height: 150px;
	margin-bottom: 100px;
}
.guff_fn_header{
	position: relative;
	width: 100%;
}
.guff_fn_header .logo{
	background-color: #fff;
	border: 5px solid #000;
	border-top: none;
	height: 165px;
	width: 300px;
	border-radius: 0 0 35px 35px;
	position: absolute;
	top: 0;
	left: 0;
}
.guff_fn_header .logo a{
	text-decoration: none;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-ms-align-items: center;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 20px 30px;
	height: 100%;
}
.guff_fn_header .logo img{
	max-height: 100%;
}
.guff_fn_header .logo .corner:before{
	content: '';
    position: absolute;
    width: 14px;
    height: 14px;
    right: 100%;
    top: 0;
    background-color: #fff;
    -webkit-mask-image: url(framework/svg/corner.svg);
    -webkit-mask-size: contain;
    transform: rotate(90deg);
}
.guff_fn_header .logo .corner:after{
	content: '';
    position: absolute;
    width: 14px;
    height: 14px;
    left: 100%;
    top: 0;
    background-color: #fff;
    -webkit-mask-image: url(framework/svg/corner.svg);
    -webkit-mask-size: contain;
}
.guff_fn_header .logo:after{
	content: '';
    position: absolute;
    top: 0;
    left: -5px;
    right: -5px;
    bottom: -10px;
    z-index: -1;
    border-radius: 0 0 35px 35px;
    border-bottom: 15px solid #000;
}
.guff_fn_header .header_top_in{
	position: relative;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	justify-content: space-between;
	padding-left: 330px; /* 300px for logo, 30px spacing */
	-ms-align-items: center;
	align-items: center;
	min-height: 80px;
}
.fn__ticker_list .js-marquee-wrapper,
.fn__ticker_list .js-marquee{
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	flex-wrap: nowrap;
}
.fn__ticker_list .marquee{
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	flex-wrap: nowrap;
	min-width: 0;
	overflow: hidden;
	height: 60px;
	-ms-align-items: center;
	align-items: center;
}
.fn__ticker_list .post_title{
	margin: 0;
	padding: 0;
	position: relative;
	font-family: var(--hff);
	font-weight: 900;
	font-style: italic;
	font-size: 16px;
	text-transform: uppercase;
	color: #000;
	padding-right: 70px;
	white-space: nowrap;
}
.fn__ticker_list .post_title a{
	line-height: 1;
	display: block;
	background-image: none;
}
.fn__ticker_list .ticker_list{
	padding-left: 330px;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-ms-align-items: center;
	align-items: center;
}
.fn__ticker_list .fp__item{
	position: relative;
}
.fn__ticker_list .ticker_title{
	min-width: max-content;
	margin: 0;
	height: 34px;
	display: block;
	background-color: var(--guff-mc2);
	color: #fff;
	font-size: 16px;
	text-transform: uppercase;
	font-family: var(--hff);
	font-weight: 600;
	line-height: 30px;
	border: 2px solid #000;
	border-radius: 17px;
	padding: 0 42px 0 16px;
	white-space: nowrap;
	text-overflow: ellipsis;
	overflow: hidden;
	margin-right: 20px;
	position: relative;
}
.fn__ticker_list .decor{
	width: 26px;
	height: 2px;
	background-color: #000;
	position: absolute;
	right: 22px;
	top: 50%;
	margin-top: -1px;
}
.fn__ticker_list .decor:before{
	width: 2px;
	height: 12px;
	position: absolute;
	display: block;
	background-color: #000;
	transform: rotate(20deg);
	left: 9px;
	top: -6px;
	content: '';
}
.fn__ticker_list .decor:after{
	width: 2px;
	height: 12px;
	position: absolute;
	display: block;
	background-color: #000;
	transform: rotate(20deg);
	left: 15px;
	top: -4px;
	content: '';
}
.fn__ticker_list .ticker_title .fn__svg{
	width: 16px;
	height: 16px;
	right: 16px;
	top: 50%;
	margin-top: -8px;
	display: block;
	position: absolute;
}
.fn__ticker_list .ticker_title img.fn__svg{
	filter: grayscale(100%) invert(100%);
}
.fn__ticker_list{
	padding: 0px 70px 0px 80px;
	background-color: #fff;
	border-bottom: 10px solid #000;
}
.guff_fn_header .header_top{
	padding: 0 70px 0 80px;
	background-color: #000;
}
.guff_fn_header .hide_me{
	opacity: 0;
	visibility: hidden;
	position: relative;
	z-index: -999999;
	pointer-events: none;
}
.guff_fn_header .ht_right{
	min-width: max-content;
	padding-left: 37px;
	position: relative;
}
.guff_fn_header .ht_right:before{
	content: '';
	position: absolute;
	left: 7px;
	top: 50%;
	margin-top: -20px;
	width: 2px;
	height: 40px;
	background-color: #fff;
	transform: rotate(20deg);
}
.guff_fn_header .ht_right_item{
	margin-right: 20px;
}
.guff_fn_header .ht_right_item:last-child{
	margin-right: 0;
}
.guff_fn_header .search_opener a{
	display: block;
	text-decoration: none;
	position: relative;
	font-family: var(--hff);
	font-size: 16px;
	color: #fff;
	font-weight: 600;
	text-transform: uppercase;
	line-height: 20px;
	padding-right: 30px;
	z-index: 1;
}
.guff_fn_header .search_opener a:hover{
	-webkit-mask-image: linear-gradient(-75deg, rgba(255,255,255,.6) 30%, #fff 50%, rgba(255,255,255,.6) 70%);
	-webkit-mask-size: 200%;
	animation: shine 2s infinite;
}
.guff_fn_header .search_opener img.fn__svg{
	filter: grayscale(100%) invert(100%);
}
.guff_fn_header .search_opener .fn__svg{
	width: 20px;
	height: 20px;
	display: block;
	position: absolute;
	right: 0;
	top: 50%;
	margin-top: -11px;
}
.guff_fn_header .ht_left{
	flex: auto;
}
.guff_fn_header .bottom_fixer{
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	max-width: 100%;
	width: auto;
}
.hot_posts{
	display: block;
	text-decoration: none;
	padding-left: 25px;
	padding-right: 10px;
	height: 24px;
	line-height: 25px;
	white-space: nowrap;
	text-overflow: ellipsis;
	overflow: hidden;
	font-size: 12px;
	font-weight: 600;
	font-family: var(--hff);
	text-transform: uppercase;
	color: #000;
	border-radius: 12px;
	background-color: var(--guff-mc1);
	position: relative;
}
.hot_posts .fn__svg{
	width: 14px;
	height: 14px;
	left: 8px;
	position: absolute;
	top: 50%;
	margin-top: -7px;
	display: block;
}
.guff_fn_header .guff_fn_nav{
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-ms-align-items: center;
	align-items: center;
}
.guff_fn_header .guff_fn_nav.ready{
	overflow: visible;
}
.guff_fn_header .menu{
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	justify-content: center;
	-ms-align-items: center;
	align-items: center;
}
.guff_fn_header .menu > div:first-child{
	max-width: 100%;
}
.guff_fn_main_nav{
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	margin: 0;
	padding: 0;
	list-style-type: none;
	margin-left: -26px;
}
.guff_fn_main_nav .fn__svg{
	display: none;
    width: 12px;
    height: 12px;
    position: absolute;
    left: 100%;
    margin-left: -6px;
    top: 50%;
    margin-top: -6px;
    color: #fff;
	pointer-events: none;
}
.guff_fn_main_nav > li:last-child > a .fn__svg{
	display: none;
}
.guff_fn_main_nav > li > a img.fn__svg{
	filter: grayscale(100%) invert(100%);
}
.guff_fn_main_nav > li > a .fn__svg{
	display: block;
}
.guff_fn_main_nav li{
	position: relative;
	margin: 0;
}
.icon_bar__share .guff_fn_social_list li,
.guff_fn_main_nav .sub-menu li{
	transform: translateY(-20px);
	transition: all .5s ease;
	opacity: 0;
}
.icon_bar__share:hover .guff_fn_social_list li,
.guff_fn_main_nav li:hover > .sub-menu > li{
	transform: translateY(0);
	opacity: 1;
}
.icon_bar__share .guff_fn_social_list li:nth-child(1),
.guff_fn_main_nav li:nth-child(1){transition-delay: 0ms;}
.icon_bar__share .guff_fn_social_list li:nth-child(2),
.guff_fn_main_nav li:nth-child(2){transition-delay: 50ms;}
.icon_bar__share .guff_fn_social_list li:nth-child(3),
.guff_fn_main_nav li:nth-child(3){transition-delay: 100ms;}
.icon_bar__share .guff_fn_social_list li:nth-child(4),
.guff_fn_main_nav li:nth-child(4){transition-delay: 150ms;}
.icon_bar__share .guff_fn_social_list li:nth-child(5),
.guff_fn_main_nav li:nth-child(5){transition-delay: 200ms;}
.icon_bar__share .guff_fn_social_list li:nth-child(6),
.guff_fn_main_nav li:nth-child(6){transition-delay: 250ms;}
.icon_bar__share .guff_fn_social_list li:nth-child(7),
.guff_fn_main_nav li:nth-child(7){transition-delay: 300ms;}
.icon_bar__share .guff_fn_social_list li:nth-child(8),
.guff_fn_main_nav li:nth-child(8){transition-delay: 350ms;}
.icon_bar__share .guff_fn_social_list li:nth-child(9),
.guff_fn_main_nav li:nth-child(9){transition-delay: 400ms;}
.icon_bar__share .guff_fn_social_list li:nth-child(10),
.guff_fn_main_nav li:nth-child(10){transition-delay: 450ms;}
.icon_bar__share .guff_fn_social_list li:nth-child(11),
.guff_fn_main_nav li:nth-child(11){transition-delay: 500ms;}
.icon_bar__share .guff_fn_social_list li:nth-child(12),
.guff_fn_main_nav li:nth-child(12){transition-delay: 550ms;}
.icon_bar__share .guff_fn_social_list li:nth-child(13),
.guff_fn_main_nav li:nth-child(13){transition-delay: 600ms;}
.icon_bar__share .guff_fn_social_list li:nth-child(14),
.guff_fn_main_nav li:nth-child(14){transition-delay: 650ms;}
.icon_bar__share .guff_fn_social_list li:nth-child(15),
.guff_fn_main_nav li:nth-child(15){transition-delay: 700ms;}
.icon_bar__share .guff_fn_social_list li:nth-child(16),
.guff_fn_main_nav li:nth-child(16){transition-delay: 750ms;}
.icon_bar__share .guff_fn_social_list li:nth-child(17),
.guff_fn_main_nav li:nth-child(17){transition-delay: 800ms;}
.icon_bar__share .guff_fn_social_list li:nth-child(18),
.guff_fn_main_nav li:nth-child(18){transition-delay: 850ms;}
.icon_bar__share .guff_fn_social_list li:nth-child(19),
.guff_fn_main_nav li:nth-child(19){transition-delay: 900ms;}
.icon_bar__share .guff_fn_social_list li:nth-child(20),
.guff_fn_main_nav li:nth-child(20){transition-delay: 950ms;}
.icon_bar__share .guff_fn_social_list li:nth-child(21),
.guff_fn_main_nav li:nth-child(21){transition-delay: 1000ms;}
.icon_bar__share .guff_fn_social_list li:nth-child(22),
.guff_fn_main_nav li:nth-child(22){transition-delay: 1050ms;}
.icon_bar__share .guff_fn_social_list li:nth-child(23),
.guff_fn_main_nav li:nth-child(23){transition-delay: 1100ms;}
.icon_bar__share .guff_fn_social_list li:nth-child(24),
.guff_fn_main_nav li:nth-child(24){transition-delay: 1150ms;}
.icon_bar__share .guff_fn_social_list li:nth-child(25),
.guff_fn_main_nav li:nth-child(25){transition-delay: 1200ms;}
.icon_bar__share .guff_fn_social_list li:nth-child(26),
.guff_fn_main_nav li:nth-child(26){transition-delay: 1350ms;}
.icon_bar__share .guff_fn_social_list li:nth-child(27),
.guff_fn_main_nav li:nth-child(27){transition-delay: 1400ms;}
.icon_bar__share .guff_fn_social_list li:nth-child(28),
.guff_fn_main_nav li:nth-child(28){transition-delay: 1450ms;}
.icon_bar__share .guff_fn_social_list li:nth-child(29),
.guff_fn_main_nav li:nth-child(29){transition-delay: 1500ms;}
.icon_bar__share .guff_fn_social_list li:nth-child(30),
.guff_fn_main_nav li:nth-child(30){transition-delay: 1550ms;}
.guff_fn_main_nav > li > a{
	white-space: nowrap;
}
.guff_fn_main_nav > li.disabled{
	display: none;
}
.guff_fn_header .more > a,
.guff_fn_stickynav .more > a,
.guff_fn_main_nav > li > a{
	font-size: 16px;
	display: block;
	text-decoration: none;
	color: #fff;
	font-family: var(--hff);
	font-weight: 500;
	text-transform: uppercase;
	line-height: 80px;
	padding: 0 26px;
}
.guff_fn_main_nav > li > a{
	line-height: 80px;
}
.guff_fn_stickynav .more > a,
.guff_fn_stickynav .guff_fn_main_nav > li > a{
	line-height: 80px;
}
.guff_fn_main_nav li:hover > a,
.guff_fn_stickynav .sub-menu a:hover,
.guff_fn_header .sub-menu a:hover,
.guff_fn_stickynav .more > a:hover,
.guff_fn_header .more > a:hover,
.guff_fn_main_nav > li > a:hover{
	color: var(--guff-mc2);
}
.guff_fn_main_nav > li:hover > ul{
	z-index: 55;
	transition: all .3s ease;
}

.guff_fn_stickynav .more,
.guff_fn_header .more{
	display: none;
	position: relative;
}
.guff_fn_stickynav .more.active,
.guff_fn_header .more.active{
	display: block;
	white-space: nowrap;
}
.guff_fn_stickynav .sub-menu li,
.guff_fn_header .sub-menu li{
	margin-bottom: 3px;
	position: relative;
}
.guff_fn_stickynav .sub-menu ul,
.guff_fn_header .sub-menu ul{
	left: 100%;
	top: -36px;
	margin-left: 0;
}
.guff_fn_stickynav .more .sub-menu ul,
.guff_fn_header .more .sub-menu ul{
	margin-right: 0;
	left: auto;
	right: 100%;
}
.guff_fn_stickynav .more .sub-menu .fn__svg,
.guff_fn_header .more .sub-menu .fn__svg{
	display: none;
}
.guff_fn_stickynav .sub-menu,
.guff_fn_header .sub-menu{
	z-index: 5;
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s linear, pointer-events 0s;
	margin: 0;
	padding: 32px 0 27px;
	position: absolute;
	width: 300px;
	border: 5px solid #000;
	background-color: #fff;
	top: 100%;
	left: 0;
	margin-left: -14px;
	list-style-type: none;
	transform: translateY(0);
	border-radius: 20px;
	pointer-events: none;
}
.guff_fn_stickynav .more .sub-menu,
.guff_fn_header .more .sub-menu{
	left: auto;
	right: 0;
	margin-left: 0;
	margin-right: -44px;
}
.guff_fn_stickynav .sub-menu a,
.guff_fn_header .sub-menu a{
	font-size: 16px;
	display: block;
	font-family: var(--hff);
	color: #000;
	font-weight: 900;
	letter-spacing: .25px;
	text-transform: uppercase;
	padding: 0 35px;
	line-height: 30px;
	white-space: normal;
}
.guff_fn_header .more li:hover > .sub-menu,
.guff_fn_header .more:hover > .sub-menu,
.guff_fn_stickynav .more li:hover > .sub-menu,
.guff_fn_stickynav .more:hover > .sub-menu,
.guff_fn_main_nav li:hover > .sub-menu{
	opacity: 1;
	visibility: visible;
	z-index: 99;
	pointer-events: all;
    animation: guff-submenu-animation 0.3s linear;
}
@keyframes guff-submenu-animation {
  0% { 
	transform: translateY(20px);
  }
  100% {
	transform: translateY(0);
  }
}
.guff_fn_stickynav .sub-menu li.menu-item-has-children > a{
	padding-right: 52px;
	position: relative;
}
.guff_fn_stickynav .sub-menu li.menu-item-has-children > a:after{
	content: '';
	position: absolute;
	right: 40px;
	top: 50%;
	margin-top: -6px;
	display: block;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 6px 0 6px 6px;
	border-color: transparent transparent transparent #000;
}
.guff_fn_header .guff_fn_social_list ul{
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	flex-wrap: wrap;
	-ms-align-items: center;
	align-items: center;
	margin: 0;
	padding: 0;
	list-style-type: none;
	margin-left: -15px;
	justify-content: flex-start;
}
.guff_fn_header .guff_fn_social_list li{
	margin: 0 0 0 15px;
	padding: 0;
}
.guff_fn_header .guff_fn_social_list a{
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-ms-align-items: center;
	align-items: center;
	justify-content: center;
	color: #fff;
	text-decoration: none;
}
.guff_fn_header .guff_fn_social_list img.fn__svg{
	filter: grayscale(100%) invert(100%);
}
.guff_fn_header .guff_fn_social_list .fn__svg{
	width: 20px;
	height: 20px;
	display: block;
}
.guff_fn_header .guff_fn_social_list a:hover{
	-webkit-mask-image: linear-gradient(-75deg, rgba(255,255,255,.6) 30%, #fff 50%, rgba(255,255,255,.6) 70%);
    -webkit-mask-size: 200%;
    animation: shine 2s infinite;
}
/*************************************************************************/
/* 05) Searchbox
/*************************************************************************/
.guff_fn_searchbox{
	transition: all .3s ease;
	opacity: 0;
	visibility: hidden;
	transform: translateY(-80px);
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: var(--guff-bbc);
	z-index: 10000;
	padding: 100px 0;
	height: 100vh;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-ms-align-items: center;
	align-items: center;
}
.admin-bar .guff_fn_searchbox{
	top: 32px;
	height: -moz-calc(100vh - 32px);
	height: -webkit-calc(100vh - 32px);
	height: -o-calc(100vh - 32px);
	height: calc(100vh - 32px);
}
.guff_fn_searchbox .container{
	max-width: 1420px;
}
.guff_fn_searchbox .input{
	flex: 1;
}
.guff_fn_searchbox .search{
	position: relative;
	background-color: var(--guff-mc2);
	border-radius: 50px;
	border: 5px solid #000;
	margin: -5px -5px -5px 0;
}
.guff_fn_searchbox .search:hover{
	background-color: #000;
}
.guff_fn_searchbox .search:hover .fn__svg{
	color: #fff;
}
.guff_fn_searchbox .search:hover input{
	-webkit-mask-image: linear-gradient(-75deg, rgba(255,255,255,.6) 30%, #fff 50%, rgba(255,255,255,.6) 70%);
    -webkit-mask-size: 200%;
    animation: shine 2s infinite;
	color: #fff;
}
.guff_fn_searchbox .search .fn__svg{
	display: block;
	position: absolute;
	right: 50px;
	top: 50%;
	margin-top: -10px;
	color: #fff;
}
.guff_fn_searchbox .search input{
	display: block;
	position: relative;
	background-color: transparent !important;
	padding: 0 80px 0 50px;
	height: 70px;
	color: #fff;
	font-size: 18px;
	font-family: var(--hff);
	text-transform: uppercase;
	letter-spacing: 0;
	font-weight: 900;
	z-index: 2;
}
.guff_fn_searchbox .input input{
	display: block;
	width: 100%;
	border: none;
	height: 70px;
	background-color: transparent !important;
	padding: 0 36px;
	font-size: 24px;
	font-style: normal;
	font-weight: 900;
	font-family: var(--hff);
}
.guff_fn_searchbox .search_content{
	height: -moz-calc(100vh - 200px);
	height: -webkit-calc(100vh - 200px);
	height: -o-calc(100vh - 200px);
	height: calc(100vh - 200px);
	overflow-x: auto;
	padding: 0 20px;
	width: 100%;
}
.guff_fn_searchbox.ajax_result .search_content{
	display: block;
}
.guff_fn_searchbox .search_content{
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
}
.guff_fn_searchbox .search_content{
	scrollbar-width: thin;
	scrollbar-color: #999 #fff;
}
.guff_fn_searchbox .search_content::-webkit-scrollbar{
  	width: 4px;
}
.guff_fn_searchbox .search_content:-webkit-scrollbar-track{
  	background: var(--guff-mc2);
}
.guff_fn_searchbox .search_content::-webkit-scrollbar-thumb{
	background-color: var(--guff-mc2);
	border-radius: 6px;
}
.admin-bar .guff_fn_searchbox .search_content{
	height: -moz-calc(100vh - 232px);
	height: -webkit-calc(100vh - 232px);
	height: -o-calc(100vh - 232px);
	height: calc(100vh - 232px);
}
.guff_fn_searchbox .search_wrapper{
	width: 100%;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-webkit-flex-direction: column;
	-moz-flex-direction: column;
	-ms-flex-direction: column;
	-o-flex-direction: column;
	flex-direction: column;
	justify-content: center;
}
.guff_fn_searchbox .form_top{
	transform: translateY(106px);
	transition: all .3s ease;
	padding: 40px 30px 20px;
	background-color: #fff;
	border: 10px solid #000;
	border-radius: 20px;
}
.guff_fn_searchbox .search_wrapper .main_form{
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	background-color: #fff;
	border: 5px solid #000;
	border-radius: 50px;
	margin-bottom: 20px;
	
}
.guff_fn_searchbox.ajax_result .form_top,
.guff_fn_searchbox.loading .form_top{
	transform: translateY(0px);
	border-bottom: none;
	border-bottom-left-radius: 0;
	border-bottom-right-radius: 0;
}
.search-active .guff_fn_searchbox{
	opacity: 1;
	visibility: visible;
	transform: translateY(0px);
}
.guff_fn_searchbox .search_closer{
	width: 100px;
	height: 100px;
	display: block;
	position: absolute;
	right: 0;
	top: 0;
	text-decoration: none;
}
.guff_fn_searchbox .search_closer:hover{
    -webkit-mask-image: linear-gradient(-75deg, rgba(0,0,0,.6) 30%, #000 50%, rgba(0,0,0,.6) 70%);
    -webkit-mask-size: 200%;
    animation: shine 2s infinite;
}
.guff_fn_searchbox .search_closer span:before,
.guff_fn_searchbox .search_closer span:after{
	content: '';
    width: 25px;
    height: 4px;
    background-color: #000;
    display: block;
    position: absolute;
    top: 40px;
	right: 40px;
	transition: all .5s ease;
}
.guff_fn_searchbox .search_closer span:after{
	transform: rotate(-45deg)
}
.guff_fn_searchbox .search_closer span:before{
	transform: rotate(45deg)
}
.guff_fn_searchbox .search_result{
	opacity: 0;
	visibility: hidden;
	position: relative;
	z-index: 5;
	transition: all .3s ease;
	transform: translateY(-106px);
	border: 10px solid #000;
	border-top: none;
	border-radius: 0 0 30px 30px;
}
.guff_fn_searchbox.ajax_result .search_result,
.guff_fn_searchbox.loading .search_result{
	opacity: 1;
	visibility: visible;
	transform: translateY(0px);
}
.guff_fn_searchbox .filterbox{
    justify-content: center;
    padding: 12px 40px 17px;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    flex-wrap: wrap;
}
.guff_fn_searchbox.loading .fn__preloader{
	opacity: 1;
	visibility: visible;
}
.guff_fn_searchbox .fn__preloader .text{
	color: #fff;
}
.guff_fn_searchbox .fn__preloader .icon{
	border-top-color: #fff;
    border-right-color: #fff;
    border-bottom-color: #fff;
}
.guff_fn_searchbox .fn__preloader{
	left: 50%;
	top: 50%;
	transform: translate(-50%,-50%);
	z-index: 55;
}

.guff_fn_searchbox .filterbox .filter{
	margin-right: 50px;
	margin-top: 5px;
}
.guff_fn_searchbox .filterbox label{
	font-size: 12px;
    font-family: var(--hff);
    text-transform: uppercase;
    font-weight: 500;
	color: #fff;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	-o-user-select: none;
	user-select: none;
	position: relative;
	line-height: 1;
    height: 18px;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
	-ms-align-items: center;
	align-items: center;
	padding-left: 28px;
	letter-spacing: .25px;
	cursor: pointer;
}
.guff_fn_searchbox .filterbox .text{
	line-height: 1;
	margin-top: 3px;
}
.guff_fn_searchbox .filterbox .icon{
	width: 18px;
	height: 18px;
	position: absolute;
	left: 0;
	top: 0;
	display: block;
	border: 2px solid #fff;
}
.guff_fn_searchbox .filterbox .fn__svg{
	opacity: 0;
	display: block;
    position: absolute;
    width: 12px;
    height: 12px;
    left: 1px;
    top: 1px;
}
.guff_fn_searchbox .filterbox input{
	position: absolute;
	opacity: 0;
	cursor: pointer;
	height: 0;
	width: 0;
}
.guff_fn_searchbox .filterbox input:checked ~ .icon .fn__svg {
 	opacity: 1;
}
.guff_fn_searchbox.loading .res_in{
	position: relative;
	height: 142px;
}
.guff_fn_searchbox.loading .result_info,
.guff_fn_searchbox.loading .result_list{
	opacity: 0;
}
.guff_fn_searchbox .resultbox{
	min-height: 194px;
	position: relative;
	background-color: #000;
	border-radius: 0 0 10px 10px;
}
.guff_fn_searchbox .result_list{
	position: relative;
}
.guff_fn_searchbox .result_list ul{
	margin: 0;
	list-style-type: none;
	margin-left: -10px;
	
	display: grid;
    grid-template-columns: repeat(auto-fit,minmax(450px,1fr));
}
.guff_fn_searchbox .result_list li{
	margin: 0;
	padding: 0;
	position: relative;
	padding-left: 10px;
	margin-bottom: 10px;
}
.guff_fn_searchbox .result_list .title_holder{
	width: 100%;
}
.guff_fn_searchbox .result_list .overlay_in{
	height: 100%;
	width: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
	border-radius: 100%;
	border: 3px solid #000;
}
.guff_fn_searchbox .result_list .img_holder[data-has-image=""] div{
	background-color: #6b5e59;
    color: #000;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    -ms-align-items: center;
    align-items: center;
    justify-content: center;
    line-height: 1;
    text-align: center;
    font-weight: 900;
    font-size: 72px;
    text-transform: uppercase;
	height: 100%;
	border-radius: 100%;
	border: 3px solid #000;
}
.guff_fn_searchbox .result_list .title > *:last-child{
	margin-bottom: 0;
}
.guff_fn_searchbox .result_list .fn_title{
	margin: 0;
	padding: 0;
	font-weight: 900;
	font-size: 30px;
	margin-bottom: 7px;
}
.fn_excerpt{
	margin: 0;
	padding: 0;
	font-size: 18px;
	line-height: 26px;
	font-weight: 500;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2; /* number of lines to show */
	   line-clamp: 2; 
	-webkit-box-orient: vertical;
	position: relative;
}
.guff_fn_searchbox .result_list .fn_title a{
	position: relative;
}
.guff_fn_searchbox .result_list .img_holder{
	width: 160px;
    min-width: 160px;
    height: 160px;
    min-height: 100%;
	background-color: #fff;
    border: 3px solid #000;
    margin-right: 30px;
	padding: 12px;
	position: relative;
	border-radius: 100%;
}
.guff_fn_searchbox .fn__short_meta{
	margin-top: 16px;
}


.fn__full_meta{
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
}
.fn__full_meta .full_meta{
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	border: 3px solid #000;
	border-radius: 0 25px 25px 0;
	padding-right: 5px;
	background-color: #ecedcc;
}
.fn__full_meta .other_metas{
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-ms-align-items: center;
	align-items: center;
	flex-wrap: nowrap;
}
.fn__full_meta .meta_item{
	position: relative;
	padding-right: 1px;
}
.fn__full_meta .meta_item .text{
	display: block;
	line-height: 1;
	position: relative;
	top: 1px;
}
.fn__full_meta .meta__time > span,
.fn__full_meta .meta__page_views > span,
.fn__full_meta .meta__comment a{
	padding: 0 20px;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-ms-align-items: center;
	align-items: center;
	height: 44px;
	line-height: 44px;
	color: #000;
	font-size: 18px;
	font-weight: 900;
	font-family: var(--hff);
	white-space: nowrap;
}
.fn__full_meta .meta__time .fn__svg,
.fn__full_meta .meta__page_views .fn__svg,
.fn__full_meta .meta__comment .fn__svg{
	width: 24px;
	height: 24px;
	margin-right: 5px;
}
.fn__full_meta .meta__author{
	min-width: max-content;
}
.fn__full_meta .meta__author[data-type="short"] a{
	padding-right: 17px;
}
.fn__full_meta .meta__author[data-type="short"] img{
	margin-right: 0;
}
.fn__full_meta .has_not{display: none;}
.fn__full_meta .meta__author a{
	padding: 9px 29px 5px 17px;
	position: relative;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	text-decoration: none;
	background-color: var(--guff-mc1);
	color: #000;
	text-transform: uppercase;
	font-family: var(--hff);
	font-size: 18px;
	font-weight: 900;
	-ms-align-items: center;
	align-items: center;
	line-height: 1;
	min-height: 100%;
}
.fn__full_meta .meta_item:last-child:after{
	display: none;
}
.fn__full_meta .meta_item:after{
	content: '';
	position: absolute;
	top: 50%;
	margin-top: -15px;
	width: 1px;
	height: 30px;
	background-color: #000;
	right: 0;
}
.fn__full_meta .meta__author img{
	display: block;
	width: 30px;
	height: 30px;
	object-fit: cover;
	border-radius: 100%;
	margin-right: 7px;
}
.fn__tooltip_item{
	position: relative;
}
.fn__tooltip_item:hover .t_text{
	transform: translateX(-50%) translateY(0px);
	opacity: 1;
	visibility: visible;
}
.fn__tooltip_item .t_text{
	opacity: 0;
	visibility: hidden;
	transform: translateX(-50%) translateY(-10px);
	position: absolute;
	bottom: 100%;
	margin-bottom: 10px;
	width: max-content;
	padding: 6px 10px 4px;
	display: block;
	line-height: 15px;
	background-color: #000;
	border-radius: 13px;
	font-weight: 500;
	font-size: 12px;
	text-transform: uppercase;
	font-family: var(--hff);
	color: #fff;
	letter-spacing: .25px;
	left: 50%;
	transition: all .3s ease;
	pointer-events: none;
	max-width: 170px;
	text-align: center;
}
.fn__tooltip_item:after{
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 5px 7px 0 7px;
	border-color: #000 transparent transparent transparent;
	content: '';
	position: absolute;
	bottom: 100%;
	left: 50%;
	margin-left: -6px;
	margin-bottom: 6px;
	opacity: 0;
	visibility: hidden;
	transition: all .3s ease;
	pointer-events: none;
	transform: translateY(-10px);
}
.fn__tooltip_item.rbg_item:after{
	border-top-color: var(--guff-mc1);
	transform: translateY(-15px);
}
.fn__tooltip_item.rbg_item:hover:after{
	transform: translateY(-5px);
}
.fn__tooltip_item:hover:after{
	opacity: 1;
	visibility: visible;
	transform: translateY(0px);
}
.fn__tooltip_item.rbg_item .t_text{
	background-color: var(--guff-mc1);
	color: #000;
	transform: translateX(-50%) translateY(-15px);
}
.fn__tooltip_item.rbg_item:hover .t_text{
	transform: translateX(-50%) translateY(-5px);
}
.fn__tooltip_item.left_aligned.rbg_item .t_text{
	transform: translateY(-15px);
}
.fn__tooltip_item.left_aligned.rbg_item:hover .t_text{
	transform: translateY(-5px);
}
.fn__tooltip_item.left_aligned .t_text{
	left: 0;
	transform: translateY(-10px);
}
.fn__tooltip_item.left_aligned:hover .t_text{
	transform: translateY(0px);
}




.fn_limited_title span{
	overflow: hidden;
    color: #000;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
}
.fn_limited_title a{
	color: #000;
    position: relative;
    background-image: linear-gradient(currentColor, currentColor);
    background-position: 0% 85%;
    background-repeat: no-repeat;
    background-size: 0% 2px;
    transition: background-size .5s;
}
.fn_limited_title a:hover{
	background-size: 100% 2px;
}


.fn__short_meta{
	margin:0px;
	color: #000;
	font-size: 16px;
	font-weight: 900;
	font-family: var(--hff);
	text-transform: uppercase;
}
.fn__short_meta a{
	color: var(--guff-mc2);
	border-bottom: 2px solid transparent;
	display: inline-block;
	line-height: 18px;
}
.fn__short_meta a:hover{
	border-bottom-color: var(--guff-mc2);
}
.fn__short_meta .meta_category{
	color: var(--guff-mc2);
}
.fn__short_meta a .fn__svg{
	width: 16px;
	height: 16px;
	margin-right: 5px;
	position: relative;
	top: 2px;
}
.fn__short_meta > span{
	padding-right: 30px;
	position: relative;
	display: inline-block;
}
.fn__short_meta > span:after{
	width: 6px;
	height: 6px;
	right: 16px;
	margin-right: -3px;
	display: block;
	content: '';
	position: absolute;
	background-color: #000;
	border-radius: 100%;
	top: 50%;
	margin-top: -3px;
	margin-top: -4px; /*Font family*/
}
.fn__short_meta > span:last-child:after{
	display: none;
}
.fn__short_meta > span:last-child{
	padding-right: 0;
}



/* Blog Layout: List */
.blog__item_list{
	position: relative;
	padding: 0 20px;
	min-height: 250px;
}
.blog__item_list .item_decor{
	position: absolute;
	pointer-events: none;
	display: block;
	top: 20px;
	left: 0;
	bottom: 5px;
	right: 5px;
	border: 5px solid #000;
	border-radius: 30px;
	z-index: -1;
}
.blog__item_list .item_decor:before{
	content: '';
    position: absolute;
    top: 0;
    left: 0px;
    right: -10px;
    bottom: -10px;
    z-index: -1;
    border-radius: 0 30px 30px 30px;
    border-bottom: 10px solid #000;
    border-right: 10px solid #000;
}
.blog__item_list .decor_top{
	position: absolute;
	right: 35px;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	top: -8px;
}
.blog__item_list .decor_top span{
	width: 8px;
	display: block;
	background-color: #000;
	margin-left: 10px;
}
.blog__item_list .decor_top span:nth-child(1){height: 10px;}
.blog__item_list .decor_top span:nth-child(2){height: 14px;}
.blog__item_list .decor_top span:nth-child(3){height: 18px;}
.blog__item_list .decor_top span:nth-child(4){height: 22px;}
.blog__item_list .decor_bottom{
	position: absolute;
	bottom: 10px;
	right: 10px;
}
.blog__item_list .decor_bottom .fn__svg{
	display: block;
	width: 27px;
	height: auto;
}
.blog__item_list .list_in{
	padding-left: 340px;
	padding-top: 84px;
	position: relative;
	padding-bottom: 40px;
}
.blog__item_list .list_image{
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	position: absolute;
	left: 0px;
	top: 0;
	-ms-align-items: flex-start;
	align-items: flex-start;
	max-width: calc(100% - 90px);
}
.blog__item_list .list_left_in{
	width: 300px;
	position: relative;
	z-index: 2;
	min-width: 300px;
}
.blog__item_list .typ_title{
	position: absolute;
    margin: 0;
    border: none;
    outline: none;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    white-space: nowrap;
    text-overflow: ellipsis;
    padding: 20px;
    padding-top: 27px;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    -ms-align-items: center;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 80px;
    line-height: 1;
    font-weight: 900;
    color: #000;
}
.blog__item_list .img_overlay{
	border-radius: 25px;
	border: 3px solid #000;
	overflow: hidden;
}
.blog__item_list .img_overlay img{
	object-fit: cover;
	min-width: 100%;
	aspect-ratio: 294 / 216;
}
.img_overlay{
	background-color: #6b5e59;
}
[data-bg-img]{
	background-image: -moz-linear-gradient(180deg, rgba(107,94,89,1) 0%, rgba(107,94,89,1) 100%);
	background-image: -webkit-linear-gradient(180deg, rgba(107,94,89,1) 0%, rgba(107,94,89,1) 100%);
	background-image: linear-gradient(180deg, rgba(107,94,89,1) 0%, rgba(107,94,89,1) 100%);
}
.blog__item_list .typ_overlay{
	background-color: #6b5e59;
	border-radius: 25px;
	border: 3px solid #000;
}
.blog__item_list .typ_overlay img{
	min-width: 100%;
    opacity: 0;
    pointer-events: none;
	aspect-ratio: 294 / 216;
}
.blog__item_list .fn__full_meta .meta__author a{
	padding-left: 50px;
}
.blog__item_list .fn__full_meta .full_meta{
	border-top-right-radius: 0;
}
.blog__item_list .fn__full_meta{
	margin-left: -10px;
	margin-top: 10px;
	max-width: calc(100% - 290px);
}
.blog__item_list .list_bottom{
	position: relative;
	z-index: 2;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	justify-content: space-between;
	padding-right: 65px;
	-ms-align-items: flex-start;
	align-items: flex-start;
}
.blog__item_list .list_bottom_right{
	position: relative;
	padding-left: 90px;
	padding-top: 14px;
}
.blog__item_list .list_bottom_right:after{
	content: '';
    position: absolute;
    width: 5px;
    height: 80px;
    background-color: #000;
    display: block;
    top: 0;
    left: 14px;
    transform: rotate(18deg);
}
.blog__item_list .post__title{
	font-weight: 900;
	margin: 0;
	padding: 0;
	font-size: 30px;
	margin-bottom: 17px;
}
.blog__item_list .post__title span{
	overflow: hidden;
    color: #000;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
}
.blog__item_list .post__title a{
	color: #000;
    position: relative;
    background-image: linear-gradient(currentColor, currentColor);
    background-position: 0% 90%;
    background-repeat: no-repeat;
    background-size: 0% 2px;
    transition: background-size .5s;
}
.blog__item_list .post__title a:hover{
	background-size: 100% 2px;
}










.fn__linebtitle{
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-ms-align-items: center;
	align-items: center;
	position: relative;
	justify-content: center;
	-webkit-flex-direction: column;
	-moz-flex-direction: column;
	-ms-flex-direction: column;
	-o-flex-direction: column;
	flex-direction: column;
}
.fn__linebtitle h3{
	margin: 0;
	padding: 0;
	font-size: 48px;
	font-weight: 900;
	letter-spacing: 0;
	text-align: center;
	text-transform: uppercase;
	margin-bottom: 15px;
}
.fn__linebtitle .title_decor{
	pointer-events: none;
	width: 100%;
	height: 31px;
	position: relative;
}
.fn__linebtitle .title_decor .a{
	width: 300px;
	height: 5px;
	position: absolute;
	top: 50%;
	margin-top: -2px;
	background-color: #000;
	border-radius: 5px;
	display: block;
	left: 50%;
	margin-left: -150px;
}
.fn__linebtitle .title_decor .b{
	width: 3px;
	top: 0;
	bottom: 0;
	position: absolute;
	display: block;
	background-color: #000;
	left: 50%;
	margin-left: -2px;
	margin-left: -1.5px;
}
.fn__linebtitle .title_decor .c:before{
	content: '';
	position: absolute;
	width: 100px;
	height: 3px;
	background-color: #000;
	display: block;
	left: 50%;
	margin-left: -70px;
	top: 0;
}
.fn__linebtitle .title_decor .c:after{
	content: '';
	position: absolute;
	width: 100px;
	height: 3px;
	background-color: #000;
	display: block;
	right: 50%;
	margin-right: -70px;
	bottom: 0;
}






.fn__linetitle{
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-ms-align-items: center;
	align-items: center;
}
.fn__linetitle h3{
	margin: 0;
	padding: 0;
	font-size: 48px;
	font-weight: 900;
	letter-spacing: 0;
	min-width: 0;
	text-transform: uppercase;
}
.fn__linetitle .title_decor{
	flex: auto;
	margin-left: 45px;
	height: 5px;
	background-color: #000;
	position: relative;
	border-radius: 0 3px 3px 0;
}
.fn__linetitle .title_decor:after{
	content: '';
	position: absolute;
	top: 50%;
	margin-top: -16px;
	width: 5px;
	height: 33px;
	background-color: #000;
	left: 0;
}
.fn__linetitle .title_decor span:before{
	left: 10px;
	right: 20px;
	position: absolute;
	content: '';
	height: 3px;
	bottom: 100%;
	margin-bottom: 4px;
	background-color: #000;
}
.fn__linetitle .title_decor span:after{
	left: 10px;
	right: 20px;
	position: absolute;
	content: '';
	height: 3px;
	top: 100%;
	margin-top: 4px;
	background-color: #000;
}













.guff_fn_related_posts{
	padding-top: 90px;
}
.guff_fn_related_posts .fn__linetitle{
	padding-bottom: 46px;
}






/* Blog Layout: Masonry */
.blog__item_masonry{
	position: relative;
	padding: 0 20px 94px;
}
.blog__item_masonry.no_full_meta{
	padding-bottom: 20px;
}
.blog__item_masonry .item_decor{
	position: absolute;
	pointer-events: none;
	display: block;
	top: 20px;
	left: 0;
	bottom: 5px;
	right: 5px;
	border: 5px solid #000;
	border-radius: 30px;
	z-index: -1;
	background-color: #fff;
}
.blog__item_masonry .item_decor:before{
	content: '';
    position: absolute;
    top: 0;
    left: 0px;
    right: -10px;
    bottom: -10px;
    z-index: -1;
    border-radius: 0 30px 30px 30px;
    border-bottom: 10px solid #000;
    border-right: 10px solid #000;
}
.blog__item_masonry .decor_top{
	position: absolute;
	right: 35px;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	top: -8px;
}
.blog__item_masonry .decor_top span{
	width: 8px;
	display: block;
	background-color: #000;
	margin-left: 10px;
}
.blog__item_masonry .decor_top span:nth-child(1){height: 10px;}
.blog__item_masonry .decor_top span:nth-child(2){height: 14px;}
.blog__item_masonry .decor_top span:nth-child(3){height: 18px;}
.blog__item_masonry .decor_top span:nth-child(4){height: 22px;}
.blog__item_masonry .decor_bottom{
	position: absolute;
	bottom: 10px;
	right: 10px;
}
.blog__item_masonry .decor_bottom .fn__svg{
	display: block;
	width: 27px;
	height: auto;
}
.blog__item_masonry .list_image{
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	justify-content: space-between;
	padding-right: 32px;
	margin-bottom: 25px;
	-ms-align-items: flex-start;
	align-items: flex-start;
}
.blog__item_masonry .list_key{
	font-size: 48px;
	font-weight: 900;
	color: #000;
	letter-spacing: 0;
	line-height: 1;
	font-family: var(--hff);
	padding-top: 80px;
	padding-left: 43px;
	padding-bottom: 18px;
	position: relative;
}
.blog__item_masonry .list_key:after{
	content: '';
	position: absolute;
	width: 80px;
	height: 5px;
	background-color: #000;
	display: block;
	bottom: 0;
	left: 0;
	transform: rotate(18deg);
}
.blog__item_masonry .list_image .list_left_in{
	width: 300px;
	max-width: calc(100% - 110px);
	border: 3px solid #000;
	border-radius: 25px;
	overflow: hidden;
}
.blog__item_masonry .typ_title{
	position: absolute;
    margin: 0;
    border: none;
    outline: none;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    white-space: nowrap;
    text-overflow: ellipsis;
    padding: 20px;
    padding-top: 27px;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    -ms-align-items: center;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 80px;
    line-height: 1;
    font-weight: 900;
    color: #000;
}
.blog__item_masonry .typ_overlay{
	background-color: #6b5e59;
}
.blog__item_masonry .typ_overlay img{
	min-width: 100%;
    opacity: 0;
    pointer-events: none;
	aspect-ratio: 294 / 216;
}
.blog__item_masonry .fn__full_meta{
	position: absolute;
	bottom: 10px;
	left: 5px;
	max-width: calc(100% - 60px);
}
.blog__item_masonry .fn__full_meta .full_meta{
	border-bottom-width: 0;
	border-left-width: 0;
	border-radius: 0 25px 0 25px;
}
.blog__item_masonry .fn__full_meta .meta__author a{
	border-bottom-left-radius: 25px;
}
.blog__item_masonry .list_bottom{
	padding: 0 30px;
}
.blog__item_masonry .post__title{
	font-size: 30px;
	font-weight: 900;
	margin: 0;
	padding: 0;
	margin-bottom: 17px;
}
.blog__item_masonry .post__title span{
	overflow: hidden;
    color: #000;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
}
.blog__item_masonry .post__title a{
	color: #000;
    position: relative;
    background-image: linear-gradient(currentColor, currentColor);
    background-position: 0% 90%;
    background-repeat: no-repeat;
    background-size: 0% 2px;
    transition: background-size .5s;
}
.blog__item_masonry .post__title a:hover{
	background-size: 100% 2px;
}
.blog__item_masonry .fn__short_meta{
	margin-bottom: 22px;
}
.blog__item_masonry .desc p{
	font-weight: 500;
	margin: -3px 0 26px;
}



/* Blog Layout: Classic */
.guff_fn_nosidebar .container{
	max-width: 1240px;
}
.blog__item_classic{
	padding: 0 40px 65px 30px;
	position: relative;
	width: 100%;
}
.blog__item_classic .decor_wave{
	width: 100%;
	height: 20px;
	position: relative;
	margin-bottom: 38px;
}
.blog__item_classic .decor_wave:after{
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	width: 400px;
	max-width: 100%;
	height: 20px;
	background-color: #000;
    -webkit-mask-image: url(framework/svg/wave.svg);
    -webkit-mask-size: contain;
}
.blog__item_classic .list_bottom{
	padding: 0 50px;
}
.blog__item_classic .post__title{
	font-weight: 900;
	margin: 0;
	font-size: 48px;
	margin-bottom: 17px;
}
.blog__item_classic .post__title span{
	overflow: hidden;
    color: #000;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
}
.blog__item_classic .post__title a{
	color: #000;
    position: relative;
    background-image: linear-gradient(currentColor, currentColor);
    background-position: 0% 90%;
    background-repeat: no-repeat;
    background-size: 0% 2px;
    transition: background-size .5s;
}
.blog__item_classic .post__title a:hover{
	background-size: 100% 2px;
}
.blog__item_classic .fn__full_meta{
	margin-bottom: 30px;
}
.blog__item_classic .fn__short_meta{
	font-size: 18px;
	margin-bottom: 23px;
}
.blog__item_classic .typ_overlay{
	border: 3px solid #000;
	background-color: #6b5e59;
	border-radius: 50px;
}
.blog__item_classic .typ_title{
	position: absolute;
	margin: 0;
	border: none;
	outline: none;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	white-space: nowrap;
	text-overflow: ellipsis;
	padding: 20px;
	padding-top: 47px;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-ms-align-items: center;
	align-items: center;
	justify-content: center;
	text-align: center;
	font-size: 500px;
	font-size: calc(30px + 24.4vw);
	line-height: 1;
	font-weight: 900;
	color: #000;
}
.blog__item_classic .typ_overlay img{
	min-width: 100%;
	opacity: 0;
	pointer-events: none;
	margin-bottom: -27%;
}
.blog__item_classic .img_overlay{
	border: 3px solid #000;
	border-radius: 50px;
}
.blog__item_classic .img_overlay img{
	border-radius: 44px;
}
.blog__item_classic .fn__bordered_obj .obj_content{
	height: 100%;
}
.blog__item_classic .item_decor{
	position: absolute;
	pointer-events: none;
	display: block;
	top: 30px;
	left: 0;
	bottom: 0px;
	right: 10px;
	z-index: -1;
}
.blog__item_classic .decor_bottom{
	position: absolute;
	display: block;
	right: 75px;
	bottom: 0;
}
.blog__item_classic .decor_bottom .fn__svg{
	width: 120px;
	display: block;
	height: auto;
}
.blog__item_classic .desc{
	margin-bottom: 31px;
}
.blog__item_classic .desc p{
	margin: 0;
	font-size: 18px;
	line-height: 30px;
	font-weight: 500;
}
.blog__item_classic .blog__image{
	margin-bottom: 46px;
}
.fn__read_more{
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
}
.fn__read_more a{
	display: block;
	font-family: var(--hff);
	font-size: 18px;
	letter-spacing: 0;
	text-transform: uppercase;
	font-weight: 900;
	color: #000;
	padding-right: 51px;
	position: relative;
}
.fn__read_more .text{
	display: block;
	line-height: 1;
	position: relative;
	top: 1px;
	white-space: nowrap;
}
.fn__read_more .icon{
	width: 41px;
	height: 2px;
	background-color: #000;
	display: block;
	position: absolute;
	top: 50%;
	right: 0;
	margin-top: -1px;
	transition: all .2s ease;
}
.fn__read_more .icon:after{
	content: '';
    position: absolute;
    width: 2px;
    height: 12px;
    background-color: #000;
    right: 5px;
    top: -2px;
    transform: rotate(63deg);
}
.fn__read_more a:hover .icon{
	right: -20px;
}
.fn__read_more a:hover .icon:after{
	transform: rotate(60deg);
}



.guff_fn_searchbox .result_list .item{
	position: relative;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-ms-align-items: center;
	align-items: center;
	z-index: 1;
	background-color: #fff;
	padding: 40px;
	border-radius: 20px;
	min-height: 100%;
}
.guff_fn_searchbox .result_info{
	padding: 35px 50px 30px;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-webkit-flex-direction: column;
	-moz-flex-direction: column;
	-ms-flex-direction: column;
	-o-flex-direction: column;
	flex-direction: column;
	-ms-align-items: center;
	align-items: center;
	text-align: center;
	justify-content: center;
	position: relative;
	min-height: 106px;
}
.guff_fn_searchbox .result_info > *:last-child{
	margin-bottom: 0;
}
.guff_fn_searchbox .result_info form{
	overflow: hidden;
	position: relative;
    transition: all .3s ease;
}
.guff_fn_searchbox .result_info .submit_button{
	display: block;
    text-decoration: none;
    position: relative;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 42px;
    padding: 0 85px;
    border: 5px solid #fff;
    color: #fff;
    font-family: var(--hff);
	background-color: transparent;
    font-size: 24px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0px;
	height: 80px;
	border-radius: 40px;
}
.guff_fn_searchbox .result_info .submit_button:hover{
	border-color: var(--guff-mc1);
	color: var(--guff-mc1);
}
.guff_fn_searchbox .result_info p{
	margin: 0;
	padding: 0;
	font-weight: 500;
	margin-bottom: 14px;
	color: #fff;
}
.fn__preloader{
	opacity: 0;
	visibility: hidden;
	position: absolute;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-webkit-flex-direction: column;
	-moz-flex-direction: column;
	-ms-flex-direction: column;
	-o-flex-direction: column;
	flex-direction: column;
	-ms-align-items: center;
	align-items: center;
	justify-content: center;
}
.fn__preloader .text{
	display: block;
	font-size: 18px;
	letter-spacing: .25px;
	text-transform: uppercase;
	font-family: var(--hff);
	font-weight: 900;
	-webkit-mask-image: linear-gradient(-75deg, rgba(0,0,0,.6) 30%, #000 50%, rgba(0,0,0,.6) 70%);
    -webkit-mask-size: 200%;
    animation: shine 2s infinite;
}
.fn__preloader .icon{
	width: 60px;
	height: 60px;
	display: block;
	border: 4px solid transparent;
	border-top-color: #000;
	border-right-color: #000;
	border-bottom-color: #000;
	border-radius: 100%;
	animation: spin 1s linear infinite;
	margin-bottom: 15px;
}
.guff_fn_singlepost .fn__preloader{
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 3;
	height: 204px;
	position: relative;
	background-color: #fff;
	margin: 50px 0;
	border: 5px solid #000;
	border-radius: 30px;
}
.guff_fn_singlepost .fn__preloader .decor_bottom{
	position: absolute;
    bottom: 10px;
    right: 10px;
}
.guff_fn_singlepost .fn__preloader .decor_bottom .fn__svg{
	display: block;
    width: 27px;
    height: auto;
}
.no-prev-post .guff_fn_singlepost .fn__preloader{
	display: none;
}
.prev-post-loading .guff_fn_singlepost .fn__preloader{
	opacity: 1;
	visibility: visible;
}
.guff_fn_singlepost .single__content{
	background-color: #fff;
	border: 5px solid #000;
	border-radius: 30px;
	position: relative;
}
.guff_fn_singlepost .post__header{
	position: relative;
	padding: 71px 25px 30px;
}
.guff_fn_singlepost .post__header:before{
	content: '';
	position: absolute;
	top: 215px;
	right: 100%;
	margin-right: 15px;
	height: 500px;
	width: 26px;
	background-color: var(--guff-mc2);
    -webkit-mask-image: url(framework/svg/wave-v.svg);
    -webkit-mask-size: contain;
}
.guff_fn_singlepost .post__header:after{
	content: '';
	position: absolute;
	bottom: 0;
	left: 100%;
	margin-left: 15px;
	height: 500px;
	width: 26px;
	background-color: var(--guff-mc2);
    -webkit-mask-image: url(framework/svg/wave-v.svg);
    -webkit-mask-size: contain;
}
.guff_fn_singlepost .header_in{
	padding: 0 50px;
	position: relative;
	margin-bottom: 46px;
}
.guff_fn_singlepost .decor_right{
	position: absolute;
	right: -25px;
	bottom: 60px;
	transform: rotate(90deg) rotateY(180deg);
    transform-origin: bottom;
}
.guff_fn_singlepost .decor_right .fn__svg{
	width: 120px;
    display: block;
    height: auto;
}
.guff_fn_singlepost .fn__short_meta{
	margin-bottom: 23px;
	font-size: 18px;
}
.guff_fn_singlepost .post__header .fn__full_meta{
	margin-bottom: 32px;
}
.guff_fn_singlepost .post__header .fn__maintitle{
	margin: 0;
	padding: 0;
	font-size: 48px;
	font-weight: 900;
}
.guff_fn_singlepost .post_content{
	padding: 80px 75px;
}
.guff_fn_singlepost .post__header .typ_title{
	position: absolute;
	margin: 0;
	border: none;
	outline: none;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	white-space: nowrap;
	text-overflow: ellipsis;
	padding: 20px;
	padding-top: 47px;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-ms-align-items: center;
	align-items: center;
	justify-content: center;
	text-align: center;
	font-size: 500px;
	font-size: calc(30px + 24.4vw);
	line-height: 1;
	font-weight: 900;
	color: #000;
}
.fn__bordered_obj{
	position: relative;
	width: 100%;
	z-index: 1;
	padding-bottom: 10px;
	display: block;
}
.fn__bordered_obj[data-width="1"] .obj_content{border-width: 1px;}
.fn__bordered_obj[data-width="2"] .obj_content{border-width: 2px;}
.fn__bordered_obj[data-width="3"] .obj_content{border-width: 3px;}
.fn__bordered_obj[data-width="4"] .obj_content{border-width: 4px;}
.fn__bordered_obj[data-width="5"] .obj_content{border-width: 5px;}
.fn__bordered_obj[data-width="6"] .obj_content{border-width: 6px;}
.fn__bordered_obj[data-width="7"] .obj_content{border-width: 7px;}
.fn__bordered_obj[data-width="8"] .obj_content{border-width: 8px;}
.fn__bordered_obj[data-width="9"] .obj_content{border-width: 9px;}
.fn__bordered_obj[data-width="10"] .obj_content{border-width: 10px;}


.fn__bordered_obj[data-space="1"] .obj_content{max-width: calc(100% - 1px);}
.fn__bordered_obj[data-space="2"] .obj_content{max-width: calc(100% - 2px);}
.fn__bordered_obj[data-space="3"] .obj_content{max-width: calc(100% - 3px);}
.fn__bordered_obj[data-space="4"] .obj_content{max-width: calc(100% - 4px);}
.fn__bordered_obj[data-space="5"] .obj_content{max-width: calc(100% - 5px);}
.fn__bordered_obj[data-space="6"] .obj_content{max-width: calc(100% - 6px);}
.fn__bordered_obj[data-space="7"] .obj_content{max-width: calc(100% - 7px);}
.fn__bordered_obj[data-space="8"] .obj_content{max-width: calc(100% - 8px);}
.fn__bordered_obj[data-space="9"] .obj_content{max-width: calc(100% - 9px);}
.fn__bordered_obj[data-space="10"] .obj_content{max-width: calc(100% - 10px);}
.fn__bordered_obj[data-space="11"] .obj_content{max-width: calc(100% - 11px);}
.fn__bordered_obj[data-space="12"] .obj_content{max-width: calc(100% - 12px);}
.fn__bordered_obj[data-space="13"] .obj_content{max-width: calc(100% - 13px);}
.fn__bordered_obj[data-space="14"] .obj_content{max-width: calc(100% - 14px);}
.fn__bordered_obj[data-space="15"] .obj_content{max-width: calc(100% - 15px);}
.fn__bordered_obj[data-space="1"]{padding-bottom: 1px;}
.fn__bordered_obj[data-space="2"]{padding-bottom: 2px;}
.fn__bordered_obj[data-space="3"]{padding-bottom: 3px;}
.fn__bordered_obj[data-space="4"]{padding-bottom: 4px;}
.fn__bordered_obj[data-space="5"]{padding-bottom: 5px;}
.fn__bordered_obj[data-space="6"]{padding-bottom: 6px;}
.fn__bordered_obj[data-space="7"]{padding-bottom: 7px;}
.fn__bordered_obj[data-space="8"]{padding-bottom: 8px;}
.fn__bordered_obj[data-space="9"]{padding-bottom: 9px;}
.fn__bordered_obj[data-space="10"]{padding-bottom: 10px;}
.fn__bordered_obj[data-space="11"]{padding-bottom: 11px;}
.fn__bordered_obj[data-space="12"]{padding-bottom: 12px;}
.fn__bordered_obj[data-space="13"]{padding-bottom: 13px;}
.fn__bordered_obj[data-space="14"]{padding-bottom: 14px;}
.fn__bordered_obj[data-space="15"]{padding-bottom: 15px;}



.fn__bordered_obj[data-radius="1"] .obj_content,
.fn__bordered_obj[data-radius="1"]:after{border-radius: 1px;}
.fn__bordered_obj[data-radius="2"] .obj_content,
.fn__bordered_obj[data-radius="2"]:after{border-radius: 2px;}
.fn__bordered_obj[data-radius="3"] .obj_content,
.fn__bordered_obj[data-radius="3"]:after{border-radius: 3px;}
.fn__bordered_obj[data-radius="4"] .obj_content,
.fn__bordered_obj[data-radius="4"]:after{border-radius: 4px;}
.fn__bordered_obj[data-radius="5"] .obj_content,
.fn__bordered_obj[data-radius="5"]:after{border-radius: 5px;}
.fn__bordered_obj[data-radius="6"] .obj_content,
.fn__bordered_obj[data-radius="6"]:after{border-radius: 6px;}
.fn__bordered_obj[data-radius="7"] .obj_content,
.fn__bordered_obj[data-radius="7"]:after{border-radius: 7px;}
.fn__bordered_obj[data-radius="8"] .obj_content,
.fn__bordered_obj[data-radius="8"]:after{border-radius: 8px;}
.fn__bordered_obj[data-radius="9"] .obj_content,
.fn__bordered_obj[data-radius="9"]:after{border-radius: 9px;}
.fn__bordered_obj[data-radius="10"] .obj_content,
.fn__bordered_obj[data-radius="10"]:after{border-radius: 10px;}
.fn__bordered_obj[data-radius="11"] .obj_content,
.fn__bordered_obj[data-radius="11"]:after{border-radius: 11px;}
.fn__bordered_obj[data-radius="12"] .obj_content,
.fn__bordered_obj[data-radius="12"]:after{border-radius: 12px;}
.fn__bordered_obj[data-radius="13"] .obj_content,
.fn__bordered_obj[data-radius="13"]:after{border-radius: 13px;}
.fn__bordered_obj[data-radius="14"] .obj_content,
.fn__bordered_obj[data-radius="14"]:after{border-radius: 14px;}
.fn__bordered_obj[data-radius="15"] .obj_content,
.fn__bordered_obj[data-radius="15"]:after{border-radius: 15px;}
.fn__bordered_obj[data-radius="16"] .obj_content,
.fn__bordered_obj[data-radius="16"]:after{border-radius: 16px;}
.fn__bordered_obj[data-radius="17"] .obj_content,
.fn__bordered_obj[data-radius="17"]:after{border-radius: 17px;}
.fn__bordered_obj[data-radius="18"] .obj_content,
.fn__bordered_obj[data-radius="18"]:after{border-radius: 18px;}
.fn__bordered_obj[data-radius="19"] .obj_content,
.fn__bordered_obj[data-radius="19"]:after{border-radius: 19px;}
.fn__bordered_obj[data-radius="20"] .obj_content,
.fn__bordered_obj[data-radius="20"]:after{border-radius: 20px;}
.fn__bordered_obj[data-radius="21"] .obj_content,
.fn__bordered_obj[data-radius="21"]:after{border-radius: 21px;}
.fn__bordered_obj[data-radius="22"] .obj_content,
.fn__bordered_obj[data-radius="22"]:after{border-radius: 22px;}
.fn__bordered_obj[data-radius="23"] .obj_content,
.fn__bordered_obj[data-radius="23"]:after{border-radius: 23px;}
.fn__bordered_obj[data-radius="24"] .obj_content,
.fn__bordered_obj[data-radius="24"]:after{border-radius: 24px;}
.fn__bordered_obj[data-radius="25"] .obj_content,
.fn__bordered_obj[data-radius="25"]:after{border-radius: 25px;}
.fn__bordered_obj[data-radius="26"] .obj_content,
.fn__bordered_obj[data-radius="26"]:after{border-radius: 26px;}
.fn__bordered_obj[data-radius="27"] .obj_content,
.fn__bordered_obj[data-radius="27"]:after{border-radius: 27px;}
.fn__bordered_obj[data-radius="28"] .obj_content,
.fn__bordered_obj[data-radius="28"]:after{border-radius: 28px;}
.fn__bordered_obj[data-radius="29"] .obj_content,
.fn__bordered_obj[data-radius="29"]:after{border-radius: 29px;}
.fn__bordered_obj[data-radius="30"] .obj_content,
.fn__bordered_obj[data-radius="30"]:after{border-radius: 30px;}
.fn__bordered_obj[data-radius="31"] .obj_content,
.fn__bordered_obj[data-radius="31"]:after{border-radius: 31px;}
.fn__bordered_obj[data-radius="32"] .obj_content,
.fn__bordered_obj[data-radius="32"]:after{border-radius: 32px;}
.fn__bordered_obj[data-radius="33"] .obj_content,
.fn__bordered_obj[data-radius="33"]:after{border-radius: 33px;}
.fn__bordered_obj[data-radius="34"] .obj_content,
.fn__bordered_obj[data-radius="34"]:after{border-radius: 34px;}
.fn__bordered_obj[data-radius="35"] .obj_content,
.fn__bordered_obj[data-radius="35"]:after{border-radius: 35px;}
.fn__bordered_obj[data-radius="36"] .obj_content,
.fn__bordered_obj[data-radius="36"]:after{border-radius: 36px;}
.fn__bordered_obj[data-radius="37"] .obj_content,
.fn__bordered_obj[data-radius="37"]:after{border-radius: 37px;}
.fn__bordered_obj[data-radius="38"] .obj_content,
.fn__bordered_obj[data-radius="38"]:after{border-radius: 38px;}
.fn__bordered_obj[data-radius="39"] .obj_content,
.fn__bordered_obj[data-radius="39"]:after{border-radius: 39px;}
.fn__bordered_obj[data-radius="40"] .obj_content,
.fn__bordered_obj[data-radius="40"]:after{border-radius: 40px;}
.fn__bordered_obj[data-radius="41"] .obj_content,
.fn__bordered_obj[data-radius="41"]:after{border-radius: 41px;}
.fn__bordered_obj[data-radius="42"] .obj_content,
.fn__bordered_obj[data-radius="42"]:after{border-radius: 42px;}
.fn__bordered_obj[data-radius="43"] .obj_content,
.fn__bordered_obj[data-radius="43"]:after{border-radius: 43px;}
.fn__bordered_obj[data-radius="44"] .obj_content,
.fn__bordered_obj[data-radius="44"]:after{border-radius: 44px;}
.fn__bordered_obj[data-radius="45"] .obj_content,
.fn__bordered_obj[data-radius="45"]:after{border-radius: 45px;}
.fn__bordered_obj[data-radius="46"] .obj_content,
.fn__bordered_obj[data-radius="46"]:after{border-radius: 46px;}
.fn__bordered_obj[data-radius="47"] .obj_content,
.fn__bordered_obj[data-radius="47"]:after{border-radius: 47px;}
.fn__bordered_obj[data-radius="48"] .obj_content,
.fn__bordered_obj[data-radius="48"]:after{border-radius: 48px;}
.fn__bordered_obj[data-radius="49"] .obj_content,
.fn__bordered_obj[data-radius="49"]:after{border-radius: 49px;}
.fn__bordered_obj[data-radius="50"] .obj_content,
.fn__bordered_obj[data-radius="50"]:after{border-radius: 50px;}

.fn__bordered_obj .obj_content{
	display: block;
	width: 100%;
	max-width: calc(100% - 10px);
	border: 5px solid #000;
	border-radius: 50px;
	background-color: #fff;
}
.fn__bordered_obj:after{
	left: 10px;
	top: 10px;
	background-color: #000;
	border-radius: 50px;
	right: 0;
	bottom: 0;
	z-index: -1;
	content: '';
	pointer-events: none;
	position: absolute;
}
.guff_fn_singlepost .post__header .typ_overlay .obj_content{
	background-color: #6b5e59;
}
.guff_fn_singlepost .post__header .fn__image_format img{
	min-width: 100%;
	border-radius: 43px;
	display: block;
}
.guff_fn_singlepost .post__header .typ_overlay img{
	min-width: 100%;
	aspect-ratio: 1070 / 787;
	opacity: 0;
	pointer-events: none;
}
.guff_fn_reactions{
	padding: 80px 75px;
	padding-bottom: 50px;
}
.guff_fn_author_info{
	padding: 80px 75px;
}
.guff_fn_author_info .info_img{
	position: relative;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-ms-align-items: center;
	align-items: center;
	justify-content: center;
}
.guff_fn_author_info .info_img:after{
	content: '';
	position: absolute;
	top: 50%;
	margin-top: -13px;
	height: 26px;
	left: 0;
	right: 0;
	background-color: #000;
    -webkit-mask-image: url(framework/svg/wave.svg);
    -webkit-mask-size: contain;
}
.guff_fn_author_info .img{
	width: 240px;
	height: 240px;
	border-radius: 100%;
	position: relative;
	border: 3px solid #000;
	margin-bottom: 30px;
}
.guff_fn_author_info .img_in{
	position: relative;
	border-radius: 100%;
	z-index: 2;
	padding: 17px;
	background-color: #fff;
}
.guff_fn_author_info .img img{
	border-radius: 100%;
	border: 3px solid #000;
}
.guff_fn_author_info .img:after{
	top: 7px;
	left: 7px;
	right: -13px;
	bottom: -13px;
	background-color: #000;
	content: '';
	position: absolute;
	border-radius: 100%;
}
.guff_fn_author_info .author_top{
	text-align: center;
}
.guff_fn_author_info .author_top[data-social=""]{
	margin-top: 6px;
}
.guff_fn_author_info .author_top[data-social="yes"]{
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	margin-top: -71px;
	justify-content: space-between;
	position: relative;
	z-index: 2;
	margin-bottom: 55px;
	-ms-align-items: center;
	align-items: center;
}
.guff_fn_author_info .author_top[data-social="yes"] .fn_title{
	width: 50%;
	padding-right: 160px;
	text-align: right;
}
.guff_fn_author_info .author_top[data-social="yes"] .social_list{
	width: 50%;
	padding-left: 160px;
	text-align: left;
}
.guff_fn_author_info .social_list ul{
	margin: 0;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	list-style-type: none;
	margin-left: -30px;
	flex-wrap: wrap;
}
.guff_fn_author_info .social_list li{
	margin: 5px 0 5px 30px;
}
.guff_fn_author_info .social_list a{
	display: block;
	text-decoration: none;
	color: #000;
}
.guff_fn_author_info .social_list .fn__svg{
	width: 20px;
	height: 20px;
	display: block;
}
.guff_fn_author_info .fn_title{
	font-size: 30px;
	font-weight: 900;
	margin: 0;
	text-transform: capitalize;

}
.guff_fn_author_info .fn_desc{
	font-weight: 500;
	text-align: center;
	margin: 0;
}




.fn__separator{
	position: relative;
	height: 5px;
	background-color: #000;
}
.fn__separator[data-style="full"]{
	height: 10px;
}
.fn__separator[data-style="full"] .left_sep,
.fn__separator[data-style="full"] .right_sep{
	display: none;
}
.fn__separator[data-style="full"] .left_sep_b,
.fn__separator[data-style="full"] .right_sep_b{
	display: block;
}
.fn__separator + .fn__separator{
	display: none;
}
.fn__separator .left_sep{
	position: absolute;
	left: -1px;
	top: 50%;
	transform: translateY(-50%);
	display: block;
	width: 70px;
	height: auto;
	color: #000;
}
.fn__separator .right_sep{
	position: absolute;
	right: -1px;
	top: 50%;
	transform: translateY(-50%);
	display: block;
	width: 70px;
	height: auto;
	color: #000;
}
.fn__separator .left_sep_b{
	position: absolute;
	left: -1px;
	top: 50%;
	transform: translateY(-50%);
	display: block;
	width: 90px;
	height: auto;
	color: #000;
}
.fn__separator .right_sep_b{
	position: absolute;
	right: -1px;
	top: 50%;
	transform: translateY(-50%);
	display: block;
	width: 90px;
	height: auto;
	color: #000;
}
.fn__separator .left_sep_b,
.fn__separator .right_sep_b{
	display: none;
}
/*************************************************************************/
/* 06) Ajax Preloader
/*************************************************************************/
.fn_ajax__preloader.loading{
	opacity: 1;
	visibility: visible;
}
.fn_ajax__preloader{
	opacity: 0;
	visibility: hidden;
	padding: 50px;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 9999;
	background-color: #fff;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-webkit-flex-direction: column;
	-moz-flex-direction: column;
	-ms-flex-direction: column;
	-o-flex-direction: column;
	flex-direction: column;
	-ms-align-items: center;
	align-items: center;
	justify-content: center;
}
.fn_ajax__preloader .text{
	display: block;
	font-size: 18px;
	letter-spacing: .25px;
	text-transform: uppercase;
	font-family: var(--hff);
	font-weight: 900;
}
.fn_ajax__preloader .icon{
	width: 60px;
	height: 60px;
	display: block;
	border: 4px solid transparent;
	border-top-color: #000;
	border-right-color: #000;
	border-bottom-color: #000;
	border-radius: 100%;
	animation: spin 1s linear infinite;
	margin-bottom: 15px;
}



@-webkit-keyframes spin {
  0% { 
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes spin {
  0% { 
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}




@-webkit-keyframes shine {
  from {
    -webkit-mask-position: 150%;
  }
  
  to {
    -webkit-mask-position: -50%;
  }
}
/*************************************************************************/
/* 07) Page Title
/*************************************************************************/
.guff_fn_pagetitle{
	padding-bottom: 80px;
	margin-top: -15px;
	text-align: center;
	position: relative;
}
.guff_fn_pagetitle .pt_decor{
	height: 12px;
	left: 0;
	right: 0;
	position: absolute;
	bottom: 0;
	display: block;
	overflow: hidden;
	pointer-events: none;
}
.guff_fn_pagetitle .pt_decor:after{
	content: '';
	position: absolute;
	top: 3px;
	bottom: 3px;
	background-color: #000;
	left: 0;
	right: 0;
}
.guff_fn_pagetitle .pt_decor .decor_middle{
	position: absolute;
	width: 240px;
	left: 50%;
	margin-left: -120px;
	top: 0;
	bottom: 0;
	background-color: #000;
}
.guff_fn_pagetitle .pt_decor .decor_middle:after{
	position: absolute;
	left: -20px;
	right: -20px;
	border-left: 10px solid #000;
	border-right: 10px solid #000;
	content: '';
	top: 0;
	bottom: 0;
}
.guff_fn_pagetitle .pt_decor .decor_middle:before{
	position: absolute;
	left: -36px;
	right: -36px;
	border-left: 6px solid #000;
	border-right: 6px solid #000;
	content: '';
	top: 0;
	bottom: 0;
}
.guff_fn_pagetitle .pt_decor .decor_plus_left{
	position: absolute;
	width: 6px;
	top: 0;
	bottom: 0;
	background-color: #000;
	right: 50%;
	margin-right: 320px;
}
.guff_fn_pagetitle .pt_decor .decor_plus_left:after{
	content: '';
	position: absolute;
	left: -8px;
	right: -8px;
	height: 6px;
	top: 50%;
	margin-top: -3px;
	border-left: 3px solid #fff;
	border-right: 3px solid #fff;
	z-index: 1;
}
.guff_fn_pagetitle .pt_decor .decor_plus_right{
	position: absolute;
	width: 6px;
	top: 0;
	bottom: 0;
	background-color: #000;
	left: 50%;
	margin-left: 320px;
}
.guff_fn_pagetitle .pt_decor .decor_plus_right:after{
	content: '';
	position: absolute;
	left: -8px;
	right: -8px;
	height: 6px;
	top: 50%;
	margin-top: -3px;
	border-left: 3px solid #fff;
	border-right: 3px solid #fff;
	z-index: 1;
}
.guff_fn_pagetitle .pagetitle{
	position: relative;
	padding-bottom: 58px;
}
.guff_fn_pagetitle .text{
	position: relative;
}
.guff_fn_pagetitle .fn__title{
	margin: 0;
	padding: 0;
	font-family: var(--hff);
	font-size: 72px;
	font-weight: 900;
	letter-spacing: 0;
	color: #000;
	text-transform: uppercase;
	text-align: center;
}
.guff_fn_full_page_in{
	margin-bottom: 90px;
}
.guff_fn_full_page_in .full_content a{
	color: var(--guff-mc2);
	border-bottom: 1px solid transparent;
}
.guff_fn_full_page_in .full_content a:hover{
	border-bottom-color: var(--guff-mc2);
}
@media(min-width: 1041px){
	.guff_fn_full_page_template[data-page-style="full"]{
		margin-top: -100px;
	}
}

.guff_fn_full_page_template[data-page-style="full"] .guff_fn_content{
	padding-top: 0;
}
.guff_fn_full_page_template[data-page-style="full"] .guff_fn_full_page_in{
	margin-bottom: 0;
}
.guff_fn_full_page_template[data-page-style="full"] .container{
	max-width: 100%;
	padding: 0;
}
.guff_fn_full_page_template[data-page-style="ws"] .container{
	max-width: 100%;
	padding: 0;
}
.guff_fn_full_page_template[data-page-style="contained"] .container{
	max-width: 960px;
}
.guff_fn_full_page_template[data-page-style="contained"] .page_content{
	padding: 50px;
	border: 5px solid #000;
	border-radius: 30px;
	margin-bottom: 100px;
	width: 100%;
	max-width: calc(100% - 5px);
	position: relative;
}
.guff_fn_full_page_template[data-page-style="contained"] .page_content:after{
	content: '';
	pointer-events: none;
	position: absolute;
    top: 0;
    left: 0px;
    right: -10px;
    bottom: -10px;
    z-index: 0;
    border-radius: 0 30px 30px 30px;
    border-bottom: 10px solid #000;
    border-right: 10px solid #000;
}
.guff_fn_full_page_template .ls_content{
	padding: 50px;
	border: 4px solid #000;
	border-radius: 20px;
}
.guff_fn_full_page_template .ls_content > *:nth-last-child(2),
.guff_fn_full_page_template .page_content > *:nth-last-child(2){
	margin-bottom: 0;
}
/*************************************************************************/
/* 08) Mobile Menu
/*************************************************************************/
.guff_fn_mobnav,
.fn_ajax__preloader{
	display: none;
}
.guff_fn_content{
	width: 100%;
	max-width: 100%;
}
.guff_fn_mobnav{
	background-color: #fff;
	width: 100%;
	max-width: 100%;
}
.guff_fn_mobnav .right__triggerr{
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
}
.guff_fn_mobnav .right__triggerr a{
	display: block;
	width: 50px;
	height: 50px;
	position: relative;
	z-index: 2;
	color: #000;
	margin-right: 10px;
}
.guff_fn_mobnav.menu_opened .right__triggerr a span:after,
.guff_fn_mobnav.menu_opened .right__triggerr a span:before,
.guff_fn_mobnav.menu_opened .right__triggerr a span{
	background-color: #fff;
}
.guff_fn_mobnav.menu_opened .right__triggerr .mobmenu_opener{
	background-color: var(--guff-mc2);
}
.guff_fn_mobnav .right__triggerr a:last-child{
	margin-right: 0;
}
.guff_fn_mobnav .right__triggerr .fn__svg{
	width: 24px;
	height: 24px;
	position: absolute;
	display: block;
	top: 50%;
	left: 50%;
	margin: -12px 0 0 -12px;
}
.guff_fn_mobnav .right__triggerr a span{
	position: absolute;
	width: 34px;
	height: 4px;
	top: 50%;
	margin-top: -2px;
	left: 50%;
	margin-left: -17px;
	background-color: #000;
}
.guff_fn_mobnav .right__triggerr a span:after,
.guff_fn_mobnav .right__triggerr a span:before{
	display: block;
	position: absolute;
	content: '';
	width: 34px;
	height: 4px;
	left: 0;
	background-color: #000;
}
.guff_fn_mobnav .right__triggerr a span:after{
	bottom: 100%;
	margin-bottom: 4px;
}
.guff_fn_mobnav .right__triggerr a span:before{
	top: 100%;
	margin-top: 4px;
}
.guff_fn_mobnav .mob_top{
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	justify-content: space-between;
	-ms-align-items: center;
	align-items: center;
	padding: 10px 20px;
	border-bottom: 4px solid #000;
}
.guff_fn_mobnav .mob_bot{
	display: none;
	overflow: hidden;
	background-color: #fff;
	border-bottom: 4px solid #000;
	position: relative;
	z-index: 5;
}
.guff_fn_mobnav .guff_fn_social_list{
	min-height: 50px;
	padding: 10px;
	background-color: #000;
	width: 100%;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-ms-align-items: center;
	align-items: center;
	justify-content: center;
	margin-top: -4px;
	border-bottom: 4px solid #000;
}
.guff_fn_mobnav .guff_fn_social_list ul{
	margin: 0;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    flex-wrap: wrap;
    list-style-type: none;
    margin-left: -25px;
}
.guff_fn_mobnav .guff_fn_social_list li{
	margin: 0;
	margin-left: 25px;
}
.guff_fn_mobnav .guff_fn_social_list a{
	color: #fff;
    font-size: 20px;
    width: 30px;
    height: 30px;
    border: 2px solid transparent;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    -ms-align-items: center;
    align-items: center;
    justify-content: center;
    position: relative;
}
.guff_fn_mobnav .guff_fn_social_list i{
	transition: all .3s ease;
    display: block;
    overflow: hidden;
}
.guff_fn_mobnav .guff_fn_social_list i:before{
	margin: 0;
    display: block;
    width: auto;
}
.guff_fn_mobnav .mobile_menu{
	margin: 0;
	z-index: 5;
	padding: 22px 0 21px;
	list-style-type: none;
}
.guff_fn_mobnav .mobile_menu li{
	margin: 0;
	padding: 0;
	margin-bottom: 6px;
}
.guff_fn_mobnav .mobile_menu > li:nth-child(1){animation-delay: 0ms;}
.guff_fn_mobnav .mobile_menu > li:nth-child(2){animation-delay: 50ms;}
.guff_fn_mobnav .mobile_menu > li:nth-child(3){animation-delay: 100ms;}
.guff_fn_mobnav .mobile_menu > li:nth-child(4){animation-delay: 150ms;}
.guff_fn_mobnav .mobile_menu > li:nth-child(5){animation-delay: 200ms;}
.guff_fn_mobnav .mobile_menu > li:nth-child(6){animation-delay: 250ms;}
.guff_fn_mobnav .mobile_menu > li:nth-child(7){animation-delay: 300ms;}
.guff_fn_mobnav .mobile_menu > li:nth-child(8){animation-delay: 350ms;}
.guff_fn_mobnav .mobile_menu > li:nth-child(9){animation-delay: 400ms;}
.guff_fn_mobnav .mobile_menu > li:nth-child(10){animation-delay: 450ms;}
.guff_fn_mobnav .mobile_menu > li:nth-child(11){animation-delay: 500ms;}
.guff_fn_mobnav .mobile_menu > li:nth-child(12){animation-delay: 550ms;}
.guff_fn_mobnav .mobile_menu > li:nth-child(13){animation-delay: 600ms;}
.guff_fn_mobnav .mobile_menu > li:nth-child(14){animation-delay: 650ms;}
.guff_fn_mobnav .mobile_menu > li:nth-child(15){animation-delay: 700ms;}
.guff_fn_mobnav .mobile_menu > li:nth-child(16){animation-delay: 750ms;}
.guff_fn_mobnav .mobile_menu > li:nth-child(17){animation-delay: 800ms;}
.guff_fn_mobnav .mobile_menu > li:nth-child(18){animation-delay: 850ms;}
.guff_fn_mobnav .mobile_menu > li:nth-child(19){animation-delay: 900ms;}
.guff_fn_mobnav.menu_opened .mobile_menu > li{
	animation-timing-function: ease;
	animation-name: mobmenuopen;
	animation-duration: .5s;
	animation-fill-mode: forwards;
}
@keyframes mobmenuopen{
	0%{
		transform: translateY(-50px);
		opacity: 0;
	}
	100%{
		opacity: 1;
		transform: translateY(0);
	}
}
.guff_fn_mobnav .mobile_menu li:last-child{
	margin-bottom: 0;
}
.guff_fn_mobnav .mobile_menu ul{
	display: none;
	overflow: hidden;
	margin: 0;
	padding: 0;
	margin-top: 6px;
	margin-left: 20px;
	list-style-type: none;
}
.guff_fn_mobnav .mobile_menu a{
	font-size: 18px;
    display: block;
    font-family: var(--hff);
    color: #000;
    font-weight: 900;
    letter-spacing: .25px;
    text-transform: uppercase;
    padding: 0 20px;
    line-height: 30px;
	position: relative;
}
.guff_fn_mobnav .mobile_menu a:hover > span{
	-webkit-mask-image: linear-gradient(-75deg, rgba(255,255,255,.6) 30%, #fff 50%, rgba(255,255,255,.6) 70%);
	-webkit-mask-size: 200%;
	animation: shine 2s infinite
}
.guff_fn_mobnav .mobile_menu .menu-item-has-children > a:after{
	content: '';
	position: absolute;
	right: 20px;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 6px 0 6px 6px;
	border-color: transparent transparent transparent #000;
	top: 50%;
	margin-top: -6px;
	transition: all .5s ease;
}
.guff_fn_mobnav .mobile_menu .menu-item-has-children.active > a:after{
	transform: rotate(90deg);
}
.guff_fn_mobnav .mobile_retina_logo,
.guff_fn_mobnav .mobile_logo{
	max-height: 50px;
}

.blog__item{
	width: 100%;
	position: relative;
}
@media(min-width: 1041px){
	[data-page-style="ws"] .guff_fn_pagetitle .container{
		padding: 0 40px;
		max-width: 100%;
	}
}
@media(min-width: 1401px){
	[data-page-style="ws"] .guff_fn_pagetitle .container{
		padding: 0 80px;
		max-width: 100%;
	}
}


.blog__item .embed_code{
	position: absolute;
	width: 0;
	height: 0;
	overflow: hidden;
	margin: 0;
	outline: none;
	padding: 0;
	z-index: -9999;
	visibility: hidden;
}
.blog__item .blog__icon{
	display: block;
	width: 40px;
	height: 40px;
	background-color: #000;
	border-radius: 100%;
	position: absolute;
	left: -14px;
	top: 50%;
	margin-top: -20px;
}
.blog__item .blog__quote_item .blog__icon{
	margin-bottom: 23px;
}
.blog__icon .fn__svg{
	width: 14px;
	height: 14px;
	position: absolute;
	display: block;
	top: 50%;
	left: 50%;
	margin: -7px 0 0 -7px;
	color: #fff;
}
.blog__quote_item{
	padding: 70px 50px 65px;
	text-align: center;
}
.blog__quote_item blockquote{
	padding: 0;
	margin: 0;
	border: none;
	font-size: 24px;
	font-style: normal;
	line-height: 36px;
	font-family: var(--hff);
	font-weight: 900;
	letter-spacing: 0;
}
.blog__quote_item h4{
	margin: 0;
	padding: 0;
	font-size: 16px;
	font-weight: 600;
	letter-spacing: 0;
	text-transform: uppercase;
	position: relative;
	padding-top: 15px;
}
.blog__quote_item h4 span{
	position: relative;
    width: 100%;
    height: 14px;
    display: block;
    margin-bottom: 22px;
}
.blog__quote_item h4 span:after,
.blog__quote_item h4 span:before{
	content: '';
    position: absolute;
    width: 60px;
    height: 4px;
    background-color: #000;
    margin-left: -30px;
    transition: all .3s ease;
}
.blog__quote_item h4 span:after{
	left: 50%;
    top: 5px;
    transform: rotate(-10deg);
}
.blog__quote_item h4 span:before{
	left: 50%;
    top: 5px;
    transform: rotate(10deg);
}
.blog__quote_item h4:hover span:after{
	transform: rotate(-20deg);
}
.blog__quote_item h4:hover span:before{
	transform: rotate(20deg);
}


.blog__link_item{
	padding: 56px 26px 50px;
	text-align: center;
	background-color: #fff;
	border-radius: 20px;
}
.blog__link_item a{
	padding: 0;
	margin: 0;
	border: none;
	font-size: 24px;
	font-style: normal;
	line-height: 36px;
	font-family: var(--hff);
	font-weight: 900;
	letter-spacing: 0;
	color: #000;
	text-decoration: underline;
}
.blog__item .blog__status_item .blog__icon{
	margin-bottom: 23px;
}
.blog__status_item{
	padding: 70px 50px;
	text-align: center;
}
.blog__status_item h4{
	padding: 0;
	margin: 0;
	border: none;
	font-size: 24px;
	font-style: normal;
	line-height: 36px;
	font-family: var(--hff);
	font-weight: 900;
	letter-spacing: 0;
}
.blog__status_item .status_decor{
	position: relative;
	width: 100%;
	height: 14px;
	display: block;
	margin-top: 14px;
}
.blog__status_item .status_decor:after,
.blog__status_item .status_decor:before{
	content: '';
	position: absolute;
	width: 60px;
	height: 4px;
	background-color: #000;
	margin-left: -30px;
	transition: all .3s ease;
}
.blog__status_item .status_decor:before{
	left: 50%;
	top: 5px;
	transform: rotate(10deg);
}
.blog__status_item .status_decor:after{
	left: 50%;
	top: 5px;
	transform: rotate(-10deg);
}
.blog__status_item h4:hover .status_decor:before{transform: rotate(20deg);}
.blog__status_item h4:hover .status_decor:after{transform: rotate(-20deg);}
.blog__item .blog__icon > a{
	position: absolute;
	top: -4px;
	left: -4px;
	right: -4px;
	bottom: -4px;
}
.blog__item .post_icon .fn__svg{
	width: 20px;
	height: 20px;
	display: block;
	position: absolute;
	top: 50%;
	left: 50%;
	margin: -10px 0 0 -10px;
}
[data-blog-item-color="enable"] .blog__item .bottom_holder{
	background-color: var(--guff-cbc);
	color: var(--guff-ctc);
}
[data-blog-item-color="enable"] .blog__item .title h3 a{
	color: var(--guff-ctc);
}
[data-blog-item-color="enable"] .blog__item .title h3 a:hover{
	color: var(--guff-cthc);
}
[data-blog-meta-color="enable"] .category__holder{
	color: var(--guff-ctc);
	background-color: var(--guff-cbc);
}
[data-blog-meta-color="enable"] .category__holder a{
	color: var(--guff-ctc);
}
[data-blog-meta-color="enable"] .category__holder a:hover{
	color: var(--guff-cthc);
	border-bottom-color: var(--guff-cthc);
}
[data-blog-typog-color="enable"] .blog__item .typ_overlay .typ_title{
	color: var(--guff-cbc);
}

.sticky .blog__item .desc_excerpt_field p,
.sticky .blog__item .desc_post_content p,
.sticky .blog__item .bottom_holder .title h3 a{
	color: #000;
}
.blog__image{
	position: relative;
}
.blog__image > a{
	color: #fff;
}
.blog__image a{
	margin: 0 auto;
}
.blog__image .img_overlay img{
	aspect-ratio: 294 / 216;
	object-fit: cover;
	min-width: 100%;
}
.blog__image img{
	display: block;
	margin: 0 auto;
}
.blog__image .fn__audio_popup,
.blog__image .fn__video_popup{
	position: absolute;
	width: 40px;
	height: 40px;
	left: -14px;
	top: 50%;
	margin: 0;
	margin-top: -20px;
	display: block;
	border-radius: 100%;
	background-color: #000;
	color: #fff;
	z-index: 10;
}
.blog__item .blog__icon > a:hover .fn__svg,
.blog__image .fn__audio_popup:hover .main_svg,
.blog__image .fn__video_popup:hover .main_svg{
	-webkit-mask-image: linear-gradient(-75deg, rgba(0,0,0,.6) 30%, #000 50%, rgba(0,0,0,.6) 70%);
	-webkit-mask-size: 200%;
	animation: shine 2s infinite;
}
.blog__image .fn__video_popup .main_svg,
.blog__image .fn__audio_popup .main_svg{
	display: block;
	position: absolute;
	width: 14px;
	height: 14px;
	top: 50%;
	left: 50%;
	margin: -7px 0 0 -7px;
	color: #fff;
}
.fn__video_popup:after{
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	margin: -5px 0 0 -4px;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 5px 0 5px 10px;
	border-color: transparent transparent transparent #fff;
}
.blog__image .fn__video_popup .main_svg{
	width: 24px;
	height: 24px;
	margin: -12px 0 0 -12px;
}
.fn__gallery_format .owl-carousel{
	display: block;
	background-color: #000;
	border-radius: 20px;
}
.fn__gallery_format .owl-carousel .item:nth-child(1){
	display: block;
}
.fn__gallery_format .owl-carousel .item img{
	min-width: 100%;
	object-fit: cover;
	aspect-ratio: 1 / 1;
}
.fn__gallery_format .owl-carousel .item{
	display: none;
}
.fn__gallery_format .slider__nav a{
	display: block;
	text-decoration: none;
	width: 40px;
	height: 40px;
	background-color: #000;
	position: absolute;
	top: 50%;
	margin-top: -20px;
	border-radius: 100%;
	color: var(--guff-mc1);
	z-index: 5;
}
.fn__gallery_format .slider__nav a:hover .fn__svg{
	-webkit-mask-image: linear-gradient(-75deg, rgba(0,0,0,.6) 30%, #000 50%, rgba(0,0,0,.6) 70%);
	-webkit-mask-size: 200%;
	animation: shine 2s infinite;
}
.fn__gallery_format .slider__nav .prev .fn__svg{
	transform: rotate(180deg);
}
.fn__gallery_format .slider__nav .prev{
	left: -14px;
}
.fn__gallery_format .slider__nav .next{
	right: -14px;
}
.fn__gallery_format .slider__nav .fn__svg{
	width: 14px;
	height: 14px;
	display: block;
	position: absolute;
	top: 50%;
	left: 50%;
	margin: -7px 0 0 -7px;
	color: #fff;
}
.fn__gallery_format{
	border: var(--guff-border) solid #000;
    position: relative;
	border-radius: 20px;
}
.fn__gallery_format .owl-carousel .owl-stage-outer{
	border-radius: 14px;
	overflow: hidden;
}
.fn__gallery_format .item{
	position: relative;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;
	overflow: hidden;
}




/* BLOG LIST: List layout */
.fn__blog_list_layout_list{
	padding: 0;
	margin: 0;
	list-style-type: none;
	margin-left: -80px;
}
.fn__blog_list_layout_list .post_item{
	margin: 0;
	padding: 0;
	list-style-type: inherit;
	margin-bottom: 60px;
	padding-left: 80px;
	width: 100%;
}



/* BLOG LIST: Classic layout */
.fn__blog_list_layout_classic{
	padding: 0;
	margin: 0;
	list-style-type: none;
	margin-left: -80px;
}
.fn__blog_list_layout_classic .post_item{
	margin: 0;
	padding: 0;
	list-style-type: inherit;
	margin-bottom: 60px;
	padding-left: 80px;
	width: 100%;
}


/* BLOG LIST: Masonry layout */
.fn__blog_list_layout_masonry{
	padding: 0;
	margin: 0;
	list-style-type: none;
	margin-left: -80px;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	flex-wrap: wrap;
}
.fn__blog_list_layout_masonry .post_item{
	margin: 0;
	padding: 0;
	list-style-type: inherit;
	margin-bottom: 60px;
	padding-left: 80px;
	width: 50%;
}
/*************************************************************************/
/* 10) Breadcrumbs
/*************************************************************************/
#breadcrumbs{
	margin: 0;
	margin-top: -1px;
	padding: 0;
	padding-bottom: 13px;
	list-style-type: none;
	display: block;
	text-align: center;
}
#breadcrumbs li{
	margin: 5px 0 2px;
	font-weight: 900;
    font-family: var(--hff);
	font-size: 14px;
	text-transform: uppercase;
	display: inline-block;
}
#breadcrumbs .separator:before{
	content: '/';
	margin: 0 5px;
}
#breadcrumbs a{
	text-decoration: none;
	color: #000;
}
/*************************************************************************/
/* 11) Pagination
/*************************************************************************/
.guff_fn_leftsidebar .guff_fn_pagination{
	padding-bottom: 0;
}
.guff_fn_pagination{
	padding: 0 0 100px 0;
}
.guff_fn_pagination .pag_in{
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	justify-content: center;
}
.guff_fn_pagination .pag_inner{
	position: relative;
	padding: 0 120px;
}
.guff_fn_pagination ul{
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	margin: 0;
	padding: 0;
	list-style-type: none;
	flex-wrap: wrap;
	justify-content: center;
	margin-left: -10px;
}
.guff_fn_pagination li{
	margin: 5px 0 5px 10px;
}
.guff_fn_pagination li span,
.guff_fn_pagination li a{
	width: 70px;
	height: 70px;
	display: block;
	text-decoration: none;
	background-color: #000;
	border-radius: 100%;
	text-align: center;
	line-height: 70px;
	font-size: 24px;
	font-weight: 900;
	font-family: var(--hff);
	color: #fff;
	position: relative;
	padding-top: 1px;
}
.guff_fn_pagination li .current,
.guff_fn_pagination li a:hover{
	background-color: var(--guff-mc2);
	color: #fff;
}
.guff_fn_pagination .left_decor{
	display: block;
	width: 100px;
	height: 5px;
	background-color: #000;
	position: absolute;
	top: 50%;
	margin-top: -2px;
	margin-top: -2.5px;
	left: 0;
}
.guff_fn_pagination .right_decor{
	display: block;
	width: 100px;
	height: 5px;
	background-color: #000;
	position: absolute;
	top: 50%;
	margin-top: -2px;
	margin-top: -2.5px;
	right: 0;
}
/*************************************************************************/
/* 12) Page Links
/*************************************************************************/
.guff_fn_pagelinks{
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	margin: 0;
	padding: 0 50px 44px;
	list-style-type: none;
	flex-wrap: wrap;
	justify-content: center;
	margin-left: -10px;
}
.guff_fn_pagelinks .title{
	display: none;
}
.guff_fn_pagelinks > *{
	width: 40px;
	height: 40px;
	display: block;
	text-decoration: none;
	border: 4px solid #000;
	background-color: #333;
	border-radius: 100%;
	text-align: center;
	line-height: 32px;
	font-size: 14px;
	font-weight: 600;
	font-family: var(--hff);
	color: #fff;
	position: relative;
	margin: 0px 0 10px 10px;
	z-index: 1;
}
.guff_fn_pagelinks .current,
.guff_fn_pagelinks a:hover{
	background-color: #fff;
	color: #000;
}
/*************************************************************************/
/* 13) Footer
/*************************************************************************/
.guff_fn_footer{
	position: relative;
	background-color: #000;
	padding: 100px 80px;
	color: #fff;
	width: 100%;
	overflow: hidden;
}
.guff_fn_footer .footer__title{
	margin: 0;
	color: #fff;
	padding: 0;
	font-size: 24px;
	font-weight: 600;
	text-transform: uppercase;
	margin-bottom: 23px;
}
.guff_fn_footer .guff_fn_social_list ul{
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	margin: 0;
	padding: 0;
	list-style-type: none;
	margin-left: -10px;
	flex-wrap: wrap;
}
.guff_fn_footer .guff_fn_social_list li{
	margin: 5px 0 5px 10px;
	padding: 0;
}
.guff_fn_footer .guff_fn_social_list a{
	width: 70px;
	height: 70px;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	text-decoration: none;
	border: 5px solid #333;
	color: #fff;
	border-radius: 100%;
	-ms-align-items: center;
	align-items: center;
	justify-content: center;
	text-align: center;
}
.guff_fn_footer .guff_fn_social_list a:hover{
	border-color: var(--guff-mc1);
	color: var(--guff-mc1);
}
.guff_fn_footer .guff_fn_social_list .fn__svg{
	display: block;
	width: 30px;
	height: 30px;
}
.guff_fn_footer .footer_welcome{
	margin-bottom: 1px;
	padding-right: 112px;
}
.guff_fn_footer .footer_welcome p{
	margin: 0;
}
.guff_fn_footer .footer_info{
	margin-bottom: 35px;
}
.guff_fn_footer .footer_info:empty{
	display: none;
}
.guff_fn_footer .footer_info[data-social="enable"]{
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
}
.guff_fn_footer .footer_info[data-info="enable"] .info_left{
	padding-right: 82px;
	position: relative;
}
.guff_fn_footer .footer_info[data-info="enable"] .info_left:after{
	content: '';
	position: absolute;
	right: 40px;
	top: 0;
	bottom: 0;
	background-color: #333;
	width: 2px;
}
.guff_fn_footer .footer_info .info_left,
.guff_fn_footer .footer_info .info_right{
	min-height: 90px;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-webkit-flex-direction: column;
	-moz-flex-direction: column;
	-ms-flex-direction: column;
	-o-flex-direction: column;
	flex-direction: column;
	justify-content: center;
}
.guff_fn_footer .footer_info .info_right ul{
	margin: 0;
	list-style-type: none;
	padding: 0;
}
.guff_fn_footer .footer_info .info_right li{
	margin-bottom: 6px;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
}
.guff_fn_footer .footer_info .info_right li:last-child{
	margin-bottom: 0;
}
.guff_fn_footer .footer_info .label{
	height: 26px;
	line-height: 26px;
	padding: 0 10px;
	border-radius: 3px;
	background-color: var(--guff-mc1);
	color: #000;
	font-family: var(--hff);
	font-size: 16px;
	text-transform: uppercase;
	font-weight: 900;
	margin-right: 15px;
	min-width: 72px;
}
.guff_fn_footer .footer_info .value{
	font-size: 24px;
	font-weight: 400;
	color: #fff;
	line-height: 26px;
	font-family: var(--bff);
}
.guff_fn_footer .footer_info .value a{
	color: #fff;
}
.guff_fn_footer .footer_info .value a:hover{
	color: var(--guff-mc1);
}
.guff_fn_footer .footer_divider{
	height: 70px;
	position: relative;
}
.guff_fn_footer .footer_divider[data-totop="enable"] .decor{
	right: 112px;
}
.guff_fn_footer .footer_divider .decor{
	position: absolute;
	left: 0;
	top: 50%;
	margin-top: -2px;
	margin-top: -2.5px;
	background-color: #333;
	right: 0;
	height: 5px;
}
.guff_fn_footer .footer_divider .decor:after{
	width: 5px;
	height: 20px;
	background-color: #333;
	right: 0;
	top: 50%;
	margin-top: -10px;
	content: '';
	position: absolute;
}
.guff_fn_footer .footer_totop{
	position: absolute;
	right: 0;
	top: 50%;
	margin-top: -35px;
	width: 92px;
	height: 70px;
	display: block;
}
.guff_fn_footer .footer_totop .icon{
	width: 70px;
	height: 70px;
	display: block;
	position: absolute;
	top: 0;
	right: 0;
	border: 5px solid #333;
	border-radius: 100%;
	color: #fff;
	transition: all .3s ease;
}
.guff_fn_footer .footer_totop .text{
	display: block;
	color: #444;
	font-family: var(--hff);
	font-size: 16px;
	font-weight: 900;
	text-transform: uppercase;
	white-space: nowrap;
    text-orientation: mixed;
    writing-mode: vertical-lr;
    line-height: 1;
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    transform: rotate(180deg);
	height: 70px;
	text-align: center;
}
.guff_fn_footer .footer_totop .fn__svg{
	width: 35px;
    height: 35px;
    display: block;
    transition: all .3s ease;
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 2;
    margin: -18px 0 0 -19px;
    transform: rotateY(180deg);
    pointer-events: none;
}
.guff_fn_footer .footer_totop:hover .icon{
	border-color: var(--guff-mc1);
}
.guff_fn_footer .footer_menu{
	overflow: hidden;
	margin-bottom: 8px;
}
.guff_fn_footer .footer_menu .guff_fn_main_nav{
	flex-wrap: wrap;
	margin-left: -26px;
}
.guff_fn_footer .footer_menu .guff_fn_main_nav > li > a:hover{
	color: var(--guff-mc1);
}
.guff_fn_footer .footer_menu .guff_fn_main_nav > li > a{
	line-height: 30px;
}
.guff_fn_footer p{
	color: #fff;
}
.subscribe_enabled .guff_fn_footer{
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	justify-content: space-between;
	-ms-align-items: center;
	align-items: center;
}
.subscribe_enabled .guff_fn_footer .footer_left{
	width: calc(100% - 614px); /* 534px - for subcribe form and 80px for spacing*/
}
.subscribe_enabled .guff_fn_footer .footer_right{
	width: 534px;
}
.guff_fn_footer .footer_right{
	width: 534px;
}
.guff_fn_footer .footer_copyright p{
	margin: 0;
	padding: 0;
	font-weight: 500;
	line-height: 1;
	color: #fff;
}
.guff_fn_footer .footer_copyright a:hover{
	-webkit-mask-image: linear-gradient(-75deg, rgba(0,0,0,.6) 30%, #000 50%, rgba(0,0,0,.6) 70%);
	-webkit-mask-size: 200%;
	animation: shine 2s infinite;
}
.guff_fn_footer .footer_copyright a{
	text-decoration: none;
	color: #fff;
}
.guff_fn_footer .footer_widgets{
	margin-top: -9px;
}
.guff_fn_footer .widget_nav_menu .menu{
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	margin: 0;
	padding: 0;
	list-style-type: none;
	flex-wrap: wrap;
	justify-content: center;
	margin-bottom: 2px;
}
.guff_fn_footer .widget_nav_menu .menu{
	position: relative;
	margin-left: -34px;
}
.guff_fn_footer .widget_nav_menu .menu > li{
	margin-left: 34px;
	position: relative;
	margin-bottom: 0;
}
.guff_fn_footer .widget_nav_menu .menu > li > a{
	font-size: 16px;
	letter-spacing: 0;
	text-transform: uppercase;
	font-family: var(--hff);
	color: #fff;
	text-decoration: none;
	display: block;
	font-weight: 700;
	line-height: 2.5;
}
.guff_fn_footer .widget_nav_menu .sub-menu li{
	margin-bottom: 6px;
	position: relative;
}
.guff_fn_footer .widget_nav_menu .sub-menu ul{
	left: 100%;
	top: -36px;
	margin-left: 0;
}
.guff_fn_footer .widget_nav_menu .sub-menu{
	z-index: 5;
	opacity: 0;
	visibility: hidden;
	transition: all .3s ease;
	margin: 0;
	padding: 32px 0 25px;
	position: absolute;
	width: 280px;
	border: 4px solid #000;
	background-color: #fff;
	bottom: 100%;
	left: 0;
	margin-left: -18px;
	list-style-type: none;
	transform: translateY(-30px);
	border-radius: 0 0 13px 13px;
}
.guff_fn_footer .widget_nav_menu .sub-menu:after{
	content: '';
    position: absolute;
    top: 0;
    left: -4px;
    right: -4px;
    bottom: -10px;
    z-index: -1;
    border-radius: 0 0 20px 20px;
    border-bottom: 10px solid #000;
}
.guff_fn_footer .widget_nav_menu .sub-menu a{
	font-size: 18px;
	display: block;
	font-family: var(--hff);
	color: #000;
	font-weight: 900;
	letter-spacing: .25px;
	text-transform: uppercase;
	padding: 0 40px;
	line-height: 30px;
	white-space: normal;
}
.guff_fn_footer .widget_nav_menu li:hover > .sub-menu{
	opacity: 1;
	visibility: visible;
	transform: translateY(0px);
}
.guff_fn_footer .widget_nav_menu .sub-menu li.menu-item-has-children > a{
	padding-right: 52px;
	position: relative;
}
.guff_fn_footer .widget_nav_menu .sub-menu li.menu-item-has-children > a:after{
	content: '';
	position: absolute;
	right: 40px;
	top: 50%;
	margin-top: -6px;
	display: block;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 6px 0 6px 6px;
	border-color: transparent transparent transparent #000;
}

/* Blog Page without Sidebar */
.fn__page_layout{
	position: relative;
}
/*************************************************************************/
/* 14) Sidebar Page
/*************************************************************************/
.guff_fn_hassidebar .sidebar__inner{
	position: relative;
}
.guff_fn_hassidebar .sidebarpage{
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	margin-left: -80px;
	padding: 0 80px;
}
.guff_fn_leftsidebar{
	width: 66.6666%;
	padding-left: 80px;
	padding-bottom: 100px;
}
.guff_fn_rightsidebar{
	width: 33.33333%;
	padding-left: 80px;
	padding-bottom: 100px;
}
.page-template-default .guff_fn_leftsidebar .ls_content > *:last-child{
	margin-bottom: 0;
}
/*************************************************************************/
/* 15) Totop Button
/*************************************************************************/
.guff_fn_totop{
	width: 70px;
	height: 70px;
	display: block;
	position: fixed;
	z-index: 99;
	right: 10px;
	bottom: 10px;
	text-decoration: none;
	cursor: pointer;
	color: #000;
	border-radius: 100%;
	opacity: 0;
	visibility: hidden;
	transform: translateY(350px);
}
.guff_fn_totop .totop{
	border: 3px solid #000;
	width: 70px;
	height: 70px;
	display: block;
	position: absolute;
	background-color: #fff;
	right: 0;
	bottom: 0;
	border-radius: 100%;
	z-index: 1;
}
.guff_fn_totop .totop:hover{
	background-color: #000;
	color: #fff;
}
.guff_fn_totop.active{
	transform: translateY(0);
	opacity: 1;
	visibility: visible;
}
.guff_fn_totop.active .fn__svg{
	transition: all .3s ease;
}
.guff_fn_totop.footer-soon{
	transform: translateY(350px);
}
.guff_fn_totop:hover .fn__svg{
	transform: rotateY(180deg) rotate(-10deg);
}
.guff_fn_totop .fn__svg{
	width: 35px;
    height: 35px;
    display: block;
    transition: all .3s ease;
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 2;
    margin: -18px 0 0 -21px;
    transform: rotateY(180deg);
    pointer-events: none;
}
.guff_fn_totop .icon span{
	display: block;
	position: absolute;
	right: 100%;
	height: 4px;
	background-color: #000;
	border-radius: 4px;
	outline: 2px solid #fff;
	z-index: -1;
	pointer-events: none;
}
.guff_fn_totop .icon span:nth-child(1){
	top: 38px;
	margin-right: 9px;
	width: 30px;
}
.guff_fn_totop .icon span:nth-child(2){
	top: 46px;
	margin-right: -3px;
	width: 36px;
}
.guff_fn_totop .icon span:nth-child(3){
	top: 54px;
	margin-right: -9px;
	width: 28px;
}
/*************************************************************************/
/* 16) 404 Page
/*************************************************************************/
.guff_fn_protected .container,
.guff_fn_404 .container{
	max-width: 960px;
}
.guff_fn_protected .message_holder,
.guff_fn_404 .message_holder{
   	padding-bottom: 100px;
}
.guff_fn_404{
	text-align: center;
}
.guff_fn_404 .fn__title{
	margin: 0;
	padding: 0;
	font-weight: 900;
	font-size: 200px;
	font-size: 10.43vw;
	line-height: 1;
	margin-bottom: 3px;
}
.guff_fn_404 .fn__maintitle{
	margin: 0;
	padding: 0;
	font-weight: 900;
	font-size: 36px;
	margin-bottom: 13px;
	text-transform: uppercase;
}
.guff_fn_404 .fn__desc{
	margin: 0 auto;
	padding: 0;
	max-width: 500px;
	font-weight: 500;
	margin-bottom: 23px;
}
.guff_fn_protectedform.container-custom,
.guff_fn_404 .container-custom{
	max-width: 535px;
	margin: 0 auto;
}
.guff_fn_protectedform form,
.guff_fn_404 form{
	background-color: #eee;
	border: 4px solid #000;
	border-radius: 30px;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
}
.guff_fn_protectedform input[type="password"],
.guff_fn_404 input[type="text"]{
	border: none;
	margin: 0;
	padding: 0 26px;
	background-color: transparent !important;
	flex: 1;
	height: 52px;
	font-size: 18px;
	font-weight: 600;
	letter-spacing: 0;
}
.guff_fn_protectedform .search,
.guff_fn_404 .search{
	margin: -4px;
	margin-left: 0;
	position: relative;
	background-color: var(--guff-mc2);
	border: 4px solid #000;
	border-radius: 30px;
}
.guff_fn_protectedform .search:hover,
.guff_fn_404 .search:hover{
	background-color: #000;
}
.guff_fn_protectedform .search:hover input[type="submit"],
.guff_fn_404 .search:hover input[type="submit"]{
	-webkit-mask-image: linear-gradient(-75deg, rgba(255,255,255,.6) 30%, #fff 50%, rgba(255,255,255,.6) 70%);
    -webkit-mask-size: 200%;
    animation: shine 2s infinite;
}
.guff_fn_protectedform input[type="submit"],
.guff_fn_404 input[type="submit"]{
	border: none !important;
	position: relative;
	background-color: transparent !important;
	font-weight: 600;
	font-size: 18px;
	letter-spacing: .25px;
	text-transform: uppercase;
	font-family: var(--hff);
	color: #fff;
	height: 100%;
	padding: 0 62px 0 32px;
	z-index: 2;
}
.guff_fn_protectedform input[type="submit"]{
	padding-right: 32px;
}
.guff_fn_protectedform .fn__svg,
.guff_fn_404 .fn__svg{
	display: block;
	position: absolute;
	right: 32px;
	top: 50%;
	margin-top: -10px;
	color: #fff;
}
/*************************************************************************/
/* 17) Protected Page
/*************************************************************************/
.guff_fn_protected{
	text-align: center;
}
.guff_fn_protected .fn__maintitle{
	margin: 0;
	padding: 0;
	font-weight: 900;
	font-size: 36px;
	margin-bottom: 13px;
	text-transform: uppercase;
}
.guff_fn_protected .icon{
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	justify-content: center;
	margin-bottom: 31px;
}
.guff_fn_protected .icon .fn__svg{
	width: 145px;
	height: 145px;
	display: block;
}
.guff_fn_protected .fn__desc{
	margin: 0 auto;
	padding: 0;
	max-width: 500px;
	font-weight: 500;
	margin-bottom: 23px;
}
.guff_fn_protected .container-custom{
	max-width: 500px;
	margin: 0 auto;
}
.guff_fn_protected form{
	background-color: #eee;
	border: 4px solid #000;
	border-radius: 50px;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
}
.guff_fn_protected input[type="password"],
.guff_fn_protected input[type="text"]{
	border: none;
	margin: 0;
	padding: 0 26px;
	background-color: transparent !important;
	flex: 1;
	height: 52px;
	font-size: 18px;
	font-weight: 600;
	letter-spacing: 0;
	font-style: normal;
	border-radius: 30px 0 0 30px;
}
.guff_fn_protected .search{
	margin: -4px;
	margin-left: 0;
	position: relative;
	background-color: var(--guff-mc2);
	border: 4px solid #000;
	border-radius: 40px;
}
.guff_fn_protected .search:hover{
	background-color: #000;
}
.guff_fn_protected .search:hover input[type="submit"]{
	-webkit-mask-image: linear-gradient(-75deg, rgba(255,255,255,.6) 30%, #fff 50%, rgba(255,255,255,.6) 70%);
    -webkit-mask-size: 200%;
    animation: shine 2s infinite;
	color: #fff;
}
.guff_fn_protected input[type="submit"]{
	border: none !important;
	position: relative;
	background-color: transparent !important;
	font-weight: 600;
	font-size: 18px;
	letter-spacing: .5px;
	text-transform: uppercase;
	font-family: var(--hff);
	color: #fff;
	height: 100%;
	padding: 0 32px;
	z-index: 2;
}
.guff_fn_protected form .fn__svg{
	display: block;
	position: absolute;
	right: 32px;
	top: 50%;
	margin-top: -10px;
	color: #fff;
}
/*************************************************************************/
/* 18) Featured Posts
/*************************************************************************/
.featured_post_item{
	width: 100%;
}
.featured_post_item .obj_content{
	padding: 0 36px 36px;
}
.featured_post_item .fp_heading{
	margin: 0;
    position: relative;
    margin-bottom: 30px;
}
.featured_post_item .fp_heading h3{
	margin: 0;
	padding: 0;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	justify-content: center;
}
.featured_post_item .fp_heading h3 .text{
    border-top: none;
    display: block;
    letter-spacing: 0;
    margin-top: -22px;
	width: 240px;
	max-width: 100%;
	position: relative;
}
.featured_post_item .fp_heading h3 .text span{
	position: relative;
	height: 40px;
    line-height: 32px;
    background-color: #fff;
    border: 4px solid #000;
    text-align: center;
    font-size: 16px;
    font-weight: 900;
    font-family: var(--hff);
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    text-transform: uppercase;
    color: #000;
    display: block;
    padding: 0 20px;
    border-radius: 20px;
	z-index: 2;
}
.featured_post_item .fp_heading h3 .text:after{
	content: '';
    position: absolute;
    left: 0px;
    right: 0px;
    bottom: 0px;
    top: 0px;
    background-color: #000;
    border-radius: 20px;
    transform: rotate(-2deg);
    z-index: 1;
    display: block;
}
.featured_post_item .icon_holder{
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	justify-content: center;
	align-items: flex-end;
	margin-bottom: 20px;
	position: relative;
}
.featured_post_item .icon_holder .fn__svg{
	color: var(--guff-mc2);
	width: auto;
}
.featured_post_item .icon_holder .fn__svg:nth-child(2){
	height: 30px;
}
.featured_post_item .icon_holder .fn__svg:nth-child(1),
.featured_post_item .icon_holder .fn__svg:nth-child(3){
	height: 22px;
}
.featured_post_item .fp_content ul{
	margin: 0;
	padding: 0;
	list-style-type: none;
}
.featured_post_item .fp_content li{
	margin-bottom: 20px;
}
.featured_post_item .fp_content li:last-child{
	margin-bottom: 0;
}
.featured_post_item .icon{
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	color: var(--guff-mc2);
	justify-content: center;
	width: 100%;
	margin-bottom: 20px;
}
.featured_post_item .icon .fn__svg:last-child{
	margin-right: 0;
}
.featured_post_item .icon .fn__svg{
	width: auto;
	height: 22px;
	display: block;
	margin-right: 30px;
}
.featured_post_item .icon .fn__svg:nth-child(2),
.featured_post_item .icon .fn__svg:nth-child(4){
	height: 30px;
}
.featured_post_item .fp__item{
	padding-bottom: 20px;
	position: relative;
	border-bottom: 4px solid #000;
	padding-left: 70px;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	min-height: 70px;
	-ms-align-items: center;
	align-items: center;
}
.featured_post_item .fp_count{
	width: 50px;
	height: 50px;
	position: absolute;
	left: 0;
	top: 0;
	background-color: #000;
	color: #eee;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	font-size: 18px;
	font-weight: 900;
	font-family: var(--hff);
	justify-content: center;
	-ms-align-items: center;
	align-items: center;
	border-radius: 0 15px;
}
.featured_post_item .fp_count span{
	width: 34px;
	height: 34px;
	display: block;
	border: 2px solid #fff;
	text-align: center;
	line-height: 30px;
	border-radius: 0 10px;
}
.featured_post_item li:last-child .fp__item{
	padding-bottom: 0;
	border-bottom: none;
	min-height: 50px;
}
.featured_post_item .fp__item h4{
	margin: 0;
	padding: 0;
	font-size: 20px;
	font-weight: 900;
	line-height: 26px;
}
/*************************************************************************/
/* 19) Blog Single
/*************************************************************************/
[data-page-style="full"] .guff_fn_singleajax{
	margin-bottom: 100px;
}
[data-page-style="contained"] .guff_fn_comments{
	margin-top: 0;
}
.guff_fn_blog_single + .guff_fn_blog_single{
	margin-top: 50px;
}
.guff_fn_singlepost[data-page-style="full"] .container{
	max-width: 1240px;
}
.guff_fn_single[data-ps="full"]{
	padding: 0 80px;
}


.single__content .post_content blockquote{
	border: none;
	font-size: 24px !important;
	line-height: 30px;
	color: var(--guff-mc2);
	font-family: var(--hff);
	font-weight: 900;
	font-style: italic;
	position: relative;
	padding: 30px 50px 30px 100px;
	margin: 0 0 30px;
	background-color: #e3efee;
	border-radius: 0 20px 20px 0;
	border-left: 4px solid;
}
.wp-element-caption{
	font-size: smaller;
}
.single__content .post_content blockquote:after{
	content: '';
	width: 44px;
	height: 34px;
	left: 28px;
	display: block;
	top: 30px;
	position: absolute;
	-webkit-mask-image: url(framework/svg/quote2.svg);
	-o-mask-image:  url(framework/svg/quote2.svg);
	mask-image:  url(framework/svg/quote2.svg);
	-webkit-mask-size: 100% 100%;
	-o-mask-size: 100% 100%;
	mask-size: 100% 100%;
	background-color: var(--guff-mc2);
}
.single__content .post_content blockquote cite{
	font-size: 14px;
	color: #000;
	font-weight: 900;
	letter-spacing: .25px;
	line-height: 1.2;
	text-transform: uppercase;
	font-style: normal;
}
.guff_fn_single .single__content .guff_fn_tags{
	background-color: #000;
	border-radius: 30px 30px 0 0;
	padding: 13px 20px 11px;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-ms-align-items: center;
	align-items: center;
	justify-content: center;
	margin-bottom: -80px;
}
.single__content .guff_fn_tags h5{
	margin: 0;
	padding: 0;
	font-size: 18px;
	font-weight: 600;
	color: #fff;
	font-family: var(--hff);
	text-transform: uppercase;
	margin-right: 10px;
	line-height: 28px;
}
.single__content .guff_fn_tags ul{
	margin: 0;
	padding: 0;
	margin-left: -15px;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	-ms-align-items: center;
	align-items: center;
	list-style-type: none;
}
.single__content .guff_fn_tags li{
	margin: 0;
	padding: 0;
	margin-left: 15px;
	margin-bottom: 4px;
	margin-top: 4px;
}
.single__content .guff_fn_tags a{
	text-decoration: none;
	color: #fff;
	font-size: 18px;
	line-height: 28px;
	font-weight: 600;
	font-family: var(--hff);
	text-transform: uppercase;
}
.single__content .guff_fn_tags a:before{
	content: '#';
	color: var(--guff-mc2);
}
.single__content .guff_fn_tags a:hover{
	color: #fff;
	-webkit-mask-image: linear-gradient(-75deg, rgba(0,0,0,.6) 30%, #000 50%, rgba(0,0,0,.6) 70%);
	-webkit-mask-size: 200%;
	animation: shine 2s infinite;
}
/*************************************************************************/
/* 20) Prev & Next Box
/*************************************************************************/
.guff_fn_pnb{
	position: relative;
	border: 5px solid #000;
	margin: -5px;
	background-color: #daecf5;
	border-radius: 30px;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
}
.guff_fn_pnb[data-status="no"]{
	display: none;
}
.guff_fn_pnb[data-status="no"] + .guff_fn_comments{
	margin-top: 90px;
}
.guff_fn_pnb[data-status="prev"] .next__item{
	opacity: 0;
}
.guff_fn_pnb[data-status="next"] .prev__item{
	opacity: 0;
}
.guff_fn_pnb .pnb__item{
	padding: 42px 75px 31px;
	position: relative;
	width: 50%;
}
.guff_fn_pnb .prev__item{
	padding-right: 24px;
	text-align: left;
}
.guff_fn_pnb .next__item{
	padding-left: 24px;
	text-align: right;
}
.guff_fn_pnb .fn_desc{
	margin: 0;
	font-size: 14px;
	font-weight: 900;
	letter-spacing: .1px;
	font-family: var(--hff);
	text-transform: uppercase;
	margin-bottom: 5px;
}
.guff_fn_pnb .fn_title{
	font-size: 30px;
	font-weight: 900;
	margin: 0;
}
.guff_fn_pnb .fn_title span{
	overflow: hidden;
    color: #000;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
}
.guff_fn_pnb .fn_title a{
	color: #000;
    position: relative;
    background-image: linear-gradient(currentColor, currentColor);
    background-position: 0% 90%;
    background-repeat: no-repeat;
    background-size: 0% 2px;
    transition: background-size .5s;
}
.guff_fn_pnb .pnb__item:hover .fn_title a{
	background-size: 100% 2px;
}
.guff_fn_pnb .fn_title a{
	color: #000;
}
.guff_fn_pnb .middle__item{
	position: absolute;
	left: 50%;
	top: 50%;
	margin: -12px 0 0 -12px;
}
.guff_fn_pnb .middle__item a{
	width: 24px;
	height: 24px;
	position: relative;
	display: block;
	background-color: #000;
	z-index: 5;
	transition: all .5s ease;
}
.guff_fn_pnb .middle__item a:after{
	content: '';
	position: absolute;
	top: -10px;
	right: -10px;
	bottom: -10px;
	left: -10px;
}
.guff_fn_pnb .middle__item a:hover{
/*	transform: rotate(360deg);*/
}
.guff_fn_pnb .middle__item a:hover .icon:after,
.guff_fn_pnb .middle__item a:hover .icon:before{
	transform: rotate(-180deg);
}
.guff_fn_pnb .middle__item .icon:after{
	width: 4px;
	display: block;
	position: absolute;
	height: 24px;
	content: '';
	top: 0;
	left: 50%;
	margin-left: -2px;
	background-color: #daecf5;
	transition: all .5s ease;
}
.guff_fn_pnb .middle__item .icon:before{
	width: 24px;
	display: block;
	position: absolute;
	height: 4px;
	content: '';
	left: 0;
	top: 50%;
	margin-top: -2px;
	background-color: #daecf5;
	transition: all .5s ease;
}

p:empty{
	margin: 0;
}
/*************************************************************************/
/* 21) Sharebox
/*************************************************************************/
.guff_fn_sharebox{
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	position: absolute;
	width: auto;
	max-width: 80%;
	border: 20px solid #fff;
	border-left-width: 30px;
	border-radius: 30px;
	background-color: #fff;
	z-index: 2;
	left: 50%;
	transform: translateX(-50%) translateY(50px);
	top: 20px;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	transition: all .5s ease;
}
.guff_fn_sharebox.opened{
	opacity: 1;
	visibility: visible;
	pointer-events: all;
	transform: translateX(-50%) translateY(0);
}
.guff_fn_sharebox ul{
	list-style-type: none;
	margin: 0;
	padding: 60px 55px;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	margin-left: -10px;
	background-color: #000;
	border-radius: 20px 0 0 20px;
}
.guff_fn_sharebox li{
	margin: 5px 0 5px 10px;
    padding: 0;
	transform: translateY(20px);
	opacity: 0;
	transition: all .3s ease;
}
.guff_fn_sharebox.opened li{
	transform: translateY(0);
	opacity: 1;
}
.guff_fn_sharebox.opened li:nth-child(1){transition-delay: 300ms;}
.guff_fn_sharebox.opened li:nth-child(2){transition-delay: 350ms;}
.guff_fn_sharebox.opened li:nth-child(3){transition-delay: 400ms;}
.guff_fn_sharebox.opened li:nth-child(4){transition-delay: 450ms;}
.guff_fn_sharebox.opened li:nth-child(5){transition-delay: 500ms;}
.guff_fn_sharebox.opened li:nth-child(6){transition-delay: 550ms;}
.guff_fn_sharebox.opened li:nth-child(7){transition-delay: 600ms;}
.guff_fn_sharebox.opened li:nth-child(8){transition-delay: 650ms;}
.guff_fn_sharebox.opened li:nth-child(9){transition-delay: 700ms;}
.guff_fn_sharebox.opened li:nth-child(10){transition-delay: 750ms;}
.guff_fn_sharebox.opened li:nth-child(11){transition-delay: 800ms;}
.guff_fn_sharebox.opened li:nth-child(12){transition-delay: 850ms;}
.guff_fn_sharebox.opened li:nth-child(13){transition-delay: 900ms;}
.guff_fn_sharebox.opened .share_closer{
	transform: translateY(0);
}
.guff_fn_sharebox li a{
	width: 70px;
	height: 70px;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	text-decoration: none;
	border: 5px solid #333;
	color: #fff;
	border-radius: 100%;
	-ms-align-items: center;
	align-items: center;
	justify-content: center;
	text-align: center;
}
.guff_fn_sharebox li a:hover{
	border-color: var(--guff-mc1);
}
.guff_fn_sharebox li .fn__svg{
	display: block;
	width: 30px;
	height: 30px;
}
.guff_fn_sharebox .share_closer{
	width: 50px;
	display: block;
	margin-left: 5px;
	border: 5px solid #000;
	border-radius: 0 20px 20px 0;
	position: relative;
	transform: translateY(20px);
	transition: all .8s ease;
}
.guff_fn_sharebox .share_closer:after{
	content: '';
	position: absolute;
	width: 4px;
	height: 24px;
	background-color: #000;
	top: 50%;
	margin-top: -12px;
	transform: rotate(45deg);
	left: 50%;
	margin-left: -2px;
}
.guff_fn_sharebox .share_closer:before{
	content: '';
	position: absolute;
	width: 4px;
	height: 24px;
	background-color: #000;
	top: 50%;
	margin-top: -12px;
	transform: rotate(-45deg);
	left: 50%;
	margin-left: -2px;
}
/*************************************************************************/
/* 22) Comments
/*************************************************************************/
.guff_fn_comments{
	position: relative;
	background-color: #fff;
	padding: 0 26px 36px;
	border: 5px solid #000;
	border-radius: 20px;
	margin-top: 100px;
}
.guff_fn_comments.comment_type_always_open{
	background-color: #fff;
}
.guff_fn_comments.comment_type_always_open .fn__comments{
	border-top-width: 0;
	background-color: transparent;
}
.guff_fn_comments.comment_type_always_open_wh .comment_opener:hover h3{
	-webkit-mask-image: none;
	-webkit-mask-size: none;
	animation: none;
}
.guff_fn_comments .nocomments{
	padding: 30px 50px;
	margin: 0;
	border-top: var(--guff-border) solid #000;
}
.guff_fn_comments .fn__comments{
	max-width: 860px;
	margin: 0 auto;
}
.guff_fn_comments .comment_opener{
	padding: 65px 0px 63px;
	position: relative;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-webkit-flex-direction: column;
	-moz-flex-direction: column;
	-ms-flex-direction: column;
	-o-flex-direction: column;
	flex-direction: column;
	-ms-align-items: center;
	align-items: center;
	text-align: center;
	transition: all .5s ease;
	overflow: hidden;
	max-width: 860px;
	margin: 0 auto;
}
.guff_fn_comments .comment_opener .full_link{
	z-index: 2;
}
.guff_fn_comments .comment_opener .icon{
	position: relative;
	z-index: 1;
	margin-bottom: 15px;
}
.guff_fn_comments .comment_opener .icon:after{
	z-index: -1;
	position: absolute;
	content: '';
	width: 60px;
	height: 60px;
	background-color: var(--guff-mc1);
	border-radius: 100%;
	left: 50%;
	top: 50%;
	margin: -30px 0 0 -30px;
}
.guff_fn_comments .comment_opener .fn__svg{
	width: 80px;
	height: 80px;
	display: block;
	color: #000;
}
.guff_fn_comments .comment_opener h3{
	margin: 0;
	padding: 0;
	font-weight: 900;
	font-size: 30px;
	margin-bottom: 9px;
	color: #000;
}
.guff_fn_comments .comment_opener p{
	margin: 0;
	padding: 0;
	font-size: 18px;
	line-height: 26px;
	font-weight: 500;
	color: #000;
}
.guff_fn_comments .comment_top{
	padding: 67px 50px 45px;
	background-color: #ecedcc;
	border-radius: 20px;
}
.guff_fn_comments .respond-title .fn_title{
	font-size: 18px;
	margin: 0;
	font-weight: 900;
	letter-spacing: .25px;
	text-transform: uppercase;
	margin-bottom: 34px;
	text-align: center;
}
.guff_fn_comments .list{
	margin: 0;
	padding: 0;
	list-style-type: none;
}
.guff_fn_comments .children{
	margin: 0 0 0 40px;
	list-style-type: none;
}
.guff_fn_comments .comment-top{
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-ms-align-items: center;
	align-items: center;
	margin-bottom: 23px;
}
.guff_fn_comments .comment.depth-1:last-child .desc{
	margin-bottom: 0;
}
.guff_fn_comments .comment.depth-1:last-child .comment-body{
	border-bottom: none;
	margin-bottom: 18px;
}
.guff_fn_comments .comment-body{
	margin-bottom: 40px;
	border-bottom: 2px solid #000;
}
.guff_fn_comments .comment-avatar{
	width: 60px;
	min-width: 60px;
	margin-right: 20px;
	margin-bottom: 10px;
}
.guff_fn_comments .comment-avatar img{
	width: 60px;
	height: 60px;
	object-fit: cover;
    border: 4px solid #000;
    border-radius: 100%;
    background: #555;
}
.guff_fn_comments .commment-text-wrap{
	position: relative;
	width: 80%;
	width: -moz-calc(100% - 85px);
	width: -webkit-calc(100% - 85px);
	width: -o-calc(100% - 85px);
	width: calc(100% - 85px);
}
.guff_fn_comments .comment-avatar .img{
	position: sticky;
	top: 60px;
}
.guff_fn_comments .comment-avatar .img:after{
	content: '';
	position: absolute;
	top: 50%;
	margin-top: -5px;
	left: 100%;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 5px 0 5px 5px;
	border-color: transparent transparent transparent #000;
}
.guff_fn_comments .author{
	font-size: 18px;
	font-weight: 900;
	margin: 0;
	letter-spacing: 0;
	margin-bottom: 3px;
}
.guff_fn_comments .date{
	margin: 0;
	font-size: 14px;
	letter-spacing: 0;
	font-family: var(--hff);
	font-style: italic;
	font-weight: 600;
}
.guff_fn_comments .date_meta{
	font-family: var(--hff);
	font-size: 14px;
	font-weight: 600;
	text-transform: uppercase;
	margin-right: 20px;
}
.guff_fn_comments .author_meta{
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	flex-wrap: wrap;
	-ms-align-items: center;
	align-items: center;
}
.guff_fn_comments .author_meta > *{
	margin: 0 10px 10px 0;
}
.guff_fn_comments .desc p{
	font-size: 18px;
	line-height: 26px;
	font-weight: 500;
}
.guff_fn_comments .desc > *:last-child{
	margin-bottom: 0;
}
.guff_fn_comments .desc{
	margin-bottom: 33px;
}
.guff_fn_comments .comment-reply{
	display: block;
    position: relative;
	background-color: #000;
    height: 26px;
    line-height: 26px;
	padding-top: 1px;
	border-radius: 13px;
}
.guff_fn_comments .author_meta .fn__svg{
	position: absolute;
    width: 12px;
    height: 12px;
    left: 10px;
    top: 50%;
    margin-top: -6px;
	color: #fff;
}
.guff_fn_comments .author_meta a{
	font-size: 11px;
    font-family: var(--hff);
    color: #fff;
    font-weight: 600;
    letter-spacing: .25px;
    text-transform: uppercase;
    display: block;
    padding: 0 15px;
    z-index: 3;
    position: relative;
    height: 26px;
    line-height: 26px;
	padding-top: 1px;
}
.guff_fn_comments .comment-edit-link{
	background-color: #000;
	border-radius: 13px;
}
.guff_fn_comments .comment-reply a{
	height: 26px !important;
	padding-left: 26px;
	padding-top: 0;
}
.guff_fn_comments .comment-reply:hover,
.guff_fn_comments .author_meta a.comment-edit-link:hover{
	background-color: #000;
	color: #fff
}
.guff_fn_comments .comment-reply:hover a{
	color: #fff;
}



.comment-respond form > *{
	color: #000;
}
.comment:last-child .comment-respond{
	margin-bottom: 0;
}
.comment .comment-respond{
   	padding: 36px 26px;
    background: #f9edbc;
	margin-bottom: 40px;
	border: var(--guff-border) solid #000;
}
.respond_comment .respond_in{
	max-width: 800px;
	margin: 0 auto;
}
.fn__comments > .respond_comment:first-child{
/*	border-top: var(--guff-border) solid #fff;*/
}
.comment-respond{
	padding: 67px 0 0;
}
.comment-respond .comment-reply-title{
	font-size: 18px;
    font-weight: 900;
    letter-spacing: .25px;
    text-transform: uppercase;
    margin-bottom: 29px;
	text-align: center;
	color: #000;
}
.comment #cancel-comment-reply-link{
	display: inline;
	color: #000;
}
.comment #cancel-comment-reply-link:hover{
	color: var(--guff-mc2);
}
#cancel-comment-reply-link{
	display: none;
}
.comment-respond form{
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	flex-wrap: wrap;
	margin-left: -20px;
}
.comment-respond form > * {
	padding-left: 20px;
	margin-bottom: 20px;
	width: 100%;
}
.comment-respond .input-holder{
	margin-bottom: 20px;
}
.comment-respond .input-half{
	width: 50%;
}
.comment-respond textarea{
	width: 100%;
	max-width: 100%;
	min-width: 100%;
	display: block;
	background-color: #eee;
	border-radius: 30px;
}
.comment-respond .input-holder input:not([type="submit"]){
	width: 100%;
	max-width: 100%;
	min-width: 100%;
	display: block;
	border: 4px solid #000;
	border-radius: 30px;
	height: 60px;
	padding: 0 26px;
	font-size: 18px;
	font-weight: 500;
	font-family: var(--hff);
	color: #000;
	background-color: #eee;
}
.logged-in-as{
	font-size: 18px;
	font-weight: 500;
}
.logged-in-as a{
	color: #000;
}
.logged-in-as a:hover{
    -webkit-mask-image: linear-gradient(-75deg, rgba(0,0,0,.6) 30%, #000 50%, rgba(0,0,0,.6) 70%);
    -webkit-mask-size: 200%;
    animation: shine 2s infinite;
}
.comment-respond form .logged-in-as{
	margin-bottom: 28px;
	text-align: center;
	color: #000;
	margin-top: -23px;
}
.guff_submit{
	display: block;
	width: 100%;
	border-radius: 30px;
	background-color: var(--guff-mc2);
	position: relative;
}
.guff_submit p{
	margin: 0;
	padding: 0;
}
.guff_submit:hover{
	background-color: #000;
}
.guff_submit input[type="submit"]:hover{
	-webkit-mask-image: linear-gradient(-75deg, rgba(0,0,0,.6) 30%, #000 50%, rgba(0,0,0,.6) 70%);
    -webkit-mask-size: 200%;
    animation: shine 2s infinite;
}
.guff_submit input[type="submit"]{
	display: block;
	width: 100%;
	min-width: 100%;
	text-align: center;
	height: 60px;
	background-color: transparent !important;
	border-radius: 30px;
	font-size: 18px;
	letter-spacing: .5px;
	text-transform: uppercase;
	font-family: var(--hff);
	font-weight: 600;
	color: #fff;
	border: 4px solid #000 !important;
}
.fn__contact .guff_submit input[type="submit"]{
	color: #fff;
	border: 4px solid #000 !important;
}
.fn__contact .guff_submit:hover input[type="submit"]{
	color: #fff;
}
.fn__contact .guff_submit:hover{
	background-color: #000;
}
/*************************************************************************/
/* 23) Quote Format
/*************************************************************************/
.fn__quote_format{
	width: 100%;
	background-color: #000;
	padding: 70px 50px 62px;
	border-radius: 14px;
}
.fn__quote_format blockquote{
	padding: 0;
	margin: 0;
	border: none;
	color: #fff;
}
.fn__quote_format .icon{
	width: 60px;
	height: 60px;
	display: block;
	margin-bottom: 24px;
	background-color: var(--guff-mc2);
	border-radius: 100%;
	position: relative;
	color: #fff;
}
.fn__quote_format .icon .fn__svg{
	width: 24px;
	height: 24px;
	display: block;
	position: absolute;
	top: 50%;
	left: 50%;
	margin: -12px 0 0 -12px;
}
.fn__quote_format .text{
	font-family: var(--bff);
	font-size: 24px;
	line-height: 30px;
	font-weight: 600;
	letter-spacing: 0;
	margin-bottom: 17px;
	display: block;
	font-style: italic;
}
.fn__quote_format .author{
	font-size: 14px;
	text-transform: uppercase;
	font-family: var(--hff);
	letter-spacing: .25px;
	color: #777;
	font-weight: 900;
	display: block;
	font-style: normal;
}
/* Status Format */
.fn__status_format{
	width: 100%;
	background-color: #000;
	padding: 70px 50px 62px;
	border-radius: 14px;
}
.fn__status_format h4{
	padding: 0;
	margin: 0;
	border: none;
	color: #fff;
}
.fn__status_format .icon{
	width: 60px;
	height: 60px;
	display: block;
	margin-bottom: 24px;
	background-color: var(--guff-mc2);
	border-radius: 100%;
	position: relative;
	color: #fff;
}
.fn__status_format .icon .fn__svg{
	width: 24px;
	height: 24px;
	display: block;
	position: absolute;
	top: 50%;
	left: 50%;
	margin: -12px 0 0 -12px;
}
.fn__status_format .text{
	font-family: var(--bff);
	font-size: 24px;
	line-height: 30px;
	font-weight: 600;
	letter-spacing: 0;
	display: block;
	font-style: italic;
}
/* Link Format */
.fn__link_format{
	width: 100%;
	background-color: #000;
	border-radius: 14px;
}
.fn__link_format a{
	margin: 0;
	border: none;
	color: #fff;
	text-decoration: none;
	display: block;
	padding: 70px 50px 62px;
}
.fn__link_format .icon{
	width: 60px;
	height: 60px;
	display: block;
	margin-bottom: 24px;
	background-color: var(--guff-mc2);
	border-radius: 100%;
	position: relative;
	color: #fff;
}
.fn__link_format .icon .fn__svg{
	width: 24px;
	height: 24px;
	display: block;
	position: absolute;
	top: 50%;
	left: 50%;
	margin: -12px 0 0 -12px;
}
.fn__link_format .text{
	font-family: var(--bff);
	font-size: 24px;
	line-height: 30px;
	font-weight: 600;
	letter-spacing: 0;
	display: block;
	font-style: italic;
}
/*************************************************************************/
/* 24) Author Information Box
/*************************************************************************/

/*************************************************************************/
/* 25) Popup Iframe
/*************************************************************************/
.fn__popupbox_iframe{
	opacity: 0;
	visibility: hidden;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 39999;
	padding: 100px 50px;
	background-color: var(--guff-bbc);
	transition: all .5s ease;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-ms-align-items: center;
	align-items: center;
}
.fn__popupbox_iframe.active{
	opacity: 1;
	visibility: visible;
}
.admin-bar .fn__popupbox_iframe{
	top: 32px;
}
.fn__popupbox_iframe .iframe_content{
	width: 100%;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-ms-align-items: center;
	align-items: center;
	justify-content: center;
}
.fn__popupbox_iframe .iframe_content iframe{
	width: 100%;
}
.fn__popupbox_iframe .iframe_closer{
	width: 100px;
	height: 100px;
	display: block;
	position: absolute;
	right: 0;
	top: 0;
	text-decoration: none;
}
.fn__popupbox_iframe .iframe_closer:hover{
    -webkit-mask-image: linear-gradient(-75deg, rgba(0,0,0,.6) 30%, #000 50%, rgba(0,0,0,.6) 70%);
    -webkit-mask-size: 200%;
    animation: shine 2s infinite;
}
.fn__popupbox_iframe .iframe_closer span:before,
.fn__popupbox_iframe .iframe_closer span:after{
	content: '';
    width: 25px;
    height: 4px;
    background-color: #000;
    display: block;
    position: absolute;
    top: 40px;
	right: 40px;
	transition: all .5s ease;
}
.fn__popupbox_iframe .iframe_closer span:after{
	transform: rotate(-45deg)
}
.fn__popupbox_iframe .iframe_closer span:before{
	transform: rotate(45deg)
}
/*************************************************************************/
/* 26) Sticky Navigation
/*************************************************************************/
.admin-bar .guff_fn_stickynav{
	top: 32px;
}
.guff_fn_stickynav{
	width: 100%;
	max-width: 100%;
	z-index: 9997;
	opacity: 0;
	visibility: hidden;
	transition: all .3s ease;
	transform: translateY(-100%);
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	background-color: #000;
	padding: 0 70px 0 80px;
}
body.sticky-active .guff_fn_stickynav{
	opacity: 1;
	visibility: visible;
	transform: translateY(0%);
}
.guff_fn_stickynav .stickynav_in{
	position: relative;
	padding-left: 215px;
	z-index: 10;
}
.guff_fn_stickynav .transform_hedaer{
	position: relative;
	z-index: 1;
}
.guff_fn_stickynav .logo{
	background-color: #fff;
	border: 5px solid #000;
	border-top: none;
	height: 85px;
	width: 190px;
	border-radius: 0 0 35px 35px;
	position: absolute;
	top: 0;
	left: 0;
}
.guff_fn_stickynav .logo a{
	text-decoration: none;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-ms-align-items: center;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 5px 40px;
	height: 100%;
}
.guff_fn_stickynav .logo .corner:before{
	content: '';
    position: absolute;
    width: 14px;
    height: 14px;
    right: 100%;
    top: 0;
    background-color: #fff;
    -webkit-mask-image: url(framework/svg/corner.svg);
    -webkit-mask-size: contain;
    transform: rotate(90deg);
}
.guff_fn_stickynav .logo .corner:after{
	content: '';
    position: absolute;
    width: 14px;
    height: 14px;
    left: 100%;
    top: 0;
    background-color: #fff;
    -webkit-mask-image: url(framework/svg/corner.svg);
    -webkit-mask-size: contain;
}
.guff_fn_stickynav .logo:after{
	content: '';
    position: absolute;
    top: 0;
    left: -5px;
    right: -5px;
    bottom: -10px;
    z-index: -1;
    border-radius: 0 0 35px 35px;
    border-bottom: 10px solid #000;
}
.guff_fn_stickynav .sticky_header{
	display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    justify-content: space-between;
    position: relative;
    transition: all .3s ease;
}
.header_post_reading{
	position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    transition: all .3s ease;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50px);
}
.guff_fn_stickynav.active .sticky_header{
	opacity: 0;
    visibility: hidden;
    transform: translateX(50px);
}
.guff_fn_stickynav.active .header_post_reading{
	opacity: 1;
	visibility: visible;
	transform: translateX(0px);
}
.header_post_reading .reading_post .subtitle{
	font-size: 14px;
	letter-spacing: 0;
	text-transform: uppercase;
	margin-right: 5px;
	font-weight: 600;
	vertical-align: middle;
}
.header_post_reading .reading_post h3{
	font-size: 22px;
	letter-spacing: 0;
	padding: 0;
	margin: 0;
	font-weight: 900;
	white-space: nowrap;
	text-overflow: ellipsis;
	overflow: hidden;
	line-height: 80px;
	height: 80px;
	position: relative;
	z-index: 5;
	color: #fff;
}
.guff_fn_stickynav .progress{
	position: absolute;
	bottom: -5px;
	left: 0;
	height: 5px;
	width: 0;
	background-color: var(--guff-mc2);
	z-index: 9;
}
.guff_fn_stickynav .guff_fn_nav{
	width: 100%;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-ms-align-items: center;
	align-items: center;
	justify-content: space-between;
}
.guff_fn_stickynav .menu{
	flex: 1;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-ms-align-items: center;
	align-items: center;
	min-width: 0;
}
.guff_fn_stickynav .icon_bar{
	margin-left: auto;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	min-width: 0;
	padding-left: 37px;
    position: relative;
}
.guff_fn_stickynav .icon_bar:before{
	content: '';
    position: absolute;
    left: 7px;
    top: 50%;
    margin-top: -20px;
    width: 2px;
    height: 40px;
    background-color: #fff;
    transform: rotate(20deg);
}
.guff_fn_stickynav .icon_bar__item > a{
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-ms-align-items: center;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 0 7px;
	text-decoration: none;
	color: #fff;
	height: 80px;
	position: relative;
}
.guff_fn_stickynav .icon_bar__item.icon_bar__hot > a:after{
	content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 100%;
    background-color: var(--guff-mc2);
    right: 0;
    top: 50%;
	margin-top: -10px;
}
.guff_fn_stickynav .icon_bar__item > a:hover{
	-webkit-mask-image: linear-gradient(-75deg, rgba(0,0,0,.6) 30%, #000 50%, rgba(0,0,0,.6) 70%);
	-webkit-mask-size: 200%;
	animation: shine 2s infinite;
}
.guff_fn_stickynav .icon_bar__item > a .fn__svg{
	width: 20px;
	height: 20px;
	display: block;
}
.guff_fn_stickynav.hover{
	height: auto;
}
.guff_fn_stickynav.hover .sticky_header{
	opacity: 1;
	visibility: visible;
	transform: translateX(0px);
}
.guff_fn_stickynav.hover .header_post_reading{
	opacity: 0;
	visibility: hidden;
	transform: translateX(-50px);
}
.guff_fn_stickynav .guff_fn_main_nav > li{
	transform: translateX(100px);
	opacity: 0;
	transition-duration: .3s;
	transition-timing-function: ease;
	transition-property: all;
}
.sticky-active .guff_fn_stickynav .guff_fn_main_nav > li{
	transform: translateY(0);
	opacity: 1;
}



/*************************************************************************/
/* 27) Quick Navigation
/*************************************************************************/
.fn__blog_anchor{
	position: fixed;
	top: 100%;
	left: 100%;
	transform: translate(40px,-100%);
	cursor: move;
    z-index: 99;
    width: 420px;
	transition: transform .5s ease, margin .5s ease;
	margin: -46px 0 0 -40px;
	padding-bottom: 5px;
}
.fn__blog_anchor:after{
	height: 14px;
    content: '';
    position: absolute;
    left: 70px;
    right: 70px;
    bottom: 0;
    border-radius: 7px;
    background-color: #000;
    display: block;
}
.fn__blog_anchor.active{
	transform: translate(-100%,-100%);
	margin: -26px 0 0 -20px;
}
.fn__blog_anchor .closer{
	width: 40px;
    height: 40px;
    display: block;
    border: 4px solid #000;
    border-radius: 100%;
    background-color: #fff;
    right: -10px;
    position: absolute;
    cursor: pointer;
    z-index: 10;
    top: 3px;
    outline: 4px solid #fff;
}
.fn__blog_anchor .closer:hover:after,
.fn__blog_anchor .closer:hover:before{
	-webkit-mask-image: linear-gradient(-75deg, rgba(0,0,0,.6) 30%, #000 50%, rgba(0,0,0,.6) 70%);
	-webkit-mask-size: 200%;
	animation: shine 2s infinite;
}
.fn__blog_anchor .closer:before,
.fn__blog_anchor .closer:after{
	content: '';
    width: 19px;
    height: 4px;
    background-color: #000;
    display: block;
    position: absolute;
    top: 14px;
    right: 6px;
    transition: all .5s ease;
}
.fn__blog_anchor .closer:before{
	transform: rotate(-45deg);
}
.fn__blog_anchor .closer:after{
	transform: rotate(45deg);
}
.fn__blog_anchor .ba_in{
	overflow: hidden;
	background-color: #fff;
	border: var(--guff-border) solid #000;
	position: relative;
	border-radius: 20px;
	margin-top: -22px;
}
.fn__blog_anchor .ba_in:after{
	display: none;
	/* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#ffffff+0,ffffff+100&0+0,1+100 */
	background: -moz-linear-gradient(top,  rgba(255,255,255,0) 0%, rgba(255,255,255,1) 100%); /* FF3.6-15 */
	background: -webkit-linear-gradient(top,  rgba(255,255,255,0) 0%,rgba(255,255,255,1) 100%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(to bottom,  rgba(255,255,255,0) 0%,rgba(255,255,255,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00ffffff', endColorstr='#ffffff',GradientType=0 ); /* IE6-9 */
	content: '';
	height: 20px;
	left: 0;
	right: 0;
	position: absolute;
	z-index: 2;
	bottom: 0;
	border-radius: 0 0 36px 36px;
}
.fn__blog_anchor .ba_heading{
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	-o-user-select: none;
	user-select: none;
	margin: 0;
    position: relative;
	z-index: 3;
}
.fn__blog_anchor .ba_heading h3{
	margin: 0;
	padding: 0;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	justify-content: center;
    position: relative;
}
.fn__blog_anchor .ba_heading h3 span{
	height: 40px;
    line-height: 32px;
    background-color: #fff;
    border-top: none;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    text-align: center;
    font-size: 16px;
    font-weight: 900;
    font-family: var(--hff);
    text-transform: uppercase;
    color: #000;
    display: block;
    padding: 0 20px;
    letter-spacing: 0;
    border: 4px solid #000;
    border-radius: 20px;
    width: 240px;
    max-width: 100%
}
.fn__blog_anchor .ba_content{
	scrollbar-width: thin;
	scrollbar-color: #aaa #777;
}
.fn__blog_anchor .ba_content::-webkit-scrollbar{
 	width: 8px;
	background-color: transparent;
}
.fn__blog_anchor .ba_content:-webkit-scrollbar-track{
  	background: transparent;
}
.fn__blog_anchor .ba_content::-webkit-scrollbar-thumb{
	background-color: #fff;
	border: 4px solid #999;
	border-radius: 10px;
}
.fn__blog_anchor .ba_content{
	position: relative;
    padding: 48px 26px 30px;
    max-height: 425px;
    overflow-x: hidden;
    overflow-y: auto;
}
.fn__blog_anchor .ba_content ul{
	margin: 0;
	padding: 0;
	list-style-type: none;
}
.fn__blog_anchor .ba_content li{
	margin-bottom: 10px;
	display: none;
}
.fn__blog_anchor .ba_content li.ready{
	display: block;
	-webkit-animation: appearing-qn .5s ease;
    -moz-animation: appearing-qn .5s ease;
}
@-webkit-keyframes appearing-qn {
      0% { opacity: 0; transform: translateX(20px) rotateY(20deg) rotateZ(-3deg);}   
    100% { opacity: 1; transform: translateX(0) rotateY(0deg) rotateZ(0deg);}
}
@-moz-keyframes appearing-qn {
      0% { opacity: 0;  transform: translateX(20px) rotateY(20deg) rotateZ(-3deg);}   
    100% { opacity: 1; transform: translateX(0) rotateY(0deg) rotateZ(0deg);}
}
.fn__blog_anchor .ba_content li:last-child{
	margin-bottom: 0;
}
.fn__blog_anchor .ba_item{
	position: relative;
	cursor: pointer;
	padding-bottom: 10px;
    border-bottom: 2px solid #000;
    padding-left: 60px;
}
.fn__blog_anchor .ba_item:hover h4 span{
	color: var(--guff-mc2);
	-webkit-mask-image: linear-gradient(-75deg, rgba(0,0,0,.6) 30%, #000 50%, rgba(0,0,0,.6) 70%);
	-webkit-mask-size: 200%;
	animation: shine 2s infinite;
}
.fn__blog_anchor .ba_count{
	width: 40px;
    height: 40px;
    position: absolute;
    left: 0;
    top: 0;
    background-color: #000;
    color: #eee;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    font-size: 16px;
    font-weight: 600;
    font-family: var(--hff);
    justify-content: center;
    -ms-align-items: center;
    align-items: center;
}
.fn__blog_anchor .ba_count:after{
	left: 4px;
	right: 4px;
	bottom: 4px;
	top: 4px;
	content: '';
	position: absolute;
	border: 2px solid #fff;
	pointer-events: none;
}
.fn__blog_anchor li:last-child .ba_item{
	padding-bottom: 0;
	border-bottom: none;
}
.fn__blog_anchor .ba_item h4{
	margin: 0;
	padding: 0;
	font-size: 18px;
	font-weight: 900;
	line-height: 26px;
	min-height: 40px;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-ms-align-items: center;
	align-items: center;
}
.fn__blog_anchor .full_linl{
	z-index: 3;
}
.fn__blog_anchor .ba_item h4 a{
	position: relative;
	z-index: 4;
}



.fn__cat_slider{
	margin-bottom: 90px;
}
.fn__cat_slider .full_link{
	z-index: 3;
}
.fn__cat_slider .item_overlay_image,
.fn__cat_slider .item_overlay_color{
	position: absolute;
	z-index: 1;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: var(--guff-cbc);
    color: var(--guff-ctc);
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
}
.fn__cat_slider .item_overlay_image:after{
	content: '';
	position: absolute;
	background-color: rgba(0,0,0,0.4);
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
}
.fn__cat_slider .cat__item{
    color: var(--guff-ctc);
    width: 100%;
    height: 200px;
    text-align: center;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    justify-content: center;
    -ms-align-items: flex-end;
    align-items: flex-end;
	position: relative;
	padding: 20px 20px 24px;
	border: 4px solid #000;
	border-radius: 0 20px;
	overflow: hidden;
}
.fn__cat_slider .item{
	position: relative;
	padding-bottom: 10px;
}
.fn__cat_slider .item:after{
	bottom: 0;
	left: 33px;
	right: 33px;
	border: 4px solid #000;
	border-top: none;
	content: '';
	position: absolute;
	border-radius: 0 0 30px 30px;
	height: 10px;
}
.fn__cat_slider .cat_title{
	position: relative;
	z-index: 2;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-webkit-flex-direction: column;
	-moz-flex-direction: column;
	-ms-flex-direction: column;
	-o-flex-direction: column;
	flex-direction: column;
	-ms-align-items: center;
	align-items: center;
}
.fn__cat_slider .name{
	font-weight: 600;
	margin: 0;
	padding: 0;
	font-family: var(--hff);
	font-size: 24px;
	letter-spacing: 0;
	margin-bottom: 4px;
	text-transform: uppercase;
	border-bottom: 2px solid transparent;
	transition: all .3s ease;
	line-height: 1.2;
}
.fn__cat_slider .cat__item:hover .name{
	border-bottom-color: #fff;
}
.fn__cat_slider .count{
	font-weight: 600;
	margin: 0;
	padding: 0;
	font-family: var(--hff);
	font-size: 14px;
	letter-spacing: 0;
	text-transform: uppercase;
}





.fn__bp_slider{
	margin-bottom: 90px;
}
.fn__bp_slider .metass{
	text-align: center;
	font-size: 14px;
	text-transform: uppercase;
	font-weight: 600;
	font-family: var(--hff);
}
.fn__bp_slider .metass a{
	text-decoration: none;
	color: #000;
}
.fn__bp_slider .metass > *{
	display: inline;
}
.fn__bp_slider .metass > *:after{
	content: ' / ';
}
.fn__bp_slider .metass > *:last-child:after{
	content: '';
}
.fn__bp_slider .img_wrap{
	border: var(--guff-border) solid #000;
	border-radius: 20px;
	overflow: hidden;
}
.fn__bp_slider .owl-carousel .item{
	display: none;
	padding-bottom: 5px;
}
.fn__bp_slider .owl-carousel .item:nth-child(1){
	display: block;
}
.fn__bp_slider .owl-carousel{
	display: block;
}
.fn__bp_slider .bp_slider_in{
	position: relative;
}
.fn__bp_slider .slider_nav{
	position: absolute;
	top: 50%;
	margin-top: -40px;
	width: 60px;
	height: 60px;
	background-color: #fff;
	display: block;
	z-index: 5;
	border-radius: 100%;
	border: 4px solid #000;
}
.fn__bp_slider .slider_nav.prev{
	left: -24px;
}
.fn__bp_slider .slider_nav.next{
	right: -24px;
}
.fn__bp_slider .slider_nav .fn__svg{
	width: 24px;
	height: 24px;
	display: block;
	position: absolute;
	top: 50%;
	left: 50%;
	margin: -12px 0 0 -12px;
	color: #000;
}
.fn__bp_slider .slider_nav.prev .fn__svg{
	transform: rotate(180deg);
}
.fn__bp_slider .item{
	overflow: hidden;
}
.fn__bp_slider .meta_holder{
	display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    justify-content: center;
}
.fn__bp_slider .img_wrap{
	position: relative;
}
.fn__bp_slider .img_holder{
	position: relative;
	width: 100%;
	height: 700px;
}
.fn__bp_slider .typ_title{
	color: #131212;
    font-weight: 600;
    font-size: 300px;
    line-height: 1;
	margin: 0;
	padding: 0;
}
.fn__bp_slider .typ_overlay{
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	top: 0;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-ms-align-items: center;
	align-items: center;
	justify-content: center;
	background-color: #e3efee;
	padding-bottom: 110px;
}
.fn__bp_slider .abs_img{
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	top: 0;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
} 
.fn__bp_slider .title_holder{
	width: 860px;
	margin: 0 auto;
	max-width: 90%;
	margin-top: -100px;
	position: relative;
	z-index: 3;
	background-color: #fff;
	padding: 29px 20px;
	text-align: center;
	border-radius: 20px;
	border: 4px solid #000;
}
.fn__bp_slider .title_holder:after{
	position: absolute;
	width: 400px;
	height: 14px;
	background-color: #000;
	top: 100%;
	margin-top: -5px;
	border-radius: 14px;
	left: 50%;
	transform: translateX(-50%);
	max-width: 90%;
	content: '';
}
.fn__bp_slider .decor_left{
	position: absolute;
	left: 20px;
	bottom: 0;
}
.fn__bp_slider .decor_left .db_a{
	width: 2px;
	height: 12px;
	position: absolute;
	display: block;
	background-color: #000;
	bottom: 0;
	left: 0;
}
.fn__bp_slider .decor_left .db_b{
	width: 2px;
	height: 6px;
	position: absolute;
	display: block;
	background-color: #000;
	bottom: 0;
	left: 12px;
}
.fn__bp_slider .decor_left .db_c{
	width: 2px;
	height: 12px;
	position: absolute;
	display: block;
	background-color: #000;
	bottom: 0;
	left: 24px;
}
.fn__bp_slider .decor_left .db_d{
	width: 2px;
	height: 6px;
	position: absolute;
	display: block;
	background-color: #000;
	bottom: 0;
	left: 36px;
}
.fn__bp_slider .decor_left .db_e{
	width: 2px;
	height: 12px;
	position: absolute;
	display: block;
	background-color: #000;
	bottom: 0;
	left: 48px;
}
.fn__bp_slider .decor_left .db_f{
	width: 2px;
	height: 6px;
	position: absolute;
	display: block;
	background-color: #000;
	bottom: 0;
	left: 60px;
}
.fn__bp_slider .decor_right{
	position: absolute;
	right: 20px;
	bottom: 0;
}
.fn__bp_slider .decor_right .db_a{
	width: 2px;
	height: 12px;
	position: absolute;
	display: block;
	background-color: #000;
	bottom: 0;
	right: 0;
}
.fn__bp_slider .decor_right .db_b{
	width: 2px;
	height: 6px;
	position: absolute;
	display: block;
	background-color: #000;
	bottom: 0;
	right: 12px;
}
.fn__bp_slider .decor_right .db_c{
	width: 2px;
	height: 12px;
	position: absolute;
	display: block;
	background-color: #000;
	bottom: 0;
	right: 24px;
}
.fn__bp_slider .decor_right .db_d{
	width: 2px;
	height: 6px;
	position: absolute;
	display: block;
	background-color: #000;
	bottom: 0;
	right: 36px;
}
.fn__bp_slider .decor_right .db_e{
	width: 2px;
	height: 12px;
	position: absolute;
	display: block;
	background-color: #000;
	bottom: 0;
	right: 48px;
}
.fn__bp_slider .decor_right .db_f{
	width: 2px;
	height: 6px;
	position: absolute;
	display: block;
	background-color: #000;
	bottom: 0;
	right: 60px;
}
@media(min-width:769px){
	.fn__bp_slider .title_in .img_wrap{
		display: none;
	}
}
.fn__bp_slider .title_holder h3{
	margin: 0;
	padding: 0;
	font-size: 36px;
	font-weight: 900;
	line-height: 1.2;
	overflow: hidden;
	margin-bottom: 10px;
}
.fn__bp_slider .title_holder h3 a{
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.fn__bp_slider.slider_layout_modern{
	padding: 0;
}
.fn__bp_slider .item_modern .img_wrap{
	padding: var(--guff-border);
}
.fn__bp_slider .item_modern{
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	margin: -moz-calc(var(--guff-border) * (-1));
	margin: -webkit-calc(var(--guff-border) * (-1));
	margin: -o-calc(var(--guff-border) * (-1));
	margin: calc(var(--guff-border) * (-1));
	border: var(--guff-border) solid #000;
}
.fn__bp_slider .item_modern .meta__date{
	font-size: 16px;
	letter-spacing: .25px;
	text-transform: uppercase;
	font-family: var(--hff);
	font-weight: 600;
}
.fn__bp_slider .item_modern .item_lt{
	flex: 57;
	border-bottom: -moz-calc(var(--guff-border) / 2) solid #000;
	border-bottom: -webkit-calc(var(--guff-border) / 2) solid #000;
	border-bottom: -o-calc(var(--guff-border) / 2) solid #000;
	border-bottom: calc(var(--guff-border) / 2) solid #000;
	padding: 40px;
	text-align: center;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	justify-content: center;
	-ms-align-items: center;
	align-items: center;
	-webkit-flex-direction: column;
	-moz-flex-direction: column;
	-ms-flex-direction: column;
	-o-flex-direction: column;
	flex-direction: column;
}
.fn__bp_slider .item_modern h3:hover .title_decor:after{
	transform: rotate(-20deg);
}
.fn__bp_slider .item_modern h3:hover .title_decor:before{
	transform: rotate(20deg);
}
.fn__bp_slider .item_modern .title_decor{
	position: relative;
	width: 100%;
	height: 14px;
	display: block;
	margin-bottom: 15px;
}
.fn__bp_slider .item_modern .title_decor:after,
.fn__bp_slider .item_modern .title_decor:before{
	content: '';
	position: absolute;
	width: 60px;
	height: 4px;
	background-color: #000;
	margin-left: -30px;
	transition: all .3s ease;
}
.fn__bp_slider .item_modern .title_decor:before{
	left: 50%;
	top: 5px;
	transform: rotate(10deg);
}
.fn__bp_slider .item_modern .title_decor:after{
	left: 50%;
	top: 5px;
	transform: rotate(-10deg);
}
.fn__bp_slider .item_modern h3{
	margin: 0;
    padding: 0;
    font-size: 36px;
    font-weight: 900;
    margin-bottom: 8px;
}
.fn__bp_slider .item_modern h3 a{
	overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
}
.fn__bp_slider .item_modern p{
	margin: 0;
    padding: 0;
    font-weight: 500;
    margin-bottom: 17px;
	overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
}
.fn__bp_slider .item_modern .item_lb{
	flex: 43;
	position: relative;
	border-top: -moz-calc(var(--guff-border) / 2) solid #000;
	border-top: -webkit-calc(var(--guff-border) / 2) solid #000;
	border-top: -o-calc(var(--guff-border) / 2) solid #000;
	border-top: calc(var(--guff-border) / 2) solid #000;
}
.fn__bp_slider .item_modern .item_l{
	flex: 0.99;
	border-right: -moz-calc(var(--guff-border) / 2) solid #000;
	border-right: -webkit-calc(var(--guff-border) / 2) solid #000;
	border-right: -o-calc(var(--guff-border) / 2) solid #000;
	border-right: calc(var(--guff-border) / 2) solid #000;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	position: relative;
	-webkit-flex-direction: column;
	-moz-flex-direction: column;
	-ms-flex-direction: column;
	-o-flex-direction: column;
	flex-direction: column;
}
.fn__bp_slider .item_modern .item_r{
	flex: 2;
	border-left: -moz-calc(var(--guff-border) / 2) solid #000;
	border-left: -webkit-calc(var(--guff-border) / 2) solid #000;
	border-left: -o-calc(var(--guff-border) / 2) solid #000;
	border-left: calc(var(--guff-border) / 2) solid #000;
}
.fn__bp_slider .item_modern .typ_overlay{
	padding-bottom: 0;
}
/*************************************************************************/
/* 28) Reactions
/*************************************************************************/
.guff_fn_reactions .reactions_list{
	display: grid;
    grid-template-columns: repeat(auto-fit,minmax(143px,1fr));
    grid-gap: 0 20px;
    justify-content: center;
    margin: 0;
    padding: 0;
}
a.guff_fn_reaction_btn{
	color: #000;
	margin-bottom: 35px;
	position: relative;
	z-index: 2;
	display: block;
}
a.guff_fn_reaction_btn:hover .obj_content{
	background-color: var(--guff-mc2);
	color: #fff;
}
a.guff_fn_reaction_btn .obj_content{
	padding: 0px 10px 10px;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-webkit-flex-direction: column;
	-moz-flex-direction: column;
	-ms-flex-direction: column;
	-o-flex-direction: column;
	flex-direction: column;
	-ms-align-items: center;
	align-items: center;
	background-color: #ecedcc;
	transition: all .3s ease;
}

a.guff_fn_reaction_btn img{
	width: 50px;
	height: 50px;
	object-fit: contain;
	margin-bottom: 11px;
}
a.guff_fn_reaction_btn .count{
	font-size: 18px;
	font-weight: 900;
	font-family: var(--hff);
	margin: 0;
	margin-bottom: 7px;
	white-space: nowrap;
	display: block;
}
a.guff_fn_reaction_btn .text_holder span{
    background-color: var(--guff-mc1);
    border-top: none;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
	display: block;
    padding: 0 20px;
	padding-top: 1px;
    font-size: 11px;
    font-weight: 900;
    font-family: var(--hff);
    letter-spacing: 0;
    text-transform: uppercase;
    color: #000;
    text-align: center;
	position: relative;
	z-index: 2;
	transform: rotate(2deg);
    border-radius: 20px;
    line-height: 22px;
    border: 3px solid #000;
}
a.guff_fn_reaction_btn .text_holder{
	height: 30px;
    display: block;
    margin-top: -17px;
	margin-bottom: 20px;
	width: 90%;
	position: relative;
}
a.guff_fn_reaction_btn .text_holder:after{
	content: '';
	position: absolute;
	left: 0px;
	right: 0px;
	bottom: 0px;
	top: 0px;
	background-color: #000;
	border-radius: 20px;
	transform: rotate(-2deg);
	z-index: 1;
	display: block;
}
a.guff_fn_reaction_btn.active:hover .obj_content{
	color: #000;
}
a.guff_fn_reaction_btn.active .obj_content{
	background-color: var(--guff-mc1);
}
a.guff_fn_reaction_btn.active img{
	-webkit-animation-duration: .7s;
	animation-duration: .7s;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
	-webkit-animation-timing-function: ease-in-out;
	animation-timing-function: ease-in-out;
	-webkit-animation-name: headShake;
	animation-name: headShake;
}
@keyframes headShake {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  6.5% {
    -webkit-transform: translateX(-6px) rotateY(-9deg);
    transform: translateX(-6px) rotateY(-9deg);
  }

  18.5% {
    -webkit-transform: translateX(5px) rotateY(7deg);
    transform: translateX(5px) rotateY(7deg);
  }

  31.5% {
    -webkit-transform: translateX(-3px) rotateY(-5deg);
    transform: translateX(-3px) rotateY(-5deg);
  }

  43.5% {
    -webkit-transform: translateX(2px) rotateY(3deg);
    transform: translateX(2px) rotateY(3deg);
  }

  50% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes reaction_animation{
	0%{
		transform: rotate(0deg) scale(1)
	}
	50%{
		transform: rotate(180deg) scale(1.4)
	}
	100%{
		transform: rotate(0deg) scale(1)
	}
}
/*************************************************************************/
/* 29) Votes
/*************************************************************************/
.guff_fn_votes:after,
.guff_fn_votes:before{
	clear: both;
	display: table;
	content: '';
}
.guff_fn_votes{
	border-radius: 30px;
	border: 4px solid #000;
	background-color: #000;
	cursor: pointer;
}
.guff_fn_votes .vote_top{
	width: 100%;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	position: relative;
	justify-content: space-between;
}
.guff_fn_votes .result_vote{
	position: relative;
	width: 24%;
	padding: 0 4px;
	height: 52px;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-webkit-flex-direction: column;
	-moz-flex-direction: column;
	-ms-flex-direction: column;
	-o-flex-direction: column;
	flex-direction: column;
	justify-content: center;
	-ms-align-items: center;
	align-items: center;
	font-family: var(--hff);
	font-weight: 900;
	color: #fff;
	line-height: 1;
}
.guff_fn_votes .result_vote .action{
	width: 30px;
    height: 30px;
    position: absolute;
    top: 50%;
    margin-top: -15px;
    left: 50%;
    margin-left: -15px;
    background-color: var(--guff-mc1);
    border-radius: 100%;
    color: #000;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
	-ms-align-items: center;
	align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 600;
	opacity: 0;
	text-align: center;
}
.guff_fn_votes.down_action .result_vote .action{
	animation: guff_fn_down 1s ease-in-out forwards;
}
.guff_fn_votes.up_action .result_vote .action{
	animation: guff_fn_up 1s ease-in-out forwards;
}
@keyframes guff_fn_down{
	0%{
		opacity: 1;
	}
	100%{
		opacity: 0;
		transform: translateY(100%);
	}
}
@keyframes guff_fn_up{
	0%{
		opacity: 1;
	}
	100%{
		opacity: 0;
		transform: translateY(-100%);
	}
}
.guff_fn_votes .count{
	font-size: 24px;
	font-weight: 900;
	letter-spacing: 0;
	margin-bottom: 3px;
}
.guff_fn_votes .text{
	font-size: 11px;
	letter-spacing: .5px;
	text-transform: uppercase;
}
.guff_fn_votes .vote_top a{
	width: 300px;
	max-width: 38%;
	display: block;
	height: 52px;
	text-decoration: none;
	border-radius: 26px;
	background-color: var(--guff-mc2);
	position: relative;
}
.guff_fn_votes .vote_top a span{
	position: absolute;
	width: 100%;
	text-align: center;
	left: 0;
	right: 0;
	top: 50%;
	display: block;
	padding: 0 10px;
	font-family: var(--hff);
	font-size: 11px;
	text-transform: uppercase;
	color: #fff;
	font-weight: 600;
	opacity: 0;
	transition: all .3s ease;
	transform: translateY(-4px);
	line-height: 1;
}
.guff_fn_votes .vote_top .guff_fn_vote_up:hover:after{
	transform: translateY(-7px);
}
.guff_fn_votes .vote_top .guff_fn_vote_up:hover span{
	transform: translateY(2px);
	opacity: 1;
}
.guff_fn_votes .vote_top .guff_fn_vote_down span{
	top: auto;
	bottom: 50%;
	transform: translateY(5px);
}
.guff_fn_votes .vote_top .guff_fn_vote_down:hover:after{
	transform: translateY(7px);
}
.guff_fn_votes .vote_top .guff_fn_vote_down:hover span{
	transform: translateY(-1px);
	opacity: 1;
}
.guff_fn_votes.down_action .guff_fn_vote_down:after{
	opacity: .5;
}
.guff_fn_votes.up_action .guff_fn_vote_up:after{
	opacity: .5;
}
.guff_fn_vote_up:after{
	content: '';
	position: absolute;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 0 7px 8px 7px;
	border-color: transparent transparent #fff transparent;
	left: 50%;
	top: 50%;
	margin: -4px 0 0 -7px;
	transition: all .3s ease;
}
.guff_fn_vote_down:after{
	content: '';
	position: absolute;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 8px 7px 0 7px;
	border-color: #fff transparent transparent transparent;
	left: 50%;
	top: 50%;
	margin: -4px 0 0 -7px;
	transition: all .3s ease;
}
.guff_fn_votes .vote_info{
	display: none;
	overflow: hidden;
	font-size: 14px;
	color: #fff;
	margin: 0;
	padding: 21px 10px 15px;
	text-align: center;
}
/*************************************************************************/
/* 30) Footer Subscribe Form
/*************************************************************************/
div.wpforms-container-full .wpforms-form .wpforms-submit-spinner{
	position: absolute;
	top: 100%;
	right: 0;
	margin-top: 6px;
}
.footer_subscribe_form{
	background-color: #ecedcc;
	border-radius: 20px;
	padding: 73px 90px 80px;
	position: relative;
	text-align: center;
}
.footer_subscribe_form .form_decor{
	pointer-events: none;
}
.footer_subscribe_form .decor_top{
	display: block;
	top: 40px;
	left: 20px;
	height: 3px;
	background-color: #000;
	position: absolute;
	right: 134px;
}
.footer_subscribe_form .decor_right:after{
	content: '';
	position: absolute;
	width: 3px;
	display: block;
	background-color: #000;
	top: 40px;
	bottom: 20px;
	right: 40px;
}
.footer_subscribe_form .decor_right:before{
	content: '';
	position: absolute;
	width: 3px;
	height: 100px;
	display: block;
	background-color: #000;
	bottom: 30px;
	right: 53px;
}
.footer_subscribe_form .decor_bottom{
	display: block;
	bottom: 40px;
	right: 20px;
	height: 3px;
	background-color: #000;
	position: absolute;
	left: 134px;
}
.footer_subscribe_form .decor_left:after{
	content: '';
	position: absolute;
	width: 3px;
	display: block;
	background-color: #000;
	bottom: 40px;
	top: 20px;
	left: 40px;
}
.footer_subscribe_form .decor_left:before{
	content: '';
	position: absolute;
	width: 3px;
	height: 100px;
	display: block;
	background-color: #000;
	top: 30px;
	left: 53px;
}
.footer_subscribe_form .top_plane .fn__svg{
	width: 40px;
	height: 40px;
	display: block;
	color: #000;
	position: absolute;
	top: 25px;
	right: 69px;
}
.footer_subscribe_form .bottom_plane .fn__svg{
	width: 40px;
	height: 40px;
	display: block;
	color: #000;
	position: absolute;
	bottom: 25px;
	left: 69px;
}
.footer_subscribe_form .fsf_title{
	margin: 0;
	padding: 0;
	font-weight: 900;
	font-size: 30px;
	line-height: 40px;
	text-transform: uppercase;
	margin-bottom: 9px;
}
.footer_subscribe_form .fsf_desc{
	margin: 0;
	padding: 0;
	font-weight: 500;
	margin-bottom: 19px;
	color: #000;
}
.footer_subscribe_form div.wpforms-container-full{
	margin: 0;
}
.footer_subscribe_form div.wpforms-container-full .wpforms-form .wpforms-field{
	margin: 0;
	padding: 0;
	position: relative;
}
.footer_subscribe_form div.wpforms-container-full .wpforms-form .wpforms-submit-container{
	margin: 0;
	padding: 0;
}
.footer_subscribe_form input[type=email],
.footer_subscribe_form div.wpforms-container-full .wpforms-form input[type=email]{
	margin: 0;
	width: 100%;
    color: #000;
    height: 60px;
    background-color:#fff!important;
    padding: 0 26px;
    border-radius: 30px!important;
    outline: none;
    max-width: 100%;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0;
    font-style: normal;
    font-family: var(--hff);
	border: 5px solid #000;
	margin-bottom: 10px;
	text-align: center;
}
.footer_subscribe_form input[type=submit],
.footer_subscribe_form div.wpforms-container-full .wpforms-form input[type=submit],
.footer_subscribe_form div.wpforms-container-full .wpforms-form button[type=submit],
.footer_subscribe_form div.wpforms-container-full .wpforms-form .wpforms-page-button{
	height: 60px;
    background-color: var(--guff-mc2) !important;
    color: #fff;
    font-family: var(--hff);
    font-weight: 600;
    font-size: 18px;
    text-transform: uppercase;
    outline: none;
    padding: 0 30px;
    border: 4px solid #000 !important;
    cursor: pointer;
    border-radius: 30px;
    margin-left: 0;
	letter-spacing: 0.5px;
	width: 100%;
}
.footer_subscribe_form div.wpforms-container-full .wpforms-form label.wpforms-error{
	position: absolute;
	left: 0;
	top: 100%;
	color: #000;
	font-weight: 500;
	margin-top: 6px;
}
.footer_subscribe_form .wpforms-confirmation-container-full,
.footer_subscribe_form div[submit-success]>.wpforms-confirmation-container-full:not(.wpforms-redirection-message){
	background-color: #fff;
	border: none;
	border-left: 10px solid #000;
	color: #000;
	margin: 0;
}
.footer_subscribe_form input[type=submit]:hover,
.footer_subscribe_form div.wpforms-container-full .wpforms-form input[type=submit]:hover,
.footer_subscribe_form div.wpforms-container-full .wpforms-form button[type=submit]:hover,
.footer_subscribe_form div.wpforms-container-full .wpforms-form .wpforms-page-button:hover{
	background-color: #000 !important;
	-webkit-mask-image: linear-gradient(-75deg, rgba(0,0,0,.6) 30%, #000 50%, rgba(0,0,0,.6) 70%);
	-webkit-mask-size: 200%;
	animation: shine 2s infinite;
}
.footer_subscribe_form .wpforms-field-container{
	flex: 1;
}
.footer_subscribe_form .mc4wp-response p{
	margin: 0 auto;
	padding: 0;
	font-weight: 500;
	text-align: center;
	max-width: 500px;
}
.footer_subscribe_form .icon_decor{
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 4px;
	overflow: hidden;
}
.footer_subscribe_form .icon_decor:after{
	content: '';
	position: absolute;
	height: 100%;
	right: 50%;
	margin-right: 115px;
	left: 100px;
	background-color: #000;
    -webkit-mask-image: url(framework/svg/wave.svg);
	-webkit-mask-size: contain;
}
.footer_subscribe_form .icon_decor:before{
	content: '';
	position: absolute;
	height: 100%;
	left: 50%;
	margin-left: 115px;
	right: 100px;
	background-color: #000;
    -webkit-mask-image: url(framework/svg/wave.svg);
	-webkit-mask-size: contain;
}
/*************************************************************************/
/* 31) Magic Cursor
/*************************************************************************/
body.elementor-editor-active .frenify-cursor{
	display: none;
}
.frenify-cursor[data-default="no"]{opacity: 0;}
.frenify-cursor[data-default="no"].cursor-inner{
	transition: opacity .3s ease;
}
.frenify-cursor[data-default="no"].cursor-inner.cursor-hover,
.frenify-cursor[data-default="no"].cursor-inner.cursor-slider{opacity: 1;}
.frenify-cursor[data-link="no"].cursor-inner.cursor-hover{opacity: 0;}
.frenify-cursor[data-slider="no"].cursor-inner.cursor-slider{opacity: 0;}
.frenify-cursor{
	position: fixed;
    left: 0;
    top: 0;
    pointer-events: none;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    visibility: hidden;
}
.frenify-cursor.mouse-down .fn-cursor{
	transform: scale(.9);
}
@media(max-width: 1040px){
	.frenify-cursor{display: none;}
}
.cursor-link{
    width: 30px;
    height: 30px;
	margin-left: -15px;
    margin-top: -15px;
    border: 2px solid rgba(0,0,0,.5);
    z-index: 10000000;
    -webkit-transition: all .08s ease-out;
    transition: all .08s ease-out;
}
.cursor-outer{
    z-index: 10000000;
    -webkit-transition: transform .08s ease-out, opacity 1s ease;
    transition: transform .08s ease-out, opacity 1s ease;
}
.cursor-outer .fn-cursor{
	position: absolute;
	top: 50%;
	left: 50%;
	margin: -15px 0 0 -15px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 2px solid rgba(0,0,0,.5);
}
.cursor-inner .fn-cursor{
	pointer-events: none;
	position: absolute;
	top: 50%;
	left: 50%;
	margin: -3px 0 0 -3px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
	background-color: rgba(0,0,0,.5);
    -webkit-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
}
.cursor-outer.cursor-slider,
.cursor-outer.cursor-hover{
	opacity: 0;
    -webkit-transition: transform .08s ease-out, opacity .2s ease;
    transition: transform .08s ease-out, opacity .2s ease;
}
.cursor-inner{
    z-index: 10000001;
}
.cursor-inner.cursor-hover .fn-cursor{
	margin: -40px 0 0 -40px;
	width: 80px;
	height: 80px;
	background-color: rgba(0,0,0,.1);
}
.cursor-inner.cursor-slider:not(.cursor-hover) .fn-cursor{
	margin-left: -30px;
	margin-top: -30px;
	width: 60px;
	height: 60px;
	background-color: transparent;
	border: 5px solid rgba(0,0,0,.5);
}
.cursor-inner.cursor-slider.cursor-hover span:after,
.cursor-inner.cursor-slider.cursor-hover span:before{
	background-color: #fff;
}
.cursor-inner.cursor-slider .fn-left,
.cursor-inner.cursor-slider .fn-right{
	opacity: 1;
	visibility: visible;
}
.cursor-inner.cursor-slider .fn-left:after{left: -26px;}
.cursor-inner.cursor-slider .fn-left:before{left: -26px;}
.cursor-inner.cursor-slider .fn-right:after{right: -26px;}
.cursor-inner.cursor-slider .fn-right:before{right: -26px;}

.cursor-inner .fn-left,
.cursor-inner .fn-right{
	opacity: 0;
	visibility: hidden;
	transition: all .3s ease;
}
.cursor-inner .fn-left:after{
	content: '';
	position: absolute;
	width: 2px;
	height: 12px;
	transform: rotate(50deg);
	left: -20px;
	top: 50%;
	margin-top: -10px;
	background-color: rgba(0,0,0,.5);
	transition: all .3s ease;
}
.cursor-inner .fn-left:before{
	content: '';
	position: absolute;
	width: 2px;
	height: 12px;
	transform: rotate(130deg);
	left: -20px;
	top: 50%;
	margin-top: -2px;
	background-color: rgba(0,0,0,.5);
	transition: all .3s ease;
}
.cursor-inner .fn-right:after{
	content: '';
	position: absolute;
	width: 2px;
	height: 12px;
	transform: rotate(50deg);
	right: -20px;
	top: 50%;
	margin-top: -2px;
	background-color: rgba(0,0,0,.5);
	transition: all .3s ease;
}
.cursor-inner .fn-right:before{
	content: '';
	position: absolute;
	width: 2px;
	height: 12px;
	transform: rotate(130deg);
	right: -20px;
	top: 50%;
	margin-top: -10px;
	background-color: rgba(0,0,0,.5);
	transition: all .3s ease;
}
/*************************************************************************/
/* 32) Author Archive Page
/*************************************************************************/
body.archive.author{
	overflow: visible;
}
.author__widget{
	width: 100%;
	position: relative;
	padding-bottom: 38px;
}
.guff_fn_hassidebar .author__widget .wid-title .text{
	margin-top: 0;
}
.author__widget .info_img{
	width: 240px;
	height: 240px;
	border-radius: 100%;
	border: 4px solid #000;
	overflow: hidden;
	margin-bottom: 23px;
	position: relative;
}
.author__widget .info_img .abs_img{
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;
}
.author__widget .info_img img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.author__widget .ai_in{
	background-color: #fff;
    padding: 36px 26px;
    border: 4px solid #000;
    border-radius: 30px;
}
.author__widget .fn_title{
	margin: 0;
    padding: 0;
    font-weight: 900;
    font-size: 30px;
    line-height: 40px;
    text-align: center;
    margin-bottom: 9px;
}
.author__widget .author_top{
	margin-bottom: 13px;
}
.author__widget .info_desc > *:last-child,
.author__widget .author_top > *:last-child{
	margin-bottom: 0;
}
.author__widget .author_social{
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	margin: 0;
	flex-wrap: wrap;
	padding: 0;
	list-style-type: none;
	justify-content: center;
	margin-left: -15px;
}
.author__widget .author_social li{
	margin: 5px 0px 5px 15px;
}
.author__widget .author_social a{
	display: block;
	font-size: 22px;
	color: #000;
}
.author__widget .author_social a .fn__svg{
	width: 22px;
	height: 22px;
	display: block;
}
.author__widget .author_social a:hover{
	-webkit-mask-image: linear-gradient(-75deg, rgba(0,0,0,.6) 30%, #000 50%, rgba(0,0,0,.6) 70%);
	-webkit-mask-size: 200%;
	animation: shine 2s infinite;
}
.author__widget .author_social i:before{
	width: auto;
	margin: 0;
	padding: 0;
	display: block;
}
.author__widget p{
	margin: 0;
	padding: 0;
	font-weight: 500;
}


/*************************************************************************/
/* 33) Contact Page
/*************************************************************************/
.fn__contact{
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	flex-wrap: wrap;
	margin-left: -20px;
}
.fn__contact > div{
	padding-left: 20px;
	margin-bottom: 20px;
	width: 100%;
}
.fn__contact .half_item{
	width: 50%;
}
.fn__contact p{
	margin: 0;
	padding: 0;
}
.fn__contact input{
	max-width: 100%;
}
.fn__contact input[type=number],
.fn__contact input[type=email], 
.fn__contact input[type=url], 
.fn__contact input[type=search], 
.fn__contact input[type=tel], 
.fn__contact input[type=color], 
.fn__contact input[type=text],
.fn__contact input[type=password], 
.fn__contact input[type=datetime], 
.fn__contact input[type=datetime-local], 
.fn__contact input[type=date], 
.fn__contact input[type=month], 
.fn__contact input[type=time], 
.fn__contact input[type=week]{
	height: 60px;
	padding: 0 26px;
	border-radius: 30px;
	display: block;
	width: 100%;
	min-width: 100%;
	background-color: #f5eff9;
	font-size: 18px;
	font-weight: 600;
	color: #000;
	font-family: var(--hff);
}
.fn__contact textarea{
	padding: 21px 26px;
	border-radius: 30px;
	height: 250px;
	display: block;
	width: 100%;
	min-width: 100%;
	background-color: #f5eff9;
	font-size: 18px;
	font-weight: 600;
	color: #000;
	font-family: var(--hff);
}
.fn__contact .wpcf7-spinner{
	position: absolute;
    display: block;
    left: 50%;
    top: 50%;
    margin: -12px 0 0 -12px;
}




.fn_share_button{
	position: absolute;
	right: 25px;
	top: 25px;
	height: 42px;
	line-height: 42px;
	padding: 0 22px;
	font-size: 18px;
	font-weight: 900;
	text-transform: uppercase;
	font-family: var(--hff);
	cursor: pointer;
	color: #000;
}
.fn_share_button img.fn__svg{
	opacity: 0;
}
.fn_share_button .fn__svg{
	position: absolute;
	left: 0;
	top: 0;
	width: auto;
	height: auto;
	color: transparent;
}
.fn_share_button .ellipse_path{
	stroke-dasharray: 1000;
 	stroke-dashoffset: 1000;
	animation: dash 1.5s linear forwards;
	fill: transparent;
	stroke-width: 2px;
}
@keyframes dash {
	to {
		stroke-dashoffset: 0;
		fill: #000;
		stroke-width: 0px;
	}
}

/*************************************************************************/
/* 34) Responsive CSS (small devices)
/*************************************************************************/


@media(max-width: 1440px){
	.fn_cs_hosts .host_list_item{
		padding-left: 40px;
	}
	.fn_cs_hosts .host_list{
		margin-left: -40px;
	}
	.episode__item_beta{
		padding-left: 20px;
		padding-right: 20px;
	}
	.fn__episodes{
		margin-left: -40px;
	}
	.fn_cs_episodes .fn__episodes .e__item{
		padding-left: 40px;
	}
	.podcast_listed__item .list_in .fn_title{
		font-size: 24px;
	}
	.podcast_listed__item .list_in{
		padding-left: 305px;
	}
	.podcast_listed__item .abs_img{
		width: 250px;
		min-width: 250px;
	}
	.fn_cs_podcasts .podcast_list_item:after{
		width: 18px;
		left: 14px;
	}
	.fn_cs_podcasts .podcast_list{
		margin-left: -40px;
	}
	.fn_cs_podcasts .podcast_list_item{
		padding-left: 40px;
	}
	.fn_cs_episodes .more_posts a,
	.fn_cs_podcasts .more_posts a,
	.fn_cs_posts_layout_masonry .more_posts a{
		height: 60px;
		font-size: 18px;
		line-height: 51px;
	}
	.fn_cs_posts_layout_zeta .classic_item .img_overlay,
	.fn_cs_posts_layout_zeta .classic_item .typ_overlay{
		border-radius: 20px;
	}
	.fn_cs_posts_layout_zeta .classic_item:after{
		height: 3px;
	}
	.fn_cs_posts_layout_zeta .classic_item .img_holder{
		margin-right: 20px;
		margin-left: 0;
	}
	.fn_cs_posts_layout_zeta[data-reverse="enable"] .classic_item:nth-of-type(2n+1) .img_holder,
	.fn_cs_posts_layout_zeta[data-reverse="disable"] .classic_item:nth-of-type(2n) .img_holder{
		margin-left: 20px;
		margin-right: 0;
	}
	.fn_cs_posts_layout_zeta .classic_item .fn_title{
		font-size: 24px;
	}
	.fn_cs_posts_layout_zeta .classic_item .img_overlay img{
		display: block;
	}
	.fn_cs_posts_layout_zeta .top_item .img_overlay,
	.fn_cs_posts_layout_zeta .top_item .typ_overlay{
		border-radius: 30px;
	}
	.fn_cs_posts_layout_zeta .top_item .title_holder{
		left: 30px;
		right: 30px;
		bottom: 30px;
	}
	.fn_cs_posts_layout_zeta .top_item .fn_bg_subtitle span{
		height: 43px;
		line-height: 43px;
		padding: 0 15px;
		font-size: 18px;
	}
	.fn_cs_posts_layout_zeta .post_wrapper{
		padding-left: 20px;
		padding-right: 20px;
	}
	.fn_cs_posts_layout_zeta .classic_item .img_holder{
		width: 200px;
		min-width: 200px;
	}
	.fn_cs_posts_layout_zeta .top_item .img_overlay img{
		aspect-ratio: 5 / 6;
	}
	.fn_cs_posts_layout_zeta .top_item .fn_title a{
		font-size: 30px;
		line-height: 1.3;
	}
	.fn_cs_posts_layout_delta .first_col .obj_content{
		height: 720px;
	}
	.fn_cs_posts_layout_delta .other_item{
		margin-bottom: 10px;
	}
	.fn_cs_posts_layout_delta .first_col .item_decor{
		width: 40px;
	}
	.fn_cs_posts_layout_delta .second_col .decor_btwn .fn__svg{
		height: 30px;
	}
	.fn_cs_posts_layout_delta .first_col .item_decor:before{
		width: 16px;
		margin-left: -8px;
	}
	.fn_cs_posts_layout_epsilon .first_col .fn_title a,
	.fn_cs_posts_layout_delta .first_col .fn_title a{
		font-size: 40px;
		line-height: 1.3;
	}
	.fn_cs_posts_layout_epsilon .post_wrapper,
	.fn_cs_posts_layout_delta .post_wrapper{
		column-gap: 40px;
	}
	.fn_cs_posts_layout_gamma .post_wrapper{
		margin-left: -40px;
	}
	.fn_cs_posts_layout_gamma .item_wrapper{
		padding-left: 40px;
	}
	.fn__blog_list_layout_masonry .post_item{padding-left: 40px;margin-bottom: 40px;}
	.fn__blog_list_layout_masonry{margin-left: -40px;}
	.guff_fn_pagetitle .fn__title{font-size: 60px;}
	.guff_fn_leftsidebar{padding-left: 40px;}
	.guff_fn_rightsidebar{padding-left: 40px;}
	.guff_fn_hassidebar .sidebarpage{
		margin-left: -40px;
		padding: 0 40px;
	}
	
	.fn_cs_posts_layout_beta .fn_title,
	.fn_cs_posts_layout_eta .fn_title,
	.fn_cs_posts_layout_delta .classic_item .fn_title,
	.episode__item .e_title,
	.guff_fn_widget__articles .fn_title,
	.category__item .cat_title,
	.fn__ticker_list .post_title,
	.guff_fn_searchbox .search input,
	.guff_fn_searchbox .result_list .fn_title,
	.blog__item_list .typ_title,
	.guff_fn_widget_author .fn_title,
	.fn__short_meta,
	.fn__read_more a,
	.fn__full_meta .meta__time > span,
	.fn__full_meta .meta__page_views > span, 
	.fn__full_meta .meta__comment a,
	.guff_fn_pagetitle .fn__title,
	.blog__item_masonry .typ_title,
	.fn__full_meta .meta__author a,
	.blog__item_list .post__title,
	.fn__episodes_short_list .list__title .text span,
	.guff_fn_hassidebar .wid-title .text span,
	.widget_guff_custom_post .fn_title{
		font-weight: 700;
	}
	.guff_fn_author_info .info_img:after{
		height: 14px;
		margin-top: -7px;
	}
	
	.guff_fn_singlepost .post__header:before,
	.guff_fn_singlepost .post__header:after{
		width: 14px;
	}
	
	.fn__full_meta .meta__time .fn__svg, .fn__full_meta .meta__page_views .fn__svg, .fn__full_meta .meta__comment .fn__svg{
		width: 20px;
		height: 20px;
	}
	
	.fn__full_meta .meta__time > span, .fn__full_meta .meta__page_views > span, .fn__full_meta .meta__comment a{
		padding: 0 15px;
		font-size: 16px;
	}
	
	.fn__episodes_short_list .list__title .text span,
	.category__item .cat_title,
	.guff_fn_hassidebar .wid-title .text span{font-size: 20px;}
	
	.blog__item_masonry .post__title,
	.guff_fn_searchbox .result_list .fn_title,
	.blog__item_list .post__title,
	.guff_fn_widget_author .fn_title,
	.widget_guff_custom_post .fn_title{font-size: 26px;}
	
	.guff_fn_searchbox .result_info .submit_button{
		padding: 0 50px;
		height: 60px;
		border-width: 4px;
	}
	
	.blog__item_list .list_bottom_right:after{
		width: 3px;
		left: 22px;
	}
	.blog__item_list .list_bottom_right{
		padding-left: 70px;
	}
	.blog__item_list .list_in{
		padding-left: 330px;
	}
	.blog__item_list .fn__full_meta .meta__author a{
		padding-left: 40px;
	}
	.fn__blog_list_layout_list .post_item{
		margin-bottom: 40px;
	}
	.subscribe_enabled .guff_fn_footer .footer_right{
		width: 33.3333%;
	}
	.subscribe_enabled .guff_fn_footer .footer_left{
		width: 66.6666%;
		padding-right: 40px;
	}
	.guff_fn_footer{
		padding: 100px 40px;
	}
	.guff_fn_footer .footer_info[data-info="enable"] .info_left{
		padding-right: 62px;
	}
	.guff_fn_footer .footer_info[data-info="enable"] .info_left:after{
		right: 30px;
	}
	.footer_subscribe_form{
		padding-left: 60px;
		padding-right: 60px;
	}
	.fn_cs_catlist_alpha .cat_list{
		margin-left: -10px;
	}
	.fn_cs_catlist_alpha .cat_list .item_wrapper{
		margin: 0 0 10px 10px;
	}
	.fn_cs_catlist_alpha .cat_list .item{
		height: 60px;
		border-radius: 60px;
		line-height: 51px;
		padding-left: 25px;
		padding-right: 50px;
	}
	.fn_cs_catlist_alpha .cat_list .count{
		width: 40px;
		height: 40px;
		line-height: 41px;
		font-size: 20px;
		font-weight: 700;
		right: 5px;
		margin-top: -20px;
	}
	.category__item{
		border-radius: 60px;
		padding-left: 25px;
		padding-right: 5px;
	}
	.category__item .cat_title{
		line-height: 50px;
	}
	.category__item .cat_title .count{
		width: 40px;
		height: 40px;
		line-height: 41px;
		font-size: 20px;
		font-weight: 700;
	}
	.category__item .cat_title .name{
		max-width: calc(100% - 45px);
	}
	.wp-block-tag-cloud a, .tagcloud a{
		font-weight: 700;
		font-size: 16px !important;
	}
	.fn_cs_catlist_alpha .alpha_left{
		padding: 80px 40px;
		flex: 34;
	}
	.fn_cs_catlist_alpha .alpha_left .title_holder{
		padding: 0 40px;
	}
	.fn__episodes_short_list .list__title .text span,
	.fn_cs_posts_layout_beta .beta__title .text span,
	.guff_fn_hassidebar .wid-title .text span{
		height: 50px;
		line-height: 41px;
	}
	.guff_fn_leftsidebar .blog__item_classic .list_bottom{
		padding: 0 30px;
	}
	.guff_fn_episode_single .main__title,
	.guff_fn_leftsidebar .blog__item_classic .post__title{font-size: 40px;}
	.fn__bp_slider .item_modern h3{font-size: 30px;}
	.guff_fn_episode_single .desc_holder{
		padding: 60px 45px;
	}
	.guff_fn_podcast_single .post__header{
		padding: 80px 45px 60px;
	}
	.guff_fn_podcast_single .desc_holder{
		padding: 60px 45px;
	}
}
@media(max-width: 1200px){
	.fn_cs_episodes .fn__episodes .e__item{
		width: 50%;
	}
	.fn_cs_posts_layout_delta .first_col .item_decor{
		display: none;
	}
	.fn_cs_posts_layout_epsilon .post_wrapper,
	.fn_cs_posts_layout_delta .post_wrapper{
		-webkit-flex-direction: column;
		-moz-flex-direction: column;
		-ms-flex-direction: column;
		-o-flex-direction: column;
		flex-direction: column;
	}
	.fn_cs_posts_layout_epsilon .first_col,
	.fn_cs_posts_layout_delta .first_col{
		margin-bottom: 45px;
	}
	.fn_cs_posts_layout_gamma .item_wrapper{
		width: 50%;
	}
	.fn_cs_posts_layout_slider .title_holder .fn_bg_subtitle{
		padding-left: 0;
	}
	.fn_cs_posts_layout_slider .item_wrapper .item{
		width: 75%;
	}
	.fn_cs_posts_layout_slider .slider_nav{
		bottom: 0;
	}
	.fn_cs_posts_layout_slider .fn_bg_subtitle span{
		height: 43px;
		line-height: 43px;
		padding: 0 15px;
		font-size: 18px;
	}
	.fn_cs_posts_layout_slider .fn_title a{
		font-size: 30px;
		font-weight: 700;
		line-height: 1.3;
	}
	.guff_fn_podcast_single .post__header:before,
	.guff_fn_podcast_single .post__header:after,
	.guff_fn_episode_single .post__header:after,
	.guff_fn_episode_single .post__header:before{
		width: 13px;
	}
	.guff_fn_leftsidebar .fn__blog_list_layout_masonry .post_item{
		width: 100%;
	}
	.fn__linetitle h3,
	.guff_fn_singlepost .post__header .fn__maintitle{
		font-size: 36px;
	}
	.guff_fn_pnb .prev__item{
		padding-left: 40px;
	}
	.guff_fn_pnb .next__item{
		padding-right: 40px;
	}
	.guff_fn_singlepost .post_content,
	.guff_fn_reactions,
	.guff_fn_author_info{
		padding: 70px 40px;
	}
	.fn__full_meta .full_meta{
		padding-right: 0;
	}
	.fn__full_meta .has_not img{margin: 0;}
	.fn__full_meta .has_not{display: block;}
	.blog__item_list .fn__full_meta .meta_item .text{
		display: none;
	}
	.blog__item_list .list_bottom{
		-webkit-flex-direction: column;
		-moz-flex-direction: column;
		-ms-flex-direction: column;
		-o-flex-direction: column;
		flex-direction: column;
	}
	.blog__item_list .list_bottom_right:after{
		display: none;
	}
	.blog__item_list .list_bottom{
		padding-right: 20px;
	}
	.blog__item_list .list_bottom_right{
		padding-left: 0;
	}
	.subscribe_enabled .guff_fn_footer .footer_right{
		width: 100%;
		margin-bottom: 50px;
	}
	.subscribe_enabled .guff_fn_footer{
		-webkit-flex-direction: column-reverse;
		-moz-flex-direction: column-reverse;
		-ms-flex-direction: column-reverse;
		-o-flex-direction: column-reverse;
		flex-direction: column-reverse;
	}
	.subscribe_enabled .guff_fn_footer .footer_left{
		padding: 0;
		width: 100%;
	}
}
@media(max-width: 1200px){
	.fn_cs_catlist_alpha .alpha_left{
		flex: 50;
	}
	.fn_cs_catlist_alpha[data-post-switcher="enable"] .alpha_right{
		flex: 50;
		padding: 70px 40px 80px;
	}
	.fn_cs_catlist_alpha .alpha_left .post_item:before{
		display: none;
	}
}
@media(max-width: 1040px){
	.host__item .left_decor{
		display: none;
	}
	.guff_fn_pagetitle{
		padding-top: 70px;
	}
	.fn_cs_hosts .host_list_item{
		width: 50%;
	}
	.guff_fn_pnb .fn_title{
		font-size: 24px;
	}
	.guff_fn_singlepost{
		margin-top: 70px;
	}
	.fn_cs_catlist_beta .item{
		font-size: 40px;
	}
	.fn_cs_catlist_beta .item_wrapper{
		padding: 0 30px;
	}
	.fn__separator[data-style="full"]{
		height: 5px;
	}
	.fn__separator .left_sep_b,
	.fn__separator .right_sep_b{
		width: 45px;
	}
	.fn_cs_catlist_alpha[data-post-switcher="enable"] .cs_wrapper{
		-webkit-flex-direction: column;
		-moz-flex-direction: column;
		-ms-flex-direction: column;
		-o-flex-direction: column;
		flex-direction: column;
	}
	.guff_fn_full_page_template[data-page-style="contained"] .page_content,
	.guff_fn_podcast_single .desc_holder,
	.guff_fn_podcast_single .post__header{
		padding-left: 20px;
		padding-right: 20px;
	}
	.guff_fn_episode_single .desc_holder{
		padding-left: 25px;
		padding-right: 25px;
	}
	.guff_fn_episode_single .header_in{
		padding: 0 20px;
	}
	.fn_cs_posts_layout_beta .ts_icon,
	.fn_cs_posts_layout_beta .bs_icon,
	.guff_fn_widget__articles .ts_icon,
	.guff_fn_widget__articles .bs_icon{
		display: none;
	}
	.guff_fn_footer{
		padding: 80px 20px;
	}
	.guff_fn_hassidebar .sidebarpage{
		padding: 0 20px;
	}
	.fn__bp_slider .slider_nav.prev{
		left: -14px;
	}
	.fn__bp_slider .slider_nav.next{
		right: -14px;
	}
	.guff_fn_full_page_template .ls_content{
		padding-left: 20px;
		padding-right: 20px;
	}
	.respond_comment{
		padding-left: 30px;
		padding-right: 30px;
	}
	.guff_fn_hassidebar .widget_block{
		padding: 0 30px 30px;
	}
	.guff_fn_hassidebar .widget_block.widget-no-title{
		padding-top: 30px;
	}
	.fn__bp_slider .typ_title{
		font-size: 200px;
	}
	.fn__bp_slider .item_modern .typ_overlay{
		padding-bottom: 110px;
	}
	.fn__bp_slider .item_modern .item_lt{
		border-bottom: none;
		padding: 30px 20px 12px;
	}
	.fn__bp_slider .item_modern .item_r{
		border-left: none;
	}
	.fn__bp_slider .item_modern .desc{
		display: none;
	}
	.fn__bp_slider .item_modern .meta__date{
		display: none;
	}
	.fn__bp_slider .item_modern .item_l{
		border: none;
		position: absolute;
		left: -moz-calc(var(--guff-border) * 2);
		left: -webkit-calc(var(--guff-border) * 2);
		left: -o-calc(var(--guff-border) * 2);
		left: calc(var(--guff-border) * 2);
		right: -moz-calc(var(--guff-border) * 2);
		right: -webkit-calc(var(--guff-border) * 2);
		right: -o-calc(var(--guff-border) * 2);
		right: calc(var(--guff-border) * 2);
		bottom: -moz-calc(var(--guff-border) * 2);
		bottom: -webkit-calc(var(--guff-border) * 2);
		bottom: -o-calc(var(--guff-border) * 2);
		bottom: calc(var(--guff-border) * 2);
		z-index: 3;
		background-color: #fff;
	}
	.fn__bp_slider .item_modern .item_lb{
		display: none;
	}
	.post__header .typ_overlay .typ_title{
		font-size: 150px;
	}
	.guff_fn_banner__off_canvas{
		border-bottom: 4px solid #000;
	}
	.guff_fn_banner__header_below{
		margin-top: 40px;
		margin-bottom: 40px;
	}
	.guff_fn_mobnav{
		display: block;
	}
	.guff_fn_content{
/*		padding-top: 70px;*/
	}
	.guff_fn_hassidebar .sidebarpage{
		-webkit-flex-direction: column;
		-moz-flex-direction: column;
		-ms-flex-direction: column;
		-o-flex-direction: column;
		flex-direction: column;
	}
	.guff_fn_leftsidebar{
		width: 100%;
		padding-left: 20px;
	}
	.guff_fn_hassidebar .sidebarpage{
		margin-left: -20px;
	}
	.guff_fn_rightsidebar{
		width: 100%;
		padding-left: 20px;
	}
	#guff_fn_header,
	.guff_fn_stickynav{display: none !important;}
	
	
	.fn__blog_anchor{
		width: 300px;
	}
	.fn__blog_anchor .ba_content{
		padding-left: 20px;
		padding-right: 20px;
	}
	.author__widget{
		padding: 0px 40px 32px;
	}
	.page-template-default .guff_fn_leftsidebar .ls_content{
		padding: 40px;
	}
	.guff_fn_podcast_single .post__header:before,
	.guff_fn_podcast_single .post__header:after,
	.guff_fn_episode_single .post__header:before,
	.guff_fn_episode_single .post__header:after{
		display: none;
	}
	.fn_cs_posts_layout_alpha .top_posts{
		-webkit-flex-direction: column;
		-moz-flex-direction: column;
		-ms-flex-direction: column;
		-o-flex-direction: column;
		flex-direction: column;
	}
	.fn_cs_posts_layout_alpha .top_posts .item_wrapper{
		width: 100%;
	}
	.fn_cs_posts_layout_alpha .img_item{
		width: 100%;
	}
	.fn_cs_posts_layout_alpha .top_posts .abs_icon{
		display: none !important;
	}
}
@media(max-width: 830px){
	.fn_cs_posts_layout_alpha .img_item .obj_content,
	.fn_cs_catlist_alpha .alpha_left .img_holder,
	.fn_cs_posts_layout_gamma .img_item .obj_content{
		padding: 0 10px 10px;
	}
	.fn_cs_posts_layout_delta .first_col .obj_content,
	.fn_cs_posts_layout_epsilon .first_col .obj_content{
		padding: 0 10px 10px;
		height: calc(50vw + 10vh);
	}
	.fn_cs_posts_layout_delta .classic_item .obj_content{
		-webkit-flex-direction: column;
		-moz-flex-direction: column;
		-ms-flex-direction: column;
		-o-flex-direction: column;
		flex-direction: column;
	}
	.fn_cs_posts_layout_epsilon .first_col .fn_bg_subtitle span,
	.fn_cs_posts_layout_delta .first_col .fn_bg_subtitle span{
		height: 43px;
		line-height: 43px;
		padding: 0 15px;
		font-size: 18px;
	}
	.fn_cs_posts_layout_epsilon .first_col .fn_title a, .fn_cs_posts_layout_delta .first_col .fn_title a{
		font-size: 30px;
	}
	.fn_cs_catlist_alpha .cat_list .item_wrapper{
		width: 100%;
	}
	.fn_cs_catlist_alpha .cat_list .item{
		font-size: 18px;
	}
	.fn_cs_posts_layout_gamma .img_item .title_holder,
	.fn_cs_catlist_alpha .alpha_left .title_holder,
	.fn_cs_posts_layout_alpha .img_item .title_holder{
		margin-top: 30px;
		padding: 0;
	}
	
	.fn_cs_posts_layout_zeta .top_item .title_holder,
	.fn_cs_posts_layout_epsilon .first_col .title_holder,
	.fn_cs_posts_layout_delta .first_col .title_holder{
		position: relative;
		bottom: auto;
		left: auto;
		right: auto;
		margin-top: 30px;
	}
	.fn_cs_posts_layout_slider .item_wrapper .item{
		width: 100%;
	}
	.guff_fn_pnb .prev__item,
	.guff_fn_pnb .next__item{
		text-align: left;
		padding-left: 20px;
		padding-right: 20px;
	}
	.guff_fn_pnb .pnb__item{
		width: 100%;
	}
	.guff_fn_pnb{
		-webkit-flex-direction: column;
		-moz-flex-direction: column;
		-ms-flex-direction: column;
		-o-flex-direction: column;
		flex-direction: column;
	}
	.guff_fn_sharebox{
		position: fixed;
		top: 50px;
		left: 0;
		right: 0;
		width: 100%;
		max-width: 100%;
		z-index: 99;
		transform: translateY(50px);
	}
	.guff_fn_sharebox.opened{
		transform: translateY(0);
	}
	.guff_fn_sharebox ul{
		width: calc(100% - 50px);
		justify-content: center;
	}
	.fn_cs_episodes .fn__episodes .e__item{
		width: 100%;
	}
	.fn_cs_podcasts .podcast_list_item{
		width: 100%;
	}
	.fn__full_meta .meta__author a{
		padding-left: 15px;
		padding-right: 15px;
	}
	.fn_cs_posts_layout_zeta .classic_item:after{
		display: none;
	}
	.fn_cs_posts_layout_epsilon .classic_item .fn_title{
		font-size: 24px;
	}
	.fn_cs_posts_layout_delta .classic_item .img_holder{
		width: 200px;
		min-width: 200px;
	}
	.fn_cs_posts_layout_delta .classic_item .right_p{
		padding-top: 24px;
		padding-left: 20px;
	}
	.fn_cs_posts_layout_delta .classic_item .fn_title{
		font-size: 24px;
	}
	.fn_cs_catlist_alpha[data-post-switcher="enable"] .cs_wrapper{
		-webkit-flex-direction: column;
		-moz-flex-direction: column;
		-ms-flex-direction: column;
		-o-flex-direction: column;
		flex-direction: column;
	}
	.fn_cs_catlist_alpha[data-post-switcher="enable"] .alpha_right{
		padding-left: 20px;
		padding-right: 20px;
	}
	.fn_cs_posts_layout_gamma .item_wrapper{
		width: 100%;
	}
	.fn_cs_posts_layout_alpha .classic_item_wrapper{
		padding-bottom: 17px;
		padding-top: 16px;
		position: relative;
	}
	.fn_cs_posts_layout_alpha .classic_item .date{
		margin-bottom: 9px;
	}
	.fn_cs_posts_layout_alpha .classic_item .fn_title{
		margin-bottom: 11px;
	}
	.fn_cs_posts_layout_alpha .classic_item{
		-webkit-flex-direction: column;
		-moz-flex-direction: column;
		-ms-flex-direction: column;
		-o-flex-direction: column;
		flex-direction: column;
		-ms-align-items: flex-start;
		align-items: flex-start;
		position: static;
	}
	.fn_cs_posts_layout_alpha .classic_item .space{
		display: none;
	}
	.fn_cs_posts_layout_alpha .classic_item .fn__read_more{
		justify-content: flex-start;
	}
	.fn_cs_posts_layout_slider .obj_content{
		padding: 0 10px 10px 10px;
	}
	.fn_cs_posts_layout_slider .title_holder{
		position: relative;
		top: auto;
		transform: none;
		width: 100%;
		max-width: 100%;
		left: auto;
		margin: 0;
	}
	.fn_cs_posts_layout_slider{
		padding-bottom: 63px;
	}
	.guff_fn_full_page_template[data-page-style="contained"] .page_content{
		padding-left: 10px;
		padding-right: 10px;
	}
	.guff_fn_podcast_single .post__header{
		-webkit-flex-direction: column;
		-moz-flex-direction: column;
		-ms-flex-direction: column;
		-o-flex-direction: column;
		flex-direction: column;
	}
	.guff_fn_podcast_single .post__header_left{
		margin-bottom: 30px;
		width: 100%;
	}
	.guff_fn_podcast_single .post__header_right{
		padding-left: 0;
		width: 100%;
	}
	.podcast_listed__item .fn__categories{display: none;}
	.podcast_listed__item .item_bottom{
		padding-left: 20px;
		padding-right: 25px;
	}
	.podcast_listed__item .fn__mp3_item .fn_title{
		font-size: 20px;
	}
	.podcast_listed__item .fn__read_more{
		padding-left: 0;
	}
	.fn__mp3_item .guff_fn_audio_button{
		width: 60px;
		min-width: 60px;
		height: 60px;
		margin-right: 10px;
	}
	.fn__mp3_item .guff_fn_audio_button .fn__svg{
		width: 60px;
		height: 60px;
	}
	.fn__short_meta{font-size: 14px;}
	.podcast_listed__item .list_in{
		padding: 0 25px 30px 20px;
		display: -webkit-flex;
		display: -moz-flex;
		display: -ms-flex;
		display: -o-flex;
		display: flex;
		-webkit-flex-direction: column-reverse;
		-moz-flex-direction: column-reverse;
		-ms-flex-direction: column-reverse;
		-o-flex-direction: column-reverse;
		flex-direction: column-reverse;
	}
	.podcast_listed__item .blog__image{
		position: static;
		left: auto;
		margin-bottom: 30px;
	}
	.guff_fn_episode_single .main__title{
		font-size: 24px;
	}
	.guff_fn_audiobox{
		-webkit-flex-direction: column;
		-moz-flex-direction: column;
		-ms-flex-direction: column;
		-o-flex-direction: column;
		flex-direction: column;
	}
	.guff_fn_audiobox > *{
		width: 100%;
	}
	.guff_fn_audiobox .right_part{
		padding: 30px 40px;
		justify-content: flex-start;
	}
	.guff_fn_audiobox .left_part a{
		padding: 20px 40px;
	}
	.guff_fn_audiobox .right_part span{
		margin: 0 20px 10px 0;
	}
	.guff_fn_episode_single .decor_right .fn__svg{
		width: 60px;
	}
	.episode__item .img_holder{
		display: none;
	}
	.episode__item.fn__mp3_item .guff_fn_audio_button{
		position: relative;
		top: auto;
		right: auto;
		margin: 0;
	}
	.episode__item.fn__bordered_obj .obj_content{
		padding: 20px;
		-webkit-flex-direction: row;
		-moz-flex-direction: row;
		-ms-flex-direction: row;
		-o-flex-direction: row;
		flex-direction: row;
		height: auto;
	}
	.episode__item .item_left{
		position: relative;
		width: 90px;
		height: 80px;
		min-width: 90px;
		border: none;
		background-color: transparent;
	}
	.blog__item_masonry .list_bottom{
		padding: 0 20px;
	}
	.fn__blog_list_layout_masonry .post_item{
		width: 100%;
	}
	.blog__item_list .list_image{
		position: static;
		margin-bottom: 30px;
	}
	.blog__item_list .list_bottom{
		padding: 0 20px;
	}
	.blog__item_list .list_in{
		padding-left: 0;
		padding-top: 0;
		position: static;
		padding-bottom: 94px;
	}
	.blog__item_list .fn__full_meta .meta__author a{
		border-bottom-left-radius: 25px;
		padding: 0 20px;
	}
	.blog__item_list .fn__full_meta .full_meta{
		border-bottom-width: 0;
		border-left-width: 0;
		border-radius: 0 25px 0 25px;
	}
	.blog__item_list .fn__full_meta{
		position: absolute;
		bottom: 10px;
		left: 5px;
		max-width: calc(100% - 60px);
		margin-left: 0;
	}
	.blog__item_classic{
		padding-left: 20px;
		padding-right: 30px;
	}
	.guff_fn_leftsidebar .blog__item_classic .list_bottom,
	.blog__item_classic .list_bottom{
		padding: 0 20px;
	}
	.guff_fn_leftsidebar .blog__item_classic .post__title,
	.blog__item_classic .post__title{
		font-size: 30px;
	}
	.guff_fn_author_info .author_top[data-social="yes"]{
		margin-top: 1px;
		-webkit-flex-direction: column;
		-moz-flex-direction: column;
		-ms-flex-direction: column;
		-o-flex-direction: column;
		flex-direction: column;
		margin-bottom: 30px;
	}
	.guff_fn_author_info .social_list ul{
		justify-content: center;
	}
	.guff_fn_author_info .author_top[data-social="yes"] .fn_title{
		padding-right: 0px;
		width: 100%;
		text-align: center;
		margin-bottom: 5px;
	}
	.guff_fn_author_info .author_top[data-social="yes"] .social_list{
		padding-left: 0px;
		width: 100%;
	}
	.guff_fn_singlepost .post__header:before, .guff_fn_singlepost .post__header:after{
		display: none;
	}
	.guff_fn_singlepost .decor_right .fn__svg{
		width: 60px;
	}
	.guff_fn_singlepost .header_in{
		padding: 0 10px;
	}
	.fn__blog_list_layout_masonry .post_item{
		width: 100%;
	}
	.guff_fn_footer .footer_info[data-social="enable"]{
		-webkit-flex-direction: column;
		-moz-flex-direction: column;
		-ms-flex-direction: column;
		-o-flex-direction: column;
		flex-direction: column;
	}
	.guff_fn_footer .footer_info[data-info="enable"] .info_left{
		padding-right: 0;
		min-height: inherit;
		margin-bottom: 30px;
	}
	.guff_fn_footer .footer_info .info_left, .guff_fn_footer .footer_info .info_right{
		min-height: inherit;
	}
	.guff_fn_footer .footer_info[data-info="enable"] .info_left:after{
		display: none;
	}
	.guff_fn_pagination li span,
	.guff_fn_pagination li a{
		width: 50px;
		height: 50px;
		line-height: 50px;
		font-weight: 700;
		font-size: 20px;
	}
	.guff_fn_pagination .left_decor,
	.guff_fn_pagination .right_decor{
		display: none;
	}
	.guff_fn_pagination .pag_inner{
		padding: 0;
	}
	.guff_fn_totop{display: none;}
	.guff_fn_pagetitle .fn__title{
		font-size: 30px;
	}
	.guff_fn_protected .message_holder, .guff_fn_404 .message_holder{
		padding: 50px 20px;
	}
	.guff_fn_pagetitle .text{
		display: block;
	}
	.guff_fn_hassidebar .widget_block{
		padding: 0 20px 20px;
	}
	.guff_fn_hassidebar .widget_block.widget-no-title{
		padding-top: 20px;
	}
	.guff_fn_tshare > *:nth-child(2){margin-right: 0;}
	.post_title_holder .meta_holder{
		padding: 0
	}
	.guff_fn_tshare{
		-webkit-flex-direction: column;
		-moz-flex-direction: column;
		-ms-flex-direction: column;
		-o-flex-direction: column;
		flex-direction: column;
	}
	.single__content .post_content blockquote{
		padding-left: 60px;
		padding-right: 10px;
	}
	.single__content .post_content blockquote:after{
		width: 30px;
		left: 10px;
		height: 30px;
	}
	.guff_fn_searchbox .result_list .img_holder[data-has-image=""],
	.guff_fn_searchbox .result_list .img_holder{
		display: none;
	}
	.guff_fn_searchbox .result_list ul{
		display: -webkit-flex;
		display: -moz-flex;
		display: -ms-flex;
		display: -o-flex;
		display: flex;
		flex-wrap: wrap;
		-webkit-flex-direction: column;
		-moz-flex-direction: column;
		-ms-flex-direction: column;
		-o-flex-direction: column;
		flex-direction: column;
	}
	.fn__bp_slider .title_in .img_wrap .img_holder{
		height: 300px;
	}
	.comment-respond .input-half{
		width: 100%;
	}
	.guff_fn_comments .children{
		margin-left: 10px;
	}
	.guff_fn_comments .respond-title .fn_title{
		text-align: left;
	}
	.fn__contact .half_item{
		width: 100%;
	}
	.guff_fn_searchbox .search .fn__svg{
		display: none;
	}
	.author__widget{
		padding: 0px 20px 22px;
	}
	.fn__blog_anchor{display: none;}
	
	.guff_fn_protected .fn__maintitle,
	.guff_fn_404 .fn__maintitle
	.guff_fn_pagetitle .fn__title,
	.post_title_holder .fn__maintitle,
	.author__widget .fn_title,
	.footer_subscribe_form .fsf_title,
	.blog__item .title h3,
	.fn__bp_slider .title_holder h3,
	.guff_fn_comments .comment_opener h3{
		font-size: 30px;
	}
	.guff_fn_protected form,
	.guff_fn_searchbox .search_wrapper .main_form,
	.guff_fn_protectedform form,
	.guff_fn_404 form,
	.wp-block-search__inside-wrapper,
	.footer_subscribe_form .fn__subscribe,
	.footer_subscribe_form .wpforms-form{
		-webkit-flex-direction: column;
		-moz-flex-direction: column;
		-ms-flex-direction: column;
		-o-flex-direction: column;
		flex-direction: column;
		border: none;
		border-radius: 0;
		background-color: transparent;
	}
	.guff_fn_searchbox .result_info .submit_button{
		height: 60px;
		font-size: 18px;
		padding: 0 35px;
	}
	.guff_fn_protected input[type="password"],
	.guff_fn_protected input[type="text"],
	.guff_fn_searchbox .input input,
	.guff_fn_protectedform input[type="password"],
	.guff_fn_404 input[type="text"],
	.wp-block-search__inside-wrapper input[type="search"],
	.footer_subscribe_form input[type=email],
	.footer_subscribe_form div.wpforms-container-full .wpforms-form input[type=email]{
		background-color: #fff !important;
		border: 5px solid #000 !important;
		border-radius: 50px !important;
		margin-bottom: 10px;
		flex: auto;
		display: block;
		width: 100%;
		height: 50px;
		text-align: center;
	}
	.guff_fn_searchbox .input input{
		height: 60px;
		font-size: 18px;
		font-weight: 600;
		padding: 0 26px;
	}
	.guff_fn_protected .search,
	.guff_fn_searchbox .search{
		margin: 0;
	}
	.guff_fn_searchbox .search input{
		display: block;
		width: 100%;
		height: 52px;
		text-align: center;
		padding: 0 26px;
	}
	.guff_fn_protected input[type="submit"],
	.wp-block-search__inside-wrapper button[type="submit"],
	.footer_subscribe_form input[type=submit], .footer_subscribe_form div.wpforms-container-full .wpforms-form input[type=submit], .footer_subscribe_form div.wpforms-container-full .wpforms-form button[type=submit], .footer_subscribe_form div.wpforms-container-full .wpforms-form .wpforms-page-button{
		display: block;
		width: 100%;
		text-align: center;
		height: 50px;
		margin: 0;
	}
	.guff_fn_protected input[type="submit"]{
		height: 42px;
	}
	.guff_fn_protectedform input[type="submit"],
	.guff_fn_404 input[type="submit"]{
		display: block;
		width: 100%;
		height: 42px;
		text-align: center;
	}
	.guff_fn_protectedform .search, .guff_fn_404 .search{
		margin: 0;
	}
	.fn__full_meta .meta__author .text{display: none;}
	.fn__full_meta .meta__author img{margin-right: 0;}
	.blog__item_classic .fn__full_meta .meta__author a{padding-right: 10px;padding-left: 10px;}
	.blog__item_masonry .list_key{
		font-size: 30px;
	}
	.fn_cs_catlist_alpha .alpha_left{
		padding-left: 20px;
		padding-right: 20px;
	}
}
@media(max-width: 480px){
	.fn_cs_posts_layout_eta .eta_wrapper,
	.fn_cs_posts_layout_beta{
		padding-left: 15px;
		padding-right: 15px;
	}
	.blog__item_list .list_left_in{
		width: 100%;
		min-width: 100%;
	}
	.fn__linetitle .title_decor{
		min-width: 50px;
		margin-left: 20px;
	}
	.fn_cs_hosts .host_list_item{
		width: 100%;
	}
	.respond_comment,
	.guff_fn_comments,
	.guff_fn_singlepost .post_content,
	.guff_fn_reactions,
	.guff_fn_author_info,
	.guff_fn_singlepost .post__header{
		padding-left: 10px;
		padding-right: 10px;
	}
	.fn__separator[data-style=""]{
		height: 4px;
	}
	.fn__separator .left_sep,
	.fn__separator .right_sep{
		width: 30px;
	}
	.guff_fn_singlepost .decor_right{
		right: -10px;
	}
	.fn_cs_posts_layout_zeta .fn__short_meta{
		text-align: left !important;
	}
	.fn_cs_posts_layout_zeta .classic_item{
		-webkit-flex-direction: column !important;
		-moz-flex-direction: column !important;
		-ms-flex-direction: column !important;
		-o-flex-direction: column !important;
		flex-direction: column !important;
		-ms-align-items: flex-start;
		align-items: flex-start;
		text-align: left !important;
		margin-bottom: 20px;
	}
	.fn_cs_posts_layout_zeta .classic_item:last-child{
		margin-bottom: 0;
	}
	.fn_cs_posts_layout_zeta .classic_item .img_holder{
		margin: 0 0 20px 0 !important;
	}
	.fn_cs_posts_layout_zeta .post_wrapper{
		padding-left: 10px;
		padding-right: 10px;
	}
	.fn_cs_posts_layout_zeta .top_item .fn_title a{
		font-size: 26px;
		font-weight: 700;
		line-height: 1;
	}
	.fn_cs_posts_layout_epsilon .second_col .item_wrapper:before,
	.fn_cs_posts_layout_epsilon .second_col .item_wrapper:after{
		content: none;
		display: none;
	}
	.fn_cs_posts_layout_epsilon .second_col .item_wrapper{
		width: 100%;
	}
	.fn_cs_catlist_alpha .alpha_left,
	.fn_cs_catlist_alpha[data-post-switcher="enable"] .alpha_right{
		padding-left: 10px;
		padding-right: 10px;
	}
	.blog__item_masonry .list_bottom{
		padding: 0 10px;
	}
	.blog__item_classic .decor_bottom .fn__svg{
		width: 60px;
	}
	.blog__item_classic .decor_bottom{
		bottom: 15px;
		right: 40px;
	}
	.blog__item_classic .blog__image{
		margin-bottom: 36px;
	}
	.blog__item_classic .decor_wave:after,
	.blog__item_classic .decor_wave{
		height: 10px;
	}
	.blog__image .typ_overlay img,
	.blog__image .img_overlay img{
		border-radius: 24px;
	}
	.blog__item_classic .typ_overlay,
	.blog__item_classic .img_overlay{
		border-radius: 30px;
	}
	.blog__item_classic{
		padding-left: 10px;
		padding-right: 20px;
	}
	.guff_fn_leftsidebar .blog__item_classic .list_bottom,
	.blog__item_classic .list_bottom{
		padding: 0 10px;
	}
	.guff_fn_leftsidebar .blog__item_classic .post__title,
	.blog__item_classic .post__title{
		font-size: 24px;
	}
	.guff_fn_footer .footer_welcome{
		padding-right: 0;
	}
	.guff_fn_footer{
		padding: 50px 10px;
	}
	.guff_fn_pagetitle .text{
		padding: 0;
	}
	.guff_fn_searchbox .result_list ul{
		display: -webkit-flex;
		display: -moz-flex;
		display: -ms-flex;
		display: -o-flex;
		display: flex;
		flex-wrap: wrap;
	}
	.guff_fn_searchbox .search_content{
		padding: 0 10px 0 0;
	}
	.guff_fn_searchbox .filterbox{
		padding-left: 20px;
		padding-right: 20px;
	}
	.guff_fn_searchbox .result_list li{
		width: 100%;
	}
	.guff_fn_mobnav .guff_fn_social_list a .fn__svg{
		width: 15px;
		height: 15px;
	}
	.guff_fn_mobnav .mobile_menu a{padding: 0 10px;}
	.guff_fn_mobnav .mobile_menu ul{margin-left: 10px;}
	.guff_fn_mobnav .right__triggerr a{
		width: 40px;
		height: 40px;
		margin-right: 5px;
	}
	.guff_fn_mobnav .right__triggerr a span{
		width: 30px;
		left: 5px;
		margin-left: 0;
	}
	.guff_fn_mobnav .right__triggerr a span:after, .guff_fn_mobnav .right__triggerr a span:before{
		width: 30px;
		left: 0;
		margin-left: 0;
	}
	.guff_fn_mobnav .right__triggerr .fn__svg{width: 18px;height: 18px;margin: -9px 0 0 -9px;}
	.guff_fn_mobnav .mob_top{padding: 10px;}
	.blog__status_item,
	.blog__link_item,
	.blog__quote_item{
		padding: 36px 16px 30px;
	}
	.guff_fn_comments .date_meta{display: none;}
	.guff_fn_protected .fn__maintitle, .guff_fn_404 .fn__maintitle .guff_fn_pagetitle .fn__title, .post_title_holder .fn__maintitle, .author__widget .fn_title, .footer_subscribe_form .fsf_title, .blog__item .title h3, .fn__bp_slider .title_holder h3, .guff_fn_comments .comment_opener h3{
		font-size: 24px;
	}
	.fn__bp_slider .title_holder h3{
		line-height: 1.2;
	}
}
.guff_fn_woo_myaccount,
.cart-collaterals{
    margin-bottom: 70px;
}





/* RTL (Arabic) */
body.rtl{
	direction: rtl;
}
body.rtl .category__item{
	border-radius: 0 20px;
}
body.rtl .category__item:hover{
	border-radius: 20px 0;
}
body.rtl .guff_fn_widget__articles .item_img{
	margin-right: 0;
	margin-left: 20px;
}
body.rtl .guff_fn_widget__articles .counter{
	left: auto;
	right: -9px;
	border-radius: 50% 50% 0 50%;
}
body.rtl .wp-block-search__inside-wrapper button[type="submit"]{
	margin: -4px;
	margin-right: 0;
}
body.rtl .guff_fn_header .ht_right_item{
	margin-right: 0;
	margin-left: 20px;
}
body.rtl .guff_fn_header .ht_right_item:last-child{
	margin-right: 0;
	margin-left: 0;
}
body.rtl .guff_fn_main_nav > li.menu-item-has-children > a{
	padding-right: 0;
	padding-left: 16px;
}
body.rtl .guff_fn_main_nav > li.menu-item-has-children > a:after{
	right: auto;
	left: 0;
}
body.rtl .guff_fn_stickynav .sub-menu,
body.rtl .guff_fn_header .sub-menu{
	left: auto;
	right: 0;
	margin-left: 0;
	margin-right: -50px;
    margin-right: -moz-calc((var(--guff-border) + 40px) * (-1));
    margin-right: -webkit-calc((var(--guff-border) + 40px) * (-1));
    margin-right: -o-calc((var(--guff-border) + 40px) * (-1));
    margin-right: calc((var(--guff-border) + 40px) * (-1));
}
body.rtl .guff_fn_stickynav .sub-menu li.menu-item-has-children > a,
body.rtl .guff_fn_header .sub-menu li.menu-item-has-children > a{
	padding-right: 40px;
	padding-left: 52px;
}
body.rtl .guff_fn_stickynav .sub-menu ul,
body.rtl .guff_fn_header .sub-menu ul{
	left: auto;
	right: 100%;
	margin-right: 0;
}
body.rtl .guff_fn_stickynav .sub-menu li.menu-item-has-children > a:after,
body.rtl .guff_fn_header .sub-menu li.menu-item-has-children > a:after{
	right: auto;
	left: 40px;
	border-width: 6px 6px 6px 0;
	border-color: transparent #000 transparent transparent;
}
body.rtl .guff_fn_totop{
	right: auto;
	left: 50px;
}
@media(min-width: 769px){
	body.rtl .footer_subscribe_form input[type=submit],
	body.rtl .footer_subscribe_form div.wpforms-container-full .wpforms-form input[type=submit], 
	body.rtl .footer_subscribe_form div.wpforms-container-full .wpforms-form button[type=submit],
	body.rtl .footer_subscribe_form div.wpforms-container-full .wpforms-form .wpforms-page-button{
		margin: -4px;
		margin-right: 0;
	}
	body.rtl .guff_fn_searchbox .search{
		margin:  -4px 0 -4px -4px;
	}
}

body.rtl .featured_post_item .icon .fn__svg{
	margin-right: 0;
	margin-left: 30px;
}
body.rtl .featured_post_item .icon .fn__svg:last-child{
	margin-left: 0;
}
body.rtl .featured_post_item .fp__item{
	padding-left: 0;
	padding-right: 70px;
}
body.rtl .featured_post_item .fp_count{
	left: auto;
	right: 0;
}
body.rtl .guff_fn_mobnav .mobile_menu .menu-item-has-children > a:after{
	right: auto;
	left: 20px;
	transform: rotate(180deg);
}
body.rtl .guff_fn_mobnav .mobile_menu .menu-item-has-children.active > a:after{
	transform: rotate(90deg)
}
body.rtl .guff_fn_searchbox .result_list .img_holder{
	margin-right: 0;
	margin-left: 30px;
}
body.rtl .guff_fn_searchbox .result_list .img_holder:after{
	right: auto;
	left: 100%;
	margin-right: 0;
	margin-left: var(--guff-border);
}
body.rtl .fn__bp_slider .item_modern .item_l{
	border-right: 0;
	border-left: -moz-calc(var(--guff-border) / 2) solid #000;
    border-left: -webkit-calc(var(--guff-border) / 2) solid #000;
    border-left: -o-calc(var(--guff-border) / 2) solid #000;
    border-left: calc(var(--guff-border) / 2) solid #000;
}
body.rtl .fn__bp_slider .item_modern .item_r{
	border-left: 0;
	border-right: -moz-calc(var(--guff-border) / 2) solid #000;
    border-right: -webkit-calc(var(--guff-border) / 2) solid #000;
    border-right: -o-calc(var(--guff-border) / 2) solid #000;
    border-right: calc(var(--guff-border) / 2) solid #000;
}
body.rtl .guff_fn_protected .search,
body.rtl .guff_fn_protectedform .search,
body.rtl .guff_fn_404 .search{
	margin: -4px;
	margin-right: 0;
}
body.rtl .single__content .post_content blockquote{
	padding: 30px 100px 30px 50px;
	border-left: none;
	border-right: 4px solid;
	border-radius: 20px 0 0 20px;
}
body.rtl .single__content .post_content blockquote:after{
	left: auto;
	right: 28px;
	transform: rotate(180deg);
}
body.rtl .guff_fn_share h5{
	margin-right: 0;
	margin-left: 20px;
}
body.rtl .guff_fn_comments .comment-avatar{
	margin-left: 20px;
	margin-right: 0;
}
body.rtl .guff_fn_comments .comment-avatar .img:after{
	left: auto;
	right: 100%;
	transform: rotate(180deg);
}
body.rtl .fn__blog_anchor .ba_item{
	padding-right: 60px;
	padding-left: 0;
}
body.rtl .fn__blog_anchor .ba_count{
	left: auto;
	right: 0;
}
body.rtl .header_post_reading .reading_post h3{
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
}
body.rtl .header_post_reading .reading_post .subtitle{
	margin-right: 0;
	margin-left: 5px;
}
@media(max-width: 768px){
	body.rtl .guff_fn_protected .search,
	body.rtl .guff_fn_protectedform .search,
	body.rtl .guff_fn_404 .search{
		margin: 0;
	}
}
@media(max-width: 480px){
	body.rtl .guff_fn_searchbox .search_content{
		padding: 0 0 0 10px;
	}
}

.wp-block-group__inner-container > *:last-child{
	margin-bottom: 0;
}
.wp-block-page-list li{
	margin-bottom: 5px;
    font-size: 18px;
    font-family: var(--hff);
    font-weight: 600;
    letter-spacing: 0px;
    color: #000;
    position: relative;
}
.wp-block-page-list ul{
	display: none;
	list-style-type: none;
	margin-left: 20px;
}
.wp-block-page-list a{
	color: #000;
}
.post_c_in > .clearfix{
	margin-bottom: 50px;
}
.post_c_in > *{
	margin-bottom: 30px;
}
.post_c_in > *:nth-last-child(2),
.post_c_in > .clearfix:last-child,
.post_c_in > *:last-child{
	margin-bottom: 0;
}
.wp-block-page-list{
	margin: 0;
	padding: 0;
	list-style-type: none;
}
@media(min-width: 1041px){
	.guff-has-sidebar{
		overflow: visible;
	}
}

.guff-has-sidebar .sidebar_in{
	position: sticky;
	top: 90px;
	top: 132px;
}



.guff_fn_button{
	height: 50px;
	border: 4px solid #000;
	position: relative;
	text-decoration: none;
	padding: 0 26px;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-ms-align-items: center;
	align-items: center;
	border-radius: 50px;
	justify-content: space-between;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
}
.guff_fn_button .icon{
	display: block;
	transition: all .3s ease;
}
.guff_fn_button .fn__svg{
	width: 24px;
	height: 24px;
	display: block;
	margin-left: 15px;
}
.guff_fn_button .text{
	display: block;
	transition: all .3s ease;
}
.guff_fn_button.has_icon:hover .text{
	transform: translateX(20px);
}
.guff_fn_button.has_icon:hover .icon{
	transform: translateX(150%);
}


