* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
}

body {
  background-color: #f1f1f1;
}

.post-list div {
  content-visibility: auto;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
  margin-bottom: 15px;
}

h1 {
  font-size: 24px;
}
@media screen and (max-width: 500px) {
  h1 {
    font-size: 19px;
  }
}

h2 {
  font-size: 20px;
}
@media screen and (max-width: 500px) {
  h2 {
    font-size: 17px;
  }
}

h3 {
  font-size: 17px;
}
@media screen and (max-width: 500px) {
  h3 {
    font-size: 16px;
  }
}

h4 {
  font-size: 16px;
}
@media screen and (max-width: 500px) {
  h4 {
    font-size: 15px;
  }
}

p {
  line-height: 1.7;
}
@media screen and (max-width: 500px) {
  p {
    font-size: 14px;
  }
}

.form-check-input[type=checkbox] {
  box-shadow: unset;
  outline: 0 !important;
  width: auto !important;
  border-color: gray;
}

.form-check-input:checked {
  background-color: #2B59FF;
  border-color: #2B59FF;
  outline: 0;
}

.form-check-input:focus {
  outline: 0 !important;
}

a {
  color: black;
  text-decoration: none;
}

a:hover {
  color: #2B59FF;
  text-decoration: underline;
}

::-webkit-scrollbar {
  background: rgb(243, 243, 243);
  width: 7px;
  height: 7px;
}

::-webkit-scrollbar-thumb {
  background: rgb(201, 201, 201);
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: rgb(199, 199, 199);
}

ul {
  padding-left: 20px;
  margin-bottom: 15px;
}

.container {
  margin: 0 auto;
  max-width: 1250px;
}

.gs-input,
input {
  padding: 6px 10px;
  border-radius: 6px;
  transition: unset;
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0);
  background-color: #f0f0f0;
  font-size: 16px;
}
.gs-input:focus,
input:focus {
  border: 1px solid transparent !important;
  outline: 2px solid #456dff !important;
}

label.form-label {
  line-height: 25px !important;
}

.w-fit {
  width: fit-content !important;
}

.w-100 {
  width: 100% !important;
}

.h-100 {
  height: 100% !important;
}

.w-auto {
  width: auto !important;
}

.product-item-col {
  width: 25%;
  padding: 5px;
  flex: none;
}
@media screen and (max-width: 900px) {
  .product-item-col {
    width: 33%;
  }
}
@media screen and (max-width: 500px) {
  .product-item-col {
    width: 50%;
  }
}
.product-item-col .product {
  position: relative;
  padding: 15px;
  border-radius: 20px;
  display: flex;
  background-color: #fff;
  flex-direction: column;
  border: 1px solid gainsboro;
}
.product-item-col .product .product-link {
  text-decoration: none;
  color: #242424;
}
.product-item-col .product .product-link .product-image {
  padding: 10px;
  margin: auto;
  text-align: center;
  margin-bottom: 10px;
}
.product-item-col .product .product-link .product-image img {
  height: 100px;
  object-fit: contain;
}
@media screen and (max-width: 900px) {
  .product-item-col .product .product-link .product-image img {
    height: 60px;
  }
}
.product-item-col .product .product-link .product-title {
  display: inline-block;
  line-height: 1.2 !important;
  margin-bottom: 4px;
  width: 100%;
  font-size: 16px;
  height: 40px;
  font-weight: 600;
}
@media screen and (max-width: 900px) {
  .product-item-col .product .product-link .product-title {
    font-size: 16px;
  }
}
.product-item-col .product .product-link .product-item-price {
  display: inline-block;
  width: 100%;
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 0;
  color: rgba(0, 0, 0, 0.584);
}
@media screen and (max-width: 900px) {
  .product-item-col .product .product-link .product-item-price {
    font-size: 13px;
  }
}
.product-item-col .product .product-link .availability {
  font-size: 16px;
  width: 100%;
  font-weight: 600;
  color: rgba(0, 0, 0, 0.5019607843);
  margin-bottom: 0;
}
@media screen and (max-width: 900px) {
  .product-item-col .product .product-link .availability {
    font-size: 13px;
  }
}
.product-item-col .product .compare-btn {
  margin: 0 auto;
  text-align: center;
  display: inline-block;
  padding: 7px 15px;
  color: #fff;
  border-radius: 50px;
  font-size: 15px;
  background-color: #2B59FF;
  white-space: nowrap;
}
.product-item-col .product .compare-btn:hover {
  text-decoration: none;
  background-color: #456dff;
}
@media screen and (max-width: 900px) {
  .product-item-col .product .compare-btn {
    font-size: 13px;
  }
}
.product-item-col .product .offer-btn {
  margin: 0 auto;
  text-align: center;
  display: inline-block;
  padding: 7px 15px;
  color: #212121;
  border-radius: 50px;
  font-size: 15px;
  background-color: #E7E7E7;
  white-space: nowrap;
}
.product-item-col .product .offer-btn:hover {
  text-decoration: none;
}
@media screen and (max-width: 900px) {
  .product-item-col .product .offer-btn {
    font-size: 13px;
  }
}
.product-item-col .product .quick-buttons {
  display: flex;
  gap: 2px;
  align-items: end;
  flex-wrap: wrap;
  justify-content: space-between;
}

