@charset "utf-8";
/* CSS Document */

* {
	margin: 0px;
	padding: 0px;
	font-family: "droid-sans", sans-serif;
	font-weight: 400;
	font-style: normal;
	box-sizing: border-box;
}

a { 
	text-decoration: none;
}

ul {
	list-style: none;
}

/*body {
	margin: 0px;
	padding: 0px;
	font-family: "droid-sans", sans-serif;
	font-weight: 400;
	font-style: normal;
	
}*/

body {
	width: 1091px;
	min-height: 300px;
	margin-left: auto;
	margin-right: auto;
	background-color: #CEFBFF
}




/*Nav bar --------------*/
.logo {
	height: 24px;
	width: 184px;
	padding-top: 10px;
	padding-left: 20px;
}

nav {
	float: right;
	padding-right: 20px;	
}

nav ul li {
	list-style-type: none;
	padding-left: 20px;
	text-align: right;
	display: inline-block;
}

nav ul li a {
	text-decoration: none;
	color: #B38A6D;
}



/*blog------------------*/

#blog {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	padding: 40px;
	border-bottom: 1px solid rgba(0,0,0,0.05);
}

.blog-heading {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
}

.blog-heading span {
	color: #f33c3c; /*light red*/
}

.blog-heading h3 {
	font-size: 2.4rem;
	color: #2b2b2b; /*grey*/
	font-weight: 700;
}

.blog-container {
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 20px 0px;
	flex-wrap: wrap;
}

.blog-box {
	width: 350px;
	background-color: white;
	border: 1px solid #ececec;
	margin: 20px;
}

.blog-img {
	width: 100%;
	height: auto;
}

.blog-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.blog-text {
	padding: 30px;
	display: flex;
	flex-direction: column;
}

.blog-text span {
	color: #F33C3C;
	font-size: 0.9rem;
}

.blog-text .blog-title {
	font-size: 1.3rem;
	font-weight: 700;
	color: #272727;
}

.blog-text .blog-title:hover {
	color: #F33C3C;
	transition: all ease 0.3s;
}

.blog-text p {
	color: #9b9b9b;
	font-size: 0.9rem;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
	margin: 20px 0px;
}

.blog-text a {
	color: #0f0f0f;
}

.blog-text a:hover {
	color: #F33C3C;
	transition: all ease 0.3s;
}