/* ============================= Defining  css variables ================================ */

:root {
  --primary-color: hsl(165, 25%, 97%);
  --secondary-color: #e97016;
  --text-color: #2c3e50;
  --border-color: #168fe9;
  --stroke-color: #b7dcf8;
  --hero-color: #2c3e50;
  --hero-desc-color: #8C8C8C;
}

@font-face {
  font-family: Satoshi-Variable;
  src: url(Satoshi-Variable.ttf);
}

/* =============================== Global css ================================== */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  transition: all 0.1s;
}

.container-fluid {
  width: 100%;
}

.container {
  max-width: 1920px;
  width: 100%;
  height: 100%;
}


body {
  font-family: Satoshi-Variable;
  background-color: var(--primary-color);
}

main {
  min-height: 47vh;
}



.truncate-text {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-transform: none;
}

.vertical-text {
  display: inline-block;
  text-align: center;
  line-height: 1;
  font-size: 60px;
  font-weight: 700;
  opacity: 0.5;
  position: sticky;
  top: 120px;
}

.vertical-text::first-letter {
  text-transform: uppercase;
}

.tagSlug {
  text-transform: capitalize;
}

.grid-container {
  display: grid;
  width: 100%;
  grid-template-columns: repeat(3, 1fr);
  gap: 1vw;
  margin-top: 30px;
}

.post-grid-container {
  flex: 6;
}

.slide-number {
  transform: rotate(270deg);
  color: #8c8c8c;
  font-weight: 700;
  display: block;
  opacity: 1;
  font-size: 5rem;
}

/* =============================== Nav-bar styling ============================ */
.nav-bar {
  background-color: var(--primary-color);
  /* border-top: solid 4px var(--border-color); */
  border-bottom: solid 3px var(--stroke-color);
  display: flex;
  justify-content: space-between;
  /* align-items: center; */
  /* height: 10dvh; */
}

.nav-bar-logo {
  cursor: pointer;
  border-right: solid 2px var(--stroke-color);
  /* display: flex; */
  /* padding: 18px 10px; */
  display: flex;
  align-items: center;
  padding: 0px 8px;
  font-weight: 600;
  font-size: 22px;
  color: var(--border-color);
}

.logo-size {
  width: 180px;
}

.nav-bar-logo-wires {
  background-color: var(--border-color);
  color: var(--primary-color);
  padding: 3px;
  max-width: fit-content;
}

.nav-bar-list {
  font-weight: 800;
  font-size: clamp(14px, 1vw, 20px);
  display: flex;
  flex: 1;
  justify-content: space-evenly;
  align-items: center;
}

.nav-bar-signIn-comp {
  border-left: solid 2px var(--stroke-color);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 12px 20px;
}

.nav-bar-signIn-comp:hover {
  background-color: var(--border-color);
}

/* .nav-bar-signIn-comp:hover .nav-bar-menu div {
  background-color: var(--primary-color);
} */

.nav-bar-signIn-comp:hover .nav-bar-menu::before,
.nav-bar-signIn-comp:hover .nav-bar-menu::after,
.nav-bar-signIn-comp:hover .nav-bar-menu div {
  /* background-color: var(--primary-color); */
  transition: 0.5s ease;
}

.nav-bar-signIn {
  font-weight: 700;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
  background-color: var(--border-color);
  color: var(--primary-color);
  border-radius: 10px;
  font-size: larger;
}

.nav-bar-login {
  cursor: pointer;
  display: inline-block;
  position: relative;
}

.nav-bar-login::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  left: 0;
  bottom: -3px;
  background-color: var(--primary-color);
  transition: width 0.3s ease;
}

.nav-bar-login:hover::after {
  width: 100%;
}

.nav-bar-hamIcon {
  cursor: pointer;
  display: none;
}

.nav-bar-tags {
  cursor: pointer;
  padding: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 6px;
}

.nav-bar-tags:hover {
  background-color: var(--border-color);
  color: var(--primary-color);
}

.nav-bar-signIn {
  font-weight: 700;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
  background-color: var(--border-color);
  color: var(--primary-color);
  padding: 10px;
  border-radius: 10px;
  font-size: larger;
}

.nav-bar-star {
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 900;
}

.index-px-title {
  padding: 0 10px 0 50px;
}

