/*------------------------------------------------------------------
Main Stylesheet

Project:    Upstake - Multipurpose Business Template
Version:    1.0
Last change:    28/10/2024
Author:    creativemaze
Primary use:    Blog
-------------------------------------------------------------------*/

/*------------------------------------------------------------------
[Table of contents]

1. General
2. Header
	2.1. Logo & Navigation
	2.2. Header Content
3. Main Content
	3.1. Blog Area One 
	 
4. Footer
5. Responsive
-------------------------------------------------------------------*/

/* 1. GENERAL
 ----------- */
body,
html{
	width:100%;
    height: auto;
    margin:0;
    padding:0;
    overflow-x: hidden;
	font-family: sans-serif;
}

ul{
	list-style-type: none;
	margin: 0;
	padding: 0;
}

*{
	box-sizing: border-box;
}

.page_area{
	width: 100%;
}

#loading::before {
	content: '';
	position: fixed;
	z-index: 100000;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #ffffff;
}

#loading::after {
	content: '';
	position: fixed;
	z-index: 100000;
	top: 50%;
	left: 50%;
	width: 60px;
	height: 60px;
	margin: -30px 0 0 -30px;
	pointer-events: none;
	border-radius: 50%;
	opacity: 0.4;
	background: #333333;
	animation: loaderAnim 0.7s linear infinite alternate forwards;
}

@keyframes loaderAnim {
	to {
		opacity: 1;
		transform: scale3d(0.5,0.5,1);
	}
}

.blog_heading{
	font-family: 'Montserrat' , Arial, sans-serif;
	font-size: 40px;
	font-weight: 700;
	display: block;
	color: #111111;
	text-align: center;
	letter-spacing: 1px;
	line-height: 1.2em;
	max-width: 600px;
	margin-right: auto;
	margin-left: auto;
}

/* 2. HEADER
 ----------- */
 
/* --- 2.1. Logo & Navigation --- */
.navbar-header > a{
	text-decoration: none;
	color: #111111;
	transition: 0.5s;
	font-family: 'Montserrat', Arial, sans-serif;
	font-size: 22px;
	font-weight: 700;
	display: inline-block;
	text-align: center;
	letter-spacing: 1px;
	text-transform: uppercase;
	margin-top: 30px;
}

.navbar-header > a:hover{
	color: #111111;
}

#nav-logo > a{
	max-width: 160px; 
	min-height: 10px;
	position: relative;
	top: 33px;
}

#nav-logo > a img{
   position: relative;
   max-width: 160px;
   height: auto;
}

nav.navbar.bootsnav{
	background-color: transparent;
	border-bottom: none ;
	z-index: 5;
}

nav.navbar.bootsnav ul.nav{
	margin-right: 160px;
	margin-top: 5px;
}

nav.navbar.bootsnav li.dropdown ul.dropdown-menu{
	border: 0;
	background: #ffffff;
	z-index: 5;
}

nav.navbar.bootsnav ul.nav > li > a{
    color: #111111;
    font-family: 'Montserrat' , Arial, sans-serif;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
	letter-spacing: 1px;
	border-top: none;
}

nav.navbar.bootsnav ul.navbar-right li.dropdown ul.dropdown-menu li a{
    text-align: left;
	color: #111111;
	font-family: 'Montserrat' , Arial, sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-transform: capitalize;
	letter-spacing: 1px;
	border-bottom: none;
	transition: 0.5s;
}

nav.navbar.bootsnav ul.navbar-right li.dropdown ul.dropdown-menu li a:hover{
	color: #1488cc;
}

nav.navbar.bootsnav li.dropdown ul.dropdown-menu{
	left: 0;
}

 nav.navbar.bootsnav ul.nav > li.dropdown > a.dropdown-toggle:after{
    font-family: 'Font Awesome 5 Free';
    content: "\f107";
	font-size: 12px;	
}

nav.navbar.bootsnav ul.navbar-right li.dropdown ul.dropdown-menu li.dropdown > a.dropdown-toggle:before{
    font-family: 'Font Awesome 5 Free';
    float: right;
    content: "\f105";
    margin-top: 0;
}

nav.navbar.bootsnav ul.nav.navbar-right .dropdown-menu .dropdown-menu{
    left: 200px;
}

nav.navbar.bootsnav li.dropdown ul.dropdown-menu ul.dropdown-menu{
    top: 2px;
}

nav.navbar.bootsnav ul.dropdown-menu.megamenu-content .col-menu{
    border-left: solid 1px #e0e0e0;
    border-right: solid 1px #e0e0e0;
}

