@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Rubik:ital,wght@1,300..900&display=swap");
*,
::after,
::before {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html,
body {
  scroll-behavior: smooth;
}
:root {
  --body-bg: #0b0b0b;
  --cl-white: #fff;
  --cl-border: #31313b;
  --cl-description: #ebebeb;
  --theme-green: #00cc0a;
  --theme-blue: #0075ff;
  --conthrax: "conthrax" !important;
  --roboto-mono: "roboto-mono-reg" !important;
  --roboto-mono-italic: "roboto-mono-italic" !important;
  --roboto-mono-semi: "roboto-mono-semi" !important;
  --border-col: #333333;
  --para-col: #737373 !important;
  --link-col: #3ec745;
  --para-col: #737373 !important;
  --link-col: #3ec745;
  --highlight-col:#d3d3d3;
}
body {
  font-family: "Poppins", sans-serif;
  color: var(--cl-white);
  line-height: 1.8;
  background-color: var(--body-bg);
}
p {
  font-size: 14px;
}
.col-highlight {
  color: var(--highlight-col) !important;
}
@font-face {
  font-family: "annapolis";
  src: url("../fonts/annapolis.woff") format("woff");
}
@font-face {
  font-family: "conthrax";
  src: url("../fonts/Conthrax-SemiBold.woff") format("woff");
}
@font-face {
  font-family: "roboto-mono";
  src: url("../fonts/RobotoMono-Medium.woff") format("woff");
}
@font-face {
  font-family: "roboto-mono-italic";
  src: url("../fonts/RobotoMono-MediumItalic.woff") format("woff");
}
@font-face {
  font-family: "roboto-mono-reg";
  src: url("../fonts/RobotoMono-Regular.woff") format("woff");
}
@font-face {
  font-family: "roboto-mono-semi";
  src: url("../fonts/RobotoMono-SemiBold.woff") format("woff");
}

.blue {
  background-color: #131313db;
}
.status-heads {
  font-size: 16px;
}
header {
  border-bottom: 1px solid #2e2e2e;
  position: fixed;
  top: 0;
  z-index: 100;
  width: 100%;
  background: transparent;
  padding: 15px 30px 15px !important;
  background-color: #0b0b0b !important;
}
header .header-row-main {
  justify-content: space-between;
  align-items: center;
  display: flex;
}
p {
  font-size: 14px;
  font-weight: 300;
  color: #8D8D8D;
  font-family: var(--roboto-mono) !important;
}
.col-fff{
  color: var(--cl-white) ;
}
header .hamburger-icon {
  cursor: pointer;
  position: absolute;
  right: 0;
  z-index: 2;
  margin: 25px;
  display: none;
}
header .hamburger-icon .bar {
  transition: 0.4s;
  margin: 25px;
}
header .hamburger-icon .bar-1 {
  display: block;
  width: 25px;
  border-top: 2px solid var(--cl-white);
  padding-top: 5px;
  cursor: pointer;
  transition: 0.4s;
}
header .hamburger-icon .bar-2 {
  display: block;
  width: 20px;
  border-top: 2px solid var(--cl-white);
  padding-top: 5px;
  transition: 0.4s;
}
header .hamburger-icon .bar-3 {
  display: block;
  width: 14px;
  border-top: 2px solid var(--cl-white);
  padding-top: 5px;
  transition: 0.4s;
}
header .hamburger-icon .change .bar-1 {
  transform: rotate(-45deg) translate(-4px, 8px);
  width: 26px;
}
header .hamburger-icon .change .bar-2 {
  opacity: 1;
  transform: rotate(45deg) translate(1px, 1.5px);
  width: 26px;
}
header .hamburger-icon .change .bar-3 {
  transform: rotate(45deg) translate(-14px, -9.8px);
  display: none;
}
header .menu-items {
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0;
  justify-content: end;
  border-radius: 40px;
  position: relative;
}
header .menu-items li {
  list-style-type: none;
  /* position: relative; */
}
header .menu-items li a {
  text-decoration: none;
  padding: 0px 17px;
  font-weight: 400;
  font-size: 17px;
  color: var(--cl-white);
  cursor: pointer;
  align-items: center;
}
header .menu-items .menu-parent-list:hover a {
  color: #01ea0d;
}
header .menu-items .menu-parent-list:hover .toggle-arrow-white {
  filter: brightness(0) saturate(100%) invert(58%) sepia(20%) saturate(7120%)
    hue-rotate(88deg) brightness(118%) contrast(122%);
  transform: rotate(-90deg);
  transition: transform 0.5s;
}
.header-menus-list {
  display: flex;
  align-items: center;
  gap: 30px;
  font-family: "inter";
}
.menus-header {
  margin-top: 9px;
  color: #ebebeb;
  font-family: "inter";
}
a {
  text-decoration: none;
}
.blog-wrapper img {
  width: 100%;
   transition: transform 0.4s ease;
   z-index: 9;
   position: relative;
}
 .blog-item.hover-effect img {
    transform: scale(1.06);
    transition: transform 0.4s ease;
}
.blog-item.hover-effect .read-more-btn {
    background: #3ec745 !important;
    transition: background 0.4s ease;
}
.logo-content img {
  width: 170px;
  margin-top: 5px;
}

.blog-wrapper .inner-box {
    background-color: #111111;
    min-height: 100%;
   transition: transform 0.4s ease;
    border: 1px solid #282828;
    overflow: hidden;
}
/* .blog-wrapper .inner-box:hover{
    transform: scale(1.01);
} */
.blog-wrapper {
  padding: 20px;
}
.copy-rights {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--body-bg);
  padding: 22px;
}
.copy-rights p {
  margin: 0;
  font-weight: 100;
  font-size: 13px;
  opacity: 0.9;
}
.copy-rights a {
  color: white;
  text-decoration: none;
}
.blog-wrapper .bl-description {
  margin-bottom: 60px;
}
.blog-wrapper h4 {
     font-family: var(--conthrax);
     text-transform: uppercase;
     margin-bottom: 15px;
     font-size: 1.2rem;
     line-height: 1.6;
}
.read-more-btn{
    color: #000;
    background-color: #fff;
    padding: 8px 8px;
    font-weight: bolder;
    font-size: 14px;
    display: inline-block;
    width: max-content;
    white-space: nowrap;
    text-align: center;
    margin-top: 20px;
    z-index: 2;
    position: absolute;
    right: 0;
    left: 20px;
    bottom: 18px;
    min-width: 150px;
}
.read-more-btn:hover{
  background: #3ec745 !important;
}


