@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@600;900&display=swap');

:root {
  --jungle-color: #d2ab67;
  --broun-1: #1e1d16;
}


.article {
  color: var(--broun-1);
}

.buynowpage .blogs h1 {
  font-size: 40px;
  font-weight: 900;
}

.buynowpage .blogs h2 {
  font-size: 30px;
  font-weight: 900;
  color: var(--jungle-color);
}

.buynowpage .blogs h3 {
  font-size: 24px;
  font-weight: 600;
  color: var(--jungle-color);
}

.buynowpage .blogs h1,
.buynowpage .blogs h2,
.buynowpage .blogs h3 {
  font-family: 'Poppins', sans-serif;
  letter-spacing: 1px;
}

.blogs .article strong,
.blogs .article b {
  font-weight: bold;
}

.jungle-color-text {
  color: var(--jungle-color);
}

.blog-main .btn-style {
  position: relative;
  /* z-index: 1; */
  display: inline-block;
  font-size: 16px;
  color: var(--broun-1);
  cursor: pointer;
  overflow: hidden;
  padding: 12px 25px;
  text-align: center;
  min-width: 150px;
  border-left: 2px solid var(--broun-1);
  border-right: 2px solid var(--broun-1);
  font-family: 'Poppins', sans-serif;
  text-decoration: none;
}

.tlr,
.brl {
  display: block;
  width: 100%;
  height: 2px;
}

.blog-main .btn-style .tlr::before,
.blog-main .btn-style .tlr::after,
.blog-main .btn-style .brl::before,
.blog-main .btn-style .brl::after {
  content: '';
  position: absolute;
  height: 2px;
  background: var(--broun-1);
  transition: 0.5s;
}

.blog-main .btn-style .tlr::before,
.blog-main .btn-style .tlr::after {
  top: 0;
}

.blog-main .btn-style .brl::before,
.blog-main .btn-style .brl::after {
  bottom: 0;
}

.blog-main .btn-style .tlr::before {
  width: 10%;
  left: 0;
}

.blog-main .btn-style .tlr::after {
  width: 75%;
  right: 0
}

.blog-main .btn-style .brl::before {
  width: 75%;
  left: 0;
}

.blog-main .btn-style .brl::after {
  width: 10%;
  right: 0
}

.blog-main .btn-style:hover {
  color: var(--broun-1);
}

.blog-main .btn-style:hover .tlr::before,
.blog-main .btn-style:hover .brl::after {
  width: 75%;
}

.blog-main .btn-style:hover .tlr::after,
.blog-main .btn-style:hover .brl::before {
  width: 10%;
}

.line {
  height: 1px;
  margin-top: 47px;
  width: 100px;
  background: var(--broun-1);
  position: absolute;
  left: calc(50% - 50px);
}

.blog-main a {
  color: var(--jungle-color);
  text-decoration: underline;
}

.blog-main .col-lg-6.px-3 h2 a {
  text-decoration: none;
}

.blog-main ul,
.blog-main ol {
  padding-left: 40px;
  margin-bottom: 15px;
}

.blog-main ul {
  list-style: disc;
}

.blog-main ol {
  list-style: decimal;
}

.blog-main ul li,
.blog-main ol li {
  margin-bottom: 2px;
  color: #000;
  font-size: 18px;
  font-weight: 300;
  line-height: 1.5;
}

@media (max-width:767px) {
  .buynowpage .blogs h1 br {
    display: none;
  }
}