nav.navbar.bootsnav ul.dropdown-menu.megamenu-content .content ul.menu-col li a{
	font-family: 'Montserrat' , Arial, sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #111111;
    text-transform: capitalize;
	letter-spacing: 1px;
}

nav.navbar.bootsnav ul.dropdown-menu.megamenu-content .content ul.menu-col li a:hover{
	color: #1488cc;
}

nav.navbar.bootsnav li.dropdown ul.dropdown-menu.megamenu-content .title{
    font-size: 14px;
    font-weight: 600;
	font-family: 'Montserrat' , Arial, sans-serif;
    color: #1488cc;
    text-transform: uppercase;
	letter-spacing: 1px;
}

.attr-nav > ul > li.dropdown ul.dropdown-menu{
    margin-top: 0;
    margin-left: 55px;
    width: 250px;
    left: -250px !important;
}

.attr-nav > ul > li > a{
    color: #111111;
	padding-top: 36px;
	margin-left: -12px;
	position: relative;
	left: -160px;
}

.top-search ::placeholder{
	font-family: 'Montserrat' , Arial, sans-serif;
	font-size: 14px;
	font-weight: 600;
	letter-spacing: 1px;
}

/* --- 2.2. Header Content --- */
.top_box{
	height: 50px;
	overflow-y: auto;
	border-bottom: solid 1px #e0e0e0;
}

.top_info{
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	max-width: 1400px;
	margin: auto
}

.left_info,
.right_info{
	position: relative;
	flex: 50%;
	width: 50%;
	padding-top: 15px;
}

.left_info{
	max-width: 600px;
	margin: auto;
	text-align: left;
	display: block;
}

.right_info{
	max-width: 400px;
	margin: auto;
	text-align: right;
	display: block;
}

.left_info .fas,
.left_info .far,
.right_info > a > .fab{
	font-size: 16px;
	color: #1488cc;
}

.left_info .fas,
.left_info .far{
	padding-right: 8px;
}

.right_info > a .fab{
	padding-right: 14px;
}

.right_info > a > .fab:hover{
	color: #111111;
}

.sub_width{
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	text-align: center;
}

.left_sub{
	flex: 50%;
	width: 50%;
	text-align: left;
}

.right_sub{
	flex: 50%;
	width: 50%;
	text-align: center;
	padding-left: 25px;
}

.top_sub{
	font-family: 'Montserrat' , Arial, sans-serif;
	font-size: 13px;
	font-weight: 700;
	text-transform: capitalize;
	display: block;
	color: #111111;
	letter-spacing: 1px;
	text-align: left;
	margin-bottom: 0;
}

.head_btn{
	max-width: 300px;
	display: inline-block;
	position: absolute;
	top: 19px;
	right: 0;
}

.head_btn a{
	background-color: #1488cc;
	width: 150px;
	margin: 0 auto;
    color: #ffffff;
    padding: 12px 14px;
    text-decoration: none;
	text-transform: uppercase;
    display: block;
    font-size: 13px;
	font-weight: 600;
	font-family: 'Montserrat', Arial, sans-serif;
    transition: 0.5s;
	border: 1px solid #1488cc;
	letter-spacing: 1px;
	text-align: center;
}

.head_btn a:hover{
	background: transparent;
	color: #111111;
	border-color: #111111; 
}

.sliderwrap{
	position: relative;
	top: -140px;
}

.header__content{
	display: flex;
	flex-direction: column;
	justify-content:  center;
	align-items: center;
	min-height: 550px;
}

.slide__content{
	position: relative;
	z-index: 1;
	min-height: 550px;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
}

.header-title {
	max-width: 600px;
	display: block;
	padding: 0 20px;
}

.header-title__main{
	font-family: 'Montserrat' , Arial, sans-serif;
	font-size: 45px;
	font-weight: 700;
	letter-spacing: 1px;
	text-align: center;
	display: block;
	color: #111111;
	line-height: 1.2em;
}

.header-title__sub{
	font-family: 'Montserrat' , Arial, sans-serif;
	font-size: 14px;
	font-weight: 600;
	display: block;
	color: #1488cc;
	letter-spacing: 1px;
	text-align: center;
	text-transform: uppercase;
	line-height: 1.5em;
	padding-bottom: 24px;
}

/* 3. MAIN CONTENT
 ----------- */
 
/* --- 3.1. Blog Area One --- */
.blog_area_one{
	max-width: 1280px;
	margin: -2em auto 9em;
	padding: 0 25px;
}

