:root {
  --color-default: #364d59;
  --color-primary: #fafe00;
  --color-pm: #ff0037;
  --color-secondary: #52565e;
  --primary: #06A3DA;
  --secondary: #FF0F10;
  --light: #EEF9FF;
  --dark: #091E3E;
}

/* main css */
body {
  line-height: 1.6;
  font-family: "Work Sans", sans-serif;
  -webkit-font-smoothing: antialiased;
  font-size: 16px;
  color: #333;
  overflow-x: hidden !important;
}

p {
  font-weight: 400;
  color: #333;
  font-size: 16px;
  line-height: 1.6;
  font-family: "Work Sans", sans-serif;
}

/* Media query for laptop screens */
@media only screen and (min-width: 901px) and (max-width: 1920px) {
  body, p {
    font-size: 18px !important; 
  }
}

/* Media query for desktop screens */
@media only screen and (min-width: 1921px) {
  body, p {
    font-size: 20px !important; 
  } 
}

h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
  color: #131313;
  font-family: "Neuton", serif;
  font-weight: 700;
  line-height: 1.3; 
}

h1, .h1 {
  font-size: 36px;
}
@media (max-width: 991px) {
  h1, .h1 {
    font-size: 30px;
  }
}
@media (max-width: 767px) {
  h1, .h1 {
    font-size: 26px;
  }
}

h2, .h2 {
  font-size: 28px;
}
@media (max-width: 767px) {
  h2, .h2 {
    font-size: 24px;
  }
}

h3, .h3 {
  font-size: 22px;
}
@media (max-width: 767px) {
  h3, .h3 {
    font-size: 20px;
  }
}

h4, .h4 {
  font-size: 20px;
}

h5, .h5 {
  font-size: 16px;
}

h6, .h6 {
  font-size: 14px;
}
/* end */

.blog-main{
  margin-top: 60px !important;
}
.section {
  padding-top: 15px;
  padding-bottom: 25px;
}

.section-title {
  position: relative;
  z-index: 1;
  margin-bottom: 15px;
}
.section-title::before {
  position: absolute;
  height: 4px;
  width: 100%;
  content: "";
  left: 0;
  top: 0;
  z-index: -1;
}
.article-card {
  padding: 30px;
  border-radius: 0;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
}
@media (max-width: 1200px) {
  .article-card-sm {
    padding: 20px;
  }
}
@media (max-width: 991px) {
  .article-card {
    padding: 25px;
  }
}
@media (max-width: 575px) {
  .article-card {
    padding: 15px;
  }
}

