p{
  margin-bottom: 15px;
  margin-top: 0;
}
p:last-child{
  margin-bottom: 0;
}
.d-flex{
  display: flex;
  flex-wrap: wrap;
}
.mobile-nav-container{
  display: none;
}
.d-flex.gap40{
  gap: 40px;
}
.d-flex.gap40 > div{
  width: calc(33.33% - (80px/3));
}
header.site-header{
  position: fixed;
  background-color: transparent;
  background-image: linear-gradient(180deg, #00000080 0%, #FFFFFF00 100%);
  transition: all 0.3s ease;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  padding: 10px 0 50px;
}
header.site-header.scrolled{
  background: #BE1D2D !important;
  position: fixed;

  z-index: 10;
  transition: all 0.3s ease;
  padding: 10px 0;
}
.admin-bar header.site-header.scrolled{
  top: 32px;
}
header.site-header.scrolled .hfe-site-logo-img{
  height: 50px;
  width: auto !important;
}
.breadcrumb-page span, .breadcrumb-page a{
  color: #fff;
  font-size: 14px;
}
.post-list-container{
  gap: 20px;
}
.post-item{
  width: calc(33.33% - 20px);
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  background-color: #fff;
}
.post-item .post-meta-container{
  gap: 10px;
  margin-bottom: 10px;
}
.post-item .post-thumbnail {
  height: 250px;
  overflow: hidden; 
}
.post-item .post-thumbnail img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.post-item .post-meta-container span, .post-item .post-meta-container a{
  font-size: 12px;
}
.post-item .post-meta-container a{
  color: #BE1D2D;
  font-weight: 600;
}
.post-content-container{
  padding: 20px 20px;

}
.post-item .entry-date{
  color: #666
}
.post-content-container .title-container h3{
  font-size: 18px; 
  margin:0 0 10px;
  line-height:24px ;
}
.post-item .post-excerpt{
  font-size: 14px;
  line-height: 24px;
  color: #999;
}
.post-content-container .title-container h3 a{
  color: #000;
}
.post-item .post-meta-container a:hover{
  color: #BE1D2D;
}
.shadow-layer.show{
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 19;
}
.lang-container{
  position: relative;
}
.lang-container .btn-lang{
  background: #1B1B1B;
  border-radius: 8px;
  color:#fff;
  border: none;
  font-size: 16px;
  font-weight: 600;
  gap: 5px;
  padding: 7px 8px;
  display: flex;
  align-items: center;
  gap: 5px;
  
}
.lang-container .btn-lang img{
  width: 20px;
  height: 18px;
  border-radius: 50%;
}
.lang-container:hover .btn-lang{
  background:  #ccc;
  color: #1B1B1B;
}

.lang-container .lang-list{
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  border-radius: 8px;
  margin: 0;
  list-style: none;
  padding: 0px;
  box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.10);
  overflow: hidden;
}
.lang-container .lang-list li{ 
  cursor: pointer;
  width: 75px;

}
.lang-container .lang-list li:hover{
  background: #f0f0f0;
}
.lang-container .lang-list li a{
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 7px 10px;
  text-decoration: none;
  color: #666;
  font-weight: 700;
	text-transform: uppercase;
}
.lang-list-mobile{
  display: flex;
  gap: 10px;
  list-style: none;
  padding: 20px 0;
  margin: 0;
  justify-content: center;
  align-items: center;
}
.mobile-nav-container .lang-list-mobile li {
  list-style: none;
  border: 0px !important;
  border-radius: 5px;
  background:  #1B1B1B; 
}
.mobile-nav-container .lang-list-mobile li a{
  padding: 5px 10px;
  display: flex;
  align-items: center;
  gap: 5px;
  text-transform: uppercase;
}
.mobile-nav-container .lang-list-mobile li a img{
  width: 20px !important;
  height: auto !important;
}
.lang-list-mobile li.current-lang{
  opacity: 0.5;
}
.lang-list-mobile li.current-lang a{
  cursor: default;
}
@media (max-width: 768px) {
  header.site-header{
    padding: 20px 0;
  }
}