*,
*::after,
*::before {
  box-sizing: border-box;
}

.pxp-posts-card-2-cta>a {
  font-weight: 400;
  color: #FF5C3E;
  transition: color 300ms cubic-bezier(0.215, 0.61, 0.355, 1);
  position: relative;
  font-size: 13px;
}

.pxp-posts-card-2-cta>a .fa-angle-right {
  transition: transform 300ms ease;
  display: inline-block;
}

.pxp-posts-card-2-cta>a:hover {
  color: black;
}

.pxp-posts-card-2-cta>a:hover .fa-angle-right {
  transform: translateX(5px);
}

body,
html {
  margin: 0;
  padding: 0;
  font-family: "Poppins", "Montserrat", sans-serif;
  text-align: center;
  background-color: #f8f6ef;
}

ul,
li {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
}

p {
  margin: 0;
}

a {
  text-decoration: none;
  cursor: pointer;
  color: #625d5d;
}

img {
  max-width: 100%;
  width: 100%;
  height: auto;
  vertical-align: middle;
  display: inline-block;
}

/* header css start */
.logo-wrapper img {
  width: 100px;
}

.main-head-wrap .menu-wrapper {
  /* position: fixed; */
  top: 0;
  width: 100%;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  background-color: #f8f6ef;
  padding: 26px 40px;
  align-items: center;
}

.header-cart-search-user-wrap.mobile-cart-search-user {
  display: none;
}

.header-cart-search-user-wrap.desktop-cart-search-user {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.main-head-wrap .logo-wrapper a {
  display: flex;
  color: #fff;
  font-size: 20px;
}

.main-head-wrap .menu-wrapper .phone-wrap-menu {
  display: none;
}

.main-head-wrap .hamburger-wrap {
  display: none;
}

.main-head-wrap .hamburger-wrap .hamburger {
  height: 30px;
  width: 30px;
  display: flex;
  flex-flow: column nowrap;
  position: fixed;
  top: 30px;
  right: 20px;
  cursor: pointer;
  z-index: 20;
}

.main-head-wrap .hamburger-wrap .hamburger .line {
  height: 2px;
  margin-bottom: 5px;
  width: 100%;
  display: block;
  border-radius: 3px;
  transition: all 0.2s ease;
  background-color: #000;
}

/* overlay sidebar start */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: 0;
  visibility: hidden;
  background-color: rgba(0, 0, 0, 0.6);
  transition: all 0.3s ease-in-out;
}

.overlay.overlay-open {
  opacity: 1;
  visibility: visible;
}
/* overlay sidebar end */
/* menu on click to open hamburger */
.main-head-wrap .hamburger-wrap .hamburger.menu-open .line:first-child {
  background: #fff;
  transform: rotate(45deg);
  margin-bottom: 2px;
  margin-top: 5px;
}

.main-head-wrap .hamburger-wrap .hamburger.menu-open .line:nth-child(2) {
  opacity: 0;
  transform: translateX(-16px);
}

.main-head-wrap .hamburger-wrap .hamburger.menu-open .line:nth-child(3) {
  background: #fff;
  transform: translateX(-3px) translateY(-8px) rotate(-45deg);
}
/* menu on click to open hamburger */

.main-head-wrap nav.main-menu ul.navbar-wrap {
  display: flex;
  list-style-type: none;
  position: relative;
}

.main-head-wrap nav.main-menu ul.navbar-wrap li {
  margin: 0 10px;
  position: relative;
}

.main-head-wrap nav.main-menu ul.navbar-wrap li a {
  color: #000000;
  text-decoration: none;
  transition: color 0.2s ease-in-out;
  font-weight: 500;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 0.05em;
}

.main-head-wrap nav.main-menu ul.navbar-wrap li a.active,
.main-head-wrap nav.main-menu ul.navbar-wrap li a:hover {
  color: #000;
  transition: all 0.2s ease-in-out;
  font-weight: 700;
}

.announcement-bar {
  position: fixed;
  background-color: #005c67;
  color: #fff;
  z-index: 2;
  top: 100px;
  left: 0;
  width: 100%;
  padding: 13px;
}