.card {
  border: 0;
  position: relative;
}
.card-meta {
  padding-left: 0;
}
.card-meta li {
  list-style-type: none;
  margin-right: 10px;
  display: inline-block;
}
.card-meta li a {
  font-weight: 500;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.card-meta li a:hover {
  color: var(--primary);
}
.card-footer {
  background-color: transparent;
}
.card-footer span {
  vertical-align: middle;
  color: #888;
}
.card-img {
  height: 200px;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.card-image {
  position: relative;
}


.card-image img {
  border-radius: 0;
}
.card-image .post-info {
  position: absolute;
  right: 0;
  top: -5px;
  padding-top: 20px;
  padding-left: 20px;
  padding-right: 20px;
}
.card-image .post-info span {
  display: inline-block;
  line-height: 1.3;
  font-size: 16px;
  padding: 3px 8px;
  padding-top: 4px;
  background-color: rgb(46, 0, 0);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  color: #fff;
  border-radius: 0;
  margin-top: 5px;
}

.card-image .visitors {
  margin-top: -26px;
  padding: 0 2px 0 3px;
  position: relative;
  background-color: rgb(46, 0, 0);
  color: #fff !important;
  border-top-left-radius: 11px;
}

.read-more-btn {
  font-family: 'Neuton', serif;
  font-size: 18px;
}

.post-title {
  color: #000;
  display: inline;
  text-decoration: none;
  background-image: linear-gradient(var(--primary), var(--primary));
  background-position: 0% 80%;
  background-repeat: no-repeat;
  background-size: 0% 8px;
  transition: background-size 0.3s;
}
.post-title-sm {
  background-size: 0% 3px;
}

a.post-title:hover {
  color: #000;
  background-size: 100% 8px;
}

a.post-title-sm:hover {
  background-size: 100% 3px;
}

/* blog */
.post-meta {
  padding-left: 0;
}
.post-meta li {
  list-style-type: none;
  display: inline-block;
  color: #888;
  font-weight: 500;
}
.post-meta li a {
  display: inline-block;
  background-color: rgba(19, 19, 19, 0.05);
  color: black;
  text-transform: capitalize;
  padding: 2px 8px;
  margin-bottom: 8px;
  margin-right: 2px;
  font-size: 14px;
  border-radius: 0;
}
.post-meta li a:hover {
  background-color: var(--primary);
}
.post-meta li svg {
  display: inline-block;
}

.image-fallback {
  font-size: 0;
  height: 220px;
  width: 100%;
  background-color: #f2f2f2;
  text-align: center;
  border-radius: 0;
  display: inline-block;
}
.image-fallback::first-letter {
  font-size: 80px;
  line-height: 220px;
  font-weight: bold;
  color: #19234c;
}
.image-fallback.post-thumb-sm::first-letter {
  font-size: 50px;
  line-height: 60px;
}
.image-fallback-sm {
  height: 120px;
  width: 120px;
  margin-bottom: 20px;
}
.image-fallback-sm::first-letter {
  font-size: 50px;
  line-height: 120px;
}
.image-fallback-xs {
  height: 80px;
  width: 80px;
}
.image-fallback-xs::first-letter {
  font-size: 38px;
  line-height: 80px;
}

.breadcrumbs {
  background-color: transparent;
  padding: 15px 0;
}
.breadcrumbs a {
  color: #131313;
}
.breadcrumbs a:hover {
  text-decoration: underline;
}
.breadcrumbs a:last-child {
  color: rgba(19, 19, 19, 0.5);
  pointer-events: none;
}

/* content style */
.content * {
  margin-bottom: 5px;
}
.content h1,
.content h2,
.content h3,
.content h4,
.content h5,
.content h6,
.content .h1,
.content .h2,
.content .h3,
.content .h4,
.content .h5,
.content .h6 {
  margin-bottom: 20px;
  margin-top: 30px;
}
.content a {
  color: inherit !important;
  display: inline;
  text-decoration: none;
  background-image: linear-gradient(var(--primary), var(--primary));
  background-position: 0% 110%;
  background-repeat: no-repeat;
  background-size: 100% 3px;
  transition: 0.3s;
}
.content a:hover {
  color: #000;
  background-size: 100% 100%;
}
.content.bg-dark a:hover {
  background-image: linear-gradient(
    var(--primary),
    var(--primary)
  );
}
.content ol {
  padding-left: 20px;
}
.content ul {
  padding-left: 0;
}
.content ul li {
  position: relative;
  padding-left: 15px;
  margin-bottom: 10px;
  list-style-type: none;
}
.content ul li a {
  display: inline-block;
  margin-bottom: 10px;
}
.content ul li::before {
  position: absolute;
  content: '';
  height: 10px;
  width: 10px;
  border-radius: 100%;
  left: 0;
  top: 7px;
  background-color: var(--primary);
  transition: 0.3s ease;
}
.content table {
  text-align: left;
  width: 100%;
  max-width: 100%;
  margin-bottom: 1rem;
  border: 1px solid #dee2e6;
}
.content table th,
.content table td {
  padding: 0.75rem;
  vertical-align: top;
  border: 1px solid #dee2e6;
}
.content table thead {
  background: #f1f1f1;
}
.content table tbody {
  background: #f6f6f6;
}
.content table tbody td {
  text-align: left !important;
}
.content blockquote {
  border-left: 4px solid var(--primary);
  padding: 20px;
  margin: 20px 0;
}
.content blockquote p {
  margin-bottom: 0;
  color: #333;
  font-style: italic;
  font-size: 20px;
  font-weight: 500;
}
.content pre {
  padding: 10px 20px;
  background: #f6f6f6;
}

/* widget */
.widget-blocks {
  padding-left: 20px;
}
@media (max-width: 991px) {
  .widget-blocks {
    padding-left: 0;
  }
}
.widget-blocks .row > .col:last-child .widget,
.widget-blocks .row > [class*='col-']:last-child .widget {
  margin-bottom: 0 !important;
}

.widget {
  margin-bottom: 50px;
}
.widget-body {
  padding: 30px;
  background-color: #fff;
  border-radius: 0;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
}
@media (max-width: 1200px) {
  .widget-body-sm {
    padding: 20px;
  }
}
@media (max-width: 991px) {
  .widget-body {
    padding: 25px;
  }
}
@media (max-width: 575px) {
  .widget-body {
    padding: 15px;
  }
}
.widget-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.widget-list .card {
  border-bottom: 1px dashed #ececec;
  padding-bottom: 15px;
}
.widget-list .media img {
  height: 80px;
  width: 80px !important;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 0;
}
.widget-list .media:not(:last-child) {
  border-bottom: 1px dashed #ececec;
  margin-bottom: 15px;
  padding-bottom: 15px;
}
.widget-list .media:hover {
  opacity: 0.8;
}
.widget-list-tag li{
  display: inline-block !important;
}
.widget-list li {
  display: flex;
}

.widget-list li a {
  background-color: rgba(19, 19, 19, 0.05);
  color: black;
  text-transform: capitalize;
  padding: 6px 16px;
  margin-bottom: 9px;
  margin-right: 9px;
  display: block;
  font-size: 14px;
  border-radius: 0;
}
.widget-list li a:hover {
  background-color: var(--primary);
}

.author-thumb-sm {
  height: 150px;
  -o-object-fit: cover;
  object-fit: cover;
}
@media (max-width: 991px) {
  .author-thumb-sm {
    height: 250px;
  }
}
@media (max-width: 767px) {
  .author-thumb-sm {
    height: 200px;
  }
}

.post-thumb-sm {
  height: 80px;
  width: 100px;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 0;
}

.custom-media-container {
  display: flex;
  align-items: center;
}

.like-view{
  margin-top: -30px;
  margin-right: 0px;
  margin-left: 0px;
}

.like-view-sub> p{
  padding-right: 10px;
  padding-left: 10px;
  font-size: 14px;
  font-weight: bold;
  color: #EEF9FF;
  background-color: var(--primary);
}

.like-view-sub> p:hover,.like-view-sub> p:focus{
  color: #EEF9FF;
  background-color: blue;
}

.like-view-sub> p> i{
  padding-right: 5px;
}

/* Subscribe button */
.neon-input {
  border-radius: 25px;
  border: 1px solid #09f;
  box-shadow: 0 0 20px #09f, 0 0 40px #09f, 0 0 60px #09f;
  transition: box-shadow 0.3s ease;
}

.neon-input:hover,
.neon-input:focus {
  box-shadow: 0 0 20px #09f, 0 0 40px #09f, 0 0 80px #09f;
}

.neon-button {
  position: relative;
  border-radius: 25px;
  background-color: transparent;
  border: 1px solid #09f;
  box-shadow: 0 0 20px #09f, 0 0 40px #09f, 0 0 60px #09f;
  transition: box-shadow 0.3s ease;
  border-left: none !important;
  color: #09f;
  padding: 10px 20px;
  overflow: hidden;
  font-family: "Neuton";
  font-size: 18px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-shadow: 0 0 20px #09f, 0 0 40px #09f, 0 0 60px #09f;
}

.neon-button:hover,
.neon-button:focus {
  border-color: rgba(255, 208, 0, 0.978);
  color: rgb(255, 179, 0);
  background-color: #091E3E;
}

.neon-button:before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  width: 100%;
  height: 100%;
  background-color: rgb(2, 27, 44);
  z-index: -1;
  animation: glow 1s ease infinite alternate;
}

@keyframes glow {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.h1Text {
  padding-top: 5px;
  font-family: "Neuton";
  font-size: 24px;
  font-weight: bold;
  color: rgb(0, 213, 255); 
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 5px;
  text-shadow: 0 0 20px #09f, 0 0 40px #09f, 0 0 60px #09f;
}

.share-copy a{
  border-radius: 50%;
  border: .75px solid blue;
  background-color: #fff;
}

.share-copy a:hover{
  color: #fff !important;
  background-color: #131313 !important;
  box-shadow: 0 0 20px #09f, 0 0 40px #09f, 0 0 60px #09f;
  transition: box-shadow 0.3s ease;
}
.share-copy a:focus{
  color: #fff !important;
  background-color: #5d00ff77 !important;
}

/* Filter buttons container */
.filter-buttons .btn {
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 500;
}
/* Responsive adjustments */
@media (max-width: 768px) {
  .btn-group {
    flex-wrap: nowrap;
  }

  .btn-group>.btn,
  .btn-group>.btn-group {
    margin-bottom: 0.5rem;
  }
}