
*{
	margin:0;
	padding:0;
}
body{
	background:#FFFFFF;
	font-family: 'Arial', sans-serif;
}
/* ========== Custom CSS Starts ========== */

/* ===== CSS For "Common Cases" Starts Here ===== */
.grid_item{
    display: -ms-grid;
    display: grid;
    -ms-flex-line-pack: center;
	align-content: center;
}
/* ======================== */
.heading{
	margin-bottom: 10px;
}
.heading h3{
	color: #000000;
	font-family: 'Arial', sans-serif;
	font-weight: bold;
	font-size: 21px;
	margin-bottom: 0px;
}
/* ======================== */
.para_texts p{
	color: #000000;
	font-family: 'Arial', sans-serif;
	font-weight: normal;
	font-size: 14px;
	line-height: 1.5;
	margin-bottom: 10px;
}
.para_texts p:last-child{
	margin-bottom: 0px;
}
.para_texts p .bold_texts{
	font-weight: bold;
}
.para_texts p a{
	color: #4775BD;
	font-weight: bold;
	text-decoration: underline;
}
/* ======================== */
.text_link{
	text-align: center;
}
.text_link a{
	color: #0A78C2;
	font-family: Tahoma,Verdana;
	font-weight: bolder;
	font-size: 36px;
	text-decoration: none;
	line-height: 1;
	border-bottom: 1px solid #0A78C2;
	display: inline-block;
}
.text_link a:hover{
	border-bottom: none;
}
/* ======================== */
.page_contents{
	max-width: 1020px;
	margin: 0px auto;
}
.container{
	padding: 0px;
}
/* ===== CSS For "Common Cases" Ends Here ===== */


/* ============================== */
/* ============================== */
/* ============================== */


/* ===== Humberger Menu Icon ===== */
.humbergur_icon{
	width: 30px;
	height: 20px;
	position: relative;
	margin: 0px;
	-webkit-transform: rotate(0deg);
	-moz-transform: rotate(0deg);
	-o-transform: rotate(0deg);
	transform: rotate(0deg);
	-webkit-transition: .5s ease-in-out;
	-moz-transition: .5s ease-in-out;
	-o-transition: .5s ease-in-out;
	transition: .5s ease-in-out;
	cursor: pointer;
}
.humbergur_icon span{
	display: block;
	position: absolute;
	height: 3px;
	width: 100%;
	border-radius: 9px;
	opacity: 1;
	left: 0;
	-webkit-transform: rotate(0deg);
	-moz-transform: rotate(0deg);
	-o-transform: rotate(0deg);
	transform: rotate(0deg);
	-webkit-transition: .25s ease-in-out;
	-moz-transition: .25s ease-in-out;
	-o-transition: .25s ease-in-out;
	transition: .25s ease-in-out;
}
.humbergur_icon span {
	background: #FFFFFF;
}
.humbergur_icon span:nth-child(1) {
	top: 0px;
}
.humbergur_icon span:nth-child(2),
.humbergur_icon span:nth-child(3) {
	top: 10px;
}
.humbergur_icon span:nth-child(4) {
	top: 20px;
}
.humbergur_icon.open span:nth-child(1) {
	top: 11px;
	width: 0%;
	left: 50%;
}
.humbergur_icon.open span:nth-child(2) {
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	-o-transform: rotate(45deg);
	transform: rotate(45deg);
}
.humbergur_icon.open span:nth-child(3) {
	-webkit-transform: rotate(-45deg);
	-moz-transform: rotate(-45deg);
	-o-transform: rotate(-45deg);
	transform: rotate(-45deg);
}
.humbergur_icon.open span:nth-child(4) {
	top: 11px;
	width: 0%;
	left: 50%;
}
/* ===== Humberger Menu Icon ===== */