.search-icon-wrap {
  background-color: #fff;
  padding: 10px;
  border-radius: 5px;
  align-items: center;
  display: flex;
  cursor: pointer;
}

.search-icon-wrap:hover {
  background-color: #ff5c3e;
  transition: 01s ease;
  -webkit-transition: 01s ease;
  -moz-transition: 01s ease;
  -ms-transition: 01s ease;
  -o-transition: 01s ease;
}
.search-icon-wrap:hover svg path {
  stroke: #fff;
  transition: 01s ease;
  -webkit-transition: 01s ease;
  -moz-transition: 01s ease;
  -ms-transition: 01s ease;
  -o-transition: 01s ease;
}

.cart-icon-wrap {
  background-color: #fff;
  padding: 10px;
  border-radius: 5px;
  align-items: center;
  display: flex;
  cursor: pointer;
}
.cart-icon-wrap:hover {
  background-color: #ff5c3e;
  transition: 01s ease;
  -webkit-transition: 01s ease;
  -moz-transition: 01s ease;
  -ms-transition: 01s ease;
  -o-transition: 01s ease;
}
.cart-icon-wrap:hover svg path {
  stroke: #fff;
  transition: 01s ease;
  -webkit-transition: 01s ease;
  -moz-transition: 01s ease;
  -ms-transition: 01s ease;
  -o-transition: 01s ease;
}
.user-icon-wrap {
  background-color: #fff;
  padding: 10px 15px;
  border-radius: 5px;
  align-items: center;
  display: flex;
  cursor: pointer;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}

.user-icon-wrap:hover {
  background-color: #ff5c3e;
  transition: 01s ease;
  -webkit-transition: 01s ease;
  -moz-transition: 01s ease;
  -ms-transition: 01s ease;
  -o-transition: 01s ease;
}

.user-icon-wrap:hover svg path {
  stroke: #fff;
  transition: 01s ease;
  -webkit-transition: 01s ease;
  -moz-transition: 01s ease;
  -ms-transition: 01s ease;
  -o-transition: 01s ease;
}

.hidden {
  display: none;
}

/* Style the overlay */
#search-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
}

.search-container {
  width: 50%;
  display: flex;
  align-items: center;
}

span.arrow {
  font-size: 20px;
  position: absolute;
  top: -3px;
}

.main-head-wrap nav.main-menu ul.navbar-wrap .dropdown .submenu {
  display: block;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20%);
  transition: all 0.5s;
  position: absolute;
  width: 150px;
  top: 100%;
  left: -22px;
  padding: 10px 0px 10px 0;
  background-color: #ffffff;
  border: 1px solid #dbdbdb;
  border-radius: 8px;
  box-shadow: 0 6px 9px rgba(0, 0, 0, 0.11);
  z-index: 10;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
}

.main-head-wrap nav.main-menu ul.navbar-wrap .dropdown:hover .submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0%);
  max-height: 500px;
}
/* header css end */

/* desktop search start */
.desktop-search-bar-wrap {
  display: none; /* Hidden by default */
  position: absolute;
  top: -50px; /* Start position above the screen */
  left: 0;
  width: 100%;
  background-color: white;
  border-radius: 10px;
  padding: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  opacity: 0; /* Hidden initially */
  transition: top 0.5s ease, opacity 0.5s ease; /* Smooth transition */
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}

.desktop-search-input {
  width: calc(100% - 40px);
  padding: 10px;
  font-size: 16px;
  border: 1px solid #ddd;
  border-radius: 5px;
}

.desktop-close-search {
  background: transparent;
  border: none;
  font-size: 18px;
  cursor: pointer;
  padding: 0 10px;
}

.desktop-search-icon-wrap svg {
  cursor: pointer;
}

/* When active, display the search bar */
.desktop-search-bar-active {
  display: flex;
  justify-content: space-between;
  align-items: center;
  top: 0px; /* Moves to visible position */
  opacity: 1; /* Makes it visible */
}
/* desktop search end */
/* header css end */

/* blog individual css start fold 1 */
section.blog-individual-wrap-two-column {
  margin-top: 9em;
  padding: 50px;
}
.comment-individual-wrap-two-column {
  margin-top: 9em;
  padding: 50px;
  padding-top: 0;
}