.blog-wrapper .bl-date-time {
      display: flex;
    justify-content: space-between;
    padding: 5px 0px;
    width: 90%;
    margin: 8px auto 0px;
}
.bl-date-time p {
  margin-bottom: 0;
}
.col-dark-green {
  color: #3ec745 !important;
}
.bl-inside {
  padding: 10px 20px 20px;
  position: relative;
}
.blog-wrapper .bl-img {
  display: inline-block;
  overflow: hidden;
}
.hero-blog-main {
  /* background: url(../img/dotted-bg.png); */
  display: flex;
  align-items: center;
  background-repeat: no-repeat;
  background-size: cover;
  /* padding: 30px 0px 30px; */
  position: relative;
}
.search-field {
  display: flex;
  gap: 5px;
  position: relative;
}
#searchInput {
  outline: none;
  font-size: 14px;
  padding: 0px 20px;
}
.dropdown-sugg {
  position: absolute;
  border: 1px solid #444444;
  padding: 8px 13px;
  top: 40px;

  display: none;
  font-size: 14px;
  background-color: var(--body-bg);
  min-width: 320px;
  font-family: var(--boboto-mono);
}

.dropdown-sugg div {
  padding: 8px;
  cursor: pointer;
  color: #737373;
}
.dropdown-sugg div:hover {
  color: #c5c5c5;
}
.bl-post-banner {
  width: 100%;
  border: 1px solid #282828;
  margin-bottom: 15px;
}
.blog-post h1 {
  font-family: var(--conthrax);
  text-transform: uppercase;
  margin: 0px 0px 20px;
  font-size: 30px;
}
.blog-post h4 {
   margin: 0px 0px 10px;
   font-size: 18px;
   padding-top: 20px;
   line-height: 1.6;
}
.bl-tag {
  display: flex;
  gap: 8px;
  margin-bottom: 25px;
  flex-wrap: wrap;
}
.bl-tag p {
  color: #acacac !important;
  border: 1px solid #acacac;
  font-size: 13px;
  padding: 0px 11px;
  margin: 0;
  text-transform: capitalize;
}
.bl-key-nav {
  border: 1px solid #444444;
  padding: 8px 20px 10px;
  font-size: 14px;
  position: sticky;
  top: 100px;
  align-self: flex-start;
}
.jump-to-head {
  font-size: 16px;
  font-family: var(--roboto-mono);
}
a {
  font-family: var(--roboto-mono);
}
.post-article .bl-key-nav a {
  padding: 10px 0;
  color: var(--para-col);
  display: block;
}
.post-article {
  padding: 30px 0 50px;
}
.bl-key-nav a:hover {
  color: #fff;
  cursor: pointer;
}
/* .post-article a {
  color: var(--link-col);
} */
.bl-footer {
  border-top: 1px solid #222222;
}
.post-head {
  font-size: 25px;
}
.bl-header {
  border-bottom: 1px solid #2e2e2e;
  position: unset;
  top: 0;
  z-index: 100;
  width: 100%;
  background: transparent;
  padding: 15px 30px 15px !important;
  background-color: #0b0b0b !important;
}
.tag-filter {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
  flex-wrap: wrap;
}
.tag-filter p {
  margin: 0px 8px 0px 0px;
}
.tag-filter button {
  background-color: var(--body-bg);
  outline: unset;
  margin-right: 8px;
  font-size: 14px;
  text-transform: capitalize;
  padding: 3px 14px;
  font-family: var(--roboto-mono);
  color: #acacac !important;
  border: 1px solid #acacac;
}
.categories {
  background-color: var(--body-bg);
  outline: unset;
  border: 1px solid #8d8d8dbb;
  margin: 0 10px;
  color: #ebebeb;
  font-size: 14px;
  text-transform: capitalize;
  padding: 8px 11px;
  font-family: var(--roboto-mono);
  cursor: pointer;
  position: relative;
}
.categories img {
  width: 15px;
  margin-top: -2px;
}
.cate-drp {
     position: absolute;
    width: 248px;
    text-align: left;
    background-color: var(--body-bg);
    border: 1px solid #444444;
    /* padding: 20px; */
    z-index: 2;
    top: 3.2rem;
    display: none;
    right: 0%;
    padding: 10px 5px;
}
.cate-drp li {
  list-style-type: none;
  font-size: 14px;
  color: var(--para-col);
  padding: 8px 15px;
  cursor: pointer;
  color: #acacac;
  border: unset !important;
}
.cate-drp li:hover {
  color: #cecbcb;
}
.categories {
  position: relative;
  display: inline-block;
  cursor: pointer;
}

