@font-face {
  font-family: Boxicons;
  src: url(https://unpkg.com/boxicons@2.1.4/fonts/boxicons.woff2)
    format("woff2");
  font-display: swap;
}
@font-face {
  font-family: "Font Awesome 6 Free";
  src: url(https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.0/webfonts/fa-solid-900.woff2)
    format("woff2");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Font Awesome 6 Free";
  src: url(https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.0/webfonts/fa-regular-400.woff2)
    format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Font Awesome 6 Brands";
  src: url(https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.0/webfonts/fa-brands-400.woff2)
    format("woff2");
  font-display: swap;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: var(--font-family);
  text-decoration: none !important;
  scroll-behavior: smooth;
}
ul {
  padding: 0;
}
.container {
  max-width: 1920px;
  width: 100%;
  padding: 0 5%;
  margin: 0 auto;
}
:root {
  --site-color: #225355;
  --nav-text-color: #fff;
  --blog-detail-h1: #590000;
  --custom-color1: #424342;
  --custom-color2: #fbeaeb;
  --link-color: #aa1111;
  --blog-detail-h2: #800080;
  --blog-detail-h3: #a52a2a;
  --question-color: #aa1111;
  --font-family:
    system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial,
    "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji",
    "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --font-family1:
    SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New",
    monospace;
}
nav {
  position: relative;
  width: 100%;
  height: 65px;
  background: var(--site-color);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  z-index: 99;
  transition: 0.5s;
}
nav .navbar {
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: auto;
}

.navbar a img {
  max-width: 100%;
  height: auto;
  display: block;
}

nav .navbar .links {
  display: flex;
}
nav .navbar .links li {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  list-style: none;
  margin-right: 2px;
}
nav .navbar .links li:last-child {
  margin-right: 7px;
}
nav .navbar .links li a {
  height: 100%;
  text-decoration: none;
  white-space: nowrap;
  color: var(--nav-text-color);
  font-size: 16px;
  font-weight: 600;
  position: relative;
  padding: 9px 13px;
  font-family: var(--font-family);
  transition: 0.3s;
}
nav .navbar .links li a:hover {
  color: black;
  background-color: var(--custom-color2);
  border-radius: 5px;
}

nav .navbar .links li a.active {
  color: black;
  background-color: var(--custom-color2);
  border-radius: 5px;
}
.navbar .nav-links .sidebar-logo {
  display: none;
}
.navbar .bx-menu {
  display: none;
}
.nav-left {
  display: flex;
  align-items: center;
}

/* Search wrapper */
.search-wrapper {
  position: relative;
}

/* Search button */
.search-btn {
  background: transparent;
  border: none;
  color: var(--nav-text-color);
  font-size: 18px;
  cursor: pointer;
  padding: 5px 12px;
  line-height: 1.5;
  border: 1px solid white;
  border-radius: 5px;
  transition:
    background 0.3s,
    color 0.3s;
}

.search-btn:hover {
  background-color: var(--custom-color2);
  color: var(--site-color);
}

.search-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  width: 250px;
  background: var(--nav-text-color);
  padding: 10px;
  border-radius: 6px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  opacity: 0;
  transform: translateY(-10px);
  pointer-events: none;
  transition: all 0.3s ease;
  z-index: 100;
}