.main-blog-individual-row {
    grid-template-columns: 2fr 1fr;
    text-align: left;
}

.related-post-title h3 {
  font-size: 18px;
  color: #ff5c3e;
  border-bottom: 1px solid #ff5c3e;
}

.related-post-title {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: 10px;
  gap: 15px;
}

.blog-wrap-left-col .blog-individual-item-wrap .blog-title-item h1 {
  font-size: 34px;
  font-weight: 700;
  color: #000;
}

.blog-date-item {
  margin-top: 10px;
}

.blog-date-item p {
  font-size: 18px;
  color: #000;
  font-weight: 500;
}

.blog-img-individual-wrap {
  margin-top: 30px;
}

.share-option-blogs {
  margin-top: 20px;
}

/* blog share on social media link start css  */
.btn {
  position: fixed;
  left: 0;
  display: inline-block;
  width: 45px;
  height: 45px;
  line-height: 45px;
  text-align: center;
  text-decoration: none;
  font-family: sans-serif;
  font-size: 24px;
  color: #fff;
  background: #f10044;
  border-right: 2px solid #fff;
  cursor: pointer;
  outline: none;
}

.btn a {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  line-height: 45px;
  text-align: center;
  color: #fff;
  left: 0;
  bottom: 0;
  transition: 0.5s;
}

.btn:before {
  content: "\f1e0";
  font-weight: 800;
  font-family: "FontAwesome";
  position: absolute;
  width: 100%;
  height: 100%;
  line-height: 45px;
  color: #fff;
  left: 0;
  bottom: 0;
  z-index: 1;
  background: #f10044;
  color: white;
  transition: 0.5s;
  box-sizing: border-box;
}

.sosmed.active .btn:before {
  content: "\f00d";
}

.sosmed.active .btn a:nth-child(1) {
  transform: translateY(-90px);
  background: #355483;
}

.sosmed.active .btn a:nth-child(2) {
  transform: translateY(-45px);
  background: #3b90fa;
}

.sosmed.active .btn a:nth-child(3) {
  transform: translateY(45px);
  background: #01e5e2;
}

.sosmed.active .btn a:nth-child(4) {
  transform: translateY(90px);
  background: #ff45b2;
}

.btn a:nth-child(1)::before {
  content: "";
  position: absolute;
  left: 45px;
  bottom: 0;
  height: 100%;
  width: 0;
  box-sizing: border-box;
  background: #fff;
  transition: 0.3s;
  z-index: -1;
  overflow: hidden;
}

.btn a:nth-child(1):hover::before {
  content: "Facebook";
  border-right: 3px solid #355483;
  color: #355483;
  width: 150px;
  line-height: 45px;
  font-family: sans-serif;
}

.btn a:nth-child(2)::before {
  content: "";
  position: absolute;
  left: 45px;
  bottom: 0;
  height: 100%;
  width: 0;
  box-sizing: border-box;
  background: #fff;
  transition: 0.3s;
  z-index: -1;
  overflow: hidden;
}

.btn a:nth-child(2):hover::before {
  content: "Twitter";
  border-right: 3px solid #3b90fa;
  color: #3b90fa;
  width: 150px;
  line-height: 45px;
  font-family: sans-serif;
}

.btn a:nth-child(3)::before {
  content: "";
  position: absolute;
  left: 45px;
  bottom: 0;
  height: 100%;
  width: 0;
  box-sizing: border-box;
  background: #fff;
  transition: 0.3s;
  z-index: -1;
  overflow: hidden;
}

.btn a:nth-child(3):hover::before {
  content: "Linkedin";
  border-right: 3px solid #01e5e2;
  color: #01e5e2;
  width: 150px;
  line-height: 45px;
  font-family: sans-serif;
}

.btn a:nth-child(4)::before {
  content: "";
  position: absolute;
  left: 45px;
  bottom: 0;
  height: 100%;
  width: 0;
  box-sizing: border-box;
  background: #fff;
  transition: 0.3s;
  z-index: -1;
  overflow: hidden;
}

