@import url(https://fonts.googleapis.com/css?family=Open+Sans:300,400,600,700|Roboto:300,400,500,700);
@font-face {
	font-family: "Orbitron";
	src: url("./fonts/Orbitron-Regular.ttf");
	font-weight: 400;
}
@font-face {
	font-family: "Orbitron";
	src: url("./fonts/Orbitron-Medium.ttf");
	font-weight: 500;
}
@font-face {
	font-family: "Orbitron";
	src: url("./fonts/Orbitron-Bold.ttf");
	font-weight: 700;
}
@font-face {
	font-family: "Inter";
	src: url("./fonts/Inter-Regular.woff");
	font-weight: 300;
}
@font-face {
	font-family: "Inter";
	src: url("./fonts/Inter-Bold.woff");
	font-weight: 700;
}
* {
	margin: 0px;
	padding: 0px;
}
* {box-sizing: border-box;}
:root {
  --greenColor: #07A702;
}
/* =============================================
                        Theme Reset Style					
============================================= */
html, body{
	overflow-x: hidden !important;
}
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
	text-decoration: none;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
.single .post-content ol,
.single .post-content ul{
	list-style: inherit;
	padding-left: 50px;
}
.single .post-content ul.share{
	padding-left: 0;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
body{
	font-family: 'Open Sans';
	font-style: normal;
	font-weight: 400;
	font-size: 15px;
	line-height: 20px;
	color: #000000;
	max-width: 100%;
	overflow-x: hidden;
}
/*Headings*/
h1,
h2,
h3,
h4,
h5,
h6{
	font-family: 'Orbitron';
	font-style: normal;
}
h1{
	font-weight: 700;
	font-size: 40px;
	line-height: 50px;	
	letter-spacing: 0.1em;
	/*text-transform: uppercase;*/
}
h2{
	font-weight: 700;
	font-size: 30px;
	line-height: 38px;	
	letter-spacing: 0.1em;
	/*text-transform: uppercase;*/
}
h3{
	font-weight: 700;
	font-size: 25px;
	line-height: 31px;
	letter-spacing: 0.18em;
	/*text-transform: uppercase;*/
}
h4{
	font-weight: 600;
	font-size: 20px;
	line-height: 25px;
	text-transform: uppercase;
}
h4{
	font-weight: 600;
	font-size: 20px;
	line-height: 25px;
	/*text-transform: uppercase;*/
}
h5{
	font-weight: 600;
	font-size: 18px;
	line-height: 108.02%;
}
h6{
	font-weight: 600;
	font-size: 16px;
	line-height: 142.02%;
	letter-spacing: 0.09em;
}
p{
	font-family: 'Open Sans';
	font-style: normal;
	font-weight: 400;
	font-size: 15px;
	line-height: 20px;
	color: #000000;
	margin-bottom: 20px;
}
/*Header*/
header{
	width: 100%;
	padding: 30px 0;
}
header .inner{	
	display: flex;
	align-items: center;
    justify-content: space-between;	
    padding: 0 72px;
}
header nav{
	display: flex;
	align-self: center;
}
header nav li{
	display: inline-block;
	margin-right: 22px;
	position: relative;
}
header nav > ul > li.menu-item-has-children{
	margin-right: 37px;
}
header nav > ul > li.menu-item-has-children:after{	
	content: '\f078';
	position: absolute;
	top: 3px;
    right: -17px;
    color: #000;
    font-size: 13px;
    display: block;
    font-family: 'Font Awesome 5 Free';
    font-weight: 700;
    transition: all 0.3s;
}
header nav > ul > li.menu-item-has-children:hover:after,
header nav > ul > li.current-menu-item:after{
	color: var(--greenColor);
}
header nav li ul{
	position: absolute;
	top: 25px;
	left: 0;
	opacity: 1;
	display: none;
	overflow: hidden;
	-webkit-box-shadow: 4px 1px 26px 2px rgb(0 0 0 / 12%);
    box-shadow: 4px 1px 26px 2px rgb(0 0 0 / 12%);
    padding: 10px;
    width: 150px;
	transition: all 0.3s;
}
header nav li li{
	display: block;
	line-height: 45px;
	border-bottom: 1px solid #e7e7e7;
    margin: 0;
}
header nav li li:last-child{
	border: 0;
}
header nav li:hover > ul{
	opacity: 1;
	display: block;
	background: #fff;
	z-index: 99;
}
header nav li a{
	font-family: 'Orbitron';
	font-style: normal;
	font-weight: 700;
	font-size: 12px;
	line-height: 15px;
	color: #000000;
	transition: all 0.3s;
}
header nav li a:hover,
header nav li.current-menu-item > a{
	color: var(--greenColor);
}
header .search{
	position: relative;
}
header .search .search-form{
	position: absolute;
	top: 25px;
    right: 30px;
    width: 200px;
}
header .search .search-form input{
	padding: 10px 20px;
    border-radius: 25px;
    border: 1px solid #c0b5b5;
    padding-right: 40px;
}
.main-search{
	width: 100vw;
    height: 0;
    background: rgba(18, 21, 25, 0.98);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}
.main-search .search-form{
	width: 100%;
	max-width: 800px;
	display: none;
}
.main-search .search-form input{
	width: 100%;
	background: transparent;
	font-size: 35px;
    height: 90px;
    padding: 0 50px 0 0;
    margin-bottom: 35px;
    color: #ffffff;
    border: none;
    border-bottom: 1px solid var(--greenColor);
    outline: 0;
}
.main-search .search-form input:-webkit-autofill,
.main-search .search-form input:-webkit-autofill:hover, 
.main-search .search-form input:-webkit-autofill:focus{
	background: transparent;
	border: none;
	outline: 0;
}
.main-search .search-form{
	position: relative;
	outline: 0;
}
.main-search .search-form button{
	position: absolute;
    top: 50%;
    margin-top: -40px;
    border: none;
    background: none;
    color: #fff;
    padding: 16px 17px;
    background: var(--greenColor);
    border-radius: 50%;
    right: 0;
    cursor: pointer;
}
.main-search.show .search-form{
	display: block;
}
.main-search.show{
	height: 100vh;
}
i.close-me{
	color: #fff;
    position: absolute;
    top: 40px;
    right: 40px;
    font-size: 24px;
    cursor: pointer;
    display: none;
}
.main-search.show .close-me{
	display: block;
}
.search.open-search{
	cursor: pointer;
}
input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration {
  -webkit-appearance:none;
}
img{
	max-width: 100%;
}

/*Footer*/
footer{
	width: 100%;
	display: block;
	padding: 20px 183px 0 74px;
	background: #000;
}
footer .inner-footer{
	margin: 0 -18px;
}
footer .left,
footer .right{
	width: 50%;
	/*padding: 0 18px;*/
	float: left;
}
footer .left{
	padding-right: 69px;
	padding-left: 17px;
}
footer .right{
	padding-left: 69px;
	padding-right: 17px;
}
.clearfix{
	clear: both;
	width: 100%;
}
.inner-footer li{
	display: inline-block;
}
.inner-footer li a{
	color: var(--greenColor);
}
.inner-footer .left li{
	margin-right: 62px;
}
.inner-footer .left li:last-child{
	margin-right: 0;
}
.inner-footer .right li{
	margin-right: 42px;
}
.inner-footer .right li:last-child{
	margin-right: 0;
}
.inner-footer .right ul{
	/*text-align: right;*/
	margin-bottom: 90px;
}
.inner-footer .right li a{
	font-family: 'Orbitron';
	font-style: normal;
	font-weight: 700;
	font-size: 14px;
	line-height: 18px;
	color: #00D500;
	text-transform: uppercase;
	text-align: center;
}
.inner-footer h6,
.inner-footer p{
	color: #fff;
}
.inner-footer h6{
	margin-bottom: 15px;
	font-family: 'Orbitron';
	font-style: normal;
	font-weight: 600;
	font-size: 16px;
	line-height: 142.02%;
	letter-spacing: 0.09em;
	color: #FFFFFF;
	text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}
.inner-footer p{
	font-family: 'Open Sans';
	font-style: normal;
	font-weight: 300;
	font-size: 14px;
	line-height: 19.07px;
	color: #FFFFFF;
	text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
	margin-bottom: 0;
}
.inner-footer .mb-20{
	margin-top: 20px;
}
.inner-footer p strong,
.inner-footer p b{
	font-weight: 700;
}
.inner-footer p a{
	font-family: 'Open Sans';
	font-style: normal;
	font-weight: 700;
	font-size: 14px;
	line-height: 19px;

	color: #00D500;

	text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}
.inner-footer .image-center{
	text-align: center;
	margin-top: 176px;
}
.lower-footer{
	width: 100%;
	background: #000;
    display: flex;
    align-items: end;
    justify-content: initial;
    position: relative;
}
.lower-footer p{
	font-family: 'Open Sans';
	font-style: normal;
	font-weight: 400;
	font-size: 15px;
	line-height: 20px;	
	color: #00D500;
	margin-bottom: 50px;
}
.lower-footer a {
	position: absolute;
    right: 95px;
    bottom: 36px;
    width: 42px;
    height: 40px;
    background: #00D500;
    line-height: 40px;
    text-align: center;
    color: #000;
    border-radius: 5px;
    font-size: 15px;
    font-weight: 900;
}
/*Search Page*/
.breadcrumb .inners{
    display: flex;
    align-items: center;
    padding: 0 72px;
    padding-top: 10px;
    padding-bottom: 56px;
}
.breadcrumb a,
.breadcrumb span{
	text-transform: uppercase;
	font-family: 'Open Sans';
	font-style: normal;
	font-weight: 400;
	font-size: 13px;
	line-height: 18px;
	text-align: center;
	color: #000000;
}
.breadcrumb i{
	font-style: normal;
	font-weight: 700;
	font-size: 13px;
	line-height: 13px;
	text-align: center;
	color: #000000;
	margin-right: 6px;
}
.breadcrumb .active{
	font-family: 'Open Sans';
	font-style: normal;
	font-weight: 700;
	font-size: 13px;
	line-height: 18px;
	text-align: center;
	text-decoration-line: underline;
	color: #00D500;
	margin-right: 6px;
}
.cat-wrap{
	width: 100%;
	background: #000;
	padding: 80px 0;
	margin-bottom: 160px;
}
.cat-wrap .cat-inner{
	max-width: 856px;
	margin: 0 auto;
}
.cat-wrap h1{
	font-family: 'Open Sans';
	font-style: normal;
	font-weight: 700;
	font-size: 40px;
	line-height: 108.02%;
	text-align: center;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: #FFFFFF;
	margin-bottom: 15px;
}
.cat-wrap p{
	font-family: 'Open Sans';
	font-style: normal;
	font-weight: 400;
	font-size: 20px;
	line-height: 27px;
	text-align: center;
	letter-spacing: 0.09em;
	color: #FFFFFF;
	margin-bottom: 0;
}
.cat-wrap form{
	position: relative;
}
.cat-wrap input{
	width: 100%;
    padding: 15px;
    border-radius: 5px;
    border: 1px solid #fff;
    padding-right: 50px;
}
.cat-wrap button{
	float: right;
    padding: 10px;
    border-color: transparent;
    border-radius: 5px;
    position: absolute;
    top: 0;
    right: 8px;
    background: no-repeat;
    top: 5px;
    cursor: pointer;
}
/*Container*/
.main-wrapper .container{
	width: 100%;
	max-width: 1440px;
	padding: 0 60px;
	padding-right: 72px;
	margin: 0 auto;	
}
.main-wrapper .col-8{
	width: 54%;
	float: left;
	padding-right: 40px;
	/*margin-left: -12px;
	margin-right: -12px;*/
}
.main-wrapper .col-4{
	width: 46%;
	float: left;
	padding-left: 67px;
}
.main-wrapper .col-4{
	position: sticky;
  	top: 0px;
	margin-bottom: 80px;
}
.main-wrapper .post-outer{
	width: 50%;
	padding: 0 12px;
	float: left;
}
/*Post*/
.post{
	box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
	border-radius: 5px;
	margin-bottom: 57px;
}
.post .top{
	padding: 7px 0 7px 15px;
}
.post .top ul{
	float: left;
}
.post .top li{
	display: inline-block;
}
.post .top .dot{
	width: 4px;
	height: 4px;
	border-radius: 50%;
	background: #00D500; 
	vertical-align: middle;
	margin-right: 10px;
}
.post .top a{
	font-family: 'Open Sans';
	font-style: normal;
	font-weight: 600;
	font-size: 10px;
	line-height: 14px;
	text-transform: uppercase;
	color: #000000;
	padding: 2px 5px;
	background: #00D500;
	margin-right: 7px;
}
.post .top span{
	font-family: 'Open Sans';
	font-style: normal;
	font-weight: 300;
	font-size: 10px;
	line-height: 14px;
	color: #000000;
	vertical-align: middle;
}
.post figure img{
	width: 100%;
	height: auto;
}
.post .content{
	padding: 20px 40px 35px 15px;
}
.post h5 a{
	font-family: 'Open Sans';
	font-style: normal;
	font-weight: 600;
	font-size: 17px;
	line-height: 108.02%;
	letter-spacing: 0.09em;
	color: #000000;
}
/*Pagination*/
.cf-pagination a.page-numbers,
.cf-pagination .current{
	font-family: 'Orbitron';
	font-style: normal;
	font-weight: 700;
	font-size: 14px;
	line-height: 18px;
	text-transform: uppercase;
	color: #000000;
	position: relative;
	padding-right: 12px;
}
.cf-pagination{
	text-align: center;
	margin: 50px 0 160px 0;
}
.cf-pagination ul{
	display: flex;
    align-items: center;
    justify-content: center;
}
.cf-pagination li{
	display: inline-block;
	position: relative;
}
.cl-page-normal,
.cl-page-active{
	position: relative;
	padding-right: 12px;
}
.cl-page-normal:after,
.cl-page-active:after{
	content: '';
    width: 5px;
    height: 2px;
    position: absolute;
    top: 46%;
    right: 3px;
    background: #000;
}
.cf-pagination li:nth-last-of-type(2){
	padding-right: 0;
}
.cf-pagination li:nth-last-of-type(2):after{
	display: none !important;
}
.cl-page-active.last-item:after{
    content: '';
    width: 5px;
    height: 2px;
    position: absolute;
    top: 46%;
    right: 3px;
    background: #000;
    display: none;
}
.cl-page-active.last-item{
	padding-right: 0;
	padding-left: 12px;
}
.cl-page-active.last-item:before{
    content: '';
    width: 5px;
    height: 2px;
    position: absolute;
    top: 46%;
    left: 3px;
    background: #000;    
}
.cf-pagination a.page-numbers:after,
.cf-pagination .current:after{
	content: '';
    width: 5px;
    height: 2px;
    position: absolute;
    top: 46%;
    right: 3px;
    background: #000;
}
.cf-pagination .current{
	padding-right: 12px;
	color: #00D500;
	position: relative;
}
.cf-pagination a.page-numbers:nth-last-of-type(2){
	/*padding-right: 0;*/
}
.cf-pagination a.page-numbers:nth-last-of-type(2):after{
	/*display: none !important;*/
}
.cf-pagination a.page-numbers:nth-last-of-type(1) + .current:after,
.cf-pagination a.last-item:after{
	display: none;
}
.cf-pagination a.last-item{
	padding-right: 0;
}
.cf-pagination a.prev{
	margin-right: 6px;
	padding-right: 0;
}
.cf-pagination a.next{
	margin-left: 6px;
	padding-right: 0;
}
.cf-pagination a:after{
	
}
.cf-pagination a.prev:after,
.cf-pagination a.next:after{
	display: none;
}
.cf-prevpage{
	margin-right: 6px;
}
.cf-nextpage{
	margin-left: 6px;
}
.cat-sidebar{
	padding-top: 60px;
}
.cat-sidebar > h4{
	margin-bottom: 20px;
}
/*Card*/
.card{
	display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0px 4px 4px rgb(0 0 0 / 25%);
    margin-bottom: 30px;
    padding: 18px 20px;
}
.card .top{
	display: flex;
}
.card .top ul{
	display: flex;
    flex-direction: column;
}
.card figure{
	min-width: 95px;
	margin-right: 15px;
}
.card h4{
	text-transform: unset;
}
.card h4 a{
	font-family: 'Open Sans';
	font-style: normal;
	font-weight: 600;
	font-size: 18px;
	line-height: 108.02%;
	letter-spacing: 0.09em;
	color: #000000;
	text-transform: inherit;
}
.card li{
	margin-bottom: 3px; 
}
.card li:nth-child(odd) a{
	font-family: 'Open Sans';
    font-style: normal;
    font-weight: 600;
    font-size: 10px;
    line-height: 14px;
    text-transform: uppercase;
    color: #000000;
    padding: 2px 5px;
    background: #00D500;
    margin-right: 7px;
}
.card li:nth-child(even) a{
	font-family: 'Open Sans';
    font-style: normal;
    font-weight: 600;
    font-size: 10px;
    line-height: 14px;
    text-transform: uppercase;
    color: #fff;
    padding: 2px 5px;
    background: #000;
    margin-right: 7px;
}
.card li:nth-of-type(1) a{
	position: relative;
}
.card li:nth-of-type(1) a:after{
	content: '';
	width: 4px;
	height: 4px;
	background: #00D500;
	position: absolute;
	top: 6px;
    right: -12px;
    border-radius: 50%;
}
.card .date{
	padding-left: 10px;
}
.cat-details{
	margin-top: 65px;
}
.cat-details h6{
	font-family: 'Orbitron';
	font-style: normal;
	font-weight: 600;
	font-size: 16px;
	line-height: 142.02%;
	letter-spacing: 0.09em;
	color: #000000;
	margin-bottom: 15px;
}
.cat-details p{
	font-family: 'Open Sans';
	font-style: normal;
	font-weight: 300;
	font-size: 14px;
	line-height: 19px;
	color: #000000;
	margin-bottom: 0;
}
.cat-details p strong,
.cat-details p b{
	font-weight: 700;
	color: #000;
}
.cat-details p a{
	font-weight: 700;
	color: #00D500;
}
.cat-details .mb-20{
	margin-top: 15px;
}
/*Author*/
.author-wrap{
	width: 635px;
	max-width: 635px;
	margin: 0 auto;
	text-align: center;
}
.author-wrap .auth-inner > img{
	border-radius: 50%;
	margin-bottom: 24px;
}
.auth-inner{
	margin-bottom: 140px;
}
.auth-inner h4{
	font-family: 'Open Sans';
	font-style: normal;
	font-weight: 400;
	font-size: 20px;
	line-height: 27px;	
	letter-spacing: -0.04em;
	color: #000000;
	text-transform: unset;
	margin-bottom: 1px;
}
.auth-inner h4 img{
	margin-left: 5px;
}
.auth-inner > span{
	font-family: 'Open Sans';
	font-style: normal;
	font-weight: 300;
	font-size: 15px;
	line-height: 20px;
	text-align: center;
	letter-spacing: -0.04em;
	color: #6D6D6D;
	margin-bottom: 6px;
	display: inline-block;
}
.auth-inner h6 span{
	font-family: 'Open Sans';
	font-style: normal;
	font-weight: 700;
	font-size: 15px;
	line-height: 20px;
	text-align: center;
	letter-spacing: -0.04em;
	color: #000000;
}
.auth-inner h6{
	margin-bottom: 25px;
}
.auth-inner h6 span.left{
	margin-right: 67px;
}
.auth-inner p{
	font-family: 'Open Sans';
	font-style: normal;
	font-weight: 300;
	font-size: 18px;
	line-height: 25px;
	text-align: center;
	letter-spacing: -0.04em;

	color: #6D6D6D;
}
.auth-wrapper .container{
	width: 1104px;
	max-width: 1104px;	
	margin: 0 auto;
}
.auth-wrapper .col-12{
	/*margin-left: -14px;
	margin-right: -14px;*/
}
.auth-wrapper .post-large{
	width: 50%;
	padding: 0 14px;
	float: left;
}
.post-large .post{
	position: relative;
	margin-bottom: 31px;
}
.auth-wrapper .post-large figure img{
	width: 100%;
	height: auto;
}
.post-large .post .category{
	position: absolute;
	left: 0;
	top: 9px;
	z-index: 1;
	font-family: 'Open Sans';
    font-style: normal;
    font-weight: 600;
    font-size: 10px;
    line-height: 14px;
    text-transform: uppercase;
    color: #000000;
    padding: 2px 5px;
    background: #00D500;
}
.post-large .post .content{
	padding: 24px 15px 35px 15px;
}
.post-large h4{
	margin-bottom: 40px;
	text-transform: unset;
}
.post-large h4,
.post-large h4 a{
	font-family: 'Open Sans';
	font-style: normal;
	font-weight: 600;
	font-size: 17px;
	line-height: 108.02%;
	letter-spacing: 0.09em;
	color: #000000;
}
.post-large .content p{
	font-family: 'Open Sans';
	font-style: normal;
	font-weight: 300;
	font-size: 12px;
	line-height: 16px;
	color: rgba(0, 0, 0, 0.49);
	margin: 0;
}
.post-large .content p span{
	font-size: 13px;
	font-weight: 600;
}
.post-large .content p.author{
	position: relative;
}
.post-large .content p.author:before{
	content: '';
	width: 62.6px;
	height: 1px;
	background: #00D500;
	position: absolute;
	top: -10px;
	left: 0;
}
/*Single*/
.single-head{
	width: 100%;
	max-width: 636px;
	margin: 0 auto;
}
.single-head .top-head{
	margin-bottom: 15px;
}
.single p strong{
	font-weight: 700;
}
.single-head .category{
	font-family: 'Open Sans';
	font-style: normal;
	font-weight: 600;
	font-size: 10px;
	line-height: 14px;
	text-transform: uppercase;
	color: #000000;
	background: #00D500;
	padding: 2px 5px;
	display: inline-block;
	position: relative;
}
.single-head span{
	font-family: 'Open Sans';
	font-style: normal;
	font-weight: 300;
	font-size: 10px;
	line-height: 14px;
	color: #000000;
	position: relative;
	display: inline-block;
}
.single-head span.dot{	
	width: 4px;
	height: 4px;
	background: #00D500;
	margin: 0 5px;
    position: relative;
    top: -2px;
    border-radius: 50%;	
}
.single-head h2{
	font-family: 'Open Sans';
	font-style: normal;
	font-weight: 700;
	font-size: 30px;
	line-height: 41px;
	letter-spacing: 0.18em;																																											
	color: #000000;
	margin-bottom: 45px;
}
.single .main-imgs{
	width: 100%;			
	margin-bottom: 59px;
}
.single .main-imgs .bg{
	background-size: cover !important;
	background-position: center !important; 
	background-repeat: no-repeat;
	margin-right: 292px;
	min-height: 411px;
}
.single .main-imgs img{
	width: 100%;
	height: auto;
}
.post-wrapper .container{
	width: 1255px;
	margin: 0 auto;
}
.post-left{
	width: 120px;
	margin-right: 73px;
	float: left;
}
.post-left h5{
	font-family: 'Inter';
	font-style: normal;
	font-weight: 300;
	font-size: 15px;
	line-height: 18px;
	letter-spacing: -0.04em;
	color: #000000;
	margin-bottom: 16px;
}
.post-left ul{
	list-style: none;
	padding: 0;
	margin: 0;
}
.post-left ul li{
	margin-bottom: 20px;
}
.post-left img{
	width: 24px;
	height: auto;
}
.post-left,
.post-sidebar{
	position: sticky;
	top: 50px;
}
.post-content{
	width: 638px;
	float: left;
}
.post-sidebar{
	width: 343px;
	float: left;
	margin-left: 54px;
}
.post-sidebar ul{
	list-style: none;
	margin-bottom: 27px;
	padding: 0;
}
.read-also{
	padding-top: 27px;
	border-top: 0.5px solid #cccbcb;
	/*margin-left: 50px;*/
}
.post-sidebar ul a{
	font-family: 'Open Sans';
	font-style: normal;
	font-weight: 300;
	font-size: 15px;
	line-height: 20px;
	color: #000000;
	display: inline-block;
	margin-bottom: 21px;
	position: relative;
}
.post-sidebar a.active{
	font-family: 'Open Sans';
	font-style: normal;
	font-weight: 700;
	font-size: 15px;
	line-height: 20px;
	color: #07A702;
}
.post-sidebar a.active:before{
	content: '';
	width: 29px;
	height: 1px;
	background: #000;
	position: absolute;
	left: -33px;
    top: 50%;
}
.read-also .box{
	padding: 13px 16px 13px 14px;
	box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
	margin-bottom: 14px;
}
.read-also h6{
	font-family: 'Open Sans';
	font-style: normal;
	font-weight: 300;
	font-size: 15px;
	line-height: 108.02%;
	letter-spacing: 0.09em;
	color: #000000;
	margin-bottom: 14px;
}
.read-also h5 a{
	font-family: 'Open Sans';
	font-style: normal;
	font-weight: 600;
	font-size: 15px;
	line-height: 108.02%;
	letter-spacing: 0.09em;
	color: #000000;
	display: inline-block;
	/*margin-bottom: 3px;*/
}
.read-also .category{
	font-family: 'Inter';
	font-style: normal;
	font-weight: 600;
	font-size: 10px;
	line-height: 12px;
	display: inline-block;
	align-items: center;
	text-transform: uppercase;
	color: #000000;
    text-transform: uppercase;
    padding: 2px 5px;
    background: #00D500;
}
.read-also .date{
	display: inline-block;
	font-family: 'Open Sans';
	font-style: normal;
	font-weight: 300;
	font-size: 10px;
	line-height: 14px;
	/* identical to box height */
	align-items: center;
	color: #000000;
	margin: 0;
}
.read-also .dot{
	width: 4px;
	height: 4px;
	border-radius: 50%;
	margin-left: 3px;
	margin-right: 3px;
	display: inline-block;
	background: #00D500;
	position: relative;
    top: -1px;
}
/*Author*/
.author-meta h6{
	font-family: 'Open Sans';
	font-style: normal;
	font-weight: 400;
	font-size: 15px;
	line-height: 20px;
	letter-spacing: 0.09em;
	color: #000000;
	margin-bottom: 11px;
	padding-left: 32px;
}
.author-box{
	padding: 25px 0 36px 32px;
	background: #07A702;
	margin-bottom: 163px;
}
.author-box h4{
	font-family: 'Open Sans';
	font-style: normal;
	font-weight: 700;
	font-size: 20px;
	line-height: 27px;
	display: flex;
	align-items: center;
	letter-spacing: -0.04em;
	margin-bottom: 1px;
	color: #FFFFFF;
}
.author-box > span{
	font-family: 'Open Sans';
	font-style: normal;
	font-weight: 400;
	font-size: 14px;
	line-height: 19px;
	letter-spacing: -0.04em;
	display: inline-block;
	color: #FFFFFF;
	margin-bottom: 24px;
}
.author-box > img{
	width: 70px;
	height: 70px;
	border-radius: 50%;
	margin-bottom: 8px;
}
.author-box .author,
.author-box .linked{
	font-family: 'Open Sans';
	font-style: normal;
	font-weight: 600;
	font-size: 15px;
	line-height: 20px;
	display: block;
	color: #FFFFFF;
}
.author-box .author img,
.author-box .linked img{
	margin-left: 7px;
}
.author-box .author{
	margin-bottom: 23px;
}
/*Related Posts*/
.related-posts{
	width: 1255px;
	margin: 0 auto;
}
.related-posts .post-outer{
	width: 33.33%;
	float: left;
	padding-left: 11.5px;
	padding-right: 11.5px;
}
.related-posts .post{
	margin-bottom: 45px;
}
.related-inner{
	width: 100%;
	margin-left: -13.5px;
	padding-right: 156px;
}
.related-posts h6{
	font-family: 'Open Sans';
	font-style: normal;
	font-weight: 400;
	font-size: 15px;
	line-height: 108.02%;
	/* or 16px */
	letter-spacing: 0.09em;
	color: #000000;
	margin-bottom: 33px;
	padding-left: 11.5px;
}
.related-posts p{
	font-family: 'Open Sans';
	font-style: normal;
	font-weight: 300;
	font-size: 14px;
	line-height: 19px;
	margin-bottom: 0;
	color: #000000;
}
.related-posts .post h5{
	margin-bottom: 11px;
}
.related-posts .post h5 a{
	font-family: 'Open Sans';
	font-style: normal;
	font-weight: 600;
	font-size: 18px;
	line-height: 108.02%;
	letter-spacing: 0.09em;
	color: #000000;
}
.related-posts ul{
	padding-left: 0;
}
.related-posts .post .content{
	padding: 19px 15px 16px 15px;
}
.related-posts .post-card{
	width: 636px;
	float: left;
	clear: both;
}
.related-posts .card{
	padding: 0;
    margin-left: 13px;
    align-items: inherit;
    margin-bottom: 163px;
}
.related-posts .card figure{
	min-width: fit-content;
	height: 248px;
	margin-right: 16px;
}
.related-posts .card h4{
	margin-bottom: 6px;
}
.related-posts .card h4,
.related-posts .card h4 a{
	font-family: 'Open Sans';
	font-style: normal;
	font-weight: 600;
	font-size: 18px;
	line-height: 108.02%;
	letter-spacing: 0.09em;
	color: #000000;
}
.related-posts .card p{
	font-family: 'Open Sans';
	font-style: normal;
	font-weight: 300;
	font-size: 14px;
	line-height: 19px;
	color: #000000;
	margin-bottom: 0;
}
.related-posts .card .top ul{
	list-style: none;
}
.related-posts .card li{
	margin-bottom: 36px;
}
.related-posts .card li + li{
	display: none;
}
.related-posts .card-content{
	padding-top: 13px;
	padding-right: 9px;
}
.related-posts .date{
	font-family: 'Open Sans';
	font-style: normal;
	font-weight: 300;
	font-size: 10px;
	line-height: 14px;
	color: #000000;
	position: relative;
    top: 4px;
    left: 2px;
}
.bottom-share{
	display: none;
}
/*Responsive*/
@media( min-width: 1201px ){
	.single-head .single-inner{
		margin-left: -117px;
	}
}
@media ( max-width: 1200px ){
	html,
	body{
		overflow-x: hidden;
	}
	header.header{
		display: none;
	}
	.mobileheader{
		display: block !important;
		height: 60px;
		line-height: 60px;
		/*background: orange;*/
	}
	.mobileheader .inner{
		display: flex;
	    align-items: center;
	    justify-content: space-between;	    
	    padding-left: 73px;
	    padding-right: 63px;
	}	
	.mobileheader nav{
	    width: 100%;
	    height: 100%;
	    position: fixed;
	    background-color: var(--black);
	    overflow: hidden;
	    max-height: 0;
    	transition: max-height .2s ease-out;
    	background: #000;
    	top: 0;
    	left: 0;
    	max-width: 314px;
	}
	.mobileheader nav a{
		font-family: 'Orbitron';
		font-style: normal;
		font-weight: 700;
		font-size: 12px;
		line-height: 15px;
		color: #fff;
	}
	.mobileheader nav .current-menu-item > a{
		color: var(--greenColor);
	}
	.mobileheader nav > ul{
		padding-left: 52px;
		padding-top: 60px;
	}
	.mobileheader nav > ul li{
		line-height: 45px;
		position: relative;
	}
	.mobileheader nav > ul li a{
		position: relative;
	}
	.mobileheader nav > ul > li.menu-item-has-children > a:after{	
		content: '\f078';
		position: absolute;
		top: 0px;
	    right: -16px;
	    color: #fff;
	    font-size: 12px;
	    display: block;
	    font-family: 'Font Awesome 5 Free';
	    font-weight: 700;
	    transition: all 0.3s;
	}
	.mobileheader nav > ul > li.menu-item-has-children > a:hover:after,
	.mobileheader nav > ul > li.current-menu-item > a:after,
	.mobileheader nav > ul > li:hover > a:after{
		color: var(--greenColor);
	}
	.mobileheader nav > ul > li:hover > a{
		color: var(--greenColor);
	}
	.mobileheader nav > ul > li ul{
		display: none;
	}
	.mobileheader nav > ul > li:hover > ul{
		display: block;
	}
	/* Menu Icon */
	.hamb{
	    cursor: pointer;
	    z-index: 999;
    	position: relative;
	}/* Style label tag */
	.hamb-line {
	    background: var(--greenColor);
	    display: block;
	    height: 2px;
	    position: relative;
	    width: 25px;
	    z-index: 999;
	} /* Style span tag */
	.hamb-line::before,
	.hamb-line::after{
	    background: var(--greenColor);
	    content: '';
	    display: block;
	    height: 100%;
	    position: absolute;
	    transition: all .2s ease-out;
	    width: 100%;
	}
	.hamb-line::before{
	    top: 8px;
	}
	.hamb-line::after{
	    top: -8px;
	}
	.side-menu {
	    display: none;
	}
	/* Toggle menu icon */
	.side-menu:checked ~ nav{
		height: 100%;
	    max-height: 90%;
	    overflow-y: scroll;
	    z-index: 99;
	}
	.side-menu:checked ~ .hamb .hamb-line {
	    background: transparent;
	}
	.side-menu:checked ~ .hamb .hamb-line::before {
	    transform: rotate(-45deg);
	    top:0;
	}
	.side-menu:checked ~ .hamb .hamb-line::after {
	    transform: rotate(45deg);
	    top:0;
	}
	.main-search .form-wrap{
		padding: 0 20px;
	}
	.main-search .search-form button{
		right: 20px;
	}
	.main-search .search-form input{
		font-size: 24px;
	}
	/*Footer*/
	footer{
		padding: 34px 26px 0 30px;
		position: relative;
    	z-index: 9;
	}
	footer .inner-footer{
		margin: 0;
	}
	footer .right{
		padding-left: 0;
	}
	footer .left{
		padding: 0;
		padding: 0;
		padding-left: 20px;
	}
	footer .right nav{
		margin-right: -30px;
	}
	.lower-footer{
		position: relative;
    	/*top: -70px;*/
	}
	.lower-footer a{
		right: 30px;
		bottom: 35px;
	}
	.lower-footer p{
		font-size: 10px;
	}
	.inner-footer .desktop,
	.lower-footer .desktop{
		display: none;
	}
	.inner-footer .pad,
	.lower-footer .pad{
		display: block !important;
		position: relative;
		z-index: 99;
	}
	.inner-footer .right ul{
		margin-bottom: 45px;
	}
	.inner-footer .right li{
		margin-right: 30px;
		margin-bottom: 13px;
	}
	.inner-footer h6{
		margin-bottom: 0;
	}
	.inner-footer .left li{
		margin-right: 44px;
	}
	/*Category*/
	.main-wrapper .container{
		width: 100%;
		max-width: 100%;
		padding: 0 21px;
	}
	.main-wrapper .col-8{
		width: 100%;
		float: none;
		padding: 0;
		margin: 0;
	}
	.main-wrapper .col-4{
		display: none;
	}
	.main-wrapper .post-outer{
		width: 33.33%;
		padding: 0 9px;
	}
	.post .top{
		display: none;
	}
	.main-wrapper .post{
		margin-bottom: 50px;
		border-radius: 0;
		border-bottom-right-radius: 5px;
		border-bottom-left-radius: 5px;
	}
	.main-wrapper .post img{
		width: 100%;
		height: auto;
	}
	.cf-pagination{
		margin: 37px 0 160px 0;
	}
	.post .content{
		padding: 17px 12px 41px 12px;
	}
	.cat-wrap form{
		text-align: center;
	}
	.cat-wrap input{
		width: 90%;
		margin: 0 auto;
	}
	/*Author*/
	.author-wrap{
		width: 100%;
		max-width: 100%;
		padding-left: 96px;
		padding-right: 96px;
	}
	.author .breadcrumb .inners{
		padding-left: 17px;
		padding-bottom: 49px; 
	}
	.auth-inner{
		margin-bottom: 50px;
	}
	.auth-wrapper .container{
		width: 100%;
		max-width: 100%;
		padding-left: 21px;
		padding-right: 21px;
	}
	.auth-wrapper .post-large{
		width: 33.33%;
		padding:  0 9px;
	}
	.post-large .post .content{
		padding: 17px 12px 41px 12px;
	}
	.post-large .content p{
		display: none;
	}
	.auth-wrapper .post-large h4{
		margin-bottom: 0;
	}
	.cat-wrap button{
		right: 40px;
	}
	/*Single*/
	.post-wrapper .container{
		width: 100%;
	}
	.post-left, 
	.post-sidebar{
		display: none;
	}
	.post-content{
		margin-right: auto;
		margin-left: auto;
		float: none;
	}
	.single .main-imgs .bg{
		margin-right: 0;
	}
	.author-box{
		margin-bottom: 67px;
	}
	.bottom-share{
		display: block;
	}
	.bottom-share h5{
		font-family: 'Open Sans';
		font-style: normal;
		font-weight: 300;
		font-size: 15px;
		line-height: 20px;
		letter-spacing: -0.04em;
		color: #000000;
		margin-bottom: 47px;
	}
	.bottom-share ul{
		padding: 0;
		margin: 0;
		list-style: none;
		margin-bottom: 107px;
	}
	.bottom-share ul li{
		display: inline-block;
		margin-right: 20px;
	}
	.bottom-share ul img{
		width: 24px;
		height: auto;
	}
	.related-posts{
		width: 100%;
		margin-right: 0;
		padding-right: 0;
	}
	.related-posts .related-inner{
		width: 100%;
		margin-left: 0;
		padding-right: 0;
		padding: 0 21px;
	} 
	.related-posts .post-outer{
		padding-right: 9px;
		padding-left: 9px;
	}
	.related-posts h6{
		font-family: 'Open Sans';
		font-style: normal;
		font-weight: 300;
		font-size: 18px;
		line-height: 108.02%;
		letter-spacing: 0.09em;
		color: #000000;
		padding-left: 9px;
		margin-bottom: 38px;
	}
	.related-posts .post h5{
		margin-bottom: 10px;
	}
	.related-posts .post h5,
	.related-posts .post h5 a{
		font-family: 'Open Sans';
		font-style: normal;
		font-weight: 600;
		font-size: 15px;
		line-height: 108.02%;
		letter-spacing: 0.09em;
		color: #000000;
	}
	.related-posts p{
		font-family: 'Open Sans';
		font-style: normal;
		font-weight: 300;
		font-size: 14px;
		line-height: 108.02%;
		letter-spacing: 0.09em;
		color: #000000;
		display: -webkit-box;
		-webkit-line-clamp: 3;
		-webkit-box-orient: vertical;  
		overflow: hidden;
		padding-bottom: 3px;
	}
	.related-posts .post .content{
		padding: 15px 12px 14px 12px;
	}
	.related-posts .post{
		margin-bottom: 38px;
	}
	.related-posts .post-card{
		width: 523px;
	}
	.related-posts .card{
		align-items: center;height: 146px;
		margin-bottom: 165px;
	}
	.related-posts .card h4{
		margin-bottom: 10px;
	}
	.related-posts .card h4, 
	.related-posts .card h4 a{
		font-family: 'Open Sans';
		font-style: normal;
		font-weight: 600;
		font-size: 15px;
		line-height: 108.02%;
		letter-spacing: 0.09em;
		color: #000000;
	}
	.related-posts .card p{
		font-family: 'Open Sans';
		font-style: normal;
		font-weight: 300;
		font-size: 14px;
		line-height: 108.02%;
		letter-spacing: 0.09em;
		color: #000000;
	}
	.related-posts .card .top{
		display: none;
	}
	.related-posts .card figure{
		min-width: unset;
		height: unset;
		margin-right: 0;
		max-height: 100%;
		overflow: hidden;
	}
	.related-posts .card figure,
	.related-posts .card-content{
		flex-basis: 100%;
		text-align: center;		
	}
	.related-posts .card figure img{
		height: unset !important;		
	}
	.related-posts .card-content{
		padding: 17px 12px 26px 12px;
		text-align: left;
	}
}
@media( max-width: 991px ){
	html, body{
		overflow-x: hidden !important;
	}
	.breadcrumb .inners{
		padding-left: 30px;
		padding-right: 30px;
	}
	.breadcrumb a, 
	.breadcrumb span{
		font-family: 'Open Sans';
		font-style: normal;
		font-weight: 400;
		font-size: 13px;
		line-height: 18px;
		text-align: center;
		color: #000000;
	}
	.category .cat-wrap{
		padding: 78px 30px;
	}
	.category .cat-wrap p{
		font-family: 'Open Sans';
		font-style: normal;
		font-weight: 400;
		font-size: 20px;
		line-height: 27px;
		text-align: center;
		letter-spacing: 0.09em;
		color: #FFFFFF;
		margin-bottom: 0;
	}
}
@media( max-width: 767px ){
	.breadcrumb .inners{
		display: block;
		padding-bottom: 24px;
    	padding-left: 17px;
    	padding-right: 30px;
	}
	html{
		margin: 0 !important;
	}
	header.header{
		display: none;
	}
	.mobileheader{
		display: block !important;
		height: 60px;
		line-height: 60px;
		/*background: orange;*/
	}
	.mobileheader .inner{
		display: flex;
	    align-items: center;
	    justify-content: space-between;	    
	}	
	.mobileheader nav{
	    width: 100%;
	    height: 100%;
	    position: fixed;
	    background-color: var(--black);
	    overflow: hidden;
	    max-height: 0;
    	transition: max-height .2s ease-out;
    	background: #000;
    	top: 0;
    	left: 0;
    	max-width: 314px;
	}
	.mobileheader nav a{
		font-family: 'Orbitron';
		font-style: normal;
		font-weight: 700;
		font-size: 12px;
		line-height: 15px;
		color: #fff;
	}
	.mobileheader nav .current-menu-item > a{
		color: var(--greenColor);
	}
	.mobileheader nav > ul{
		padding-left: 52px;
		padding-top: 60px;
	}
	.mobileheader nav > ul li{
		line-height: 45px;
		position: relative;
	}
	.mobileheader nav > ul li a{
		position: relative;
	}
	.mobileheader nav > ul > li.menu-item-has-children > a:after{	
		content: '\f078';
		position: absolute;
		top: 0px;
	    right: -16px;
	    color: #fff;
	    font-size: 12px;
	    display: block;
	    font-family: 'Font Awesome 5 Free';
	    font-weight: 700;
	    transition: all 0.3s;
	}
	.mobileheader nav > ul > li.menu-item-has-children > a:hover:after,
	.mobileheader nav > ul > li.current-menu-item > a:after,
	.mobileheader nav > ul > li:hover > a:after{
		color: var(--greenColor);
	}
	.mobileheader nav > ul > li:hover > a{
		color: var(--greenColor);
	}
	.mobileheader nav > ul > li ul{
		display: none;
	}
	.mobileheader nav > ul > li:hover > ul{
		display: block;
	}
	/* Menu Icon */
	.hamb{
	    cursor: pointer;
	    z-index: 999;
    	position: relative;
	}/* Style label tag */
	.hamb-line {
	    background: var(--greenColor);
	    display: block;
	    height: 2px;
	    position: relative;
	    width: 25px;
	    z-index: 999;
	} /* Style span tag */
	.hamb-line::before,
	.hamb-line::after{
	    background: var(--greenColor);
	    content: '';
	    display: block;
	    height: 100%;
	    position: absolute;
	    transition: all .2s ease-out;
	    width: 100%;
	}
	.hamb-line::before{
	    top: 8px;
	}
	.hamb-line::after{
	    top: -8px;
	}
	.side-menu {
	    display: none;
	}
	/* Toggle menu icon */
	.side-menu:checked ~ nav{
		height: 100%;
	    max-height: 90%;
	    overflow-y: scroll;
	    z-index: 99;
	}
	.side-menu:checked ~ .hamb .hamb-line {
	    background: transparent;
	}
	.side-menu:checked ~ .hamb .hamb-line::before {
	    transform: rotate(-45deg);
	    top:0;
	}
	.side-menu:checked ~ .hamb .hamb-line::after {
	    transform: rotate(45deg);
	    top:0;
	}
	.main-search .form-wrap{
		padding: 0 20px;
	}
	.main-search .search-form button{
		right: 20px;
	}
	.main-search .search-form input{
		font-size: 24px;
	}
	.cat-wrap{
		padding: 49px 16px;
		margin-bottom: 80px;
	}
	.category .cat-wrap{
		padding: 49px 16px;
		margin-bottom: 80px;
	}
	.cat-wrap h1{
		font-family: 'Open Sans';
		font-style: normal;
		font-weight: 700;
		font-size: 30px;
		line-height: 108.02%;
		text-align: center;
		letter-spacing: 0.14em;
		text-transform: uppercase;
		color: #FFFFFF;
	}
	.category .cat-wrap p{
		font-weight: 400;
		font-size: 18px;
		line-height: 25px;
		text-align: center;
		letter-spacing: 0.09em;
	}
	/*Author*/
	.auth-wrapper .container{
		padding-left: 16px;
		padding-right: 16px;
	}
	.auth-wrapper .post-large{
		width: 100%;
		padding: 0;
	}
	.auth-wrapper .post-large h4{
		margin-bottom: 23px;
	}
	.post-large .post{
		margin-bottom: 26px;
	}
	.post-large .post .content{
		padding: 8px 15px 8px 15px;
	}
	.post-large .content p.author,
	.post-large .content p{
		display: block;
	}
	/*Smalll post*/
	.main-wrapper .post-outer{
		width: 50%;
	}
	/*Sing;e*/
	.single-head{
		width: 100%;
		max-width: unset;
		padding-left: 16px;
		padding-right: 16px;
	}
	.post-content{
		width: 100%;		
	}	
	.author-box{
		margin-bottom: 78px;
		padding: 14px 16px 8px 16px;
	}
	.author-meta h6{
		padding-left: 16px;
	}
	.bottom-share{
		padding-left: 16px;
	}
	.bottom-share h5{
		margin-bottom: 15px;
	}
	.bottom-share ul{
		margin-bottom: 80px;
	}
	.related-posts h6{
		margin-bottom: 23px;
		padding-left: 0;
	}
	.related-posts .related-inner{
		padding-left: 16px;
		padding-right: 16px;
	}
}
@media( max-width: 500px ){
	footer{
		padding: 30px 15px 0 20px
	}
	footer .left,
	footer .right{
		width: 100%;
		float: none;
		padding: 0;
	}
	.inner-footer .image-center{
		margin-top: 85px;
	}
	.inner-footer .right ul{
		margin-top: 70px;
	}
	.inner-footer .left li{
		margin-right: 50px;
	}
	.inner-footer .right li {
	    margin-right: 0px;
	    margin-bottom: 30px;
	    display: block;
	}
	.inner-footer h6{
		margin-bottom: 20px;
	}
	.lower-footer{
		display: block;
		padding-left: 20px;
	}
	.lower-footer .main-img{
		display: none;
	}
	.lower-footer p{
		margin: 0;
		padding-top: 64px;
		padding-bottom: 90px;
	}
	.lower-footer a{
		display: none;
	}
	/*Author*/
	.author-wrap{
		padding-left: 15.5px;
		padding-right: 16.5px;
	}
	.auth-inner{
		margin-bottom: 70px;
	}
	.auth-inner p{
		font-weight: 300;
		font-size: 15px;
		line-height: 20px;
		text-align: center;
		letter-spacing: -0.04em;
		color: #6D6D6D;
	}
	/*Single*/
	.related-posts .post-outer{
		width: 100%;
		padding: 0px;
	}
	.related-posts .post{
		margin-bottom: 43px;
	}
	.related-posts .post .content{
		padding: 19px 15px;
	}
	.related-posts .post h5, 
	.related-posts .post h5 a{
		font-family: 'Open Sans';
		font-style: normal;
		font-weight: 600;
		font-size: 17px;
		line-height: 108.02%;
		letter-spacing: 0.09em;
		color: #000000;
	}
	.related-posts p{
		font-family: 'Open Sans';
		font-style: normal;
		font-weight: 300;
		font-size: 14px;
		line-height: 19px;

		color: #000000;
		display: -webkit-box;
	    -webkit-line-clamp: 3;
	    -webkit-box-orient: vertical;
	    overflow: hidden;
	    /*padding-bottom: 3px*/
	}
	.related-posts .post .top span{
		position: relative;
		top: -1px;
	}
	.related-posts .card{
		height: auto;
		padding: 22px 19px;
		margin-left: 0;
		margin-bottom: 100px;
	}
	.related-posts .post-card{
		width: 100%;
	}
	.related-posts .card figure, 
	.related-posts .card-content {
	    flex-basis: unset;
	    text-align: left;
	}
	.related-posts .card-content {
		padding: 0;
		padding-left: 15px;
	}
	.related-posts .card figure img{
		height: 96px !important;
	}
	.related-posts .card .top{
		display: flex;
	}
	.related-posts .card li{
		margin-bottom: 9px;
	}
	.related-posts .card h4, 
	.related-posts .card h4 a{
		font-family: 'Open Sans';
		font-style: normal;
		font-weight: 600;
		font-size: 15px;
		line-height: 108.02%;
		letter-spacing: 0.09em;
		color: #000000;
		display: -webkit-box;
	    -webkit-line-clamp: 3;
	    -webkit-box-orient: vertical;
	    overflow: hidden;
	}
	.related-posts .card p{
		display: none;
	}
	.single .main-imgs{
		margin-bottom: 30px;
	}
	.post-content{
		margin-top: -62px;
	}
	.related-posts h6{
		padding-left: 0;
	}
}
@media( max-width: 400px ){
	.mobileheader .inner{
		padding-left: 26.5px;
		padding-right: 22.5px;
	}
	/*Category*/
	.main-wrapper .container{
		width: 100%;
		max-width: 100%;
		padding: 16px;
	}
	/*.main-wrapper .col-8{
		width: 100%;
		float: none;
		padding: 0;
		margin: 0;
	}*/
	.main-wrapper .col-4{
		display: none;
	}
	.main-wrapper .post-outer{
		width: 100%;
		padding: 0px;
	}
	.post .top{
		display: block;
	}
	.main-wrapper .post{
		margin-bottom: 26px;
		border-radius: 5px;		
	}
	.main-wrapper .post img{
		height: auto;
	}
	.cf-pagination{
		margin: 28px 0 80px 0;
	}
	.post .content{
		padding: 35px 15px 30px 15px;
	}
	.cat-wrap form{
		text-align: center;
	}
	.cat-wrap input{
		width: 90%;
		margin: 0 auto;
	}
	.cat-wrap button{
		right: 15px;
	}
}

/*Customizer*/
body.search .post,
body.category .post{
	min-height: 408px;
}
.main-wrapper .col-4{
	position: sticky;
  top: 0px;
	margin-bottom: 80px;
}
.related-posts p,
.related-posts .post h5 a{
	display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;  
  overflow: hidden;
}
.related-posts .card h4 a,
.related-posts .card p{
	display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;  
  overflow: hidden;
}
.post-large h4 a{
	display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;  
  overflow: hidden;
}