@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
* {
  margin: 0;
  padding: 0;
  border: none;
  outline: none;
  list-style: none;
}

html,
body {
  -webkit-tap-highlight-color: transparent;
}

:root {
  --bg: #fff;
  --secondary-bg: #e7e7e7;
  --drawer-bg: #fff;
  --header-bg: #dd3d31;
  --primary-bg: #dd3d31;
  --color: #000;
  --light-text: #fff;
  --border: rgba(0, 0, 0, 0.1);
  --secondary-text: rgba(0, 0, 0, 0.7);
  --hover-bg: rgba(0, 0, 0, 0.1);
  --box-shadow: 0 3px 6px rgba(0,0,0,0.16), 0 3px 6px rgba(0,0,0,0.23);
}

.dark-mode:root {
  --bg: #000;
  --secondary-bg: #151515;
  --drawer-bg: #151515;
  --header-bg: #151515;
  --color: #fff;
  --light-text: #fff;
  --border: rgba(255, 255, 255, 0.2);
  --secondary-text: rgba(255, 255, 255, 0.5);
  --hover-bg: rgba(255, 255, 255, 0.1);
  --box-shadow: 0 -2px 10px rgba(0, 0, 0, 1);
}

a {
  color: var(--color);
  text-decoration: none;
}
/*a:hover {
  text-decoration: underline;
}*/

.btn {
  background: var(--drawer-bg);
  color: #fff;
  height: 35px;
  padding: 0 20px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 500;
}

body {
  font-family: "Poppins", sans-serif;
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
  background: var(--bg);
  color: var(--color);
  transition: 0.1s ease-in-out;
}

