body {
	font-family: 'Poppins', sans-serif;
	font-family: 'Source Sans Pro', sans-serif;
}

.login-form {

	border: 1px solid green;
	border-radius: 30px;
	/* background-color: red; */
	box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.login-form input {
	box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.login-form h5 {
	font-weight: 500;
	font-style: italic;
	color: #23559a;
}

.blog_flex {
	display: flex;
	width: 100%;
}

.btn {
	font-size: 15px;
	font-family: "Open Sans", sans-serif;
	text-transform: uppercase;
	padding: 15.5px 28px;
	border-radius: 35px;
	font-weight: 700;
	border: 1px solid;
	position: relative;
	z-index: 1;
	transition: 0.3s ease-in;
	white-space: nowrap;
}

.flex-part1 {
	width: 30%;
	height: 12rem !important;
	border: 1px solid #eee;
}

.flex-part2 {
	border: 1px solid #eee !important;
	padding-left: 10px;
	width: 70%;
}

.flex-part1 img {
	width: 100%;
	height: 100%;
	object-fit: cover;

}

.flex-part2 #title {
	color: #544E48;
	text-decoration: none;
	font-weight: bold;
	text-align: justify;
}

.flex-part2 #body {
	color: #544E48;
	text-decoration: none;
	text-align: justify;
	font-size: 0.9rem;
}

.flex-part2 ul {
	display: flex;
	padding: 0 !important;
	margin: 0 !important;
}

.flex-part2 ul li {
	list-style: none;
}

.flex-part2 ul li a {
	color: gray;
	text-decoration: none;
	font-size: 0.8rem;
}

.right-section {
	flex-direction: column;
}

.right-section h6 {
	background-color: #bbb;
	color: #000;
	padding: 10px;
	border-radius: 5px;
}

.right-section ul li a {
	text-decoration: none;
	color: #555;
	font-size: 0.9rem;
}

.right-section ul li {
	list-style: none;
	border-bottom: 1px solid #eee;
	padding: 4px 0 4px 0;
}

#single_img {
	width: 100%;
	height: 20rem;
}

#single_img img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

@media screen and (max-width: 768px) {
	.flex-part2 p {
		display: none;
	}

	.flex-part1 {
		height: 6rem !important;
	}

	.flex-part2 ul {
		display: flex;
		flex-direction: column;
	}
}

@media screen and (max-width: 992px) {
	.flex-part1 {
		height: 8rem !important;
	}
}

@media screen and (max-width: 1200px) {
	.flex-part1 {
		height: 10rem !important;
	}
}

/* top header */
.top-header {
	font-size: 14px;
}

/* /top header */
/* navigation */
.navigation {
	box-shadow: 0px 9px 20px 0px rgba(0, 0, 0, 0.09);
	position: relative;
	z-index: 1;
}

@media (min-width: 992px) {
	.navigation {
		height: 110px;
		display: flex;
		justify-content: space-between;
		align-items: center;
	}
}

.navbar {
	padding: 0;

}

.navbar-collapse {
	padding-bottom: 10px;
	transition: 0.2s ease;
}

.navbar .nav-item .nav-link {
	text-transform: uppercase;
	font-weight: 700;
}

.navbar .dropdown:hover .dropdown-menu {
	visibility: visible;
	opacity: 1;
	transform: scaleX(1);
	z-index: 9;
}

.navbar .dropdown-menu {
	box-shadow: 0px 3px 9px 0px rgba(0, 0, 0, 0.12);
	padding: 15px;
	border: 0;
	top: 70px;
	left: -25px;
	border-radius: 0;
	display: block;
	visibility: hidden;
	transition: 0.3s ease;
	opacity: 0;
	transform: scale(0.8);
	background: #fff;
	z-index: 1;
}

.micro-1 {
	display: flex;
	align-items: center;
	justify-content: center;
	/* width: 20rem; */

}

.micro-1 img {
	height: 4rem;
	width: 4rem;

	border-radius: 10px;
}


@media (max-width: 991px) {
	.navbar .dropdown-menu {
		display: none;
		opacity: 1;
		visibility: visible;
		transform: scale(1);
		transform-origin: unset;
	}
}

.navbar .dropdown-menu.show {
	visibility: hidden;
}

@media (max-width: 991px) {
	.navbar .dropdown-menu.show {
		visibility: visible;
		display: block;
	}
}

.navbar .dropdown-item {
	position: relative;
	color: #172231;
	transition: 0.2s ease;
	font-family: "Open Sans", sans-serif;
	z-index: 1;
}

@media (max-width: 991px) {
	.navbar .dropdown-item {
		text-align: center;
	}
}

.navbar .dropdown-item:not(:last-child) {
	margin-bottom: 10px;
}

.navbar .dropdown-item:hover {
	color: #86c33a;
	background: transparent;
}

.navbar-light .navbar-nav .nav-link {
	color: #172231;
}

.navbar-light .navbar-nav .nav-link:hover {
	color: #86c33a;
}

.navbar-expand-lg .navbar-nav .nav-link {
	padding: 40px 15px;
}

@media (max-width: 1200px) {
	.navbar-expand-lg .navbar-nav .nav-link {
		padding: 40px 10px;
	}
}

@media (max-width: 991px) {
	.navbar-expand-lg .navbar-nav .nav-link {
		padding: 10px;
	}
}