.categories.open .categories-dropdown {
  display: block;
}
.blog-item {
  position: relative;
}
.bl-backBtn {
  background-color: var(--body-bg);
  outline: unset;
  border: 1px solid #8d8d8dbb;
  margin-right: 8px;
  margin-top: 8px;
  color: #ebebeb;
  font-size: 14px;
  text-transform: capitalize;
  padding: 5px 11px;
  display: inline-block;
  margin-top: 20px;
  font-family: var(--roboto-mono);
}
.btob-arrow {
  transform: rotate(90deg);
  margin-top: -3px;
}
.inner-date-time p {
  display: inline-block;
  margin: 0;
  margin-right: 10px;
}
.blpost-tim-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
  flex-wrap: wrap;
}
.blog-post-section {
  padding-right: 40px;
}
.beldex-blog-main {
  padding: 30px 0px 30px;
}
.blog-post-content h4 {
  text-transform: uppercase;
}
.pagination-bl {
  display: flex;
  gap: 8px;
  margin-top: 20px;
  justify-content: center;
}

.pagination-bl button {
  padding: 3px 12px;
  background: var(--body-bg);
  cursor: pointer;
  font-size: 14px;
  color: #737373;
  font-family: var(--roboto-mono);
  outline: unset;
  border: unset;
}

.pagination-bl button.active {
  background: #fff;
  color: #000;
}

.pagination-bl button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.anno-date-tag {
  display: flex;
  padding: 20px 0 15px;
}
.announce-wrapper {
  margin: 50px 0 30px;
  background: url(../img/Dotted_BG_with_black.png);
  background-repeat: no-repeat;
  background-size: 100% 102%;
  background-position: center;
  position: relative;
}
.announce-inside {
  padding: 30px;
}
.date-announce {
  background-color: #ebebeb !important;
  border: 1px solid #444444;
  color: #000 !important;
  padding: 7px 10px;
  font-size: 13px;
  margin-bottom: 10px;
}
.tag-announce {
  background-color: #000 !important;
  border: 1px solid #444444;
  color: #ebebeb !important;
  padding: 7px 10px;
  font-size: 13px;
  margin-bottom: 10px;
}
.announce-head {
  padding: 15px 0;
}
.owl-dots {
  display: block !important;
  text-align: center;
  margin-top: 15px;
  position: absolute;
  bottom: 1rem;
  left: 2rem;
}
.owl-dot span {
  width: 10px;
  height: 10px;
  margin: 5px;
  background: #000;
  display: block;
  border: 1px solid #ebebeb;
}

.owl-dot.active span {
  background: #ccc;
}
.owl-carousel {
  position: relative;
}
.owl-carousel .owl-item img {
  place-self: end;
  display: block;
  width: 92%;
}