/* =========================== Nav-bar search box ============================== */
.search-btn {
  flex: 0.1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.search-box {
  height: 60%;
  width: 100%;
  flex: 1;
  margin-left: 2rem;
  margin-top: 0.8rem;
  border-radius: 2.3rem;
  overflow: hidden;
  transition: 1s ease-in-out;
  display: flex;
  border: 2.3px solid var(--border-color);
  background-color: white;
  display: none;
}

.search-box input {
  height: 100%;
  width: 100%;
  flex: 1;
  outline: none;
  border: none;
  padding: 1.2% 5%;
  font-size: 1.2rem;
}

.search-box ::-webkit-input-placeholder {
  color: var(--border-color);
  opacity: 0.4;
  font-size: 1.1rem;
}

.search-box button {
  outline: none;
  border: none;
  padding: 0px 20px;
}

.search-box button:hover {
  background-color: white;
  border-radius: 40px;
  cursor: pointer;
}

.nav-bar-menu {
  transform: translate(-50%, -50%);
  position: absolute;
  width: 50px;
}

.nav-bar-menu:before,
.nav-bar-menu:after,
.nav-bar-menu div {
  background: var(--border-color);
  content: "";
  display: block;
  height: 6px;
  border-radius: 3px;
  margin: 7px 0;
  transition: 0.5s;
}

.nav-bar-menu.transformed:before {
  transform: translateY(12px) rotate(135deg);
}

.nav-bar-menu.transformed:after {
  transform: translateY(-12px) rotate(-135deg);
}

.nav-bar-menu.transformed div {
  transform: scale(0);
}

/* ================================== Nav list for Hamburger icon ======================= */
.nav-ham-list {
  position: sticky;
  position: -webkit-sticky;
  width: 100%;
  display: flex;
  flex-direction: column;
  padding: 20px 0px;
  z-index: 100;
  gap: 20px;
  background-color: var(--primary-color);
  font-weight: 700;
  padding-left: 40px;
  border-bottom: 4px solid black;
  cursor: pointer;
  font-size: 20px;
}

/* ================================== Floating up arraow ================================== */

.upArrow {
  bottom: 0;
  cursor: pointer;
  right: 0;
  position: fixed;
  z-index: 100;
  margin: 10px;
  padding: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: solid 2px var(--border-color);
  border-radius: 100px;
  background: var(--border-color);
  content: "";
  width: 50px;
  height: 50px;
}

.upArrow:hover .upArrow-icon {
  color: var(--primary-color);
  padding-bottom: 25px;
  transition: 0.5s ease;
}

.upArrow:hover {
  padding-top: 5px;
  transition: 0.1s ease;
}

/* ================================= Hero section ==================================== */

/* ====================== Hero section slider ====================== */
.post-slider-container {
  position: relative;
  max-width: 100%;
  margin: 0 auto;
  overflow: hidden;
}

.post-slider {
  display: flex;
  transition: transform 0.5s ease;
}

.post-slide {
  min-width: 100%;
  box-sizing: border-box;
  display: none;
}

.post-slide.active {
  display: block;
}

.slider-button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: var(--primary-color);
  padding: 4px;
  width: 55px;
  height: 55px;
  border: solid 3px var(--border-color);
  border-radius: 100px;
  cursor: pointer;
  z-index: 10;
}

.left-button {
  width: 70px;
  height: 70px;
  right: 7%;
  top: 35%;
}

.right-button {
  right: 7.4%;
  top: 65%;
}

.left-button:hover {
  background-color: var(--border-color);
  transition: 0.3s ease;
}

.right-button:hover {
  background-color: var(--border-color);
  transition: 0.3s ease;
}

.left-button:hover .left-button-icon {
  /* color: var(--primary-color); */
  /* transform: rotate(45deg); */
  transition: 0.4s ease;
}

.right-button:hover .right-button-icon {
  /* color: var(--primary-color); */
  /* transform: rotate(45deg); */
  transition: 0.4s ease;
}

/* ======================= Hero Card ============================ */

.front-post-card {
  height: 85vh;
  position: relative;
  display: flex;
  border: solid 2px var(--stroke-color);
  border-radius: 12px;
  padding: 0;
  margin: 0;
  overflow: hidden;
}

.front-post-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.front-post-card-img {
  flex: 1;
}

.front-post-card-img-container {
  height: 100%;
  overflow: hidden;
}

.front-post-card-img img {
  object-fit: cover;
}

.front-post-card-black {
  flex: 0.1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  background-color: var(--hero-color);
  height: 100%;
  width: 100%;
}

.title-tags {
  position: absolute;
  left: 30px;
  right: 30px;
  bottom: 0;
  z-index: 3;
  margin: 10;
  padding-bottom: 20px;
  display: flex;
  gap: 10px;
  align-items: center;
  pointer-events: none;
}

.title-tags-name {
  text-decoration: none;
  font-size: 22px;
  letter-spacing: 0.25px;
  font-family: var(--hff);
  text-transform: uppercase;
  font-weight: 500;
  display: block;
  max-width: 80%;
  border: 1px solid var(--stroke-color);
  background-color: var(--hero-color);
  border-radius: 10px;
  line-height: 36px;
  color: var(--primary-color);
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  padding: 7px;
}

.title-details {
  font-size: 15px;
  display: flex;
  gap: 10px;
}

.post-author-name {
  font-style: normal;
  color: var(--hero-color);
  cursor: pointer;
  display: inline-block;
  position: relative;
}

.post-author-name a {
  text-decoration: none;
  /* font-style: italic; */
  color: var(--primary-color);
}

.post-author-name a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  left: 0;
  bottom: -3px;
  background-color: var(--primary-color);
  transition: width 0.3s ease;
}

.post-category {
  padding-top: 20px;
  margin-top: 20px;
  margin-bottom: 90px;
  display: flex;
  max-width: 1920px;
  flex-direction: column;
  gap: 8px;
  position: relative;
}

.post-category-title {
  font-weight: 900;
  height: 90%;
  font-size: 40px;
  padding-left: 8px;
  position: absolute;
  left: -65px;
  color: #4d80a8;
}

.post-category-title-mob {
  display: none;
}

/* ========================= Ad container to be displayed ======================= */

.ad-container {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 1.5rem;
  margin-top: 25px;
  padding: 10px;
  position: relative;
}

.ad-container div {
  /* position: sticky;  */
  top: 14vh;
  width: 100%;
  gap: 10px;
  height: auto;
}

.ad-container-ele {
  margin-bottom: 1rem;
}

.ad-container-ele-img {
  background: rgb(225, 204, 207);
}

.ad-leaderboard-lg {
  height: 90px;
  width: 1024px;
  margin-right: 30px;
  margin-top: 4px;
  margin-left: 60px;
}

.ad-leaderboard-md {
  display: none;
}

.ad-leaderboard-sm {
  display: none;
}

/* ============================ Author Name ============================== */
.author-name {
  cursor: pointer;
  display: inline-block;
  position: relative;
}

.author-name a {
  color: black;
  font-weight: 700;
  font-style: italic;
  text-decoration: none;
}

.author-name:after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  left: 0;
  bottom: -3px;
  background-color: black;
  transition: width 0.3s ease;
}

.author-name:hover:after {
  width: 100%;
}

