.blogbanner {
  padding: 200px 0;
  margin-top: -127px;
  /* background: url(../img/blogbg.jpg) no-repeat bottom right / cover; */
}
.blogbanner .flex {
  min-height: 512px;
}
.blogbanner .head {
  padding-top: 11px;
}
.blogbanner .head h1 {
  font-size: 56px;
  line-height: 76px;
  font-weight: 600;
  max-width: 794px;
  color: #fff;
}
.blogbanner .head p {
  font-size: 20px;
  line-height: 28px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 27px;
  max-width: 731px;
}
.blognews {
  padding: 135px 0;
}
.blognews .head h2 {
  font-size: 48px;
  color: #161616;
  font-weight: 600;
}
.blognews .head h2 span {
  color: #00781e;
}
.blognews .main {
  gap: 2rem 20px;
  margin-top: 58px;
}

.blognews .main .left {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 724/494;
  border-radius: 17px;
  overflow: hidden;
  box-shadow: 0 15px 20px rgba(167, 167, 167, 0.35);
  width: 50.27%;
}
.blognews .main .left a:hover .img img {
  transform: scale(1.03);
}
.blognews .main .left .img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: 0.5s;
  border-radius: 17px;
  overflow: hidden;
}
.blognews .main .left .img.active {
  opacity: 1;
  z-index: 10;
}
.blognews .main .left .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: 0.3s;
}
.blognews .main .right {
  width: 42.777%;
}
.blognews .main .right strong {
  font-size: 18px;
  font-weight: 500;
  color: var(--theme_color);
}
.blognews .main .right div {
  color: #3f3f3f;
  font-size: 16px;
  font-weight: 500;
}
.blognews .main .right p {
  font-size: 22px;
  color: #25292d;
  font-weight: 600;
}
.blognews .main .right .item {
  border-bottom: 1px solid #e1e1e1;
  position: relative;
}
.blognews .main .right .item > a {
  display: block;
  padding: 8px 0 32px;
}
.blognews .main .right .item.active::after {
  width: 217px;
  opacity: 1;
}
.blognews .main .right .item:after {
  content: "";
  position: absolute;
  bottom: -1.5px;
  left: 0;
  width: 0;
  height: 2px;
  opacity: 0;
  transition: 0.3s;
  background-color: var(--theme_color);
}
.blognews .main .right .item:not(:first-child) a {
  padding-top: 46px;
}
.blognews .main .right .meta {
  margin-bottom: 9px;
}
.blognews .main .right .more {
  font-size: 18px;
  color: var(--theme_color);
  display: flex;
  justify-content: flex-end;
  align-items: center;
  column-gap: 8px;
  margin-top: 20px;
  font-weight: 600;
}
.blognews .main .right .more:hover::after {
  transform: translateX(5px);
}
.blognews .main .right .more::after {
  content: "";
  display: block;
  width: 18px;
  height: 15px;
  background: url("../img/r-right.svg") no-repeat;
  background-position: center;
  background-size: contain;
  transition: 0.3s;
}


.archive .bloglatest{
  padding-top: 8rem;
}
.bloglatest {
  padding-top: 28px;
  padding-bottom: 172px;
}
.bloglatest .head .nav ul {
  display: flex;
  align-items: flex-end;
  gap: 28px;
  height: 100%;
  padding-bottom: 6px;
}
.bloglatest .head .nav ul li {
  font-size: 18px;
  font-weight: 600;
  padding-bottom: 7px;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  transition: all 0.3s;
  color: #515151;
}
.bloglatest .head .nav ul li.active,
.bloglatest .head .nav ul li:hover {
  border-color: var(--theme_color);
}
.bloglatest .head .nav ul li.active a,
.bloglatest .head .nav ul li:hover a {
  color: var(--theme_color);
}
.bloglatest .bloglist {
  margin-top: 38px;
}
.bloglatest .bloglist ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px 20px;
}
.bloglatest .bloglist p.center {
  margin-top: 61px;
  min-height: 55px;
}

.single header::after{
  display: none;
}