.blog_group_one{
	width: 100%;
	display: flex;
	flex-wrap: wrap;
}

.post_col{
	flex: 66.66%;
	width: 66.66%;
	padding: 0 25px;
}

.sidebar_col{
	flex: 33.33%;
	width: 33.33%;
	padding: 0 25px;
}

.post_area{
	max-width: 900px;
	position: relative;
	margin: auto;
}

.post_box{
	overflow: hidden;
	position: relative;
}

.post_content{
	text-align: left;
}

.post_title{
	font-family: 'Montserrat' , Arial, sans-serif;
	font-size: 40px;
	font-weight: 700;
	display: block;
	color: #111111;
	text-align: left;
	letter-spacing: 1px;
	line-height: 1.2em;
	margin-top: 0;
}

.post_meta{
	max-width: 600px;
	margin: 0;
	padding: 10px 0;
	width: 100%;
	display: flex;
	flex-wrap: wrap;
}

.post_date,
.post_author,
.post_comments_count{
	flex: 33.33%;
	width: 33.33%;
	padding: 10px 0;
}

.date_icon{
	float: left;
	display: inline-block;
}

.date_icon .fi{
	position: relative;
	top: 6px;
	text-align: center;
	font-size: 22px;
	display: inline-block;
	padding-right: 10px;
	color: #1488cc;
}

.date_title h4{
	font-family: 'Montserrat' , Arial, sans-serif;
	font-size: 14px;
	display: block;
	font-weight: 500;
	color: #111111;
	letter-spacing: 1px;
	text-align: left;
	line-height: 1.4em;
}

.post_icon{
	float: left;
	display: inline-block;
}

.post_icon .fi{
	position: relative;
	top: 6px;
	text-align: center;
	font-size: 22px;
	display: inline-block;
	padding-right: 10px;
	color: #1488cc;
}

.author_detail{
	float: left;
	display: inline-block;
}

.author_detail h4{
	font-family: 'Montserrat' , Arial, sans-serif;
	font-size: 14px;
	display: block;
	font-weight: 500;
	color: #111111;
	letter-spacing: 1px;
	text-align: left;
	line-height: 1.4em;
}

.post_comments_count > a > .fi{
	position: relative;
	top: 6px;
	text-align: left;
	font-size: 22px;
	padding-right: 10px;
	display: inline-block;
}

.post_comments_count > a{
	font-family: 'Montserrat', Arial, sans-serif;
    font-size: 14px;
	font-weight: 600;
	text-decoration: none;
	text-align: center;
	transition: 0.5s;
	color: #1488cc;
	line-height: 1.5em;
}

.post_comments_count > a:hover{
	color: #111111;
}

.post_image{
	position: relative;
	overflow: hidden;
	margin: 25px auto 35px;
}

.post_image figcaption{
	font-family: 'Montserrat' , Arial, sans-serif;
	font-size: 14px;
	font-weight: 600;
	display: block;
	color: #111111;
	letter-spacing: 1px;
	text-align: left;
	padding-top: 11px;
}

.post_image img{
	width: 100%;
	height: auto;
	display: block;
}

.post_entry{
	font-family: 'Roboto' , Arial, sans-serif;
	font-size: 16px;
	font-weight: normal;
	display: block;
	color: #696969;
	letter-spacing: 1px;
	text-align: left;
	line-height: 1.5em;
}

#first_char::first-letter{
	font-size: 35px;
	font-weight: 600;
	color: #111111;
}

.post_heading{
	font-family: 'Montserrat' , Arial, sans-serif;
	font-size: 20px;
	font-weight: 700;
	display: block;
	color: #111111;
	text-align: left;
	letter-spacing: 1px;
	line-height: 1.4em;
	padding-bottom: 7px;
}

.entry_list{
	padding: 12px 0;
}

.entry_list li{
	font-family: 'Montserrat' , Arial, sans-serif;
	font-size: 14px;
	font-weight: 600;
	display: block;
	color: #111111;
	letter-spacing: 1px;
	text-align: left;
	padding: 7px 0;
}

.entry_list > li::before{
	font-family: 'uicons-thin-straight';
	content: "\fa38";
	font-size: 26px;
	font-weight: 100;
	position: relative;
	top: 8px;
	padding-right: 12px;
	color: #1488cc;
}

.post_feature{
	margin: 0 0 30px 0;
	width: 100%;
	display: flex;
	flex-wrap: wrap;
}

.feature_col{
	flex: 50%;
	width: 50%;
	padding: 20px 20px 20px 0;
}

