/* Fonts */
@import url("https://fonts.googleapis.com/css2?family=Josefin+Sans:wght@400;500;700&display=swap");

/* Main Styles */
* {
  margin: 0;
  padding: 0;
}

body {
  font-size: 16px;
  font-weight: 400;
  font-family: "Josefin Sans", sans-serif;
  line-height: 1.5;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  font-family: "Josefin Sans", sans-serif;
}

p {
  margin: 0;
}

ul {
  list-style: none;
  margin-bottom: 0;
  padding: 0;
}

a,
a:link,
a:hover,
a:focus,
a:active {
  text-decoration: none;
}

/* Header Styles */
.header-area {
  background: #e1e1e3;
}

.logo a {
  font-size: 30px;
  color: #111;
  font-weight: 600;
  margin: 10px;
}

.main-menu ul li {
  display: inline-block;
  margin-left: 20px;
}

.main-menu ul li:first-child {
  margin-left: 0;
}

.main-menu ul li a {
  display: block;
  font-size: 16px;
  color: #111;
  font-weight: 600;
  line-height: 1.5;
  padding: 25px 0;
  transition: all 0.4s ease;
}

.main-menu ul li a:hover {
  color: #4144f3;
}

/* Hero/Feature Area Styles */
.hero-area {
  margin: 50px 0;
}

.single-feature-post {
  position: relative;
}

.single-feature-post img {
  width: 100%;
  border-radius: 10px;
}

.feature-text-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 100%;
  height: 100%;
}

.feature-text {
  text-align: center;
  background: #0282f9;
  padding: 25px;
  border-radius: 10px;
  display: inline-block;
  opacity: 0.8;
}

.feature-text h2 {
  font-size: 50px;
  color: #fff;
  line-height: 1.5;
}

.feature-text p {
  font-size: 16px;
  color: #fff;
  line-height: 1.5;
}

.feature-post-btn {
  display: inline-block;
  background: #1f22dd;
  border-radius: 4px;
  padding: 15px 30px;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #fff;
  margin-top: 15px;
  transition: all 0.4s ease;
}

.feature-post-btn:hover {
  background: #1619c0;
  color: #fff;
}

.listPage {
  padding: 10px;
  text-align: center;
  list-style: none;
}
.listPage li {
  background-color: #e1e1e3;
  padding: 20px;
  display: inline-block;
  margin: 0 10px;
  cursor: pointer;
}
.listPage .active {
  background-color: #0282f9;
  color: #fff;
}

/* Blog List Styles */

.blog-list {
  margin-top: 30px;
  margin-bottom: 30px;
}

.blog-list h2 {
  font-size: 40px;
  color: #111;
  line-height: 1.5;
  margin-bottom: 30px;
}

.blog-list-sidebar-area {
  margin: 50px 0;
}

.single-blog-list {
  margin-bottom: 30px;
}

.single-blog-list img {
  width: 100%;
  border-radius: 10px;
}