.search-wrapper.active .search-dropdown {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.search-input {
  width: 100%;
  padding: 8px 12px;
  border: 1px solid #ccc;
  border-radius: 4px;
  outline: none;
  font-size: 14px;
  transition: 0.3s;
}

.search-input:focus {
  border-color: var(--site-color);
  box-shadow: 0 0 5px rgba(34, 83, 85, 0.5);
}

/* ===============================
   STICKY NAVBAR STYLE
================================ */
nav.sticky {
  position: fixed;
  top: 0;
  left: 0;
  background: var(--site-color);
  width: 100%;
  z-index: 999;
  transition: 0.5s;
}

nav.sticky .navbar a img {
  max-width: 200px;
  transition: 0.5s;
}

nav.sticky .navbar .links li a {
  font-size: 14px;
  transition: 0.5s;
  padding: 0.5em 0.875em;
}

/* ===============================
   banner-section
================================ */
.banner-section img {
  width: 100%;
  height: auto;
  display: block;
}

/* ===============================
   blog-box-section
================================ */

.top-text {
  font-size: 40px;
  font-weight: 500;
  border-style: solid;
  border-image: linear-gradient(
      to right,
      var(--site-color),
      rgba(255, 255, 255, 0)
    )
    0 0 100% 0;
  width: fit-content;
  margin: 0 auto;
  margin-bottom: 60px;
  margin-top: 36px;
}

.blog-box {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.box1 {
  box-shadow: 0 10px 40px rgb(82 85 90 / 10%);
  border-bottom: 3px solid var(--site-color) !important;
  border-radius: 5px;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.blog-box-text {
  min-height: 67px;
  border-bottom: 1px solid #999;
  padding: 12px 16px;
  flex-grow: 1;
}

.box1-img img {
  width: 100%;
  border-radius: 5px 5px 0 0;
  height: 100%;
  display: block;
  object-fit: cover;
}

.blog-box-text a {
  font-size: 1rem;
  font-weight: 600;
  word-spacing: 2px;
  line-height: 1.3;
  color: var(--custom-color1);
}

.box1-footer {
  display: flex;
  justify-content: space-between;
  padding: 12px 16px;
}

.footer-date i {
  color: var(--site-color);
  font-size: 12px;
}

.footer-date span {
  font-size: 12px;
  color: var(--custom-color1);
  font-weight: 600;
}

.view i {
  color: var(--site-color);
  font-size: 12px;
}

.view span {
  font-size: 12px;
  color: var(--custom-color1);
  font-weight: 600;
}
.box1-img {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 2; /* 300x200 image ratio */
  overflow: hidden;
}

.box1-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  box-shadow: inset 0 0 10px 10px rgba(85, 85, 85, 0.4);
  transition: all 0.5s;
  opacity: 0;
  visibility: hidden;
  border-radius: 4px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.box1:hover .box1-overlay {
  opacity: 1;
  visibility: visible;
}

.box1-overlay span {
  transform: rotateZ(90deg);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  z-index: 8;
  transition: all 0.5s ease-out;
  background: var(--site-color);
  color: var(--nav-text-color);
  display: flex;
  justify-content: center;
  align-items: center;
}

.box1:hover .box1-overlay span {
  transform: rotateZ(0deg);
}

.more-btn {
  margin: 30px 0;
  display: flex;
  justify-content: center;
}

#btn1 {
  width: 12rem;
  height: auto;
  position: relative;
  display: flex;
}

.circle {
  transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  position: relative;
  display: block;
  margin: 0;
  width: 3rem;
  height: 3rem;
  background: #282936;
  border-radius: 1.625rem;
}

.circle i {
  position: absolute;
  top: 15px;
  bottom: 0;
  transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  left: 20px;
  width: 18px;
  height: 2px;
  background: 0;
  color: white;
}

#btn1 p {
  transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0.75rem 0;
  margin: 0 0 0 1.85rem;
  color: #282936;
  font-weight: 700;
  line-height: 1.6;
  text-align: center;
  font-size: 16px;
}

#btn1:hover .circle {
  width: 100%;
}

#btn1:hover p {
  color: white;
}

/* ===============================
   blog-box-section
================================ */

.popular-blog h2 {
  font-size: 32px;
  border-style: solid;
  border-image: linear-gradient(
      to right,
      var(--site-color),
      rgba(255, 255, 255, 0)
    )
    0 0 100% 0;
  width: fit-content;
  margin: 0 auto;
  font-weight: 500;
}

.popular-blog {
  background-image: url(/smseo/images/interlaced.webp);
  padding: 50px 0;
}

.popular-blog-main {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 85px;
  gap: 25px;
}

.popular-blog-main-box1 {
  background-color: var(--nav-text-color);
  padding: 20px 10px;
  box-shadow: 0 10px 40px rgb(82 85 90 / 10%);
  border-top: 3px solid rgba(0, 0, 0, 0.125);
  display: flex;
  gap: 20px;
  transition: 0.4s;
  border-radius: 4px;
}

.popular-blog-main-box1:hover {
  border-top: 3px solid var(--site-color);
}

.popular-blog-main-box1:hover .box1-overlay span {
  transform: rotateZ(0deg);
}