.feature_box{
	position: relative;
	text-align: center;
	max-width: 400px;
	margin: auto;
}

.feature_image{
	overflow: hidden;
	position: relative;
}

.feature_image img{
	width: 100%;
	height: auto;
	display: block;
}

.feature_image > a > img{
	transition: ease-in-out 3.25s;
}

.feature_image > a > img:hover{
	transform: scale(1.15);
}

.author_area{
	margin-top: 3em;
}

.author_box{
	max-width: 750px;
	width: 100%;
	text-align: center;
}

.author_info{
	width: 100%;
	padding: 30px 10px 30px 30px;
	text-align: left;
	min-height: 100px;
	background-color: #eeeeee;
	overflow: auto;
	display: block;
}

.author_info_left{
	float: left;
	width: 15%;
	max-width: 80px;
	height: 80px;
}

.author_info_right{
	float: left;
	width: 85%;
	padding-left: 30px;
}

.author_info img{
	max-width: 80px;
	height: 80px;
	margin: auto;
	border-radius: 50%;
	display: block;
	text-align: center;
}

.author_name{
	font-family: 'Montserrat' , Arial, sans-serif;
	font-size: 18px;
	font-weight: 600;
	display: block;
	color: #111111;
	letter-spacing: 1px;
	text-align: left;
	line-height: 1.4em;
	margin-top: 0;
}

.author_title{
	font-family: 'Montserrat' , Arial, sans-serif;
	font-size: 14px;
	font-weight: 600;
	display: block;
	color: #1488cc;
	text-transform: uppercase;
	letter-spacing: 1px;
	text-align: left;
	line-height: 1.4em;
	margin-top: 0;
}

.author_info_right q{
	font-family: 'Roboto' , Arial, sans-serif;
	font-size: 15px;
	font-weight: normal;
	display: block;
	color: #696969;
	letter-spacing: 1px;
	text-align: left;
	line-height: 1.5em;
	padding: 10px 0;
	clear: both;
}

.author_meta{
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	margin-top: 10px;
}

.author_btn{
	flex: 50%;
	width: 50%;
}

.author_links{
	flex: 50%;
	width: 50%;
}

.author_icon{
	margin-top: 8px;
	display: block;
	clear: both;
}

.author_links a{
	display: inline-block;
}

.author_links .fab,
.author_links .fa{
	font-size: 14px;
	color: #ffffff;
	width: 35px;
	height: 35px;
	background-color: #1488cc;
	padding: 10px;
	border: solid 1px #1488cc;
	border-radius: 50%;
	display: inline-block;
	margin-right: 7px;
	transition: 0.5s;
}

.author_links .fa-facebook-f{
	padding: 10px 12px !important;
}

.author_links .fab:hover,
.author_links .fa:hover{
	color: #ffffff;
	background-color: #111111;
	border: solid 1px #111111;
}

.author_btn a{
	width: auto;
	margin: 10px 0 0;
    color: #1488cc;
    text-decoration: none;
	text-transform: uppercase;
    display: inline-block;
    font-size: 14px;
	font-weight: 600;
	font-family: 'Montserrat', Arial, sans-serif;
    transition: 0.5s;
	border-bottom: 2px solid #1488cc;
	letter-spacing: 1px;
	text-align: center;
}

.author_btn a::after{
	content: "\203A";
	position: relative;
	top: 1px;
	font-size: 20px;
	display: inline-block;
	padding-left: 5px;
	margin-right: -3px;
}

.author_btn a:hover{
	color: #111111;
	border-color: #111111;
}

.sidebar_box{
	max-width: 350px;
	margin-bottom: 5em;
}

.last_sidebar{
	margin-bottom: 0;
}

.sidebar_title{
	font-family: 'Montserrat' , Arial, sans-serif;
	font-size: 20px;
	font-weight: 700;
	display: block;
	color: #111111;
	text-align: left;
	letter-spacing: 1px;
	line-height: 1.4em;
}

.sidebar_info p{
	font-family: 'Roboto' , Arial, sans-serif;
	font-size: 15px;
	font-weight: normal;
	display: block;
	color: #696969;
	letter-spacing: 1px;
	text-align: left;
	line-height: 1.5em;
	padding: 10px 0 0;
}

.sidebar_cat{
	width: 100%;
	display: flex;
	flex-wrap: wrap;
}

.cat_col{
	flex: 50%;
	width: 50%;
	padding: 10px 20px 20px 0;
}

