html {
	scroll-behavior: smooth;
}

body {
	font-family: 'Lora', serif;
}
.nav-item {
	color: green;
}

.intro-section {
	position: relative;
	padding: 0;
	margin: 0;
}

.intro-section img {
	width: 100%;
	height: 600px;
	display: block;
	object-fit: cover;
}

.intro-section::after {
	content: '';
	position: absolute;
	display: block;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0)
		linear-gradient(
			to bottom,
			rgba(0, 0, 0, 0) 0px,
			rgba(0, 0, 0, 0.6) 100%
		)
		repeat 0 0;
	z-index: 1;
}

.read-text {
	display: block;
	position: absolute;
	width: 100%;
	color: #fff;
	left: 0;
	bottom: 0;
	padding: 1em;
	font-weight: 500;
	z-index: 2;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

.font-awesome-underline {
	text-decoration: none;
}

.img-circle {
	border-radius: 200px;
}
/*this is the drop down styles*/
.dropbtn {
	color: white;
	padding: 16px;
	font-size: 16px;
	border: none;
}

.dropdown {
	position: relative;
	display: inline-block;
	margin-top: -7px;
}
.dropdown-content {
	display: none;
	position: absolute;
	width: 400px;
	background-color: #f1f1f1;
	box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
	border-radius: 20px 20px 20px 20px;
	z-index: 7;
	font-size: 13px;
	overflow-y: scroll;
	height: 400px;
}

.dropdown-content a {
	color: black;
	padding: 12px 16px;
	text-decoration: none;
	display: block;
}

.dropdown-content a:hover {
	background-color: #ddd;
}

.dropdown:hover .dropdown-content {
	display: block;
}

.dropdown:hover .dropbtn {
	cursor: hide;
}
/*================ CONTACT US SECTION ==============================*/
.icons-container {
	width: 40px;
}

.social-icons {
	font-size: 2em;
	color: #425a23;
}

.social-icons:hover {
	color: #000;
}

/*================ END CONTACT US SECTION ==============================*/

.common-bg-color {
	background-color: white;
	color: #425a23;
}

.header-size {
	font-size: 48px;
	font-weight: bold;
}

.subheader-size {
	font-size: 30px;
	font-weight: bold;
}

#contact,
#service,
#team,
#about,
#homepageblogs {
	padding-top: 100px;
}
#akagera {
	padding-top: 50px;
}

@media screen and (max-width: 760px) {
	.pm {
		width: 100% !important;
	}

	.intro-section {
		height: auto;
	}

	#company-desc {
		font-size: 12px;
	}

	.intro-section img {
		width: 100%;
		display: block;
		object-fit: cover;
	}

	.header-size {
		padding-top: 20px;
		font-size: 16px;
	}

	.margin-top {
		margin-top: 15x;
	}

	.font-size {
		font-size: 35px;
	}

	.team-mobile {
		margin: auto;
		display: block;
		text-align: center;
	}
}
/* ------ gallery styles ------- */
.wrapper {
	margin: 100px auto;
	max-width: 1100px;
	padding-top: 100px;
}
.wrapper nav {
	display: flex;
	justify-content: center;
	padding-top: 20px;
}
nav .items {
	display: flex;
	max-width: 720px;
	width: 100%;
	justify-content: space-between;
}

.navbar-collapse {
	justify-content: end;
}

nav .items .item {
	padding: 7px 25px;
	font-size: 18px;
	font-weight: 500;
	color: #425a23;
	border: 2px solid #425a23;
	border-radius: 50px;
	cursor: pointer;
	transition: all 0.3s ease;
}
nav .items .active,
nav .items .item:hover {
	color: #425a23;
	background-color: #425a23;
}

.gallery {
	display: flex;
	flex-wrap: wrap;
	margin-top: 30px;
}
.gallery .image {
	padding: 7px;
	width: calc(100% / 4);
}
.gallery .image.hide {
	display: none;
}
.gallery .image.show {
	animation: animate 0.4s ease;
}
@keyframes animate {
	0% {
		transform: scale(0.5);
	}
	100% {
		transform: scale(1);
	}
}
.gallery .image span {
	display: flex;
	width: 100%;
	overflow: hidden;
}
.gallery .image img {
	width: 100%;
	vertical-align: middle;
	transition: all 0.3s ease;
}
.gallery .image:hover img {
	transform: scale(1.1);
}

@media (max-width: 1000px) {
	.gallery .image {
		padding: 7px;
		width: calc(100% / 3);
	}
}
@media (max-width: 800px) {
	.gallery .image {
		padding: 7px;
		width: calc(100% / 2);
	}
}
@media (max-width: 700px) {
	nav .items {
		max-width: 600px;
	}
	nav .items .item {
		padding: 7px 15px;
	}
}
@media (max-width: 600px) {
	nav .items {
		flex-wrap: wrap;
		justify-content: center;
	}
	nav .items .item {
		margin: 5px;
	}
	.gallery .image {
		width: 100%;
	}
}

.card-article-title {
	font-weight: bold;
}