.btn a:nth-child(4):hover::before {
  content: "Instagram";
  border-right: 3px solid #ff45b2;
  color: #ff45b2;
  width: 150px;
  line-height: 45px;
  font-family: sans-serif;
}
/* blog share on social media link end css */
.individual-blog-desc {
  margin-bottom: 20px;
  margin-top: 20px;
  color: #000;
  word-spacing: 2px;
}

.blog-individual-title h5 {
  font-size: 30px;
  font-weight: 700;
  color: #000;
}

.blog-wrap-right-col .blog-wrap-right-module-related-post {
  border: 1px solid #d0d0d0;
  padding: 10px 10px 10px 25px;
  border-radius: 10px;
}

.blog-item-title h5 {
  font-size: 14px;
  font-weight: 500;
}

.related-post-img img {
  height: 100px;
  object-fit: cover;
  width: 100%;
}

.blog-item-title span {
  font-size: 12px;
  margin-top: 10px;
}
/* blog individual css end fold 1 */

/* blog comment fold 2 section css start */
.comments-section {
  margin: 15px 0px;
  text-align: left;
}

.comment {
  background-color: #fff;
  border-radius: 8px;
  padding: 10px;
  margin-bottom: 20px;
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.1);
}

.comment-header {
  display: flex;
  gap: 20px;
  align-items: center;
  margin-bottom: 10px;
}

.comment-author {
  font-weight: bold;
}

.comment-date {
  color: #8b8b8b;
}

.comment-reply {
  color: #f2662a;
  text-decoration: none;
}

.comment-reply:hover {
  text-decoration: underline;
}

.comment-text {
  color: #666;
  line-height: 1.6;
}

.comment-form-container {
  display: none; /* Initially hidden */
  background-color: #f4f1e9;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.1);
}

.comment-form textarea {
  width: 100%;
  padding: 15px;
  border-radius: 8px;
  border: 1px solid #e0e0e0;
  background-color: #f1f1f1;
  margin-bottom: 15px;
  resize: none;
}

.input-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}

.input-row input {
  width: 30%;
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #e0e0e0;
  background-color: #f1f1f1;
}

.comment-checkbox {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  color: #666;
}

.comment-checkbox input {
  margin-right: 10px;
}

.comment-btn {
  background-color: #f2662a;
  color: #fff;
  padding: 12px 25px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-weight: bold;
}

.comment-btn:hover {
  background-color: #e05a1d;
}

.cancel-reply {
  color: #4a4a4a;
  text-decoration: none;
  margin-bottom: 15px;
  display: block;
}

.cancel-reply:hover {
  text-decoration: underline;
}

/* .comment {
  background-color: #fff;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.1);
  text-align: left;
}

.comment-header {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  gap: 20px;
}

.comment-author {
  font-weight: bold;
}

.comment-date {
  color: #8b8b8b;
}

.comment-reply {
  color: #f2662a;
  text-decoration: none;
}

.comment-text {
  color: #666;
  line-height: 1.6;
}

.comment-form h3 {
  margin-bottom: 10px;
  color: #333;
}

.comment-form textarea {
  width: 100%;
  padding: 15px;
  border-radius: 8px;
  border: none;
  background-color: #f1f1f1;
  margin-bottom: 15px;
  resize: none;
}

.input-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}

.input-row input {
  width: 30.333%;
  padding: 12px;
  border-radius: 8px;
  border: unset;
  background-color: #f1f1f1;
}

.comment-checkbox {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  color: #666;
}

.comment-checkbox input {
  margin-right: 10px;
}

.comment-btn {
  background-color: #f2662a;
  color: #fff;
  padding: 12px 25px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-weight: bold;
}

.comment-btn:hover {
  background-color: #e05a1d;
}
 */

/* blog comment fold 2 section css end */