.cat_box{
	max-width: 200px;
	background-color: #eeeeee;
	padding: 14px 10px;
}

.cat_box h3{
	margin: 0;
}

.cat_box h3 a{
	font-family: 'Montserrat', Arial, sans-serif;
	font-size: 14px;
	font-weight: 600;
	display: block;
	text-align: center;
	color: #1488cc;
	letter-spacing: 1px;
	line-height: 1.4em;
	text-decoration: none;
	text-transform: uppercase;
	transition: 0.5s;
}

.cat_box h3 a:hover{
	color: #111111;
}

.sidebar_button a{
	width: auto;
	margin: 10px 0 0;
    color: #1488cc;
    text-decoration: none;
	text-transform: uppercase;
    display: inline-block;
    font-size: 14px;
	font-weight: 600;
	font-family: 'Montserrat', Arial, sans-serif;
    transition: 0.5s;
	border-bottom: 2px solid #1488cc;
	letter-spacing: 1px;
	text-align: center;
}

.sidebar_button a::after{
	content: "\203A";
	position: relative;
	top: 1px;
	font-size: 20px;
	display: inline-block;
	padding-left: 5px;
	margin-right: -3px;
}

.sidebar_button a:hover{
	color: #111111;
	border-color: #111111;
}

.sidebar_list > ul li a{
	font-family: 'Montserrat' , Arial, sans-serif;
	font-size: 14px;
	font-weight: 600;
	display: inline-block;
	text-decoration: none;
	color: #696969;
	letter-spacing: 1px;
	text-align: left;
	padding: 7px 0;
	transition: 0.5s;
}

.sidebar_list > ul li a:hover{
	color: #1488cc;
}

.first_post{
	margin-top: 25px;
}

.post_list{
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	margin-bottom: 28px;
}

.left_post{
	flex: 33.33%;
	width: 33.33%;
}

.right_post{
	flex: 66.66%;
	width: 66.66%;
	max-width: 250px;
	padding-left: 14px;
}

.left_post img{
	width: 100%;
	max-width: 120px;
	height: auto;
}

.right_post a{
	font-family: 'Montserrat', Arial, sans-serif;
	font-size: 14px;
	font-weight: 500;
	letter-spacing: 1px;
	text-decoration: none;
	color: #111111;
	text-align: left;
	transition: 0.5s;
	line-height: 1.4em;
}

.right_post a:hover{
	color: #1488cc;
}

/* --- 3.2. Blog Area Two --- */
.blog_area_two{
	width: 100%;
	margin: 0 0 9em;
	min-height: 400px;
	padding: 6em 25px;
	background-color: #eeeeee;
}

.blog_group_two{
	max-width: 1280px;
	width: 100%;
	margin: 0 auto;
	display: flex;
	flex-wrap: wrap;
	padding-bottom: 40px;
}

.blog_col{
	flex: 33.33%;
	width: 33.33%;
	padding: 30px 20px 0;
}

.blog_box{
	max-width: 400px;
	position: relative;
	text-align: center;
	margin: auto;
}

.blog_image{
	position: relative;
	overflow: hidden;
	transition: .5s ease;
}

.blog_box .blog_image > a > img{
	transition: ease-in-out 3.25s;
}

.blog_image:hover > a > img{
	transform: scale(1.15);
}

.blog_image img{
	width: 100%;
	height: auto;
	display: block;
}

.blog_overlay{
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	height: 100%;
	width: 100%;
	background: rgba(0, 0, 0, 0.6);
}

.blog_content{
	position: absolute;
	left: 50%;
	bottom: 25px;
	transform: translateX(-50%);
	width: 100%;
	padding: 0 15px 0 15px;
	text-align: center;
}

.blog_meta{
	position: absolute;
	left: 20px;
	top: 20px;
	text-align: center;
}

.blog_date{
	background-color: #ffffff;
	display: inline-block;
	padding: 12px 24px;
	margin-bottom: 6px;
}

.blog_date h4{
	font-family: 'Montserrat' , Arial, sans-serif;
	font-size: 15px;
	display: block;
	font-weight: 600;
	color: #1488cc;
	text-transform: uppercase;
	letter-spacing: 1px;
	text-align: center;
	margin: 0;
}

.blog_comment > a > .fi{
	text-align: center;
	font-size: 20px;
	font-weight: 600;
	padding-right: 4px;
	position: relative;
	top: 4px;
	display: inline-block;
}