.page-header {
  background: var(--header-bg);
  box-shadow: var(--box-shadow);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 9997;
}
.page-header > .container {
  display: flex;
  height: 60px;
  align-items: center;
}
.page-header > .container .menu-toggler .toggler {
  background: transparent;
  cursor: pointer;
  font-size: 19px;
  color: #fff;
  margin-right: 15px;
  font-weight: normal;
}
.page-header > .container .logo {
  color: #fff;
  border-radius: 4px;
  font-size: 19px;
  font-weight: bold;
  text-transform: uppercase;
  display: flex;
  align-items: center;
}
.page-header > .container .logo .logo-text a {
  color: #fff;
}
.page-header > .container .logo .icon {
  margin-right: 5px;
}
.page-header > .container .page-navbar {
  margin-left: 50px;
}
.page-header > .container .page-navbar ul {
  display: flex;
  gap: 25px;
}
.page-header > .container .page-navbar ul .page-navbar-item {
  text-transform: uppercase;
  font-weight: bold;
  font-size: 14px;
  display: flex;
  align-items: center;
  height: 60px;
  transition: 0.2s border-bottom-color;
  position: relative;
}
.page-header > .container .page-navbar ul .page-navbar-item:after {
  content: "";
  position: absolute;
  bottom: 5px;
  left: 0;
  right: 0;
  background: #fff;
  height: 3px;
  border-radius: 3px;
  visibility: hidden;
  opacity: 0;
  transition: 0.2s all;
}
.page-header > .container .page-navbar ul .page-navbar-item:hover:after {
  visibility: visible !important;
  opacity: 1 !important;
}
.page-header > .container .page-navbar ul .page-navbar-item a {
  color: #fff;
}
.page-header > .container .page-navbar ul .page-navbar-item a:hover {
  text-decoration: none;
}
.page-header > .container .page-navbar ul .page-navbar-item a i {
  margin-right: 7px;
}
.page-header > .container .page-navbar ul .page-navbar-item.active:after {
  visibility: visible !important;
  opacity: 1 !important;
}
.page-header > .container .header-links {
  margin-left: auto;
}
.page-header > .container .header-links ul {
  display: flex;
  gap: 10px;
}
.page-header > .container .header-links ul .header-links-item {
  background: rgba(255, 255, 255, 0.2);
  height: 35px;
  width: 35px;
  display: flex;
  font-size: 14px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: 0.2s background-color;
}
.page-header > .container .header-links ul .header-links-item:hover {
  background: rgba(255, 255, 255, 0.3);
}
.page-header > .container .header-links ul .header-links-item a {
  color: #fff;
  height: 35px;
  width: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.page-header > .container .header-links ul .header-links-item a:hover {
  text-decoration: none;
}
.page-header > .container .header-links ul .header-links-item.search-item {
  position: relative;
}
.page-header > .container .header-links ul .header-links-item.search-item > .search {
  position: absolute;
  top: 55px;
  background: var(--primary-bg);
  height: auto;
  border-radius: 8px;
  width: 200px;
  padding: 10px 8px;
  box-shadow: var(--box-shadow);
  visibility: hidden;
  opacity: 0;
}
.page-header > .container .header-links ul .header-links-item.search-item > .search.show {
  visibility: visible !important;
  opacity: 1 !important;
}
.page-header > .container .header-links ul .header-links-item.search-item > .search .search-header {
  display: flex;
  flex-direction: row;
  width: 200px;
  align-items: center;
  margin-bottom: 10px;
}
.page-header > .container .header-links ul .header-links-item.search-item > .search .search-header > label {
  font-size: 12px;
  font-weight: bold;
  color: #fff !important;
  position: relative;
}
.page-header > .container .header-links ul .header-links-item.search-item > .search .search-header > label:after {
  content: "";
  position: absolute;
  top: 20px;
  left: 0;
  right: 0;
  background: #fff;
  height: 3px;
  border-radius: 3px;
}
.page-header > .container .header-links ul .header-links-item.search-item > .search .search-header .search-header-closer {
  margin-left: auto;
  margin-right: 20px;
}
.page-header > .container .header-links ul .header-links-item.search-item > .search .search-header .search-header-closer a {
  height: 23px;
  width: 23px;
  background: #fff;
  color: var(--primary-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.page-header > .container .header-links ul .header-links-item.search-item > .search > input {
  width: 100%;
  height: 35px;
  background: #fff;
  color: #000;
  border-radius: 3px;
  padding: 0 8px;
  margin-bottom: 8px;
  transition: 0.3s all;
}
.page-header > .container .header-links ul .header-links-item.search-item > .search > input::placeholder {
  color: rgba(0, 0, 0, 0.7);
}
.page-header > .container .header-links ul .header-links-item.search-item > .search > input:focus {
  background: var(--primary-bg);
  border: 1px solid rgba(255, 255, 255, 0.5);
  color: #fff;
}
.page-header > .container .header-links ul .header-links-item.search-item > .search > input:focus::placeholder {
  color: rgba(255, 255, 255, 0.5);
}
.page-header > .container .header-links ul .header-links-item.search-item > .search .search-btn {
  background: #fff;
  height: 35px;
  display: flex;
  border-radius: 4px;
  align-items: center;
  justify-content: center;
  padding: 0 8px;
  cursor: pointer;
  width: 100%;
  transition: 0.2s opacity;
}
.page-header > .container .header-links ul .header-links-item.search-item > .search .search-btn:hover {
  opacity: 0.9;
}
.page-header > .container .header-links ul .header-links-item.search-item > .search .search-btn span {
  margin-left: 15px;
  text-transform: uppercase;
  font-weight: bold;
}
.page-header > .container .header-links ul .header-links-item.search-item > .search:after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  top: -10px;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 10px solid var(--primary-bg);
  left: 50%;
  margin-left: -10px;
}

.drawer {
  position: fixed;
  top: 0;
  background: var(--drawer-bg);
  height: 100%;
  width: 300px;
  z-index: 9998;
  box-shadow: var(--box-shadow);
  transform: translateX(-100%);
  visibility: hidden;
  transition: all 0.2s;
}
.drawer.show {
  transform: translateX(0);
  visibility: visible;
}
.drawer .drawer-header {
  padding: 10px 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
  background: var(--drawer-bg);
  border-bottom: 1px solid var(--border);
}
.drawer .drawer-header .drawer-text {
  color: var(--secondary-text);
  font-weight: bold;
  text-transform: uppercase;
  font-size: 17px;
}
.drawer .drawer-header .close-drawer {
  font-size: 17px;
  cursor: pointer;
  background: transparent;
  color: var(--secondary-text);
}
.drawer .drawer-header .close-drawer span {
  margin-left: 10px;
}
.drawer .drawer-content {
  height: 100%;
}
.drawer .drawer-content .drawer-links {
  height: 100%;
  overflow: auto;
}
.drawer .drawer-content .drawer-links .drawer-item:hover {
  background: var(--hover-bg);
}
.drawer .drawer-content .drawer-links .drawer-item a {
  height: 50px;
  display: flex;
  margin-top: 10px;
  align-items: center;
  transition: 0.2s background-color;
  color: var(--secondary-text);
  padding: 0 20px;
}
.drawer .drawer-content .drawer-links .drawer-item a span {
  padding-left: 20px;
}
.drawer .drawer-content .drawer-links .drawer-item a:hover {
  text-decoration: none;
}
.drawer .drawer-content .drawer-links .drawer-item.active {
  background: var(--hover-bg);
}
.drawer .drawer-content .drawer-links .drawer-item.active a {
  color: var(--color) !important;
}
.drawer .drawer-content .drawer-links .drawer-item.active i {
  color: var(--color) !important;
}

.page-content {
  margin-top: 80px;
}
.page-content .page-title {
  margin-bottom: 20px;
}

/* Post Card */
.post-card {
  display: flex;
  width: 100%;
}
.post-card:not(:last-child) {
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 2px solid var(--border);
}
.post-card .post-card-image {
  margin-right: 15px;
  position: relative;
}
.post-card .post-card-image .see-post-card-btn {
  position: absolute;
  bottom: 15px;
  right: 10px;
  background: var(--secondary-bg);
  color: var(--color);
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  padding: 0 10px;
  cursor: pointer;
}
.post-card .post-card-image .see-post-card-btn span {
  margin-left: 10px;
}
.post-card .post-card-image img {
  height: 200px;
  min-width: 350px;
  width: 100%;
  border-radius: 6px;
  object-fit: cover;
  box-shadow: var(--box-shadow);
}
.post-card .post-card-content {
  padding: 15px 0;
}
.post-card .post-card-content .post-card-inner {
  display: flex;
  align-items: center;
  gap: 10px;
}
.post-card .post-card-content .post-card-inner .post-card-tag {
  background: #dd3d31;
  height: 30px;
  padding: 0 15px;
  display: flex;
  color: #fff;
  font-size: 13px;
  font-weight: bold;
  align-items: center;
  justify-content: center;
  border-radius: 30px;
}
.post-card .post-card-content .post-card-inner .post-card-tag span {
  margin-left: 10px;
}
.post-card .post-card-content .post-card-inner .post-card-created {
  background: #4e4f50;
  height: 30px;
  padding: 0 15px;
  display: flex;
  color: #fff;
  font-size: 13px;
  font-weight: bold;
  align-items: center;
  justify-content: center;
  border-radius: 30px;
}
.post-card .post-card-content .post-card-inner .post-card-created span {
  margin-left: 10px;
}
.post-card .post-card-content .post-card-inner .post-card-author {
  background: #661486;
  height: 30px;
  padding: 0 15px;
  display: flex;
  color: #fff;
  font-size: 13px;
  font-weight: bold;
  align-items: center;
  justify-content: center;
  border-radius: 30px;
}
.post-card .post-card-content .post-card-inner .post-card-author span {
  margin-left: 10px;
}
.post-card .post-card-content .post-card-title {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 10px;
}
.post-card .post-card-content .post-card-body {
  color: var(--secondary-text);
  font-size: 15px;
  margin-top: 20px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
}

/* Post Hero */
.post-hero {
  background: var(--secondary-bg);
  margin-top: -20px;
  margin-bottom: 20px;
}
.post-hero .container {
  display: flex;
  height: 130px;
  position: relative;
}
.post-hero .container .post-hero-title {
  position: absolute;
  bottom: 10px;
  font-size: 30px;
  border-radius: 6px;
  color: var(--color);
  font-weight: bold;
}

/* Post */
.post .post-image {
  margin-bottom: 10px;
}
.post .post-image img {
  border-radius: 6px;
}
.post .post-title {
  font-size: 30px;
  font-weight: bold;
  margin-bottom: 10px;
}
.post .post-meta {
  margin-bottom: 30px;
}
.post .post-meta .post-info {
  display: flex;
  align-items: center;
  gap: 15px;
}
.post .post-meta .post-author {
  background: #661486;
  height: 30px;
  padding: 0 15px;
  display: flex;
  color: #fff;
  font-size: 13px;
  font-weight: bold;
  align-items: center;
  justify-content: center;
  border-radius: 30px;
}
.post .post-meta .post-author span {
  margin-left: 10px;
}
.post .post-meta .post-tag {
  background: #dd3d31;
  height: 30px;
  padding: 0 15px;
  display: flex;
  color: #fff;
  font-size: 13px;
  font-weight: bold;
  align-items: center;
  justify-content: center;
  border-radius: 30px;
}
.post .post-meta .post-tag span {
  margin-left: 10px;
}
.post .post-meta .post-created {
  background: #4e4f50;
  height: 30px;
  padding: 0 15px;
  display: flex;
  color: #fff;
  font-size: 13px;
  font-weight: bold;
  align-items: center;
  justify-content: center;
  border-radius: 30px;
}
.post .post-meta .post-created span {
  margin-left: 10px;
}
.post .post-body {
  margin-bottom: 20px;
}
.post .post-share {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 2px solid var(--border);
  display: flex;
  align-items: center;
}
.post .post-share > span {
  font-weight: bold;
  text-transform: uppercase;
  color: var(--color);
  font-size: 20px;
  margin-right: auto;
}
.post .post-share .post-share-actions {
  display: flex;
  align-items: center;
  margin-left: auto;
  gap: 10px;
}
.post .post-share .post-share-actions .post-share-action-item {
  transition: 0.2s background-color;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex-direction: column;
  height: 35px;
  width: 35px;
  border-radius: 100%;
  border: 2px solid var(--border);
}
.post .post-share .post-share-actions .post-share-action-item:hover {
  text-decoration: none;
}
.post .post-share .post-share-actions .post-share-action-item.share-fb {
  border-color: #4267B2 !important;
}
.post .post-share .post-share-actions .post-share-action-item.share-fb i {
  color: #4267B2;
}
.post .post-share .post-share-actions .post-share-action-item.share-fb:hover {
  background: #4267B2 !important;
  color: #fff;
}
.post .post-share .post-share-actions .post-share-action-item.share-fb:hover i {
  color: #fff;
}
.post .post-share .post-share-actions .post-share-action-item.share-tw {
  border-color: #1DA1F2 !important;
}
.post .post-share .post-share-actions .post-share-action-item.share-tw i, .post .post-share .post-share-actions .post-share-action-item.share-tw span {
  color: #1DA1F2;
}
.post .post-share .post-share-actions .post-share-action-item.share-tw:hover {
  background: #1DA1F2 !important;
  color: #fff;
}
.post .post-share .post-share-actions .post-share-action-item.share-tw:hover i, .post .post-share .post-share-actions .post-share-action-item.share-tw:hover span {
  color: #fff;
}
.post .post-share .post-share-actions .post-share-action-item.share-wp {
  border-color: #25D366 !important;
}
.post .post-share .post-share-actions .post-share-action-item.share-wp i, .post .post-share .post-share-actions .post-share-action-item.share-wp span {
  color: #25D366;
}
.post .post-share .post-share-actions .post-share-action-item.share-wp:hover {
  background: #25D366 !important;
  color: #fff;
}
.post .post-share .post-share-actions .post-share-action-item.share-wp:hover i, .post .post-share .post-share-actions .post-share-action-item.share-wp:hover span {
  color: #fff;
}
.post .post-share .post-share-actions .post-share-action-item.share-link {
  border-color: #739fb0 !important;
}
.post .post-share .post-share-actions .post-share-action-item.share-link i, .post .post-share .post-share-actions .post-share-action-item.share-link span {
  color: #739fb0;
}
.post .post-share .post-share-actions .post-share-action-item.share-link:hover {
  background: #739fb0 !important;
  color: #fff;
}
.post .post-share .post-share-actions .post-share-action-item.share-link:hover i, .post .post-share .post-share-actions .post-share-action-item.share-link:hover span {
  color: #fff;
}

.overlay {
  z-index: 9997;
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  visibility: hidden;
  background-color: rgba(0, 0, 0, 0.6);
}

@media (max-width: 992px) {
  .post .post-image img {
    width: 100% !important;
    height: auto !important;
  }

  .post-hero .container {
    height: 200px !important;
  }

  .post-card {
    display: block;
    width: 100%;
  }

  .post-card .post-card-image img {
    width: 100% !important;
    min-width: 100% !important;
  }

  .post-card .post-card-content .post-card-inner {
    display: flex !important;
    width: 100%;
  }

  .post-card-tag,
.post-card-created,
.post-card-author,
.post-tag,
.post-created,
.post-author {
    width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: flex;
  }
  .post-card-tag i,
.post-card-created i,
.post-card-author i,
.post-tag i,
.post-created i,
.post-author i {
    margin-right: auto;
  }
  .post-card-tag span,
.post-card-created span,
.post-card-author span,
.post-tag span,
.post-created span,
.post-author span {
    margin: auto;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .post-card .post-card-image {
    margin-right: 0 !important;
  }

  .post-share-action-item {
    border-radius: 50% !important;
  }
  .post-share-action-item span {
    display: none !important;
  }

  .page-navbar {
    display: none !important;
  }
}
/* Profile Card */
.profile-card {
  display: flex;
  height: 210px;
  border-radius: 8px;
  background: var(--secondary-bg);
}
.profile-card .profile-card-header {
  border-top-right-radius: 8px;
  border-top-left-radius: 8px;
  background: var(--primary-bg);
  height: 70%;
  width: 100%;
  display: flex;
  align-items: center;
  padding: 0 25px;
}
.profile-card .profile-card-header .profile-pp img {
  height: 90px;
  width: 90px;
  border-radius: 50%;
}
.profile-card .profile-card-header .profile-info {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  margin-left: 20px;
}
.profile-card .profile-card-header .profile-info .profile-name {
  font-size: 25px;
  font-weight: bold;
}
.profile-card .profile-card-header .profile-info .profile-infos {
  margin-right: auto;
  margin-top: 10px;
  font-size: 13px;
}

/* Search Area */

/*# sourceMappingURL=styles.css.map */