/* media query for mobile start */
@media screen and (max-width: 767px) {
  /* header media query css start */
  .main-head-wrap .menu-wrapper {
    padding: 10px 10px;
    justify-content: space-around;
    gap: 5px;
  }

  .related-post-img img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

  .logo-wrapper a svg {
    width: 150px;
  }

  .main-head-wrap .menu-wrapper .phone-wrap-menu {
    display: block;
  }

  .user-icon-wrap {
    background-color: #fff;
    padding: 5px 10px;
    border-radius: 5px;
    width: 35px;
    height: 35px;
    display: flex;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
  }

  span.arrow svg path {
    color: #fff;
    fill: #fff;
  }

  .search-icon-wrap {
    background-color: #fff;
    padding: 10px;
    border-radius: 5px;
    align-items: center;
    display: flex;
    cursor: pointer;
    width: 35px;
    height: 35px;
    justify-content: center;
  }

  .cart-icon-wrap {
    background-color: #fff;
    padding: 10px;
    border-radius: 5px;
    align-items: center;
    display: flex;
    width: 35px;
    height: 35px;
  }

  span.arrow {
    font-size: 20px;
    position: absolute;
    top: 12px;
    right: 0;
    color: #fff;
  }

  li.list-item-wrap.dropdown {
    margin: 0 0px 0 0 !important;
  }

  .main-head-wrap nav.main-menu ul.navbar-wrap .dropdown .submenu {
    opacity: 0;
    visibility: hidden;
    transform: translateY(20%);
    transition: max-height 0.5s ease, opacity 0.5s, visibility 0s 0s,
      transform 0.5s;
    overflow: hidden;
    position: unset;
    width: 100%;
    top: 44px;
    left: 0;
    padding: 10px 0;
    background-color: #005c69;
    border: unset;
    box-shadow: 0 6px 9px rgba(0, 0, 0, 0.11);
    z-index: 10;
    max-height: 0;
    -webkit-transition: max-height 0.5s ease, opacity 0.5s, visibility 0s 0s,
      transform 0.5s;
    -moz-transition: max-height 0.5s ease, opacity 0.5s, visibility 0s 0s,
      transform 0.5s;
    -ms-transition: max-height 0.5s ease, opacity 0.5s, visibility 0s 0s,
      transform 0.5s;
    -o-transition: max-height 0.5s ease, opacity 0.5s, visibility 0s 0s,
      transform 0.5s;
  }

  .announcement-bar {
    position: fixed;
    top: 68px;
    background-color: #005c67;
    width: 100%;
    padding: 10px;
    z-index: -1;
  }

  .header-cart-search-user-wrap.mobile-cart-search-user {
    display: flex;
    gap: 5px;
  }

  .header-cart-search-user-wrap.desktop-cart-search-user {
    display: none;
  }

  .main-head-wrap .menu-wrapper .phone-wrap-menu .phone-icon-menu {
    display: flex;
    font-size: 18px;
  }

  .main-head-wrap .hamburger-wrap {
    display: block;
    margin: 0 0 0 20px;
  }

  .main-head-wrap .hamburger-wrap .hamburger {
    justify-content: center;
    align-items: center;
    top: 22px;
  }

  .main-head-wrap nav.main-menu {
    background-color: #000000;
    width: 250px;
    height: 100vh;
    transition: 0.85s;
    display: flex;
    justify-content: center;
    position: fixed;
    top: 0;
    right: -100%;
  }
  /* sidebar open on click to show */
  .main-head-wrap nav.main-menu.menu-open {
    right: 0;
    transition: 0.35s;
  }
  /* sidebar open on click to show */
  .main-head-wrap nav.main-menu ul.navbar-wrap {
    display: block;
    width: 100%;
    padding: 100px 10px;
  }

  .main-head-wrap nav.main-menu ul.navbar-wrap li {
    margin: 0 0px 0 0;
    padding: 15px 0 10px 15px;
    border-bottom: 1px solid #ffffff;
    text-align: left;
  }

  .main-head-wrap nav.main-menu ul.navbar-wrap li a {
    color: hsla(0, 0%, 100%, 0.5019607843137255);
  }

  .main-head-wrap nav.main-menu ul.navbar-wrap li a .list-item:before {
    content: ".";
    position: absolute;
    top: 4px;
    left: 5px;
    color: #ffffff;
    font-size: 25px;
  }

  .main-head-wrap .header-social-icon ul.header-social-icon-wrap {
    display: none;
  }

  /* mobile search css start */
  .search-bar-wrap {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background-color: white;
    border-radius: 10px;
    padding: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
  }

  .search-input {
    width: calc(100% - 40px);
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ddd;
    border-radius: 5px;
  }

  .close-search {
    background: transparent;
    border: none;
    font-size: 18px;
    cursor: pointer;
    padding: 0 10px;
  }

  .search-icon-wrap svg {
    cursor: pointer;
  }

  /* When active, display the search bar */
  .search-bar-active {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  /* mobile search css end */
  /* header media query css end */

  section.blog-individual-wrap-two-column {
    margin-top: 5em;
    padding: 0 15px;
  }
  .blog-wrap-right-col{
    padding-left: 15px !important;
} 
.blog-wrap-right-col .blog-wrap-right-module-related-post {
    padding: 5px 10px 10px 10px;
    background: #fff;
}
    .comments-section {
        padding: 6px 8px;
    }
	.comment-form{
    padding: 0px 0px;
}

  .blog-wrap-left-col .blog-individual-item-wrap .blog-title-item h1 {
    font-size: 16px;
    font-weight: 700;
    color: #000;
  }

  .main-blog-individual-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    text-align: left;
  }

  .blog-img-individual-wrap {
    margin-top: 20px;
  }

  .individual-blog-desc p {
    font-size: 14px;
    /* line-height: 22px; */
    color: #000;
  }

  .blog-individual-title h5 {
    font-size: 20px;
    font-weight: 700;
    color: #000;
  }

  .related-post-title {
    display: grid;
    grid-template-columns: 1fr;
    margin-top: 10px;
    gap: 15px;
  }

  .comments-section {
    margin: 25px 10px;
    text-align: left;
  }

  .input-row {
    display: block;
    margin-bottom: 10px;
  }

  .input-row input {
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
    background-color: #f1f1f1;
    margin-bottom: 10px;
  }

  .comment-header {
    display: block;
    gap: 20px;
    align-items: center;
    margin-bottom: 10px;
    line-height: 30px;
  }

  .comment-form textarea {
    width: 100%;
    padding: 15px;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
    background-color: #f1f1f1;
    margin-bottom: 10px;
    resize: none;
    margin-top: 10px;
  }

  .footer-wrapper-row {
    display: grid;
    grid-template-columns: 1fr;
    padding: 20px;
  }
  .footer-copyright-bottom {
    border-top: 1px solid #fff;
    margin-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 20px 20px 20px;
  }
}