.navbar-toggler{
	padding: 0px;
}
.navbar{
	background: #4775BD;
	padding: 25px 20px;
}
.navbar .container{
	padding: 0px;
}
.navbar .navbar-brand{
	text-decoration: none;
	padding: 0px;
}
.navbar .navbar-brand span{
	color: #FFFFFF;
	font-family: 'Arial', sans-serif;
	font-weight: bold;
	font-size: 40px;
	line-height: 1;
	display: inline-block;
	text-shadow: 0 0 5px #333;
}
.navbar .navbar-nav .nav-item {
    display: -ms-grid;
    display: grid;
    -ms-flex-line-pack: center;
    align-content: center;	
}
.navbar .navbar-nav .nav-item .nav-link{
	color: #FFFFFF;
	font-family: 'Arial', sans-serif;
	font-weight: bold;
	font-size: 14px;
	line-height: 1.25;
	padding: 0px 30px;
	text-decoration: none;
	text-shadow: 0 0 3px #000;
	border-left: 1px solid #CCCCCC;
	-webkit-transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
}
.navbar .navbar-nav .nav-item:first-child .nav-link{
	border-left: none;
}
.navbar .navbar-nav .nav-item:last-child .nav-link{
	padding-right: 0px;
}
.navbar .navbar-nav .nav-item .nav-link:hover{
	text-decoration: underline;
}
/* ===== CSS For "Navbar" Ends Here ===== */


/* ============================== */
/* ============================== */
/* ============================== */


/* ===== CSS For "Middle Content" Starts Here ===== */
.middle_content{
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 20px 330px;
    grid-template-columns: 1fr 330px;
    grid-auto-rows: auto;
    gap: 20px;
	margin-top: 20px;
}
.middle_content .main_article{
	border: 1px solid #DBDCDD;
	padding: 20px;
}
/* ===== CSS For "Middle Content" Ends Here ===== */


/* ============================== */
/* ============================== */
/* ============================== */


/* ===== CSS For "Article" Starts Here ===== */
.middle_content .single_part{
	margin-bottom: 30px;
}
.middle_content .single_part:last-child{
	margin-bottom: 0px;
}

.middle_content .top_title{
	margin-bottom: 20px;
}
.middle_content .top_title h3{
	color: #000000;
	font-family: 'Arial', sans-serif;
	font-weight: bold;
	font-size: 24px;
	margin-bottom: 5px;
}
.middle_content .top_title p{
	color: #000000;
	font-family: 'Arial', sans-serif;
	font-weight: normal;
	font-size: 14px;
	margin-bottom: 0px;
}
.middle_content .top_title p .time{
	font-weight: bold;
}
.middle_content .top_title p a{
	color: #4775BD;
	font-weight: bold;
	text-decoration: underline;
}

.middle_content .texts_images{
	overflow: hidden;
}
.middle_content .texts_images .right_image{
	width: 280px;
	float: right;
	margin-left: 15px;
}

.middle_content .single_part .before_after_image{
	margin: 15px 0px;
	text-align: center;
}
.middle_content .single_part .before_after_image img{
	display: block;
	width: 100%;
}
/* ===== CSS For "Article" Ends Here ===== */


/* ============================== */
/* ============================== */
/* ============================== */


/* ===== CSS For "Product Box" Starts Here ===== */
.middle_content .product_box{
	background: #F4F4F4;
	border: 2px dashed #A50F10;
	padding: 25px;
	text-align: center;
	margin-top: 15px;
	margin-bottom: 30px;
}
.middle_content .product_box .product_image{
	margin-bottom: 25px;
}
.middle_content .product_box img{
	max-width: 250px;
}
/* ===== CSS For "Product Box" Ends Here ===== */


/* ============================== */
/* ============================== */
/* ============================== */


/* ===== CSS For "Comments" Starts Here ===== */
.comments .comments_head{
	background: #DAE2E8;
	padding: 12.5px 15px;
	margin-bottom: 10px;
}
.comments .comments_head p{
	color: #000000;
	font-family: 'Arial', sans-serif;
	font-weight: bold;
	font-size: 16px;
	margin-bottom: 0px;
}
.comments .single_comment{
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 55px 10px 1fr;
    grid-template-columns: 55px 1fr;
    grid-auto-rows: auto;
    gap: 10px;
	border-bottom: 1px solid #DAE1E8;
	margin-bottom: 20px;
	padding-bottom: 20px;
}
.comments .single_comment:last-child{
	border-bottom: none;
	margin-bottom: 0px;
	padding-bottom: 0px;
}
.comments .single_comment .comment_image{
	margin: 7.5px 0px;
}
.comments .single_comment .comment_image img{
	display: block;
	width: 100%;
}
.comments .single_comment .user_photo img{
	width: 55px;
	height: 55px;
	-o-object-fit: cover;
	object-fit: cover;
	margin-top: 4px;
}
.comments .single_comment .got_comment{
	margin-bottom: 5px;
}
.comments .single_comment .got_comment h6{
	color: #2b587a;
	font-family: Tahoma, Verdana;
	font-weight: bold;
	font-size: 13px;
	margin-bottom: 0px;
}
.comments .single_comment .got_comment p{
	color: #000000;
	font-family: Tahoma, Verdana;
	font-weight: normal;
	font-size: 13px;
	line-height: 1.4;
	margin-bottom: 0px;
}
.comments .single_comment .got_comment p a{
	color: #4775BD;
	font-weight: bold;
}

