* {
  margin: 0px;
  padding: 0px;
}

.header {
  min-height: 12vh;
  width: 100%;
  background-image: url(../../img/main.jpg);
  background-position: center;
  background-size: cover;
  position: relative;
}
.header nav {
  display: flex;
  padding: 1% 6%;
  justify-content: space-between;
  align-items: center;
}
nav img {
  height: 130px;
}
.navbar-list {
  flex: 1;
  text-align: right;
}
.navbar-list ul li {
  list-style: none;
  display: inline-block;
  padding: 8px 12px;
  position: relative;
}
.navbar-list ul li a {
  color: black;
  text-decoration: none;
  font-size: 20px;
  font-family: "Poppins", sans-serif;
}
.navbar-list ul li::after {
  content: "";
  width: 0%;
  height: 2px;
  background: black;
  display: block;
  margin: auto;
  transition: 0.5s;
}
.navbar-list ul li:hover::after {
  width: 100%;
}
nav .fa {
  display: none;
}
@media (max-width: 770px) {
  .navbar-list ul li {
    display: block;
  }
  .navbar-list {
    display: none;
    position: absolute;
    background: url(../../img/main.jpg);
    height: 100vh;
    width: 200px;
    top: 0;
    right: -200px;
    text-align: left;
    z-index: 2;
  }
  nav .fa {
    display: block;
    color: #fff;
    margin: 10px;
    font-size: 22px;
    cursor: pointer;
  }
  .navbar-list ul {
    padding: 20px;
  }
}

/* ----------- BLOG SECTION ------- */
/* ----------- BLOGINFO SECTION ------- */
.bloginfo {
  height: 100%;
  display: flex;
  margin-top: 10px;
  padding: 15px;
  position: relative;
}
.bloginfo::after {
  content: "";
  background-image: url(../../img/main.jpg);
  position: absolute;
  width: 80vw;
  height: inherit;
  z-index: -1;
  opacity: 0.5;
}
.bloginfo-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 10px;
}
.bloginfo-left h1 {
  font-family: var(--font1);
  font-size: 50px;
}
.bloginfo-left p {
  font-family: var(--font2);
  font-size: 22px;
  margin-top: 16px;
}
.bloginfo-right-fig {
  display: flex;
  margin-right: 6px;
  align-items: center;
  justify-content: center;
}
.bloginfo-right-fig img {
  height: 250px;
  border: 2px solid black;
  border-radius: 200px;
}

/* ----------- FEATURED ARTICLES SECTION ------- */
.featured-articles-main h1 {
  font-size: 50px;
  font-family: var(--font1);
  color: var(--main-bg-color);
}
.featurestar {
  color: goldenrod;
  margin: 0px 10px;
}
.featured-articles {
  display: flex;
  flex-wrap: wrap;
}
.feature-article {
  display: flex;
  align-items: center;
  margin-left: 15px;
}
.feature-article-fig img {
  width: 200px;
  border-radius: 10px;
}
.feature-article-details {
  padding: 0px 12px;
  font-family: var(--font2);
}
.feature-article-details a {
  text-decoration: none;
  color: var(--main-bg-color);
}

/* ----------- ALL ARTICLES SECTION ------- */
.all-articles-main h1 {
  font-size: 50px;
  font-family: var(--font1);
  color: var(--main-bg-color);
}
.article {
  display: flex;
  align-items: center;
  margin-left: 15px;
}
.article-fig img {
  width: 200px;
  border-radius: 10px;
}
.article-details {
  padding: 0px 12px;
  font-family: var(--font2);
}
.article-details a {
  text-decoration: none;
  color: var(--main-bg-color);
}
@media screen and (max-width: 1220px) {
  .bloginfo-right-fig {
    display: none;
  }
}
@media screen and (max-width: 806px) {
  .bloginfo-left h1{
    font-size: 45px;
    text-align: center;
  }
  .featured-articles-main h1{
    font-size: 50px;
    text-align: center;
    margin-top: 60px;
    margin-bottom: 0px;
  }
  .feature-article{
    margin-top: 5px;
  }
  .feature-article-fig img{
    width: 150px;
  }
  .feature-article-details h2{
    font-size: 20px;
  }
  .feature-article-details span{
    font-size: 12px;
  }
  .article-fig img{
    width: 150px;
  }
  .article-details h2{
    font-size: 20px;
  }
  .article-details span{
    font-size: 12px;
  }
}
/* ----------- FOOTER SECTION ------- */

#footer {
  width: 80%;
  text-align: center;
  padding: 30px 0;
  margin: 40px auto;
  background-position: center;
  background-color: #fff3f3;
}
#footer:hover {
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.2);
}

#footer h3 {
  margin-bottom: 25px;
  margin-top: 20px;
  font-weight: 600;
  font-size: 55px;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
}
#footer h3::after {
  content: "";
  width: 0%;
  height: 2px;
  background: black;
  display: block;
  margin: auto;
  transition: 0.5s;
}
#footer h3:hover::after {
  width: 27%;
}
#footer p {
  font-size: 20px;
}
#footer .madewlove {
  font-size: 25px;
}
.icons .fa {
  color: #f44336;
  margin: 0 13px;
  cursor: pointer;
  padding: 18px 0;
  font-size: 25px;
}
.fa-heart-o {
  color: #f44336;
}

@media (max-width: 700px) {
  #footer h3 {
    font-size: 48px;
  }
}