.container,
.container-fluid,
.container-sm,
.container-md,
.container-lg,
.container-xl {
  --bs-gutter-x: 30px;
  --bs-gutter-y: 0;
  width: 100%;
  padding-right: calc(var(--bs-gutter-x) * 0.5);
  padding-left: calc(var(--bs-gutter-x) * 0.5);
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 576px) {
  .container,
  .container-sm {
    max-width: 540px;
  }
}

@media (min-width: 768px) {
  .container,
  .container-sm,
  .container-md {
    max-width: 720px;
  }
}

@media (min-width: 992px) {
  .container,
  .container-sm,
  .container-md,
  .container-lg {
    max-width: 960px;
  }
}

@media (min-width: 1200px) {
  .container,
  .container-sm,
  .container-md,
  .container-lg,
  .container-xl {
    max-width: 1200px;
  }
}

@media only screen and (min-width: 1300px) {
  .container {
    max-width: 1600px;
  }
}

.container-fluid,
.container-sm,
.container-md,
.container-lg,
.container-xl {
  padding-left: 80px;
  padding-right: 80px;
}

@media only screen and (max-width: 1280px) {
  .container-fluid,
  .container-sm,
  .container-md,
  .container-lg,
  .container-xl {
    padding-left: 15px;
    padding-right: 15px;
  }
}

@media only screen and (max-width: 575px) {
  .container-fluid,
  .container-sm,
  .container-md,
  .container-lg,
  .container-xl {
    padding-left: 15px;
    padding-right: 15px;
  }

}



.share-dropdown-container {
  position: relative;
  display: inline-block;
}

#shareButton {
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 5px;
}

.share-dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
  border-radius: 5px;
  padding: 10px 0;
}

.share-dropdown-content a {
  color: black;
  padding: 8px 12px;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: background-color 0.3s;
}

.share-dropdown-content a:hover {
  background-color: #f1f1f1;
}

.share-dropdown-content.show {
  display: block;
}