.comments .single_comment .comment_footer{
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 10px 30px;
    grid-template-columns: 1fr 30px;
    grid-auto-rows: auto;
    gap: 10px;	
}
.comments .single_comment .comment_footer ul{
	margin-bottom: 0px;
	font-size: 0px;
}
.comments .single_comment .comment_footer ul li{
	list-style: none;
	display: inline-block;
	margin-right: 10px;
	color: #999999;
	font-family: Tahoma,Verdana;
	font-weight: normal;
	font-size: 13px;
	line-height: 1;
	border-right: 1px solid #999999;
	padding-right: 10px;
}
.comments .single_comment .comment_footer ul li:last-child{
	border-right: none;
	margin-right: 0px;
	padding-right: 0px;
}
.comments .single_comment .comment_footer ul li a{
	color: #2b587a;
	text-decoration: none;
}
.comments .single_comment .comment_footer ul li a:hover{
	text-decoration: underline;
}
.comments .single_comment .comment_footer .comment_ammount p{
	text-align: right;
	line-height: 1;
	margin-bottom: 0px;
}
.comments .single_comment .comment_footer .comment_ammount p a{
	color: #2b587a;
	text-decoration: none;
	font-family: Tahoma, Verdana;
	font-weight: bold;
	font-size: 13px;
	margin-bottom: 0px;
}
/* ===== CSS For "Comments" Ends Here ===== */


/* ============================== */
/* ============================== */
/* ============================== */


.leave_a_comment{
	background: #F4F4F4;
	padding: 20px;
	margin: 20px 0px;
}
.leave_a_comment .form_texts{
	margin-bottom: 15px;
}
.leave_a_comment h4{
	color: #000000;
	font-family: 'Arial', sans-serif;
	font-weight: bold;
	font-size: 18px;
	margin-bottom: 0px;
}
.leave_a_comment p{
	color: #000000;
	font-family: 'Arial', sans-serif;
	font-weight: normal;
	font-size: 15px;
	margin-bottom: 0px;
}
.leave_a_comment .form-group{
	margin-bottom: 10px;
}
.leave_a_comment .form-control{
	color: #000000;
	font-family: 'Arial', sans-serif;
	font-weight: normal;
	font-size: 15px;
	border: 1px solid #DBDCDD;
	border-radius: 3px;
	padding: 7.5px 10px;
	height: inherit;
	-webkit-transition: all 0.2s ease-in;
	-moz-transition: all 0.2s ease-in;
	transition: all 0.2s ease-in;
}
.leave_a_comment .form-control:active,
.leave_a_comment .form-control:focus{
	box-shadow: none;
	border: 1px solid #4775BD;
}
.leave_a_comment .submit_button{
	text-align: right;
}
.leave_a_comment .submit_button .btn{
	color: #FFFFFF;
	background: #4775BD;
	font-family: 'Arial', sans-serif;
	font-weight: normal;
	font-size: 16px;
	border-radius: 3px;
	border: none;
	padding: 7.5px 15px;
	min-width: 120px;
}

/* ============================== */
/* ============================== */
/* ============================== */