.popular-box1-right {
  width: 72%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.popular-box1-left {
  position: relative;
  width: 38%;
}

.popular-box1-left a {
  width: 100%;
  aspect-ratio: 200 / 133; /* REAL image ratio */
  overflow: hidden;
  position: relative;
}

.popular-box1-left a img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.popular-blog-main-box1:hover .box1-overlay {
  opacity: 1;
  visibility: visible;
}

.popular-box1-right a {
  font-weight: 500;
  color: var(--site-color);
  word-spacing: 2px;
  line-height: 1.3;
  font-size: 1.1rem;
}

.popular-box1-right p {
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  font-size: 14px;
  margin: 12px 0px;
  line-height: 1.5;
  color: var(--custom-color1);
}

.popular-box1-footer {
  padding: 0;
}

/* ===============================
   Footer-section
================================ */

.footer-top {
  text-align: center;
  padding: 0 20px;
}
.footer-top-text {
  padding: 10px 1em;
  position: relative;
  color: var(--nav-text-color);
  letter-spacing: 0.1em;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.3);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.3),
    inset 0 0 20px rgba(0, 0, 0, 0.1),
    0 1px 1px rgba(0, 0, 0, 0.4);
  background: var(--site-color);
  display: block;
  margin: auto;
  margin-top: 50px;
  margin-bottom: 50px;
  max-width: 500px;
}
span.footer-content {
  font-size: 20px;
  font-weight: 500;
}
.footer-top-text:before {
  left: -21px;
  border-right-width: 0.75em;
  border-left-color: transparent !important;
}
.footer-top-text:after,
.footer-top-text:before {
  content: "";
  width: 0.2em;
  bottom: -0.5em;
  position: absolute;
  display: block;
  border: 0.9em solid var(--site-color);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.4);
  z-index: 2;
}
.footer-top-text:after {
  right: -21px;
  border-left-width: 0.75em;
  border-right-color: transparent !important;
}

.footer-bottom {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  margin-bottom: 40px;
}

.f-b-t {
  border: 2px solid #d62727;
}
.f-fb {
  border: 2px solid #37508d;
}
.f-ig {
  border: 2px solid #cc2366;
}
.f-tx {
  border: 2px solid #000;
}
.f-fb,
.f-ig,
.f-tx,
.f-b-t {
  position: relative;
  height: 100%;
}

.f-tx a {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.f-ig a {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
.f-b-t::after,
.f-b-t::before {
  content: "";
  position: absolute;
  top: 0;
  border: 0 solid;
  box-shadow: 1px 11px 20px 0 silver;
}
.f-b-t::before {
  left: 0;
  border: 25px solid;
  border-bottom-right-radius: 10px;
  border-color: #d62727 transparent transparent #d62727;
}
.f-b-t::after {
  right: 0;
  border-color: #d62727 #d62727 transparent transparent !important;
  border-bottom-left-radius: 10px;
  transition: 0.5s ease-in-out;
}
.f-b-t:hover::after {
  border: 25px solid;
}
.f-fb::after,
.f-fb::before {
  content: "";
  position: absolute;
  top: 0;
  border: 0 solid;
  box-shadow: 1px 11px 20px 0 silver;
}
.f-fb::before {
  left: 0;
  border: 25px solid;
  border-bottom-right-radius: 10px;
  border-color: #37508d transparent transparent #37508d;
}
.f-fb::after {
  right: 0;
  border-color: #37508d #37508d transparent transparent !important;
  border-bottom-left-radius: 10px;
  transition: 0.5s ease-in-out;
}
.f-fb:hover::after {
  border: 25px solid;
}
.f-ig::after,
.f-ig::before {
  content: "";
  position: absolute;
  top: 0;
  border: 0 solid;
  box-shadow: 1px 11px 20px 0 silver;
}
.f-ig::before {
  left: 0;
  border: 25px solid;
  border-bottom-right-radius: 10px;
  border-color: #cc2366 transparent transparent #cc2366;
}
.f-ig::after {
  right: 0;
  border-color: #cc2366 #cc2366 transparent transparent !important;
  border-bottom-left-radius: 10px;
  transition: 0.5s ease-in-out;
}
.f-ig:hover::after {
  border: 25px solid;
}
.f-tx::after,
.f-tx::before {
  content: "";
  position: absolute;
  top: 0;
  border: 0 solid;
  box-shadow: 1px 11px 20px 0 silver;
}
.f-tx::before {
  left: 0;
  border: 25px solid;
  border-bottom-right-radius: 10px;
  border-color: #000 transparent transparent #000;
}
.f-tx::after {
  right: 0;
  border-color: #000 #000 transparent transparent !important;
  border-bottom-left-radius: 10px;
  transition: 0.5s ease-in-out;
}
.f-tx:hover::after {
  border: 25px solid;
}
.f-b-t a {
  display: flex;
  flex-direction: column;
}
.f-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
  padding: 2rem 1rem;
}
.f-title {
  color: var(--site-color);
  font-weight: 500;
  font-size: 18px;
}
.youtube1:hover {
  color: #d62727;
}
.facebook1:hover {
  color: #37508d;
}
.x1:hover {
  color: #000;
}
.insta1:hover {
  color: #aa1111;
}
.f-desc {
  color: #505050;
}
.f-button {
  text-align: center;
  padding: 0.5rem 0;
}
.f-button span {
  color: #fff;
  font-weight: 500;
  animation: moveBackAndForth 6s linear infinite alternate;
  animation-play-state: running;
  width: fit-content;
  display: inline-block;
}
.f-fb:hover .f-button span,
.f-ig:hover .f-button span,
.f-tx:hover .f-button span,
.f-b-t:hover .f-button span,
.f-tk:hover .f-button span,
.f-lk:hover .f-button span {
  animation-play-state: paused;
}
@keyframes moveBackAndForth {
  0%,
  100% {
    transform: translateX(20%);
  }
  50% {
    transform: translateX(-20%);
  }
}
.f-fb .f-button {
  background-color: #37508d;
}
.f-b-t .f-button {
  background-color: #d62727;
}
.f-ig .f-button {
  background: linear-gradient(
    45deg,
    #f09433 0,
    #e6683c 25%,
    #dc2743 50%,
    #cc2366 75%,
    #bc1888 100%
  );
}
.f-tx .f-button {
  background-color: #000;
}

.icon-box {
  display: flex;
  justify-content: center;
  padding: 10px 0;
}

.icon-box:hover a {
  margin: 0 2px;
}

.icon-box a {
  height: 40px;
  width: 40px;
  box-shadow: 0 0 40px rgb(82 85 90 / 10%);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.3s;
  margin: 0 -5px;
}

#facebook {
  background: var(--nav-text-color);
  color: #37508d;
}