.product-item-row {
  width: 33%;
  padding: 5px;
}
@media screen and (max-width: 900px) {
  .product-item-row {
    width: 50%;
  }
}
@media screen and (max-width: 500px) {
  .product-item-row {
    width: 100%;
  }
}
.product-item-row .product {
  border: 1px solid #e0e0e0;
  padding: 10px;
  height: 350px;
  display: flex;
  align-items: center;
  overflow: hidden;
  position: relative;
  flex-direction: column;
  border-radius: 5px;
  background-color: white;
}
.product-item-row .quick-specs {
  margin-top: 10px;
  width: 100%;
}
.product-item-row .quick-specs table {
  margin-bottom: 0 !important;
  border: 0 !important;
  width: 100% !important;
}
.product-item-row .quick-specs table tr {
  display: inline-block;
  width: auto;
}
.product-item-row .quick-specs table td:first-child {
  font-weight: 500;
  color: black;
}
.product-item-row .quick-specs table td {
  padding: 2.7px;
  font-size: 13px;
  color: rgb(98, 98, 98);
  border: 0;
}
.product-item-row .quick-specs ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 3px;
  list-style-type: none;
  padding: 0;
}
.product-item-row .quick-specs ul li {
  width: auto;
}
.product-item-row .quick-specs ul li .content {
  display: flex;
  color: rgb(39, 39, 39);
  align-items: center;
  gap: 5px;
  padding: 1px;
}
.product-item-row .quick-specs ul li .left-quick {
  background-color: #456dff;
}
.product-item-row .quick-specs ul li .right-quick {
  gap: 5px;
  display: flex;
  color: rgb(35, 35, 35);
  align-items: center;
}
.product-item-row .quick-specs ul li p {
  color: rgb(105, 102, 102);
  margin-bottom: 0;
  display: inline-block;
  font-size: 13px;
}
@media screen and (max-width: 900px) {
  .product-item-row .quick-specs ul li p {
    font-size: 12px;
  }
}
.product-item-row .quick-specs ul li p:first-child {
  font-weight: 500;
  color: black;
  font-size: 13px;
}
.product-item-row .product-link {
  text-decoration: none;
  color: #242424;
}
.product-item-row .product-image {
  margin: 0 auto;
  text-align: center;
  margin-bottom: 0px;
}
.product-item-row .product-image img {
  height: 150px;
  object-fit: contain;
}
@media screen and (max-width: 900px) {
  .product-item-row .product-image img {
    height: 120px;
  }
}
.product-item-row .product-title {
  display: inline-block;
  line-height: 1.2 !important;
  margin-bottom: 4px;
  width: 100%;
  font-size: 14px;
  font-weight: 500;
  text-align: center;
}
.product-item-row .product-item-price {
  display: inline-block;
  width: 100%;
  text-align: center;
  font-weight: 500;
  font-size: 14px;
  margin-bottom: 0;
  color: rgb(0, 0, 0);
}
.product-item-row .availability {
  font-size: 13px;
  top: 0;
  left: 0;
  padding: 0px 5px;
  border-radius: 3px;
  position: absolute;
  z-index: 10;
  font-weight: 500;
  color: #303030;
  background-color: #E7E7E7;
}
.product-item-row .short-desc {
  font-size: 13px;
  margin-top: 10px;
  line-height: 1.6;
}
.product-item-row .quick-buttons {
  display: flex;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
}
.product-item-row .quick-buttons a {
  background-color: #E7E7E7;
  font-size: 13px;
  padding: 10px;
  text-decoration: none;
  white-space: nowrap;
  border-right: 1px solid rgb(226, 226, 226);
  width: 33.333%;
  color: black;
  text-align: center;
}
.product-item-row .quick-buttons a:last-child {
  border-right: 0;
}
.product-item-row .quick-buttons a:hover {
  background-color: rgb(234, 234, 234);
}

.text-gs-primary {
  color: #2B59FF !important;
}

.text-gs-second {
  color: #456dff !important;
}

.text-white {
  color: white !important;
}

.text-muted {
  color: rgb(143, 143, 143) !important;
}

.text-gs-dark {
  color: #050512 !important;
}

.text-gs-gray {
  color: #E7E7E7 !important;
}

.text-gs-green {
  color: rgb(18, 122, 18);
}

.text-gs-red {
  color: #ff0000;
}

.bg-gs-primary {
  background-color: #2B59FF !important;
}

.bg-gs-second {
  background-color: #456dff !important;
}

.bg-gs-dark {
  background-color: #050512 !important;
}

.bg-white {
  background-color: white !important;
}

.bg-gs-gray {
  background-color: #E7E7E7 !important;
}

.bg-transparent {
  background-color: transparent !important;
}

.bg-gs-light {
  background-color: #f5f8ff !important;
}

.gs-btn {
  padding: 0.5rem 1.5rem;
  white-space: nowrap;
  transition: 0.1s ease;
  display: inline-block;
  border: 1px solid #F7F8F8;
  cursor: pointer;
  background-color: #E7E7E7;
  border-radius: 100px;
  text-decoration: none !important;
}
.gs-btn:hover {
  color: rgb(7, 7, 7);
}
@media screen and (max-width: 767px) {
  .gs-btn {
    font-size: 15px;
  }
}

.gs-btn-sm {
  font-size: 14px;
  padding: 5px 10px;
}