.blog-wrapper {
  margin-bottom: 16px;
  opacity: 0;
  transform: translateY(10px);
  transition:
    opacity 0.4s ease,
    transform 0.4s ease;
  overflow: hidden;
}

/* Hidden blog */
.blog-wrapper.hide {
  opacity: 0;
  transform: translateY(10px);
  height: 0;
  margin-bottom: 0;
  padding: 0;
  visibility: hidden;
  pointer-events: none;
  position: absolute;
}

/* Visible blog */
.blog-wrapper.show {
  opacity: 1;
  transform: translateY(0px);
  height: auto;
  margin-bottom: 16px;
  visibility: visible;
  pointer-events: auto;
}

.announce-wrapper.show-announcement {
  display: block;
}
h2 {
  font-family: var(--conthrax);
  font-size: 30px;
  font-weight: 700 !important;
  text-transform: uppercase;
}
h4 {
  font-family: var(--conthrax);
}
h5 {
  font-family: var(--conthrax);
}
.post-tags p {
  background-color: var(--body-bg);
  outline: unset;
  border: 1px solid #8d8d8dbb;
  margin-right: 8px;
  color: #ACACAC;
  font-size: 14px;
  text-transform: capitalize;
  padding: 0px 11px;
  display: inline-block;
  font-family: var(--roboto-mono);
}
.post-tags {
  display: flex;
  margin: 20px 0 10px;
  flex-wrap: wrap;
}
.post-prevnxt {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 30px;
  font-size: 14px;
}
.post-prevnxt .bl-btn-prev {
  display: inline-block;
  background-color: var(--body-bg);
  outline: unset;
  border: 1px solid #8d8d8dbb;
  margin-right: 8px;
  margin-top: 8px;
  color: #ebebeb;
  font-size: 14px;
  text-transform: capitalize;
  padding: 4px 11px;
  font-family: var(--roboto-mono);
   min-width: 155px;
    text-align: center;
    cursor: pointer;
}
.arrow-rev{
  transform: rotate(-90deg);
}
.blog-post-content a{
  font-size: 14px;
}
/* .twitter-tweet{
  margin: 0 auto;
} */
.col-dark-green a{
  color: #3ec745 ;
}
.social_icons_header img{
  width: 30px;
}
.share-article{
  display: inline;
  color: #fff;
}
.blog-post-content li{
  color: #8D8D8D;
  font-size: 14px;
  font-family: var(--roboto-mono);
}
.blog-post-content a , .bl-description a{
  color: #3ec745;
}
.blog-post-content h5{
  font-size: 18px;
  font-family: var(--roboto-mono);
}
.content-ss img{
      width: 400px;
      margin: 40px 0;
}
.ss-res img{
      width: 440px;
      margin: 20px 0;
}
.bda-content img{
  width: 100%;
  margin: 20px 0;
}
.blog-post-content br{
  line-height: 1.6;
}
.blog-post-content video{
    backdrop-filter: blur(1px);
}
.bc-tags a{
  color: #8D8D8D;
}
.def-font-head{
  font-size: 25px;
}
[data-tag].active {
  color: #fff !important;
  border: 1px solid #fff ;
}
 .overlay {
  position: absolute;
  pointer-events: none;
  user-select: none;
  width: 150px;
  height: 150px;
  border-radius: 100%;
  filter: blur(60px);
  background-color: #3ec745;
  opacity: 0.5 !important;
  visibility: hidden;
}
.overlay-wrapper {
  position: relative;
}
.overlay-wrapper:hover .overlay {
  visibility: visible;
}
.bl-inside .bl-tag .active-tags{
  border:1px solid #3ec745;
  color: #3ec745 !important;
}
::selection {
  background: #fff;
  color: black;
}
::-moz-selection {
  background: #fff;
  color: black;
}
.blog-post-content b{
    color: #d3d3d3;
}
.blog-post-content li b{
    color: #d3d3d3;
}
.blog-post-content li {
  font-weight: 300;
}
b{
    color: #d3d3d3;
}
blockquote{
  font-family: var(--roboto-mono-italic);
  font-size: 14px;
  color: #c4c4c4;
  margin-bottom: 1rem;
  display: inline-block;
}
.disconnected{
  width: 600px;
}
::selection {
  background: #fff;
  color: black;
}
::-moz-selection {
  background: #fff;
  color: black;
}
.txt-frmt-b{
  font-weight: 600 !important;
  font-size: 13px;
}
.line-through{
  text-decoration: line-through;
}
.list-style-none{
  list-style-type: none;
}
.inline-code{
  background-color: #2e2e2e;
  padding: 3px 7px;
  color: #d3d3d3;
  font-family: var(--roboto-mono);
  font-size: 14px;
}