#facebook:hover {
  background: #37508d;
  color: var(--nav-text-color);
}

#youtube {
  background: var(--nav-text-color);
  color: red;
}

#youtube:hover {
  background: red;
  color: var(--nav-text-color);
}

#instagram {
  background: var(--nav-text-color);
  color: #c13584;
}

#instagram:hover {
  background: #c13584;
  color: var(--nav-text-color);
}

.copyright {
  display: flex;
  justify-content: space-between;
  padding-top: 10px;
  padding-bottom: 25px;
}

.copyright p a {
  color: #aa1111;
  font-weight: 600;
}

.topbar {
  background-color: #f4f4f4;
  border-bottom: 5px solid #ccc;
  border-top: 2px solid #e4e4e4;
  min-height: 50px;
  padding: 10px 5%;
}

.topbar ol {
  display: flex;
  gap: 25px;
}

.topbar ol li {
  list-style: none;
}

.topbar ol li a {
  color: #000;
  margin-left: 10px;
}

.topbar ol li a:hover {
  text-decoration: underline !important;
}

.marker {
  position: relative;
}

.marker::before {
  content: "/";
  position: absolute;
  left: -15px;
}

.footer-date {
  position: relative;
  cursor: context-menu;
}

.publish-hover {
  background: white;
  border: 1px solid;
  padding: 5px;
  position: absolute;
  top: 26px;
  left: 7px;
  width: max-content;
  opacity: 0;
  visibility: hidden;
  z-index: 1;
}

.publish-hover p {
  font-size: 12px;
  font-weight: 600;
  margin: 0;
}

.footer-date:hover .publish-hover {
  opacity: 1;
  visibility: visible;
}

.view {
  position: relative;
  cursor: context-menu;
}

.view:hover .publish-hover {
  opacity: 1;
  visibility: visible;
}

/* ===== Blog Details page section ===== */

.blog-detail-page {
  height: auto;
  width: 100%;
  margin-top: 40px;
}