.gs-btn-primary {
  background: #2B59FF;
  border: 1px solid #2B59FF;
  color: white;
}
.gs-btn-primary:hover {
  color: rgb(255, 255, 255);
}

.gs-btn-second {
  background: #456dff;
  border: 1px solid #456dff;
  color: white;
}
.gs-btn-second:hover {
  color: rgb(255, 255, 255);
}

.gs-btn-dark {
  background-color: #050512;
  border: 1px solid #050512;
  color: white !important;
}

.gs-btn-light {
  background-color: #E7E7E7;
  border: 1px solid #F7F8F8;
  color: rgb(32, 32, 32);
}
.gs-btn-light:hover {
  background-color: #050512;
  color: white;
}

.gs-btn-green {
  background-color: #6FB578;
  border: 1px solid #F7F8F8;
  color: rgb(255, 255, 255);
}
.gs-btn-green:hover {
  background: #62ae6b;
}

.bg-red {
  background-color: rgb(187, 0, 0) !important;
}

.content-layer {
  width: 100%;
  height: 100vh;
  display: none;
  z-index: 950;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.7);
}

.field-table {
  width: 100%;
  table-layout: fixed;
  box-sizing: content-box;
  margin-bottom: 20px;
  border-collapse: collapse;
}
.field-table tr {
  border-bottom: 1px solid rgb(240, 240, 240);
}
.field-table tr td,
.field-table tr th {
  padding: 8px;
  font-size: 15px;
  line-height: 21px;
}
@media screen and (max-width: 500px) {
  .field-table tr td,
  .field-table tr th {
    padding: 4px;
    font-size: 12px;
  }
}
.field-table tr td:nth-child(1) {
  width: 20%;
  font-weight: 500;
}
@media screen and (max-width: 500px) {
  .field-table tr td:nth-child(1) {
    width: 30%;
  }
}
.field-table tr td:nth-child(2) {
  width: 30%;
}
.field-table tr td:nth-child(3) {
  width: 50%;
}
@media screen and (max-width: 500px) {
  .field-table tr td:nth-child(3) {
    width: 40%;
  }
}
.field-table .table-heading {
  background-color: #e7e7e7;
}
.field-table .table-heading h2 {
  color: black;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 0;
}
@media screen and (max-width: 500px) {
  .field-table .table-heading h2 {
    font-size: 14px !important;
  }
}

.ad_box {
  width: 100%;
  height: auto;
  max-width: 100%;
}

.border {
  border: 1px solid gainsboro;
}

.more-links {
  display: flex;
  gap: 5px;
  flex-wrap: wrap;
}
.more-links a.link {
  text-decoration: none !important;
  background-color: #E7E7E7;
  color: #242424;
  width: calc(33% - 5px);
  padding: 10px;
  font-size: 13px;
  display: inline-block;
}
.more-links a.link:hover {
  text-decoration: none !important;
  color: rgba(36, 36, 36, 0.7529411765);
}
@media screen and (max-width: 900px) {
  .more-links a.link {
    width: calc(50% - 5px);
  }
}
@media screen and (max-width: 500px) {
  .more-links a.link {
    width: 100%;
  }
}

/* Flex container utility class */
.d-flex {
  display: flex !important;
}

.justify-content-between {
  justify-content: space-between !important;
}

.justify-content-center {
  justify-content: center !important;
}

.justify-content-end {
  justify-content: end !important;
}

.align-items-center {
  align-items: center !important;
}

/* Margin Classes */
.m-0 {
  margin: 0;
}

.m-1 {
  margin: 0.25rem;
}

.m-2 {
  margin: 0.5rem;
}

.m-3 {
  margin: 1rem;
}

.m-4 {
  margin: 1.5rem;
}

.m-5 {
  margin: 3rem;
}

.mx-0 {
  margin-right: 0;
  margin-left: 0;
}

.mx-1 {
  margin-right: 0.25rem;
  margin-left: 0.25rem;
}

.mx-2 {
  margin-right: 0.5rem;
  margin-left: 0.5rem;
}

.mx-3 {
  margin-right: 1rem;
  margin-left: 1rem;
}

.mx-4 {
  margin-right: 1.5rem;
  margin-left: 1.5rem;
}

.mx-5 {
  margin-right: 3rem;
  margin-left: 3rem;
}

.my-0 {
  margin-top: 0;
  margin-bottom: 0;
}

.my-1 {
  margin-top: 0.25rem;
  margin-bottom: 0.25rem;
}

.my-2 {
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}