.blog-list-meta {
  margin: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.blog-author img {
  height: 50px;
  width: 50px;
  margin-right: 10px;
}

.blog-author span {
  font-size: 15px;
  color: #111;
  font-weight: 500;
  line-height: 1.5;
}

.blog-category {
  display: inline-block;
  padding: 8px 12px;
  background: #0282f9;
  color: #fff;
  border-radius: 4px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1.5;
  transition: all 0.4s ease;
}

.blog-category:hover {
  background: #1e30cf;
  color: #fff;
}

.blog-text h3 {
  font-size: 24px;
  color: #111;
  line-height: 1.5;
}

.blog-text p {
  font-size: 16px;
  color: #363636;
  line-height: 1.5;
}

.blog-list-btn {
  display: inline-block;
  font-size: 16px;
  color: #4144f3;
  position: relative;
}

.blog-list-btn:before {
  position: absolute;
  content: "";
  right: 0;
  width: 0;
  height: 5px;
  bottom: -10px;
  background: #4144f3;
  transition: all 0.4s ease;
}

.blog-list-btn:hover:before {
  width: 100%;
  left: 0;
  right: auto;
}

/* Blog Sidebar */
.sidebar-widget {
  margin-bottom: 50px;
}

.sidebar-widget h3 {
  font-size: 24px;
  color: #111;
  line-height: 1.5;
  margin-bottom: 15px;
}

.blog-search form {
  position: relative;
}

.blog-search form input {
  width: 100%;
  padding: 20px 15px;
  border: 2px solid #111;
  border-radius: 21px;
}

.blog-search form button {
  position: absolute;
  top: 0;
  right: 0;
  padding: 20px 25px;
  border: 0;
  background: transparent;
  font-size: 22px;
}

.single-recent-post {
  margin-bottom: 15px;
}

.single-recent-post img {
  width: 60px;
  height: 60px;
  border-radius: 4px;
  margin-right: 10px;
}

.single-recent-post span {
  font-size: 13px;
  font-weight: 500;
  color: #111;
}

.blog-category-list ul li {
  display: inline-block;
  margin-right: 10px;
  margin-bottom: 10px;
}

.blog-category-list ul li a {
  display: block;
  padding: 10px 15px;
  border: 2px solid #111;
  background: transparent;
  color: #111;
  border-radius: 4px;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.4s ease;
}

.blog-category-list ul li a:hover {
  background-color: #4144f3;
  color: #fff;
  border: 2px solid #4144f3;
}

.blog-archive-list ul li {
  margin-bottom: 15px;
}

.blog-archive-list ul li:last-child {
  margin-bottom: 0;
}

.blog-archive-list ul li a {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.blog-archive-list ul li a span.archive-date {
  font-size: 15px;
  color: #111;
  font-weight: 500;
  line-height: 1.5;
}

.blog-archive-list ul li a span.archive-post-number {
  display: inline-block;
  padding: 10px 15px;
  background: #0282f9;
  border-radius: 4px;
  font-size: 15px;
  color: #fff;
}

/* Blog Recomended Styles */
.blog-recomended {
  margin-top: 30px;
  margin-bottom: 30px;
}

.blog-recomended h2 {
  font-size: 40px;
  color: #111;
  line-height: 1.5;
  margin-bottom: 30px;
}

/* Footer Area Styles */
.footer-area {
  padding: 50px 0;
  background: #e1e1e3;
}

.copyright-text p {
  font-size: 16px;
  color: #111;
  line-height: 1.5;
}

.footer-social {
  text-align: end;
}

.footer-social ul li {
  display: inline-block;
  margin-left: 20px;
}

.footer-social ul li:first-child {
  margin-left: 0;
}

.footer-social ul li a {
  font-size: 20px;
  color: #111;
  transition: all 0.4s ease;
}

.footer-social ul li a:hover {
  color: #4144f3;
}

/* Blog Details Styles */
.blog-details img {
  width: 100%;
  border-radius: 10px;
}

.blog-details .blog-author img {
  width: 60px;
  height: 60px;
}

.blog-details .blog-text h2 {
  font-size: 40px;
  color: #111;
  line-height: 1.5;
}

.blog-details .blog-text p {
  margin-bottom: 15px;
  font-size: 16px;
  color: #3d3d3d;
  line-height: 1.8;
}

.image {
  max-width: 500px;
  height: 500px;
  margin: 10px;
  display: flex;
  object-fit: cover;
  transition: all 400ms;
}

.blog-text li {
  position: relative;
  padding-left: 31px;
}
.blog-text li ::before {
  content: "";
  position: absolute;
  top: 7px;
  left: 15px;
  width: 6px;
  height: 6px;
  border-radius: 100px;
  background: #111;
}
.blog-details-contact-form {
  margin-top: 30px;
  margin-bottom: 30px;
}

.blog-details-contact-form h2 {
  font-size: 40px;
  color: #111;
  line-height: 1.5;
}

.blog-details-contact-form form p {
  margin-bottom: 20px;
}

.blog-details-contact-form form p label {
  font-size: 16px;
  color: #111;
  line-height: 1.5;
  margin-bottom: 15px;
  display: block;
}

.blog-details-contact-form form p input,
.blog-details-contact-form form p textarea {
  width: 100%;
  padding: 15px;
  border: 2px solid #111;
  background: transparent;
  color: #111;
  border-radius: 4px;
}

.blog-details-contact-form form p textarea {
  height: 250px;
  resize: none;
}

.blog-details-contact-form form p button {
  display: inline-block;
  padding: 15px 30px;
  background: #0282f9;
  border: 0;
  color: #fff;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  transition: all 0.4s ease;
}

.blog-details-contact-form form p button:hover {
  background-color: #1e20aa;
}