.detail-page {
  display: flex;
  background-image: url(https://smseo.com/wp-content/themes/LGA/assets/images/so-white.png);
  gap: 25px;
}

.detail-page-left {
  width: 75%;
  border: 1px solid rgb(128 137 150 / 0.1);
  border-top: 3px solid var(--site-color);
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 0 40px rgb(82 85 90 / 10%);
  background-color: #fff;
}

.detail-page-right {
  width: 25%;
}

.detail-title h1 {
  font-size: 1.9rem;
  margin: 0;
  color: var(--blog-detail-h1);
  font-weight: 700;
}

.hr-dual {
  margin: 1rem 0;
  height: 1px;
  background: #999;
  opacity: 0.25;
}

.blog_views {
  display: flex;
}

.blog_views {
  position: relative;
  line-height: 1.8;
  font-weight: 400;
  cursor: default;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.blog_views p {
  position: relative;
  color: var(--site-color);
  font-size: 16px;
}

[data-title]:after {
  content: attr(data-title);
  background-color: #fff;
  color: #111;
  font-size: 75%;
  position: absolute;
  padding: 1px 5px;
  bottom: -1.6em;
  left: 100%;
  white-space: nowrap;
  border-radius: 5px;
  box-shadow: 0 0 4px #222;
  border: 1px solid #111;
  visibility: hidden;
}

[data-title]:hover:after {
  transition: 0.1s 0.5s;
  left: 0px;
  bottom: -25px;
  visibility: visible;
  opacity: 1;
}

#data-view:hover:after {
  left: -20px;
}

#detail-page-p {
  contain: layout paint;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.8;
  margin: 10px 0 20px;
  text-align: justify;
  color: #212529;
}

.table-content {
  background-size: cover;
  margin-top: 26px;
  padding-bottom: 15px;
  border: 2px solid #ccc;
}

.table-content legend {
  color: #191919;
  font-size: 22px;
  padding: 0 10px;
  float: none;
  width: auto;
  margin-left: 20px;
  font-weight: 700;
  text-transform: capitalize;
}

.table-content ol {
  width: 100%;
  padding: 2px 10px;
  font-size: 18px;
  font-weight: 600;
  text-align: justify;
  margin-left: 0;
  counter-reset: item;
  list-style: none;
}

.table-content ol li {
  color: var(--site-color);
  display: table;
  font-weight: 600;
  padding: 0.5rem 0.1rem;
}

.table-content li::before {
  content: counters(item, ".") "-";
  color: var(--site-color);
  display: table-cell;
  text-align: right;
  padding: 2px;
  counter-increment: item;
}

.table-content ol li a {
  color: var(--site-color);
  display: inline;
  font-weight: 600;
  padding: 0.5rem 0.1rem;
}

.table-content ol li a:hover {
  color: var(--link-color);
}

.detail-page-h2 {
  color: var(--blog-detail-h2);
  font-size: 1.8rem;
  margin-top: 2rem;
  margin-bottom: 0.9rem;
  line-height: 1.2;
  font-weight: 500;
}

#blog-detail-img1 {
  height: auto;
  max-width: 100%;
  margin: 0 auto;
  display: flex;
  margin-bottom: 16px;
  aspect-ratio: 3 / 1.5;
}

.detail-page-ul {
  margin-left: 1.5rem;
}

.detail-page-ul li {
  font-size: 1.1rem;
  font-weight: 400;
  letter-spacing: 0.05rem;
  color: #000;
  margin-left: 0;
  padding-left: 30px;
  position: relative;
  line-height: 30px;
  list-style: none;
}
.detail-page-ul > li:hover::before {
  background-color: var(--site-color);
  color: var(--nav-text-color);
}

.detail-page-ul li::before {
  content: "\2713";
  font-weight: 900;
  color: var(--site-color);
  border-radius: 50%;
  margin-right: 10px;
  width: 25px;
  height: 25px;
  line-height: 26px;
  text-align: center;
  position: absolute;
  top: 3px;
  left: 0;
}

.detail-page-h3 {
  font-size: 1.6rem;
  margin-top: 2rem;
  margin-bottom: 0.9rem;
  line-height: 1.2;
  font-weight: 500;
  color: var(--blog-detail-h3);
}

.faq-quest {
  position: relative;
  letter-spacing: 0.08em;
  padding-left: 50px;
  color: var(--question-color);
  font-weight: 700;
}

.faq-quest::before {
  font-size: 20px;
  content: attr(data-counter);
  font-weight: 900;
  color: var(--question-color);
  margin-right: 10px;
  width: 35px;
  height: 35px;
  text-align: center;
  top: -3px;
  left: 0;
  list-style: none;
  position: absolute;
}

.faq-quest span {
  font-weight: 700;
  font-size: 20px;
  line-height: 1.2;
}

.faq-answ {
  position: relative;
  padding-left: 5px;
  margin-left: 40px;
}

.faq-answ::before {
  font-size: 16px;
  content: "Ans";
  font-weight: 700;
  color: var(--question-color);
  top: 50%;
  left: -33px;
  letter-spacing: 4px;
  position: absolute;
  transform: translate(0, -50%);
  writing-mode: vertical-rl;
}

.answ-text p {
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.8;
  margin: 10px 0 20px;
  text-align: justify;
}