.my-3 {
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.my-4 {
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}

.my-5 {
  margin-top: 3rem;
  margin-bottom: 3rem;
}

.mt-0 {
  margin-top: 0;
}

.mt-1 {
  margin-top: 0.25rem;
}

.mt-2 {
  margin-top: 0.5rem;
}

.mt-3 {
  margin-top: 1rem;
}

.mt-4 {
  margin-top: 1.5rem;
}

.mt-5 {
  margin-top: 3rem;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.mb-1 {
  margin-bottom: 0.25rem;
}

.mb-2 {
  margin-bottom: 0.5rem;
}

.mb-3 {
  margin-bottom: 1rem;
}

.mb-4 {
  margin-bottom: 1.5rem;
}

.mb-5 {
  margin-bottom: 3rem;
}

.ms-0 {
  margin-left: 0;
}

.ms-1 {
  margin-left: 0.25rem;
}

.ms-2 {
  margin-left: 0.5rem;
}

.ms-3 {
  margin-left: 1rem;
}

.ms-4 {
  margin-left: 1.5rem;
}

.ms-5 {
  margin-left: 3rem;
}

.me-0 {
  margin-right: 0;
}

.me-1 {
  margin-right: 0.25rem;
}

.me-2 {
  margin-right: 0.5rem;
}

.me-3 {
  margin-right: 1rem;
}

.me-4 {
  margin-right: 1.5rem;
}

.me-5 {
  margin-right: 3rem;
}

/* Padding Classes */
.p-0 {
  padding: 0;
}

.p-1 {
  padding: 0.25rem;
}

.p-2 {
  padding: 0.5rem;
}

.p-3 {
  padding: 1rem;
}

.p-4 {
  padding: 1.5rem;
}

.p-5 {
  padding: 3rem;
}

.px-0 {
  padding-right: 0;
  padding-left: 0;
}

.px-1 {
  padding-right: 0.25rem;
  padding-left: 0.25rem;
}

.px-2 {
  padding-right: 0.5rem;
  padding-left: 0.5rem;
}

.px-3 {
  padding-right: 1rem;
  padding-left: 1rem;
}

.px-4 {
  padding-right: 1.5rem;
  padding-left: 1.5rem;
}

.px-5 {
  padding-right: 3rem;
  padding-left: 3rem;
}

.py-0 {
  padding-top: 0;
  padding-bottom: 0;
}

.py-1 {
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}

.py-2 {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.py-3 {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.py-4 {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}

.py-5 {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.pt-0 {
  padding-top: 0;
}

.pt-1 {
  padding-top: 0.25rem;
}

.pt-2 {
  padding-top: 0.5rem;
}

.pt-3 {
  padding-top: 1rem;
}

.pt-4 {
  padding-top: 1.5rem;
}

.pt-5 {
  padding-top: 3rem;
}

.pb-0 {
  padding-bottom: 0;
}

.pb-1 {
  padding-bottom: 0.25rem;
}

.pb-2 {
  padding-bottom: 0.5rem;
}

.pb-3 {
  padding-bottom: 1rem;
}

.pb-4 {
  padding-bottom: 1.5rem;
}

.pb-5 {
  padding-bottom: 3rem;
}

.ps-0 {
  padding-left: 0;
}

.ps-1 {
  padding-left: 0.25rem;
}

.ps-2 {
  padding-left: 0.5rem;
}

.ps-3 {
  padding-left: 1rem;
}

.ps-4 {
  padding-left: 1.5rem;
}

.ps-5 {
  padding-left: 3rem;
}

.pe-0 {
  padding-right: 0;
}

.pe-1 {
  padding-right: 0.25rem;
}

.pe-2 {
  padding-right: 0.5rem;
}

.pe-3 {
  padding-right: 1rem;
}

.pe-4 {
  padding-right: 1.5rem;
}

.pe-5 {
  padding-right: 3rem;
}

.g-0 {
  gap: 0;
}

.g-1 {
  gap: 0.25rem;
}

.g-2 {
  gap: 0.5rem;
}

.g-3 {
  gap: 1rem;
}

.g-4 {
  gap: 1.5rem;
}

.g-5 {
  gap: 3rem;
}

.row {
  display: flex;
  width: 100%;
  flex-wrap: wrap;
}

.nowrap {
  flex-wrap: nowrap !important;
}

.col-md-6 {
  max-width: calc(50% - 5px);
  width: 100%;
}
@media screen and (max-width: 900px) {
  .col-md-6 {
    max-width: 100%;
    width: 100%;
  }
}

.cursor-pointer {
  cursor: pointer;
}

/* Breadcrumb container styles */
nav[aria-label=breadcrumb] {
  margin: 10px 0;
}

ol.breadcrumb {
  list-style: none;
  padding: 0;
  margin: 0;
}

li.breadcrumb-item {
  display: inline-block;
  margin-right: 5px;
}

li.breadcrumb-item a {
  text-decoration: none;
  color: #050512;
}

li.breadcrumb-item:not(:last-child)::after {
  content: "/";
  margin-left: 5px;
  color: #555;
}

li.breadcrumb-item.active {
  color: #555;
}

.text-danger {
  color: #a40000 !important;
}

.text-end {
  text-align: right !important;
}

.view-more {
  color: #242424 !important;
  text-decoration: none !important;
  padding: 9px 16px;
  margin-right: 4px;
  border-radius: 10px;
}
.view-more:hover i {
  transform: translateX(5px);
}

.d-none {
  display: none !important;
}

.d-block {
  display: block !important;
}

.box-containter {
  border: 1px solid gainsboro;
  padding: 15px;
  border-radius: 6px;
}
@media screen and (max-width: 500px) {
  .box-containter {
    padding: 5px;
  }
}

.text-center {
  text-align: center !important;
}

.input-group {
  display: flex;
  align-items: center;
}
.input-group .input-group-text {
  padding: 8px 5px;
  background-color: #E7E7E7;
  font-size: 13px;
}

.d-lg-none {
  display: none;
}
@media screen and (max-width: 900px) {
  .d-lg-none {
    display: block;
  }
}

.top-0 {
  top: 0 !important;
}

.col-md-4 {
  width: calc(33% - 10px);
}
@media screen and (max-width: 992px) {
  .col-md-4 {
    width: calc(50% - 10px);
  }
}

.pagination {
  padding: 10px 0;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex-wrap: wrap;
  list-style-type: none;
}

.pagination .pagination-item {
  list-style: none;
  display: inline-block;
  font-size: 14px;
  margin: 2px;
}

@media screen and (max-width: 786px) {
  .pagination .pagination-item {
    font-size: 12px;
  }
}
.pagination .pagination-item a,
.pagination .pagination-item span {
  color: black;
  display: inline-block;
  padding: 6px 9px;
  border: 1px solid rgb(220, 220, 220);
  border-radius: 2px;
  background-color: rgb(227, 227, 227);
  text-decoration: none;
}

.pagination .pagination-item a.active,
.pagination .pagination-item span.active {
  display: inline-block;
  padding: 6px 9px;
  border: 1px solid rgb(220, 220, 220);
  background-color: #cdcdcd;
  border-radius: 2px;
}

.pagination .pagination-item a:hover:not(.active),
.pagination .pagination-item span:hover:not(.active) {
  background-color: #cdcdcd;
}

/* Breadcrumb container styles */
nav[aria-label=breadcrumb] {
  margin: 10px 0;
}

ol.breadcrumb {
  list-style: none;
  padding: 0;
  margin: 0;
}

li.breadcrumb-item {
  display: inline-block;
  margin-right: 5px;
  margin-bottom: 5px;
}

li.breadcrumb-item a {
  text-decoration: none;
  color: #050512;
}

li.breadcrumb-item:not(:last-child)::after {
  content: "/";
  margin-left: 5px;
  color: #555;
}

li.breadcrumb-item.active {
  color: #555;
}

#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: white;
  border-bottom: 1px solid rgb(222, 222, 222);
}
#navbar .gs-navbar {
  height: 50px;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#navbar .gs-navbar .logo-menu {
  display: flex;
  align-items: center;
}
#navbar .gs-navbar .logo-menu #navBottomBtn {
  cursor: pointer;
  display: none;
  color: #d4d4d4;
  padding: 10px;
  font-size: 1.2rem;
  width: 30px;
  margin-right: 10px;
}
#navbar .gs-navbar .logo-menu #logo {
  max-width: 120px;
}
#navbar .gs-navbar .mobile-btn-action-right {
  display: none;
}
@media screen and (max-width: 992px) {
  #navbar .gs-navbar .mobile-btn-action-right {
    list-style: none;
    display: flex;
    align-items: center;
    margin-bottom: 0;
  }
}
#navbar .gs-navbar .mobile-btn-action-right span {
  cursor: pointer;
}
@media screen and (max-width: 992px) {
  #navbar .gs-navbar .gs-menu {
    position: fixed;
    width: 100%;
    left: 0;
    right: 0;
    background-color: white;
    top: 51px;
    display: none;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
  }
}
#navbar .gs-navbar .gs-menu .gs-nav-menu {
  margin: 0 auto;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 992px) {
  #navbar .gs-navbar .gs-menu .gs-nav-menu {
    flex-direction: column;
    align-items: start;
  }
}
#navbar .gs-navbar .gs-menu .gs-nav-menu .gs-nav-item {
  position: relative;
}
@media screen and (max-width: 992px) {
  #navbar .gs-navbar .gs-menu .gs-nav-menu .gs-nav-item {
    width: 100%;
  }
}
#navbar .gs-navbar .gs-menu .gs-nav-menu .gs-nav-item .fa-chevron-down {
  font-size: 13px;
  margin-left: 5px;
}
#navbar .gs-navbar .gs-menu .gs-nav-menu .gs-nav-item .main-dropdown {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  position: absolute;
  max-height: 400px;
  overflow-y: auto;
  left: 0;
  display: none;
  background-color: #ffffff;
  padding: 10px;
  border: 2px solid #ededed;
  border-radius: 8px;
  list-style: none;
  width: 200px;
}
@media screen and (max-width: 992px) {
  #navbar .gs-navbar .gs-menu .gs-nav-menu .gs-nav-item .main-dropdown {
    position: static;
    box-shadow: unset;
    background-color: #efefef;
    width: 100%;
  }
}
#navbar .gs-navbar .gs-menu .gs-nav-menu .gs-nav-item .main-dropdown li .link-of-dropdown {
  padding: 4px 7px;
  display: inline-block;
  text-decoration: none;
  cursor: pointer;
  text-transform: capitalize;
  width: 100%;
  color: #1e1e1e;
  font-size: 14px;
  border-radius: 7px;
}
#navbar .gs-navbar .gs-menu .gs-nav-menu .gs-nav-item .main-dropdown li .link-of-dropdown:hover {
  background-color: #f4f4f4;
  color: #050512;
}
#navbar .gs-navbar .gs-menu .gs-nav-menu .gs-nav-item .gs-nav-link {
  display: flex;
  align-items: center;
  text-transform: capitalize;
  padding: 5px 8px;
  text-decoration: none;
  white-space: nowrap;
  width: 100%;
  font-size: 14px;
  border-radius: 5px;
  color: #323232;
  cursor: pointer;
}
@media screen and (max-width: 992px) {
  #navbar .gs-navbar .gs-menu .gs-nav-menu .gs-nav-item .gs-nav-link {
    justify-content: space-between;
    width: 100%;
  }
}
#navbar .gs-navbar .gs-menu .gs-nav-menu .gs-nav-item .gs-nav-link:hover {
  background-color: #2B59FF;
  color: #ffffff;
  font-style: italic;
}
@media screen and (max-width: 991px) {
  #navbar .gs-navbar .gs-menu .gs-nav-menu .gs-nav-item .gs-nav-link {
    font-size: 13px;
    padding: 7px;
  }
}
@media screen and (min-width: 992px) {
  #navbar .gs-navbar .gs-menu .gs-nav-menu .gs-nav-item:hover .main-dropdown {
    display: block;
  }
}
#navbar .gs-navbar .gs-menu .gs-nav-menu .nav-search-btn {
  display: none;
}
@media screen and (max-width: 900px) {
  #navbar .gs-navbar .gs-menu .gs-nav-menu .nav-search-btn {
    display: block;
  }
}
#navbar .gs-navbar #searchProduct {
  position: relative;
}
@media screen and (max-width: 991px) {
  #navbar .gs-navbar #searchProduct {
    position: fixed;
    z-index: 1001;
    top: -300px;
    left: 0;
    right: 0;
    background-color: white;
    padding: 23px 10px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
  }
}
#navbar .gs-navbar #searchProduct #closeSearch {
  display: none;
  position: absolute;
  z-index: 1001;
  top: 50%;
  transform: translateY(-50%);
  right: 10px;
  background-color: #050512;
  padding: 4px 9px;
}
@media screen and (max-width: 991px) {
  #navbar .gs-navbar #searchProduct #closeSearch {
    display: block;
  }
}
#navbar .gs-navbar #searchProduct #closeSearch i {
  color: rgb(241, 241, 241);
  font-size: 23px;
}
#navbar .gs-navbar #searchProduct .group {
  display: flex;
  line-height: 28px;
  align-items: center;
  position: relative;
  width: 3 0px;
}
@media screen and (max-width: 991px) {
  #navbar .gs-navbar #searchProduct .group {
    width: 100%;
  }
}
#navbar .gs-navbar #searchProduct .input {
  width: 100%;
  height: 35px;
  line-height: 28px;
  padding: 0 1rem;
  padding-left: 2.5rem;
  border: 1px solid transparent;
  background-color: #E7E7E7;
  color: #0d0c22;
  outline: none;
  border-radius: 2px;
}
#navbar .gs-navbar #searchProduct .icon {
  position: absolute;
  left: 1rem;
  color: rgba(0, 0, 0, 0.3254901961);
  width: 1rem;
  height: 1rem;
}
#navbar .gs-navbar #searchProduct .search-box {
  background-color: #f7f7f7;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
  border: 1px solid gainsboro;
  border-radius: 10px;
  width: 100%;
  position: absolute;
  display: none;
  top: 38px;
}
@media screen and (max-width: 992px) {
  #navbar .gs-navbar #searchProduct .search-box {
    width: 95%;
    top: 60px;
  }
}
#navbar .gs-navbar #searchProduct .search-box ul {
  margin: 0;
  padding: 5px;
  list-style-type: none;
}
#navbar .gs-navbar #searchProduct .search-box ul li {
  border-radius: 10px;
}
#navbar .gs-navbar #searchProduct .search-box ul li:hover {
  background-color: #dedede;
}
#navbar .gs-navbar #searchProduct .search-box ul li a {
  display: flex;
  align-items: center;
  padding: 0 10px;
  color: #000000;
  text-decoration: none;
}
#navbar .gs-navbar #searchProduct .search-box ul li a img {
  width: 50px;
  height: 40px;
  object-fit: contain;
}
#navbar .gs-navbar #searchProduct .search-box ul li a p {
  margin-left: 10px;
  margin-bottom: 0;
  font-size: 14px;
}