.blog_comment > a{
	font-family: 'Montserrat', Arial, sans-serif;
    font-size: 15px;
	font-weight: 600;
	text-decoration: none;
	text-align: center;
	transition: 0.5s;
	color: #ffffff;
	line-height: 1.5em;
}

.blog_comment a:hover{
	opacity: 0.5;
}

.blog_title a{
	font-family: 'Montserrat' , Arial, sans-serif;
	font-size: 20px;
	display: block;
	font-weight: 600;
	color: #ffffff;
	letter-spacing: 1px;
	text-align: center;
	text-decoration: none;
	transition: 0.5s;
	line-height: 1.4em;
}

.blog_title a:hover{
	opacity: 0.6;
}

/* --- 3.3. Blog Area Three --- */
.blog_area_three{
	max-width: 800px;
	padding: 0 25px;
	margin: 0 auto 9em;
}

.blog_group_three{
	width: 100%;
	padding-top: 30px;
}

.comment_head,
.reply_head{
	font-family: 'Montserrat' , Arial, sans-serif;
	font-size: 25px;
	font-weight: 700;
	display: block;
	text-align: left;
	color: #111111;
	letter-spacing: 1px;
	line-height: 1.3em;
}

.comment_box{
	max-width: 750px;
	width: 100%;
	text-align: center;
}

.comment_info{
	width: 100%;
	padding: 0;
	text-align: center;
	min-height: 100px;
	overflow: hidden;
	display: block;
	margin-bottom: 4em;
}

.comment_info_left{
	float: left;
	width: 15%;
	max-width: 80px;
	height: 80px;
}

.comment_info_right{
	float: left;
	width: 85%;
	padding-left: 30px;
	text-align: left;
}

.comment_info img{
	max-width: 80px;
	height: 80px;
	margin: auto;
	border-radius: 50%;
}

.comment_name{
	font-family: 'Montserrat' , Arial, sans-serif;
	font-size: 16px;
	font-weight: 600;
	display: block;
	color: #111111;
	letter-spacing: 1px;
	text-align: left;
	line-height: 1.4em;
	margin-top: 0;
}

.comment_date{
	font-family: 'Montserrat' , Arial, sans-serif;
	font-size: 14px;
	display: inline-block;
	font-weight: 500;
	color: #1488cc;
	letter-spacing: 1px;
	text-align: left;
	line-height: 1.5em;
}

.comment_info_right p{
	font-family: 'Roboto' , Arial, sans-serif;
	font-size: 15px;
	font-weight: normal;
	display: block;
	color: #696969;
	letter-spacing: 1px;
	text-align: left;
	line-height: 1.5em;
	padding-top: 20px;
	padding-bottom: 8px;
}

.comment_reply > a > .fi{
	position: relative;
	bottom: -6px;
	text-align: center;
	font-size: 20px;
	padding-left: 5px;
	display: inline-block;
}

.comment_reply > a{
	font-family: 'Montserrat', Arial, sans-serif;
    font-size: 15px;
	font-weight: 600;
	text-decoration: none;
	text-align: left;
	transition: 0.5s;
	color: #1488cc;
	line-height: 1.5em;
}

.comment_reply > a:hover{
	color: #111111;
}

.comment_indent{
	padding-left: 80px;
}

.comment_indent_level{
	padding-left: 160px;
}

.comment_form{
	width: 100%;
	padding: 0;
	text-align: center;
	min-height: 100px;
	display: block;
}

.comment_form form{
	margin-top: 30px;
}

.reply_entry{
	font-family: 'Roboto' , Arial, sans-serif;
	font-size: 15px;
	font-weight: normal;
	display: block;
	color: #696969;
	letter-spacing: 1px;
	text-align: left;
	line-height: 1.5em;
	padding-top: 8px;
}

.star{
	color: red;
}

.form-row {
	flex-direction: column;
	display: flex;
}

.comment_form label{
	font-family: 'Montserrat' , Arial, sans-serif;
	font-size: 14px;
	font-weight: 600;
	display: block;
	color: #111111;
	letter-spacing: 1px;
	text-align: left;
	line-height: 1.5em;
	padding-bottom: 4px;
}

.comment_form input[type="text"],
.comment_form input[type="email"]{
	font-family: 'Montserrat' , Arial, sans-serif;
	font-size: 13px;
	font-weight: 500;
	padding: 7px 10px;
	height: 40px;
	border: none;
	margin-bottom: 20px;
	flex-grow: 1;
	letter-spacing: 1px;
	border: solid 1px #e0e0e0;
}