.answ-text::before {
  content: "";
  border-left: 3px solid var(--question-color);
  position: absolute;
  height: 97%;
  left: -7px;
}

.blog-detail-navigation {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
  margin: 1rem 0;
}

.blog-navigation-prev {
  width: 100%;
  text-align: center;
}

.blog-navigation-prev span {
  display: block;
  text-align: left;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 10px;
}

.blog-navigation-prev span a {
  color: #706f6f;
}

#post-link {
  color: #333;
  display: flex;
  align-items: center;
  gap: 1rem;
}

#post-link img {
  height: 66px;
  width: 100px;
  display: inline-block;
  max-width: 100%;
  object-fit: cover;
  border-radius: 5px;
  aspect-ratio: 3 / 2;
}

#post-link p {
  font-size: 16px;
  line-height: 1.2;
  font-weight: 600;
  margin: 0;
  text-align: left;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-detail-navigation hr {
  border: 0;
  border-right: 3px dashed #000;
  background: 0;
  height: 100px;
  margin: 0 auto;
  opacity: 0.4;
}

.blog-navigation-next {
  width: 100%;
  text-align: center;
}

.blog-navigation-next span {
  display: block;
  text-align: right;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 10px;
}

.blog-navigation-next span a {
  color: #706f6f;
}

.fa-angles-right:before {
  content: "\f101";
}

.blog-navigation-prev:hover p,
.blog-navigation-next:hover p {
  color: var(--link-color);
}

.author-info {
  display: flex;
  background: #fff;
  border: 2px solid var(--site-color);
  padding: 10px;
  border-radius: 5px;
  align-items: center;
}

.author-img {
  flex: 0 0 120px;
}

.author-img img {
  width: 100px;
  height: auto;
  max-width: none;
  border-radius: 10px;
  border: 1px solid var(--site-color);
  padding: 0;
  margin: 0 auto;
  display: block;
}

.desp {
  flex: 1;
  padding: 0 15px;
}

#author-name {
  color: var(--blog-detail-h3);
  font-weight: 600;
  font-size: 1.4rem;
}

.desp-bottom-text p {
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.8;
  margin: 10px 0 20px;
  text-align: justify;
}

.detail-box {
  grid-template-columns: repeat(3, 1fr);
}

.comment-wrapper {
  border: 1px solid #ddd;
  padding: 20px;
  max-width: 1100px;
  margin: 20px auto;
  background-color: #f4f4f4;
}

.comment-box {
  display: flex;
  gap: 20px;
}

.comment-left {
  width: 73%;
}

.comment-left em {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.2;
}

.comment-inner-box {
  background: #fff;
  padding: 15px;
  margin-top: 10px;
}

.sub-title {
  font-weight: 500;
  margin-bottom: 15px;
  font-size: 20px;
  line-height: 1.2;
}

.input-group {
  display: flex;
  align-items: center;
  border: 1px solid #ccc;
  padding: 10px;
  margin-bottom: 12px;
}

.input-group .icon {
  margin-right: 15px;
}

.input-group input {
  border: none;
  outline: none;
  width: 100%;
  font-size: inherit;
}

.editor-toolbar {
  border: 1px solid #ccc;
  padding: 8px;
  margin-bottom: 0;
  display: flex;
  gap: 15px;
  font-size: 14px;
}

textarea {
  width: 100%;
  height: 160px;
  border: 1px solid #ccc;
  border-top: none;
  padding: 10px;
  resize: none;
}

#comment-btn {
  border: none;
  margin-top: 15px;
  display: flex;
  justify-content: end;
  align-items: end;
  width: 100%;
  background: transparent;
}