main .container {
  display: flex;
}
@media screen and (max-width: 769px) {
  main .container {
    flex-direction: column;
  }
}

#main-content {
  margin-top: 4rem;
  background-color: rgb(255, 255, 255);
  min-height: 90vh;
  padding: 10px;
  width: 75%;
}
@media screen and (max-width: 769px) {
  #main-content {
    width: 100%;
  }
}

.home-main-content {
  width: 100% !important;
}

.post-detail-img {
  width: 100%;
  height: 100%;
  max-height: 500px;
}
.post-detail-img img {
  border-radius: 5px;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.comment-container {
  width: 80%;
}
@media screen and (max-width: 992px) {
  .comment-container {
    width: 100%;
  }
}
.comment-container .comment-menu {
  list-style-type: none;
  padding: 0;
  margin-bottom: 20px;
  overflow: auto;
  max-height: 500px;
  width: 100%;
}
.comment-container .comment-menu li {
  border: 1px solid #E7E7E7;
  padding: 5px;
  background-color: #EFEFEF;
  margin-bottom: 3px;
  border-radius: 6px;
}
.comment-container .comment-menu li .comment {
  display: flex;
}
.comment-container .comment-menu li .comment .user-img {
  width: 50px;
  height: 50px;
  background-color: #cccccc;
  margin-right: 10px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.comment-container .comment-menu li .comment .user-img i {
  color: rgb(76, 76, 76);
  font-size: 20px;
}
.comment-container .comment-menu li .comment .comment-text p {
  margin-bottom: 0px;
  color: #000000;
  font-size: 15px;
  font-weight: 600;
}
.comment-container .comment-menu li .comment .comment-text small {
  font-size: 13px;
}

.article-container .articles-row {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.article-container .newspost-col {
  width: calc(33.333% - 10px);
}

.article-container .newspost-col-50 {
  width: calc(50% - 10px);
}

.article-container article {
  height: 100%;
  width: 100%;
}

.article-container .article-link {
  position: relative;
  width: 100%;
}

.article-container .article-link .gs-article-bg-image {
  width: 100%;
  margin-bottom: 10px;
}

.article-container .article-link .gs-article-bg-image img {
  object-fit: cover;
  height: 250px;
  border-radius: 5px;
}

.article-container .article-link .article-content {
  width: 100%;
  position: relative;
}
.article-container .article-link .article-content a {
  text-decoration: none;
}

.article-container .article-link .article-content .article-desc {
  font-size: 14px;
  line-height: 1.4;
  color: rgb(62, 62, 62);
}

.article-container .article-link .article-content .article-title {
  font-size: 16px;
  width: 100%;
  line-height: 1.5;
  margin-bottom: 10px;
  color: rgb(62, 62, 62);
}
.article-container .article-link .article-content .article-title:hover {
  color: gray;
}

.news-header-items {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 0;
  list-style-type: none;
  gap: 4px;
  margin-bottom: 10px;
  padding: 0;
}

.news-header-items .header-link {
  text-decoration: none;
  padding: 8px;
  color: rgb(46, 46, 46);
  background-color: rgb(224, 224, 224);
  border: 1px solid rgb(237, 237, 237);
  border-radius: 5px;
  color: rgb(46, 46, 46);
  cursor: pointer;
  font-size: 15px;
  display: inline-block;
}

.news-header-items .header-link:hover {
  background-color: #e6e6e6;
}

.newsitem-footer {
  color: rgba(0, 0, 0, 0.701);
  font-size: 14px;
  margin-top: 10px;
  margin-bottom: 0px;
}
.newsitem-footer a {
  color: gray;
  font-weight: 500;
  text-decoration: none;
}

@media screen and (max-width: 769px) {
  .article-container .newspost-col {
    width: calc(50% - 10px);
  }
  .article-container .newspost-col-50 {
    width: calc(100% - 10px);
  }
  .article-container .article-link .gs-article-bg-image img {
    height: 100%;
  }
  .article-container .article-link .article-content .article-title {
    font-size: 12px;
  }
  .article-container .article-link .article-content .article-desc {
    display: none;
  }
  .newsitem-footer {
    color: rgba(0, 0, 0, 0.701);
    font-size: 12px;
    margin-top: 10px;
    margin-bottom: 0px;
  }
  .newsitem-footer a {
    color: gray;
    font-weight: 500;
    text-decoration: none;
  }
}
.news-home-top {
  width: 100%;
  display: flex;
  margin-bottom: 40px;
  gap: 3px;
  flex-wrap: wrap;
  filter: drop-shadow(0px 5px 50px rgba(0, 73, 209, 0));
}
.news-home-top .news-home-item:nth-child(1) {
  width: 60%;
}
.news-home-top .news-home-item:nth-child(1) .news-home-title {
  font-size: 1.5rem;
}
@media screen and (max-width: 769px) {
  .news-home-top .news-home-item:nth-child(1) .news-home-title {
    font-size: 14px;
  }
}
@media screen and (max-width: 769px) {
  .news-home-top .news-home-item:nth-child(1) {
    width: 100%;
  }
}
.news-home-top .news-home-item:nth-child(2) {
  width: 39%;
}
@media screen and (max-width: 769px) {
  .news-home-top .news-home-item:nth-child(2) {
    width: 100%;
  }
}
.news-home-top .news-home-item:nth-child(3) {
  width: 30%;
}
.news-home-top .news-home-item:nth-child(3) .news-home-image {
  height: 230px;
}
.news-home-top .news-home-item:nth-child(3) .news-home-title {
  font-size: 14px;
}
@media screen and (max-width: 769px) {
  .news-home-top .news-home-item:nth-child(3) {
    width: 100%;
  }
}
.news-home-top .news-home-item:nth-child(4) {
  width: 40%;
}
.news-home-top .news-home-item:nth-child(4) .news-home-image {
  height: 230px;
}
.news-home-top .news-home-item:nth-child(4) .news-home-title {
  font-size: 15px;
}
@media screen and (max-width: 769px) {
  .news-home-top .news-home-item:nth-child(4) {
    width: 100%;
  }
}
.news-home-top .news-home-item:nth-child(5) {
  width: 29%;
}
.news-home-top .news-home-item:nth-child(5) .news-home-image {
  height: 230px;
}
.news-home-top .news-home-item:nth-child(5) .news-home-title {
  font-size: 13px;
}
@media screen and (max-width: 769px) {
  .news-home-top .news-home-item:nth-child(5) {
    width: 100%;
  }
}
.news-home-top .news-home-item {
  position: relative;
  width: 100%;
  overflow: hidden;
}
@media screen and (max-width: 769px) {
  .news-home-top .news-home-item {
    height: 180px;
  }
}
.news-home-top .news-home-item:hover .news-home-image img {
  transform: scale(102%);
}
.news-home-top .news-home-item .news-home-link {
  width: 100%;
  height: 100%;
}
.news-home-top .news-home-item .news-home-image {
  width: 100%;
  height: 270px;
}
.news-home-top .news-home-item .news-home-image img {
  width: 100%;
  height: 100%;
  transition: 0.2s cubic-bezier(0, 0, 0.58, 1.16);
  object-fit: cover;
}
.news-home-top .news-home-item .news-home-title {
  position: absolute;
  bottom: 10px;
  left: 10px;
  color: white;
  margin-right: 10px;
  background: url("../images/pat.png");
  display: inline-block;
  padding: 5px 10px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
  font-weight: 500;
}
.news-home-top .news-home-item .news-home-info {
  position: absolute;
  top: 10px;
  left: 10px;
  color: white;
  margin-right: 10px;
  background: url("../images/pat.png");
  display: inline-block;
  padding: 5px 10px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
  font-weight: 500;
  font-size: 13px;
}

#sidebar {
  margin-top: 4rem;
  background-color: rgb(255, 255, 255);
  min-height: 90vh;
  padding: 10px;
  width: 25%;
}
@media screen and (max-width: 769px) {
  #sidebar {
    width: 100%;
  }
}
#sidebar .sidebar-title {
  text-transform: capitalize;
  padding: 4px 0;
  margin-bottom: 15px;
  color: black;
  font-weight: 600;
  font-size: 20px;
}
#sidebar .side-article-container .article-grid {
  margin-bottom: 10px;
  overflow: hidden;
  position: relative;
}
#sidebar .side-article-container .article-grid .item {
  height: 100px;
  margin-bottom: 2px;
  position: relative;
}
#sidebar .side-article-container .article-grid .item:hover img {
  transform: scale(101%);
}
#sidebar .side-article-container .article-grid .item .image {
  position: absolute;
  height: 100px;
  width: 100%;
}
#sidebar .side-article-container .article-grid .item .image img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  transition: 0.1s ease;
}
#sidebar .side-article-container .article-grid .item .content {
  bottom: 0;
  position: absolute;
  width: 100%;
}
#sidebar .side-article-container .article-grid .item .content .title {
  line-height: 1.3;
  font-size: 13px;
  color: white;
  padding: 5px 10px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
  font-weight: 500;
  background: url("../images/pat.png");
}
#sidebar .side-article-container .article-flex {
  margin-bottom: 10px;
}
#sidebar .side-article-container .article-flex .item {
  height: 70px;
  display: flex;
  margin-bottom: 2px;
  gap: 10px;
}
#sidebar .side-article-container .article-flex .item .image {
  height: 70px;
  width: 40%;
}
#sidebar .side-article-container .article-flex .item .image img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
#sidebar .side-article-container .article-flex .item .content {
  width: 60%;
}
#sidebar .side-article-container .article-flex .item .content .title {
  line-height: 1.3;
  font-size: 13px;
}