.comment_form textarea{
	font-family: 'Montserrat' , Arial, sans-serif;
	font-size: 13px;
	font-weight: 500;
	padding: 7px 10px;
	border: none;
	width: auto;
	min-height: 150px;
	margin-bottom: 20px;
	flex-grow: 1;
	letter-spacing: 1px;
	border: solid 1px #e0e0e0;
}

.comment_form input[type="email"]::placeholder,
.comment_form input[type="text"]::placeholder,
.comment_form textarea::placeholder{
	color: #333333;
	opacity: 1;
}

.comment_form input[type="submit"]{
	font-family: 'Montserrat' , Arial, sans-serif;
	font-size: 14px;
	font-weight: 600;
	margin-top: 15px;
	display: block;
	text-align: center;
	text-transform: uppercase;
	color: #ffffff;
	letter-spacing: 1px;
	background-color: #1488cc;
	border: solid 1px #1488cc;
	padding: 12px 17px;
	transition: 0.5s;
}

.comment_form input[type="submit"]:hover{
	background-color: #ffffff;
	color: #111111;
	border-color: #111111;
}

/* 4. FOOTER
 ----------- */
.footer{
	width: 100%;
	min-height: 350px;
	position: relative;
	clear: both;
	height: 100%;
	background-color: #111111;
}

.footer_area{
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 25px;
	display: flex;
	flex-wrap: wrap;
}

.footer_col{
	flex: 25%;
	width: 25%;
	padding: 0 20px;
	max-width: 300px;
	margin: 0 auto;
}

.footer_col{
	padding-top: 4.5em;
}

a.footer-logo img{
	max-width: 150px;
	height: auto;
	display: inline-block;
	margin-top: 12px;
	margin-bottom: 10px;
}

.footer_box > h3 > a{
	font-family: 'Montserrat', Arial, sans-serif;
	font-size: 22px;
	font-weight: 700;
	letter-spacing: 1px;
	text-transform: uppercase;
	text-decoration: none;
	color: #ffffff;
	text-align: left;
}

.footer_box > p{
	font-family: 'Montserrat', Arial, sans-serif;
	font-size: 14px;
	font-weight: 500;
	letter-spacing: 1px;
	color: #ffffff;
	text-align: left;
	padding: 20px 0;
	line-height: 1.5em;
}

.footer_social{
	margin: 12px 0;
}

.footer_social > a > .fab,
.footer_social > a > .fa{
	font-size: 16px;
	color: #ffffff;
	text-align: left;
	transition: 0.5s;
}

.footer_social > a{
	padding-right: 12px;
}

.footer_social > a > .fab:hover,
.footer_social > a > .fa:hover{
	color: #1488cc;
}

.footer_col > h4{
	font-family: 'Montserrat', Arial, sans-serif;
	font-size: 18px;
	font-weight: 700;
	letter-spacing: 1px;
	color: #ffffff;
}

.footer_col > ul > li{
	padding: 4px 0;
}

.footer_col > ul > li a{
	font-family: 'Montserrat', Arial, sans-serif;
	font-size: 13px;
	font-weight: 500;
	letter-spacing: 1px;
	text-decoration: none;
	color: #ffffff;
	text-align: justify;
	transition: 0.5s;
}

.footer_col > ul > li a:hover{
	color: #1488cc;
}

.subscribe-row{
	text-align: left;
}

.col_info input[type="email"]{
	display: block;
	width: 100%;
	height: 50px;
	padding: 14px;
	padding-left: 0;
	background: transparent;
	border: none;
	border-bottom: solid 1px #ffffff;
	font-family: 'Montserrat' , Arial, sans-serif;
	font-size: 13px;
	font-weight: normal;
	color: #dddddd;
	letter-spacing: 1px;
}

.col_info input[type="email"]::placeholder{
	color: #dddddd;
	opacity: 1;
}

.col_info{
	padding-top: 10px;
}

.col_info input[type="submit"]{
	padding: 12px 14px;
	width: 135px;
	text-align: center;
	text-transform: uppercase;
	font-family: 'Montserrat' , Arial, sans-serif;
	font-size: 14px;
	font-weight: 600;
	margin-top: 20px;
	color: #ffffff;
	letter-spacing: 1px;
	background-color: #1488cc;
	border-radius: 0;
	border: solid 1px #1488cc;
	transition: 0.5s;
}

.col_info input[type="submit"]:hover{
	background-color: #ffffff;
	color: #111111;
	border-color: #ffffff;
}

.col_info input[type="email"]:focus{
	box-shadow: 0 0 0 2px #e0e0e0;
}