.submit-btn {
  padding: 12px 25px;
  background: #fff;
  border: 4px solid;
  border-image: linear-gradient(90deg, #1abc9c, #9b59b6) 1;
  font-weight: 700;
  font-size: 20px;
  cursor: pointer;
}

.comment-right {
  width: 27%;
}

.comment-right p {
  text-align: right;
  font-size: 20px;
  font-weight: 700;
}

.info-box {
  padding: 20px 0;
}

.icon-box {
  margin-bottom: 10px;
}

.icon-box img {
  width: 150px;
  max-width: 100%;
  display: block;
  margin: auto auto 10px;
  height: auto;
}

.info-box p {
  margin-bottom: 10px;
  font-size: 16px;
  text-align: left;
  font-weight: 700;
}

.info-box ul {
  list-style: none;
  padding: 0;
}

.info-box li {
  margin-bottom: 8px;
  font-size: 15px;
  display: flex;
  align-items: center;
}

.info-box li i {
  color: #055c05;
  font-size: 15px;
  margin-right: 8px;
}

.info-box li .fa-times {
  color: red;
}

.sidebar-box1 {
  box-shadow: 0 0 40px rgb(82 85 90 / 0.1);
  position: relative;
  margin-bottom: 30px;
  border: 1px solid rgb(128 137 150 / 0.1);
  border-top: 3px solid var(--site-color);
  padding: 20px;
  border-radius: 8px;
}

.sidebar-box-heading {
  font-size: 26px;
  font-weight: 700;
  padding: 0 0 10px;
  color: #2f3c7e;
  border-style: solid;
  border-image: linear-gradient(
      to right,
      var(--site-color),
      rgba(255, 255, 255, 0)
    )
    0 0 100% 0;
  width: fit-content;
}

.detail-page-search input {
  background: #eee;
  border: none;
  outline-color: #fff0;
  padding: 8px;
  /* min-width: 3rem; */
  width: 100%;
}
.detail-page-search {
  display: flex;
  margin-top: 15px;
}

.detail-page-search button {
  border: navajowhite;
  background: var(--site-color);
  color: var(--nav-text-color);
  padding: 12px 15px;
  font-size: 15px;
  cursor: pointer;
}

.sidebar-box2 {
  box-shadow: 0 0 40px rgb(82 85 90 / 0.1);
  position: relative;
  margin-bottom: 30px;
  border: 1px solid rgb(128 137 150 / 0.1);
  border-top: 3px solid var(--site-color);
  padding: 20px;
  padding-left: 0;
  border-radius: 8px;
}

.sidebar-box2 p {
  margin-left: 20px;
}

.category-listing {
  margin-top: 15px;
}

.category-listing li {
  position: relative;
  list-style: none;
  border-bottom: 1px solid #ededde;
  transition: 0.3s;
}

.category-listing li:hover {
  background-color: var(--site-color);
}

.category-listing li a {
  font-size: 14px;
  padding: 8px 0 8px 35px;
  text-decoration: none;
  display: block;
  line-height: 20px;
  color: #000;
  transition: 0.3s;
}

.category-listing li:hover a {
  color: var(--nav-text-color);
}

.category-listing li:hover a::before {
  border-left: 4px solid var(--nav-text-color);
}

.category-listing li a::before {
  transition: 0.3s;
  position: absolute;
  content: " ";
  display: inline-block;
  border-left: 4px solid #333;
  border-top: 4px solid #fff0;
  border-bottom: 4px solid #fff0;
  margin: 7px 0 0 -9px;
}

.category-listing li a span {
  position: absolute;
  right: 20px;
  z-index: 2;
}

.category-listing li:last-child {
  border: none;
}

.sidebar-box3 {
  box-shadow: 0 0 40px rgb(82 85 90 / 0.1);
  position: relative;
  margin-bottom: 30px;
  border: 1px solid rgb(128 137 150 / 0.1);
  border-top: 3px solid var(--site-color);
  padding: 20px;
  border-radius: 8px;
  position: sticky;
  top: 78px;
}

.post-img {
  margin-right: 8px;
  display: flex;
  align-items: center;
  max-width: 150px;
}

.post-img a img {
  max-width: 80px;
  max-height: 50px;
  padding: 0.25rem;
  border: 1px solid #dee2e6;
  border-radius: 0.25rem;
}

.sidebar-box3-list {
  display: flex;
  margin-top: 15px;
}

.post-text a {
  font-size: 14px;
  color: #000;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.post-text p {
  font-size: 12px;
  color: #333;
  padding-top: 2px;
}

.post-text p i {
  color: var(--site-color);
}

@media (max-width: 1200px) {
  /* ===== blog section ===== */
  .blog-box {
    grid-template-columns: repeat(3, 1fr);
  }
  .detail-page-left {
    width: 66%;
  }
  .detail-page-right {
    width: 34%;
  }
  .post-text a {
    font-size: 12px;
  }
}

@media (max-width: 990px) {
  .banner-section {
    display: none;
  }
  /* ===== blog box section ===== */
  .popular-blog-main {
    grid-template-columns: repeat(1, 1fr);
  }

  /* ===== Footer section ===== */
  .footer-bottom {
    grid-template-columns: repeat(2, 1fr);
  }

  .detail-page-left {
    width: 100%;
  }
  .detail-page-right {
    display: none;
  }

  [data-title]:after{
    left: 35%;
  }
}

@media (max-width: 768px) {
  .navbar .bx-menu {
    display: block;
  }
  nav .navbar .nav-links {
    position: fixed;
    top: 0;
    left: -100%;
    display: block;
    max-width: 270px;
    width: 100%;
    background: var(--site-color);
    line-height: 40px;
    padding: 20px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.5s ease;
    z-index: 1000;
    height: 100%;
  }
  .navbar .nav-links .sidebar-logo {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .sidebar-logo .logo-name {
    font-size: 25px;
    color: var(--nav-text-color);
  }
  .navbar .bx-menu,
  .sidebar-logo i {
    font-size: 25px;
    color: var(--nav-text-color);
    border: 1px solid white;
    padding: 6px 12px;
    border-radius: 5px;
  }
  nav .navbar .links {
    display: block;
    margin-top: 20px;
  }
  nav .navbar .links li .arrow {
    line-height: 40px;
  }
  nav .navbar .links li {
    display: block;
  }

  .search-wrapper {
    margin-left: 0;
    margin-right: 15px;
  }
  .navbar a img {
    max-width: 200px;
  }
  /* ===== blog section ===== */
  .blog-box {
    grid-template-columns: repeat(2, 1fr);
  }

  .copyright {
    flex-direction: column;
    align-items: center;
    gap: 5px;
  }

  .blog_views p {
    font-size: 12px;
  }
  #detail-page-p {
    font-size: 18px;
    font-family: system-ui, -apple-system, BlinkMacSystemFont,
                 "Segoe UI", Roboto, Arial, sans-serif;
  }
  .desp-bottom-text p {
    font-size: 18px;
  }

  #author-name {
    text-align: center;
  }

  .box1:last-child{
    display: none;
  }

  .comment-box {
    flex-direction: column;
  }
  .comment-left {
    width: 100%;
  }
  .comment-right {
    width: 100%;
  }
  .icon-box{
    display: none;
  }

  .comment-right p{
    display: none;
  }

  .comment-wrapper{
    padding: 10px;
  }

  .sub-title{
    font-size: 17px;
  }

  .submit-btn{
    font-size: 17px;
  }

  .comment-left em{
    font-size: 17px;
  }
}