footer {
  width: 100%;
  padding-top: 3rem;
}
footer .container {
  background-color: white;
  padding: 10px;
  padding-bottom: 0;
  border-radius: 7px;
}
footer .footer-logo-text {
  font-size: 15px;
}
footer .footer-title {
  font-weight: 600;
  font-size: 18px;
  margin-bottom: 10px;
}
@media screen and (max-width: 500px) {
  footer .footer-row {
    flex-direction: column;
  }
}
footer .footer-row .right {
  display: flex;
  gap: 0px;
  flex-wrap: wrap;
}
footer .footer-col {
  width: 33%;
  padding: 10px;
}
@media screen and (max-width: 900px) {
  footer .footer-col {
    width: 50%;
  }
}
footer .footer-menu {
  list-style: none;
  padding: 0;
}
footer .footer-menu li {
  padding: 1px 0;
}
footer .footer-menu li .footer-link {
  text-decoration: none;
  margin: 3px 0;
  display: inline-block;
  color: #434343;
  font-size: 15px;
}
footer .footer-menu li .footer-link:hover {
  color: #2B59FF;
}
footer .copyright {
  border-top: 1px solid #ededed;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 25px 10px;
}
footer .copyright .copyright-text {
  font-size: 15px;
}
footer .copyright .copyright-link {
  font-weight: 600;
}
footer .copyright .privacy a {
  font-size: 15px;
  text-decoration: none;
}
footer .scroll-to-top-parent {
  bottom: 1%;
  right: 2%;
  overflow: hidden;
  position: fixed;
  display: none;
  cursor: pointer;
  background-color: #050512;
  border-radius: 2px;
}
footer .scroll-to-top-parent .scroll-to-top {
  position: relative;
  z-index: 333;
  height: 30px;
  width: 40px;
  text-decoration: none;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}
footer .scroll-to-top-parent .scroll-to-top:hover {
  background-color: #456dff;
}
footer .contact-info {
  padding: 0;
  list-style-type: none;
}
footer .contact-info li {
  line-height: 1.5;
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 10px 0;
}
footer .contact-info li i {
  width: 25px;
  text-align: center;
}
footer .contact-info li span {
  font-size: 13px;
}
footer .left {
  width: 40%;
}
@media screen and (max-width: 500px) {
  footer .left {
    width: 100%;
    margin-bottom: 30px;
  }
}
footer .right {
  display: flex;
  width: 60%;
}
@media screen and (max-width: 500px) {
  footer .right {
    width: 100%;
  }
}

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