/* ===== CSS For "Sidebar" Starts Here ===== */
.sidebar .single_box {
	border: 1px solid #DBDCDD;
	margin-bottom: 20px;
}
.sidebar .single_box:last-child{
	margin-bottom: 0px;
}
.sidebar .single_box .box_title{
	background: #DAE2E8;
	padding: 12.5px 15px;
	text-align: center;
}
.sidebar .single_box .box_title h4{
	color: #000000;
	font-family: 'Arial', sans-serif;
	font-weight: bold;
	font-size: 16px;
	margin-bottom: 0px;
}
/* ===== CSS For "Sidebar" Ends Here ===== */


/* ============================== */
/* ============================== */
/* ============================== */


/* ===== CSS For "Blogger Box" Starts Here ===== */
.sidebar .bloggers_box .box_body{
	padding: 10px;
}
.sidebar .bloggers_box .bloggers{
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 10px 1fr 10px 1fr 10px 1fr;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: auto;
    gap: 10px;	
}
.sidebar .bloggers_box .bloggers .single_blogger img{
	width: 100%;
	height: 65px;
	-o-object-fit: cover;
	object-fit: cover;
}
.sidebar .bloggers_box .more{
	margin-top: 10px;
}
.sidebar .bloggers_box .more p{
	color: #666666;
	font-family: 'Arial', sans-serif;
	font-weight: normal;
	font-size: 13px;
	line-height: 1;
	margin-bottom: 0px;
}
/* ===== CSS For "Blogger Box" Ends Here ===== */


/* ============================== */
/* ============================== */
/* ============================== */


/* ===== CSS For "Feed Box" Starts Here ===== */
.sidebar .feed_box .box_body{
	padding: 10px;
}
.sidebar .feed_box .single_feed{
	border-bottom: 1px solid #DAE1E8;
	margin-bottom: 10px;
	padding-bottom: 10px;
}
.sidebar .feed_box .single_feed:last-child{
	border-bottom: none;
	margin-bottom: 0px;
	padding-bottom: 0px;
}
.sidebar .feed_box .feed_title{
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 5px 40px;
    grid-template-columns: 1fr 40px;
    grid-auto-rows: auto;
    gap: 5px;
}
.sidebar .feed_box .feed_title .title a{
	display: block;
	color: #333333;
	font-family: 'Arial', sans-serif;
	font-weight: normal;
	font-size: 13px;
	text-decoration: none;
}
.sidebar .feed_box .feed_title .title a:hover{
	color: #4775BD;
	text-decoration: underline;
}
.sidebar .feed_box .feed_title .share{
	text-align: right;
}
.sidebar .feed_box .feed_title .share span{
	color: #4775BD;
	font-family: 'Arial', sans-serif;
	font-weight: bold;
	font-size: 12px;
	display: inline-block;
}
.sidebar .feed_box .feed_author p{
	color: #666666;
	font-family: 'Arial', sans-serif;
	font-weight: normal;
	font-size: 12px;
	margin-bottom: 0px;	
}
.sidebar .feed_box .feed_author p .author_name{
	color: #4775BD;
	font-weight: bold;
}
.sidebar .feed_box .feed_author p .feed_comments{
	text-decoration: underline;
}
/* ===== CSS For "Feed Box" Ends Here ===== */


/* ============================== */
/* ============================== */
/* ============================== */


/* ===== CSS For "Footer" Starts Here ===== */
.footer{
	background: #DAE2E8;
	padding: 15px 15px;
	text-align: center;
	margin-top: 20px;
}
.footer .site_links{
	margin-bottom: 10px;
}
.footer .site_links ul{
	margin-bottom: 0px;
	font-size: 0px;
}
.footer .site_links ul li{
	list-style: none;
	display: inline-block;
	margin-right: 15px
}
.footer .site_links ul li:last-child{
	margin-right: 0px;
}
.footer .site_links ul li a{
	color: #333333;
	font-family: 'Arial', sans-serif;
	font-weight: normal;
	font-size: 13px;
	border-right: 1px solid #666666;
	padding-right: 15px;
}
.footer .site_links ul li:last-child a{
	border-right: none;
	padding-right: 0px;
}

.footer .copyright p{
	color: #121212;
	font-family: 'Arial', sans-serif;
	font-weight: normal;
	font-size: 13px;
	margin-bottom: 0px;
	line-height: 1;
}
/* ===== CSS For "Footer" Ends Here ===== */


/* ============================== */
/* ============================== */
/* ============================== */




