* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.container{
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
}
body{
  background-color: #fcfcf4;
}
.row {
    display: flex;
}

.col-1 {
    flex: 8.33%;
}

.col-2 {
    flex: 16.66%;
}

.col-3 {
    flex: 25%;
}

.col-4 {
    flex: 33.3%;
}

.col-5 {
    flex: 41.66%;
}

.col-6 {
    flex: 50%;
}

.col-7 {
    flex: 58.33%;
}

.col-8 {
    flex: 66.66%;
}

.col-9 {
    flex: 75%;
}

.col-10 {
    flex: 83.33%;
}

.col-11 {
    flex: 91.66%;
}

.col-12 {
    flex: 100%;
}


header{
  font-family: "Marcellus", serif;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 30px;
  margin-bottom: 50px;
}
header ul{
  list-style: none;
  display: flex;
  align-items: center;
  gap: 15px;
}
header ul a{
  text-decoration: none;
  color: #000000;
  font-weight: 500;
  font-size: 16px;
}
header ul a:hover{
  color: #7A7A7A;
}
header img{
  width: 100%;
  max-width: 300px;
}
.blog-head {
	font-family: "Marcellus", serif;
	font-size: 44px;
	text-align: center;
	font-weight: 500;
}
.top-bnnr {
	width: 100%;
	max-width: 1120px;
	display: block;
	margin: 22px auto 60px;
}
.blog-grid .col-3{
  border: 1px solid #D7D6D6;
  border-radius: 5px;
}
.blog-box{
  overflow: hidden;
}
.blog-grid{
  gap: 30px;
  margin-bottom: 4em;
}
.img-box{
    overflow: hidden;
}
.img-box img {
	width: 100%;
	transition: 0.2s all linear;
	display: block;
}
.img-box img:hover{
  transform: scale(1.04);
}
.blog-content{
  padding: 15px;
}
.title a{
  font-family: "Marcellus", serif;
  font-size: 22px;
  font-weight: 400;
  line-height: 32px;
  text-decoration: none;
  color: #333333;
  display: block;
  margin-bottom: 15px;
}
.blog-content {
	padding: 20px 20px;
	background-color: #fcfcf4;
	z-index: 1;
	position: relative;
}
.date{
  color: #588775;
  font-size: 16px;
  font-weight: 500;
   font-family: "IBM Plex Sans", sans-serif;
   margin-bottom: 15px;
}
.content{
  color: #7A7A7A;
  font-size: 16px;
  font-weight: 400;
   font-family: "IBM Plex Sans", sans-serif;
   line-height: 26px;
   margin-bottom: 15px;
}
.read-more{
  text-decoration: none;
  color: #333333;
  font-weight: 500;
  font-size: 15px;
  font-family: "IBM Plex Sans", sans-serif;
}
.read-more:hover{
  color: #7A7A7A;
}
footer{
  background-color: #182d27;
  padding: 5em 0px 30px;
  font-family: "Marcellus", serif;
}
footer .row1{
  justify-content: space-between;
  align-items: center;
  border-bottom:1px solid #FFFFFF1F ;
  padding-bottom: 3.5em;
  margin-bottom: 35px;
}
footer ul{
  list-style: none;
  display: flex;
  align-items: center;
  gap: 15px;
}
footer ul a{
  text-decoration: none;
  color: #fff;
  font-size: 16px;
}
footer ul a:hover{
  color: #7A7A7A;
}
footer img{
  width: 100%;
  max-width: 250px;
}
footer p{
  font-size: 16px;
  font-weight: 400;
  color: #fff;
}
footer .row2{
  justify-content: space-between;
}

/* responsive */
@media (max-width: 1300px) {
.container{
  padding: 0px 20px;
}
header img {
	width: 100%;
	max-width: 220px;
}
}

@media (max-width: 768px) {
  .blog-head {
	font-size: 37px;
}
.row {
	display: flex;
	flex-wrap: wrap;
}
header {
	margin-bottom: 20px;
}
.col-3{
 flex: 50%;
}
footer img {
	width: 100%;
	max-width: 200px;
}
}

@media (max-width: 560px) {
  header img {
    width: 100%;
    max-width: 170px;
  }
  header {
	padding: 20px 18px;
}
footer img {
	width: 100%;
	max-width: 165px;
}
footer {
	padding: 3em 0px 30px;
}
footer .row1 {
	padding-bottom: 2.5em;
}
footer .row2{
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
  text-align: center;
}
}
@media (max-width: 428px) {
.title a {
	font-size: 19px;
	line-height: 29px;
}
}
@media (max-width: 390px) {
  .container {
    padding: 0px 10px;
  }
  footer p {
	font-size: 14px;
}
footer ul a {
	font-size: 14px;
}
header img {
	max-width: 135px;
}
header ul a {
	font-size: 14px;
}
footer img {
	max-width: 135px;
}
}