.details{
	width: 100%;
	padding-top: 35px;
	padding-bottom: 10px;
	margin-top: 35px;
	border-top: solid 1px #ffffff;
	
}

.details p{
	font-family: 'Montserrat', Arial, sans-serif;
	font-size: 13px;
	font-weight: normal;
	letter-spacing: 1px;
	color: #ffffff;
	text-align: center;
}

/* 5. RESPONSIVE
 ----------- */
@media only screen and (max-width: 992px){
	nav.navbar.bootsnav .navbar-toggle{
        background: transparent;
        color: #111111;
		font-size: 25px;
		margin-top: 7px;
		margin-bottom: 12px;
	}
	
	.head_btn{	
		margin-top: 40px;
		position: relative;
		left: 50%;
		transform: translateX(-50%);
	}
	
	.head_btn a:hover{
		background: transparent;
		border-color: #111111;
		color: #111111;
	}
	
	.navbar-header > a{
		margin-top: 14px;
	}
	
	#nav-logo > a{
		top: 19px;
	}
	
	nav.navbar.bootsnav ul.nav > li > a{
		color: #111111;
	}
	
	nav.navbar.bootsnav li.dropdown a.dropdown-toggle:before{
        font-family: 'Font Awesome 5 Free';
        content: "\f105";
        float: right;
        font-size: 16px;
        margin-left: 10px;
    }
	
	nav.navbar.bootsnav ul.nav > li.dropdown > a.dropdown-toggle:after{
		display: none;	
	}
	
	nav.navbar.bootsnav .dropdown .megamenu-content .col-menu .title:before{
        font-family: 'Font Awesome 5 Free';
        content: "\f105";
    }
	
	nav.navbar.bootsnav ul.nav.navbar-right .dropdown-menu .dropdown-menu{
		left: 0;
	}
	
	nav.navbar.bootsnav ul.navbar-right li.dropdown ul.dropdown-menu li.dropdown.on > a.dropdown-toggle:before{
		 content: "\f107";
	}
	
	nav.navbar.bootsnav ul.dropdown-menu.megamenu-content .col-menu{
		border-left: none;
		border-right: none;
	}
	
	.left_info,
	.right_info,
	.left_sub,
	.right_sub{
		flex: 100%;
		width: 100%;
		text-align: center;
	}
	
	.right_sub{
		padding-left: 0;
		padding-top: 12px;
	}
	
	.top_sub,
	.left_info a{
		text-align: center;
	}
	
	.top_sub{
		padding-bottom: 4px;
	}
	
	.attr-nav > ul > li > a{
		position: relative;
		left: 0;
		padding-top: 21px;
	}
	
	.post_col{
		flex: 100%;
		width: 100%;
	}
	
	.sidebar_col{
		flex: 100%;
		width: 100%;
		margin-top: 4em;
	}
	
	.blog_col{
		flex: 50%;
		width: 50%;
	}
	
	.footer_col{
		flex: 50%;
		width: 50%;
	}
}

@media only screen and (max-width: 600px){
	.header-title__main,
	.blog_heading,
	.post_title{
		font-size: 30px;
	}
	
	.post_col,
	.sidebar_col{
		padding-left: 0;
		padding-right: 0;
	}
	
	.post_date,
	.post_author,
	.post_comments_count{
		flex: 100%;
		width: 100%;
	}
	
	.author_info_left,
	.author_info_right{
		width: 100%;
		float: none;
	}
	
	.author_info_right{
		padding-left: 0;
		margin-top: 30px;
	}
	
	.author_btn,
	.author_links{
		flex: 100%;
		width: 100%;
		text-align: left;
	}
	
	.author_links{
		margin-top: 25px;
	}
	
	.blog_col{
		flex: 100%;
		width: 100%;
	}
	
	.feature_col{
		flex: 100%;
		width: 100%;
	}
	
	.footer_col{
		flex: 100%;
		width: 100%;
		margin: 0;
	}
}

@media only screen and (max-width: 420px){
	.blog_col,
	.feature_col{
		padding-left: 0;
		padding-right: 0;
	}
	
	.comment_info_left,
	.comment_info_right{
		width: 100%;
		float: none;
	}
	
	.comment_info_right{
		padding-left: 0;
		margin-top: 20px;
	}
	
	.comment_indent{
		padding-left: 35px;
	}

	.comment_indent_level{
		padding-left: 70px;
	}
}

@media only screen and (max-width: 360px){
	.cat_col{
		flex: 100%;
		width: 100%;
	}
}