@media (max-width: 700px) {
  .blog-detail-navigation {
    flex-direction: column;
  }
  .blog-detail-navigation hr {
    border-right: 0;
    border-top: 3px dashed #000;
    width: 100%;
    height: 0;
  }

  .comment-box{
    flex-direction: column;
  }
  .comment-left{
    width: 100%;
  }
  .comment-right{
    width: 100%;
  }
}

@media (max-width: 575px) {
  /* ===== blog section ===== */
  .blog-box {
    grid-template-columns: repeat(1, 1fr);
  }

  /* ===== blog box section ===== */

  .popular-box1-left a {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .popular-box1-left a img {
    min-height: auto;
  }

  .popular-box1-right p {
    display: none;
  }

  .popular-blog-main-box1 {
    gap: 10px;
  }

  .popular-box1-right {
    justify-content: space-between;
  }

  .popular-box1-right a {
    font-size: 14px;
  }
  .popular-blog h2 {
    font-size: 28px;
  }

  .detail-title h1 {
    font-size: 22px;
  }

  #detail-page-p {
    font-size: 17px;
    text-align: left;
  }

  .table-content ol li {
    padding: 5px 0.1rem;
    font-size: 14px;
    line-height: 24px;
  }

  .detail-page-h2 {
    font-size: 20px;
  }

  .detail-page-ul li {
    font-size: 14px;
    line-height: 24px;
  }
  .faq-quest {
    padding-left: 40px;
  }

  .answ-text p {
    font-size: 17px;
    text-align: left;
  }

  .author-info{
    flex-direction: column;
  }
}

@media (max-width: 490px) {
  .search-btn {
    font-size: 14px;
  }

  .navbar a img {
    max-width: 170px;
  }

  .navbar .bx-menu,
  .sidebar-logo i {
    font-size: 20px;
  }

  nav.sticky .navbar a img {
    max-width: 170px;
    transition: 0.5s;
  }

  /* ===== footer section ===== */
  span.footer-content {
    font-size: 16px;
  }

  .footer-bottom {
    grid-template-columns: repeat(1, 1fr);
  }
}

@media (max-width: 460px){
  .blog-navigation-next a{
    flex-direction: column-reverse;
  }
  #post-link{
    flex-direction: column;
  }
  #post-link p{
    text-align: center;
  }
}