/* ========================= Post card grid ================================= */

.post-card-container {
  cursor: pointer;
  border-radius: 10px;
  border: solid 3px var(--stroke-color);
  background-color: white;
  padding: 16px;
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 7px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.post-card-container:hover {
  transform: scale(1.05);
  box-shadow: 0px 8px 30px rgba(0, 0, 0, 0.15);
}

.post-card-container:after {
  content: '';
  position: absolute;
  right: 10px;
  bottom: 10px;
  transition: border-color 0.3s ease;
}

.post-card-image-container {
  width: 100%;
  overflow: hidden;
}

.post-card-titile-container {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 30%;
}

.post-card-title {
  color: var(--hc);
  margin-bottom: 5px;
  font-weight: 600;
  width: 100%;
  font-family: var(--hff);
  line-height: 1.22;
  letter-spacing: 0;
}

.post-card-author {
  display: flex;
  gap: 10px;
}

.post-card-img {
  /* border-radius: 10px; */
  width: 100%;
  min-height: auto;
  overflow: hidden;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
}

.post-card-img img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.post-card-image-tag {
  position: absolute;
  top: 30px;
  left: 30px;
  right: 30px;
  max-width: 300px;
  z-index: 3;
  margin: 0;
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
  pointer-events: none;
}

.post-card-image-tag-name {
  text-decoration: none;
  font-size: 12px;
  letter-spacing: 0.2px;
  font-family: var(--hff);
  text-transform: uppercase;
  font-weight: 900;
  display: block;
  width: fit-content;
  max-width: 100%;
  border: 4px solid var(--stroke-color);
  background-color: #fff;
  border-radius: 10px;
  line-height: 30px;
  color: #000;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  padding: 0 15px;
}

.post-date {
  /* font-style: italic; */
  font-weight: 700;
  color: var(--hero-color);
  text-decoration: none;
}

/* =========================== Index Post Card =========================== */
.post-container-index {
  cursor: pointer;
  border-radius: 10px;
  border: solid 3px var(--stroke-color);
  padding: 20px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.post-container-index:after {
  content: "";
  top: 0;
  left: 0;
  border-radius: 0 10px 10px;
  /* border-right: solid 9px var(--border-color);
  border-bottom: solid 9px var(--border-color); */
  right: -9px;
  bottom: -9px;
  z-index: -1;
  position: absolute;
}

.post-container-index-image {
  margin-bottom: 0px;
  width: 60%;
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
}

.post-container-index-desc {
  width: 70%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 20px;
}

.post-container-index-img {
  border-radius: 10px;
  width: 100%;
  height: 350px;
  object-fit: cover;
}

.post-content-box {
  display: flex;
  gap: 10px;
  width: 100%;
  flex-direction: column;
  justify-content: space-around;
}

.post-content {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  width: 100%;
}

.post-content-title {
  color: black;
  font-weight: 600;
  width: 100%;
  font-size: 28px;
  font-family: sans-serif;
  line-height: 1.22;
  letter-spacing: 0;
}

.post-content-author {
  display: flex;
  gap: 20px;
  font-size: larger;
  color: var(--hero-color);
}

.rm {
  display: flex;
  width: fit-content;
  align-items: center;
}

.rm-a {
  text-decoration: none;
  font-size: 14px;
  letter-spacing: 0.25px;
  font-family: var(--hff);
  text-transform: uppercase;
  font-weight: 900;
  display: block;
  width: fit-content;
  max-width: 100%;
  border: 4px solid var(--border-color);
  background-color: #fff;
  border-radius: 50px;
  height: 50px;
  line-height: 42px;
  padding: 0 60px 0 20px;
  color: #000;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.rm-a:before {
  display: block;
  position: absolute;
  top: 0px;
  right: 0px;
  height: 100%;
  width: 100%;
  z-index: -1;
  content: "";
  background: var(--primary-color);
  transition: all 0.3s cubic-bezier(0.42, 0, 0.58, 1);
  background-position: right;
}

.rm-icon {
  display: block;
  position: absolute;
  width: 50px;
  height: 50px;
  right: -4px;
  top: -4px;
  bottom: -4px;
  border: 4px solid var(--border-color);
  border-radius: 100%;
}

.rm-arrow {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -10px 0 0 -10px;
  transform: rotate(45deg) scale(0);
  transition: all 0.3s ease;
}

.read-more-arrow {
  opacity: 0;
  padding: 9px;
}

.rm-triple {
  width: 6px;
  height: 6px;
  position: absolute;
  display: block;
  background-color: var(--hero-color);
  border-radius: 100%;
  top: 50%;
  left: 50%;
  margin: -3px 0 0 -3px;
  transition: all 0.3s ease;
}

.rm-triple:before {
  right: 100%;
  margin-right: 3px;
}

.rm-triple:after {
  left: 100%;
  margin-left: 3px;
}

.rm-triple:before,
.rm-triple:after {
  content: "";
  position: absolute;
  width: 6px;
  height: 6px;
  background-color: var(--hero-color);
  border-radius: 100%;
  top: 0;
  bottom: 0;
  transition: all 0.3s ease;
}

.post-content-excerpt {
  font-size: 18px;
  color: var(--hero-desc-color);
  font-weight: 500;
}

.rm:hover .rm-triple {
  transform: rotate(45deg);
  opacity: 0;
  transform: scale(0);
  transition: all 0.3s ease;
}

.rm:hover .rm-a:before {
  background: var(--border-color);
  background-position: left;
}

.rm:hover .read-more {
  color: var(--primary-color);
}

.read-more-arrow {
  fill: #000000;
  stroke: #000000;
  stroke-width: 1px;
  transition: 0s ease;
}

.rm:hover:hover .read-more-arrow {
  fill: var(--primary-color);
}

.rm:hover .read-more-arrow {
  opacity: 1;
  transform: rotate(-45deg);
  transition: 0.6s ease;
}

/* =========================== Footer Styling ============================ */
.footer {
  padding: 32px 60px;
  background-color: black;
  color: var(--primary-color);
  margin-top: 20px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-desc {
  display: flex;
  justify-content: space-between;
}

.footer-desc-left {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 12%;
  align-items: center;
}

.footer-desc-left-icons {
  display: flex;
  gap: 10px;
}

.footer-desc-left-about {
  color: var(--primary-color);
  text-align: center;
  text-wrap: nowrap;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-desc-right {
  display: flex;
  gap: 32px;
}

.footer-desc-right-section {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer-desc-right-section-title {
  color: #1272ba;
  font-weight: 600;
  font-size: 20px;
  line-height: 24px;
  letter-spacing: 0.15;
}

.footer-desc-right-section-desc {
  cursor: pointer;
  margin-top: 4px;
}

.footer-wires {
  display: flex;
  justify-content: center;
}

.img-not-found {
  width: 100%;
  height: 240px;
  border-radius: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: antiquewhite;
}

/* ======================== Lazy Loading CSS ======================== */

.lazy {
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.lazy-loaded {
  opacity: 1;
}

/* ==================== Responsive design for 1280px ========================= */
@media screen and (max-width: 1280px) {
  .container {
    width: 1280px;
    overflow: hidden;
  }

  .nav-bar-list {
    display: none;
  }

  .nav-bar-hamIcon {
    display: block;
    margin-right: 2%;
  }

  .nav-bar-logo {
    width: 25%;
    border-right: none;
    margin-right: 2%;
  }

  .logo-size {
    padding: 12px 0px;
  }

  .nav-bar-signIn {
    display: none;
  }

  .nav-bar-signIn-comp {
    border: none;
    padding-right: 2.5rem;
  }

  .nav-bar-signIn-comp:hover {
    background: none;
  }

  .search-btn {
    display: none;
  }

  .front-post-card {
    flex-direction: column;
  }

  .front-post-card-img {
    height: 65%;
    flex: 0.85;
    width: 100%;
  }

  .front-post-card-black {
    height: 35%;
    width: 100%;
  }

  .title-tags {
    position: unset;
    flex: 0.2;
    padding: 0;
  }

  .front-post-card-black {
    display: none;
  }

  .title-tags-name {
    min-width: 100%;
    border-radius: 0;
    font-size: 20px;
    height: 100%;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .title-tags-name h2 {
    font-size: 22px;
    line-height: 24px;
    width: 90%;
  }

  .title-details {
    font-size: 13px;
  }

  .right-button {
    width: 55px;
    height: 55px;
    top: 81%;
    left: 35%;
  }

  .left-button {
    width: 55px;
    height: 55px;
    top: 81%;
    right: 35%;
  }

  .left-button-icon {
    transform: rotate(45deg);
  }

  .right-button-icon {
    transform: rotate(45deg);
  }

  .post-card-title {
    font-size: 18px;
  }

  .post-card-container {
    padding: 14px;
  }

  .post-card-author {
    font-size: 14px;
  }

  .post-content-excerpt {
    font-size: 16px;
  }

  .post-card-image-tag-name {
    font-size: 12px;
    letter-spacing: 0.2px;
    display: block;
    width: fit-content;
    max-width: 100%;
    border: 2px solid var(--border-color);
    height: 30px;
    line-height: 26px;
    padding: 0 12px;
  }
}

/* ==================== Responsive design for 1024px ========================= */
@media screen and (max-width: 1024px) {
  .grid-container {
    grid-template-columns: repeat(2, 1fr);
    width: 100%;
  }

  .post-container-index {
    flex-direction: column;
    gap: 20px;
    padding: 10px;
  }

  .post-container-index-image {
    width: 100%;
  }

  .post-container-index-image .post-card-image-tag {
    top: 15px;
    left: 15px;
    right: 15px;
  }

  .post-container-index-desc {
    margin-bottom: 0px;
    width: 100%;
  }

  .post-content-title {
    font-size: 20px;
  }

  .post-container-index-img {
    height: 100%;
  }

  .post-content-author {
    display: flex;
    font-size: 12px;
  }

  .post-card-image-tag-name {
    font-size: 12px;
    letter-spacing: 0.2px;
    display: block;
    width: fit-content;
    max-width: 100%;
    border: 2px solid var(--border-color);
    height: 30px;
    line-height: 26px;
    padding: 0 12px;
  }

  .post-category {
    margin: 0;
    margin-top: 10px;
  }

  /* .post-card-container:after {
    content: "";
    top: 0;
    left: 0;
    border-radius: 0 10px 10px;
    border-right: solid 5px var(--border-color);
    border-bottom: solid 5px var(--border-color);
    right: -5px;
    bottom: -5px;
    z-index: -1;
    position: absolute;
  } */

  .post-category-title {
    display: none;
    width: 0;
  }

  .post-category-title-mob {
    display: block;
    font-weight: 900;
    text-align: center;
    font-size: 40px;
    opacity: 0.5;
    /* padding-left: 8px; */
    color: #4d80a8;
    text-transform: capitalize;
  }

  .ad-container {
    display: none;
  }

  .index-px-title {
    padding: 40px 0 0 0;
  }

  .ad-leaderboard-lg {
    display: none;
  }

  .ad-leaderboard-md {
    display: block;
    height: 90px;
    width: 728px;
    margin-right: 15px;
    margin-top: 4px;
    margin-left: 30px;
  }
}

/* ==================== Responsive design for 768px ========================= */
@media screen and (max-width: 768px) {
  .nav-bar-logo {
    padding: 0.2rem 0 0.2rem 0.6rem;
    font-size: 14px;
  }

  .nav-bar-menu:before,
  .nav-bar-menu:after,
  .nav-bar-menu div {
    height: 4px;
  }

  .nav-ham-list {
    font-size: 14px;
  }

  .front-post-card {
    height: 60vh;
  }

  .post-card-image-tag-name {
    font-size: 8px;
    letter-spacing: 0.2px;
    display: block;
    width: fit-content;
    max-width: 100%;
    border: 2px solid var(--border-color);
    height: 18px;
    line-height: 14px;
    padding: 0 6px;
    border-radius: 5px;
  }

  .footer-desc {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
  }

  .title-tags-name h2 {
    font-size: 18px;
    line-height: 20px;
    width: 90%;
  }

  .title-details {
    font-size: 11px;
  }

  .ad-container {
    display: none;
  }
}

/* ==================== Responsive design for 480px ========================= */
@media screen and (max-width: 480px) {
  .nav-bar-menu {
    width: 30px;
    padding: 2px;
  }

  .logo-size {
    width: 100px;
    padding: 10px 0px;
  }

  .nav-ham-list {
    font-size: 12px;
    padding: none;
  }

  .front-post-card {
    height: 40vh;
  }

  .front-post-card-img {
    flex: 0.7;
  }

  .front-post-card-img img {
    object-fit: cover;
  }

  .title-tags {
    flex: 0.3;
  }

  .right-button {
    width: 35px;
    height: 35px;
    top: 70%;
    left: 35%;
  }

  .left-button {
    width: 35px;
    height: 35px;
    top: 70%;
    right: 35%;
  }

  .front-post-card-img .post-card-image-tag {
    top: 15px;
    left: 15px;
    right: 15px;
  }

  .grid-container {
    grid-template-columns: repeat(2, 1fr);
    width: 100%;
  }

  .post-card-container {
    padding: 8px;
  }

  .post-card-container:hover {
    transform: scale(1.01);
    box-shadow: 0px 8px 30px rgba(0, 0, 0, 0.15);
  }

  .post-card-title {
    font-size: 14px;
  }

  .post-card-img img {
    width: 100%;
    height: 120px;
  }

  .post-card-img {
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
  }

  .img-not-found {
    height: 120px;
  }

  .post-card-author {
    font-size: 10px;
  }

  /* .post-card-container:after {
    border-radius: 0 5px 5px;
    border-right: solid 4px var(--border-color);
    border-bottom: solid 4px var(--border-color);
    right: -2px;
    bottom: -2px;
  } */

  .post-card-image-container .post-card-image-tag {
    top: 15px;
    left: 15px;
    right: 15px;
  }

  .footer-desc-left-about {
    font-size: 12px;
    line-height: 16px;
  }

  .rm-a {
    font-size: 12px;
    border: 2px solid var(--border-color);
    background-color: #fff;
    border-radius: 50px;
    height: 35px;
    line-height: 32px;
    padding: 0 40px 0 20px;
    z-index: 1;
  }

  .rm-icon {
    display: block;
    position: absolute;
    width: 35px;
    height: 35px;
    right: -4px;
    top: -2px;
    bottom: -4px;
    border: 2px solid var(--border-color);
    border-radius: 100%;
  }

  .post-container-index-desc {
    width: 100%;
    padding: 0 10px;
  }

  .rm-triple {
    width: 4px;
    height: 4px;
  }

  .rm-triple:before,
  .rm-triple:after {
    content: "";
    width: 4px;
    height: 4px;
  }

  .title-tags-name h2 {
    font-size: 16px;
    line-height: 18px;
    width: 90%;
  }

  .post-content-excerpt {
    font-size: 14px;
  }

  .index-px-title {
    padding: 30px 0 0 0;
  }

  .ad-leaderboard-md {
    display: none;
  }

  .ad-leaderboard-sm {
    display: block;
    height: 50px;
    width: 280px;
    /* margin-right: 0.6rem; */
    /* margin-top: 0.25re; */
    /* margin-left: 1rem; */
  }
}

/* ==================== Responsive design for 380px ========================= */
@media screen and (max-width: 380px) {
  .post-card-container {
    padding: 5px;
    border-width: 2px;
  }

  .post-card-title {
    font-size: 10px;
  }

  .post-card-img img {
    width: 100%;
    height: 80px;
    /* border-radius: 6px; */
  }

  .post-card-author {
    font-size: 7px;
  }

  /* .post-card-image-container {
    border-radius: 2px;
  } */

  /* .post-card-img {
    border-radius: 2px;
  } */

  .post-card-image-tag-name {
    font-size: 6px;
    border: 1px solid var(--border-color);
    height: 18px;
    line-height: 18px;
    padding: 0 4px;
    border-radius: 4px;
  }

  .post-card-image-container .post-card-image-tag {
    top: 10px;
    left: 10px;
    right: 10px;
  }

  .footer-desc-right {
    gap: 8px;
    font-size: 10px;
  }

  .footer-desc-right-section-title {
    line-height: 12px;
    font-size: 13px;
  }

  .footer-desc-right-section-desc {
    margin-top: 0;
    line-height: 10px;
  }

  .img-not-found {
    height: 80px;
  }

  .title-details {
    font-size: 10px;
  }

  .post-content-excerpt {
    font-size: 12px;
  }

  .index-px-title {
    padding: 25px 0 0 0;
  }
}

/* ==================== Responsive design for 280px ========================= */
@media screen and (max-width: 280px) {
  .container {
    min-width: 280px;
    padding: 0px 0.5%;
  }

  .front-post-card {
    height: 45vh;
  }

  .post-content-excerpt {
    font-size: 10px;
  }

  .index-px-title {
    padding: 20px 0 0 0;
  }
}

/*================================ Reused icons ===========================*/

/* -----------------------search icon for nav bar------------------------ */
.search-icon {
  width: 24px;
  height: 24px;
  display: inline-block;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" x="0px" y="0px" width="30" height="30" viewBox="0 0 50 50"><path d="M 21 3 C 11.621094 3 4 10.621094 4 20 C 4 29.378906 11.621094 37 21 37 C 24.710938 37 28.140625 35.804688 30.9375 33.78125 L 44.09375 46.90625 L 46.90625 44.09375 L 33.90625 31.0625 C 36.460938 28.085938 38 24.222656 38 20 C 38 10.621094 30.378906 3 21 3 Z M 21 5 C 29.296875 5 36 11.703125 36 20 C 36 28.296875 29.296875 35 21 35 C 12.703125 35 6 28.296875 6 20 C 6 11.703125 12.703125 5 21 5 Z"></path></svg>');
}

/* ------------------------close icon for nav bar------------------------ */
.close-icon {
  width: 16px;
  height: 16px;
  display: inline-block;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url('data:image/svg+xml;utf8,<svg fill="%23000000" height="200px" width="200px" version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 490 490" xml:space="preserve"><polygon points="456.851,0 245,212.564 33.149,0 0.708,32.337 212.669,245.004 0.708,457.678 33.149,490 245,277.443 456.851,490 489.292,457.678 277.331,245.004 489.292,32.337 "></polygon></svg>');
}

/* ----------------------------Floating up icon--------------------------------- */

.upArrow-icon {
  width: 40px;
  height: 40px;
  display: inline-block;
  background-color: currentColor;
  mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 330 330"><path d="M325.606,229.393l-150.004-150C172.79,76.58,168.974,75,164.996,75c-3.979,0-7.794,1.581-10.607,4.394 l-149.996,150c-5.858,5.858-5.858,15.355,0,21.213c5.857,5.857,15.355,5.858,21.213,0l139.39-139.393l139.397,139.393 C307.322,253.536,311.161,255,315,255c3.839,0,7.678-1.464,10.607-4.394C331.464,244.748,331.464,235.251,325.606,229.393z"/></svg>') no-repeat center;
  -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 330 330"><path d="M325.606,229.393l-150.004-150C172.79,76.58,168.974,75,164.996,75c-3.979,0-7.794,1.581-10.607,4.394 l-149.996,150c-5.858,5.858-5.858,15.355,0,21.213c5.857,5.857,15.355,5.858,21.213,0l139.39-139.393l139.397,139.393 C307.322,253.536,311.161,255,315,255c3.839,0,7.678-1.464,10.607-4.394C331.464,244.748,331.464,235.251,325.606,229.393z"/></svg>') no-repeat center;
  mask-size: contain;
  -webkit-mask-size: contain;
}

.upArrow-icon {
  color: var(--primary-color);
}

/* ----------------------------Left slider button icon--------------------------------- */
.left-button-icon {
  width: 100%;
  height: 100%;
  display: inline-block;
  background-color: currentColor;
  mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32"><path d="M24 7H14v2h7.59L7.29 23.29 8.7 24.7 23 10.41V18h2V8a1 1 0 0 0-1-1z"/></svg>') no-repeat center;
  -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32"><path d="M24 7H14v2h7.59L7.29 23.29 8.7 24.7 23 10.41V18h2V8a1 1 0 0 0-1-1z"/></svg>') no-repeat center;
  mask-size: contain;
  -webkit-mask-size: contain;
}

/* ----------------------------Right slider button icon--------------------------------- */

.right-button-icon {
  width: 100%;
  height: 100%;
  display: inline-block;
  background-color: currentColor;
  mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32"><path d="M23.29 7.29 9 21.59V14H7v10a1 1 0 0 0 1 1h10v-2h-7.59l14.3-14.29z"/></svg>') no-repeat center;
  -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32"><path d="M23.29 7.29 9 21.59V14H7v10a1 1 0 0 0 1 1h10v-2h-7.59l14.3-14.29z"/></svg>') no-repeat center;
  mask-size: contain;
  -webkit-mask-size: contain;
}

/* ----------------------------Up Arrow button icon--------------------------------- */

.upArrow-icon {
  width: 40px;
  height: 40px;
  display: inline-block;
  background-color: currentColor;
  mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 330 330"><path d="M325.606,229.393l-150.004-150C172.79,76.58,168.974,75,164.996,75c-3.979,0-7.794,1.581-10.607,4.394 l-149.996,150c-5.858,5.858-5.858,15.355,0,21.213c5.857,5.857,15.355,5.858,21.213,0l139.39-139.393l139.397,139.393 C307.322,253.536,311.161,255,315,255c3.839,0,7.678-1.464,10.607-4.394C331.464,244.748,331.464,235.251,325.606,229.393z"/></svg>') no-repeat center;
  -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 330 330"><path d="M325.606,229.393l-150.004-150C172.79,76.58,168.974,75,164.996,75c-3.979,0-7.794,1.581-10.607,4.394 l-149.996,150c-5.858,5.858-5.858,15.355,0,21.213c5.857,5.857,15.355,5.858,21.213,0l139.39-139.393l139.397,139.393 C307.322,253.536,311.161,255,315,255c3.839,0,7.678-1.464,10.607-4.394C331.464,244.748,331.464,235.251,325.606,229.393z"/></svg>') no-repeat center;
  mask-size: contain;
  -webkit-mask-size: contain;
}

.upArrow-icon {
  color: var(--primary-color);
}

/* ----------------------------Youtube icon--------------------------------- */

.youtube-icon {
  width: 16px;
  height: 12px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 12' width='16' height='12' fill='none'%3E%3Cpath d='M15.8406 2.80003C15.8406 2.80003 15.6844 1.6969 15.2031 1.21253C14.5938 0.575028 13.9125 0.571902 13.6 0.534402C11.3625 0.371902 8.00313 0.371902 8.00313 0.371902H7.99687C7.99687 0.371902 4.6375 0.371902 2.4 0.534402C2.0875 0.571902 1.40625 0.575028 0.796875 1.21253C0.315625 1.6969 0.1625 2.80003 0.1625 2.80003C0.1625 2.80003 0 4.0969 0 5.39065V6.60315C0 7.8969 0.159375 9.19378 0.159375 9.19378C0.159375 9.19378 0.315625 10.2969 0.79375 10.7813C1.40313 11.4188 2.20313 11.3969 2.55938 11.4657C3.84063 11.5875 8 11.625 8 11.625C8 11.625 11.3625 11.6188 13.6 11.4594C13.9125 11.4219 14.5938 11.4188 15.2031 10.7813C15.6844 10.2969 15.8406 9.19378 15.8406 9.19378C15.8406 9.19378 16 7.90003 16 6.60315V5.39065C16 4.0969 15.8406 2.80003 15.8406 2.80003ZM6.34688 8.07503V3.57815L10.6687 5.8344L6.34688 8.07503Z' fill='%23F9F9F9'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  display: inline-block;
  cursor: pointer;
}

/* ----------------------------Linkedin icon--------------------------------- */

.linkedin-icon {
  width: 17px;
  height: 16px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 17 16' width='17' height='16' fill='none'%3E%3Cpath d='M15.0656 0H1.43125C0.778125 0 0.25 0.515625 0.25 1.15313V14.8438C0.25 15.4813 0.778125 16 1.43125 16H15.0656C15.7188 16 16.25 15.4813 16.25 14.8469V1.15313C16.25 0.515625 15.7188 0 15.0656 0ZM4.99687 13.6344H2.62188V5.99687H4.99687V13.6344ZM3.80938 4.95625C3.04688 4.95625 2.43125 4.34062 2.43125 3.58125C2.43125 2.82188 3.04688 2.20625 3.80938 2.20625C4.56875 2.20625 5.18437 2.82188 5.18437 3.58125C5.18437 4.3375 4.56875 4.95625 3.80938 4.95625ZM13.8844 13.6344H11.5125V9.92188C11.5125 9.0375 11.4969 7.89687 10.2781 7.89687C9.04375 7.89687 8.85625 8.8625 8.85625 9.85938V13.6344H6.4875V5.99687H8.7625V7.04063H8.79375C9.10938 6.44063 9.88438 5.80625 11.0375 5.80625C13.4406 5.80625 13.8844 7.3875 13.8844 9.44375V13.6344Z' fill='%23F9F9F9'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  display: inline-block;
  cursor: pointer;
}

/* ----------------------------Facebook icon--------------------------------- */

.facebook-icon {
  width: 17px;
  height: 16px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 17 16' width='17' height='16' fill='none'%3E%3Cpath d='M8.5 0C4.08176 0 0.5 3.58176 0.5 8C0.5 11.7517 3.08304 14.8998 6.56752 15.7645V10.4448H4.91792V8H6.56752V6.94656C6.56752 4.22368 7.79984 2.9616 10.4731 2.9616C10.98 2.9616 11.8546 3.06112 12.2123 3.16032V5.37632C12.0235 5.35648 11.6955 5.34656 11.2882 5.34656C9.97648 5.34656 9.4696 5.84352 9.4696 7.13536V8H12.0827L11.6338 10.4448H9.4696V15.9414C13.4309 15.463 16.5003 12.0902 16.5003 8C16.5 3.58176 12.9182 0 8.5 0Z' fill='%23F9F9F9'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  display: inline-block;
  cursor: pointer;
}

/* ----------------------------Instagram icon--------------------------------- */

.instagram-icon {
  display: inline-block;
  width: 17px;
  height: 16px;
  cursor: pointer;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url('data:image/svg+xml;utf8,<svg width="17" height="16" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><g clip-path="url(%23clip0_3_664)"><path d="M12 2.16094C15.2063 2.16094 15.5859 2.175 16.8469 2.23125C18.0188 2.28281 18.6516 2.47969 19.0734 2.64375C19.6313 2.85938 20.0344 3.12188 20.4516 3.53906C20.8734 3.96094 21.1313 4.35938 21.3469 4.91719C21.5109 5.33906 21.7078 5.97656 21.7594 7.14375C21.8156 8.40937 21.8297 8.78906 21.8297 11.9906C21.8297 15.1969 21.8156 15.5766 21.7594 16.8375C21.7078 18.0094 21.5109 18.6422 21.3469 19.0641C21.1313 19.6219 20.8687 20.025 20.4516 20.4422C20.0297 20.8641 19.6313 21.1219 19.0734 21.3375C18.6516 21.5016 18.0141 21.6984 16.8469 21.75C15.5813 21.8062 15.2016 21.8203 12 21.8203C8.79375 21.8203 8.41406 21.8062 7.15313 21.75C5.98125 21.6984 5.34844 21.5016 4.92656 21.3375C4.36875 21.1219 3.96563 20.8594 3.54844 20.4422C3.12656 20.0203 2.86875 19.6219 2.65313 19.0641C2.48906 18.6422 2.29219 18.0047 2.24063 16.8375C2.18438 15.5719 2.17031 15.1922 2.17031 11.9906C2.17031 8.78438 2.18438 8.40469 2.24063 7.14375C2.29219 5.97187 2.48906 5.33906 2.65313 4.91719C2.86875 4.35938 3.13125 3.95625 3.54844 3.53906C3.97031 3.11719 4.36875 2.85938 4.92656 2.64375C5.34844 2.47969 5.98594 2.28281 7.15313 2.23125C8.41406 2.175 8.79375 2.16094 12 2.16094ZM12 0C8.74219 0 8.33438 0.0140625 7.05469 0.0703125C5.77969 0.126563 4.90313 0.332812 4.14375 0.628125C3.35156 0.9375 2.68125 1.34531 2.01563 2.01562C1.34531 2.68125 0.9375 3.35156 0.628125 4.13906C0.332812 4.90313 0.126563 5.775 0.0703125 7.05C0.0140625 8.33437 0 8.74219 0 12C0 15.2578 0.0140625 15.6656 0.0703125 16.9453C0.126563 18.2203 0.332812 19.0969 0.628125 19.8563C0.9375 20.6484 1.34531 21.3188 2.01563 21.9844C2.68125 22.65 3.35156 23.0625 4.13906 23.3672C4.90313 23.6625 5.775 23.8687 7.05 23.925C8.32969 23.9812 8.7375 23.9953 11.9953 23.9953C15.2531 23.9953 15.6609 23.9812 16.9406 23.925C18.2156 23.8687 19.0922 23.6625 19.8516 23.3672C20.6391 23.0625 21.3094 22.65 21.975 21.9844C22.6406 21.3188 23.0531 20.6484 23.3578 19.8609C23.6531 19.0969 23.8594 18.225 23.9156 16.95C23.9719 15.6703 23.9859 15.2625 23.9859 12.0047C23.9859 8.74688 23.9719 8.33906 23.9156 7.05938C23.8594 5.78438 23.6531 4.90781 23.3578 4.14844C23.0625 3.35156 22.6547 2.68125 21.9844 2.01562C21.3188 1.35 20.6484 0.9375 19.8609 0.632812C19.0969 0.3375 18.225 0.13125 16.95 0.075C15.6656 0.0140625 15.2578 0 12 0Z" fill="%23F9F9F9" /><path d="M12 5.83594C8.59688 5.83594 5.83594 8.59688 5.83594 12C5.83594 15.4031 8.59688 18.1641 12 18.1641C15.4031 18.1641 18.1641 15.4031 18.1641 12C18.1641 8.59688 15.4031 5.83594 12 5.83594ZM12 15.9984C9.79219 15.9984 8.00156 14.2078 8.00156 12C8.00156 9.79219 9.79219 8.00156 12 8.00156C14.2078 8.00156 15.9984 9.79219 15.9984 12C15.9984 14.2078 14.2078 15.9984 12 15.9984Z" fill="%23F9F9F9" /><path d="M19.8469 5.59214C19.8469 6.38902 19.2 7.0312 18.4078 7.0312C17.6109 7.0312 16.9688 6.38433 16.9688 5.59214C16.9688 4.79526 17.6156 4.15308 18.4078 4.15308C19.2 4.15308 19.8469 4.79995 19.8469 5.59214Z" fill="%23F9F9F9" /></g><defs><clipPath id="clip0_3_664"><rect width="24" height="24" fill="white" /></clipPath></defs></svg>');
}

/* ----------------------------Twitter icon--------------------------------- */

.twitter-icon {
  display: inline-block;
  width: 16px;
  cursor: pointer;
  height: 14px;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url('data:image/svg+xml;utf8,<svg width="16" height="14" viewBox="0 0 16 14" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M12.2175 0.269272H14.4665L9.5531 5.88493L15.3333 13.5266H10.8075L7.26265 8.89196L3.20659 13.5266H0.956247L6.21158 7.52L0.666626 0.269272H5.30736L8.51156 4.50549L12.2175 0.269272ZM11.4282 12.1805H12.6744L4.63022 1.54469H3.29293L11.4282 12.1805Z" fill="%23F9F9F9" /></svg>');
}

/* ----------------------------Add user login icon--------------------------------- */

.addUser-icon {
  width: 20px;
  height: 20px;
  display: inline-block;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url('data:image/svg+xml;utf8,<svg height="200px" width="200px" version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 502.987 502.987" xml:space="preserve" fill="%23000000"><g id="SVGRepo_bgCarrier" stroke-width="0"></g><g id="SVGRepo_tracerCarrier" stroke-linecap="round" stroke-linejoin="round"></g><g id="SVGRepo_iconCarrier"> <g> <g> <circle style="fill:%23f2f0f5;" cx="185.994" cy="102.008" r="102.008"></circle> <path style="fill:%23f2f0f5;" d="M334.444,261.459c-13.244,0-25.95,2.243-37.9,6.191c-25.216-32.335-65.273-53.323-110.55-53.323 c-76.361,0.022-138.226,59.471-138.226,132.898v73.794h172.437c16.221,47.585,61.261,81.969,114.239,81.969 c66.611,0,120.775-54.186,120.775-120.775S401.055,261.459,334.444,261.459z M240.309,382.213 c0-51.899,42.236-94.156,94.135-94.156c51.942,0,94.178,42.257,94.178,94.156c0,51.921-42.236,94.156-94.178,94.156 C282.545,476.369,240.309,434.134,240.309,382.213z"></path> <path style="fill:%23f2f0f5;" d="M351.269,312.97h-29.983c-0.022,14.366,0,52.158,0,52.158s-32.529,0-48.621,0.043v29.962 c16.092-0.022,48.621-0.022,48.621-0.022s0,37.749-0.022,52.18h29.983c0.022-14.431,0.022-52.18,0.022-52.18s32.507,0,48.599,0 v-29.983c-16.092,0-48.599,0-48.599,0S351.226,327.337,351.269,312.97z"></path> </g> <g> </g> <g> </g> <g> </g> <g> </g> <g> </g> <g> </g> <g> </g> <g> </g> <g> </g> <g> </g> <g> </g> <g> </g> <g> </g> <g> </g> </g> </g></svg>');
}