/* Variable */
.page-blogs {
  position: relative;
  width: 100%;
  overflow-x: hidden;
}

.page-blogs .banner .box-text {
  left: 10vw;
  z-index: 2;
  transform: translateY(-50%);
}
@media (max-width: 1549px) {
  .page-blogs .banner .box-text {
    left: 8vw;
  }
}
@media (max-width: 1024px) {
  .page-blogs .banner .box-text {
    left: 5vw;
  }
}
@media (max-width: 767px) {
  .page-blogs .banner .box-text {
    left: 20px;
  }
}
.page-blogs .list-post {
  padding: 5vw 8vw ;
  background: #F2F2F2;
}
@media (max-width: 1549px) {
  .page-blogs .list-post {
    padding: 4vw 8vw 4vw;
  }
}
@media (max-width: 1024px) {
  .page-blogs .list-post {
    padding: 30px 5vw;
  }
}
@media (max-width: 767px) {
  .page-blogs .list-post {
    padding: 30px 20px 0;
  }
}
.page-blogs .list-post .post .post-inner {
  gap: 0px;
}
@media (max-width: 1024px) {
  .page-blogs .list-post .post .post-inner {
    gap: unset;
  }
  .page-blogs .list-post-new >.post:not(:last-child){
    border-bottom: 2px solid #EDEDED ;
  }
}

@media (max-width: 1024px) {
  .page-blogs .list-post .post .post-content {
    margin-top: 20px;
  }
}
.page-blogs .list-post .post .post-content .post-title {
  margin-bottom: 20px;
}

.page-blogs .list-post .post .post-content .post-meta {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}
@media (max-width: 1024px) {
  .page-blogs .list-post .post .see-more {
    padding-bottom: 20px;
  }
}
@media (max-width: 1024px) {
  .page-blogs .list-post .post {
    margin-bottom: 30px;
  }
}

.page-blogs .mbt-4 {
  margin-bottom: 30px;
}
.page-blogs .pagination {
  display: flex;
  margin: 0 auto 30px;
  justify-content: center;
  align-items: center;
}
@media (max-width: 768px) {
  .page-blogs .pagination {
    margin-top: 20px;
    margin-bottom: 20px;
  }
}
.page-blogs .pagination a {
  margin: 10px;
  color: #000000;
  border-radius: 3px;
  padding: 0px 10px;
  background: #EDEDED;
}
.page-blogs .pagination a:hover {
  background: #BD3945;
  color: #fff;
}
.page-blogs .pagination .current {
  background: #BD3945;
  color: #fff;
  border-radius: 3px;
  padding: 0px 10px;
}
.page-blogs .pagination .current:hover {
  color: #fff;
}

 
  
  h2{
      font-weight: 600;
      line-height: 125.3%;
      text-align: center;
  }
  h3{
      font-weight: 700;
      line-height: 125.3%;
      text-align: center;
  }


  .loadMoreBtn {
  display: block;
  }
  .loadMoreBtn .loadMoreBtn-label{
    
    position: absolute;
    bottom: 0;
    left: 50%;
    background-repeat: no-repeat;
    background-size: contain;
    width: 12vw;
    height: 60px;
    background-position: center;
    transform: translateX(-50%);
    align-items: center;
    display: flex;
    justify-content: center;
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 134%;
    text-align: center;
    text-transform: uppercase;
    color: #BD3945;
  }
 
  @media(max-width:1024px){
    .loadMoreBtn{
      width: 80vw;
      bottom: 20px;
    }
    
    .loadMoreBtn .loadMoreBtn-label{
      width: 200px;
    }
    
  }


.singlePost {
  margin-bottom: 30px;
}

.singlePost:not(:last-child) {
  margin-bottom: 25px;
  padding-bottom: 15px;
}

.singlePost__inner {
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (max-width: 639px) {
  .singlePost__inner {
    display: block;
  }
}

.singlePost__img {
  overflow: hidden;
  width: 29%;
}

@media screen and (max-width: 991px) {
  .singlePost__img {
    width: 46%;
  }
}

@media screen and (max-width: 639px) {
  .singlePost__img {
    width: 100%;
  }
}

.singlePost__img a {
  display: block;
}

.singlePost__img a img {
  -webkit-transition: 0.3s ease;
  -o-transition: 0.3s ease;
  -moz-transition: 0.3s ease;
  transition: 0.3s ease;
  width: 100%;
}

.singlePost__img a:hover img {
  -webkit-transform: scale(1.05);
     -moz-transform: scale(1.05);
      -ms-transform: scale(1.05);
       -o-transform: scale(1.05);
          transform: scale(1.05);
}

.singlePost__information {
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  padding-left: 50px;
  width: 71%;
}

@media screen and (max-width: 991px) {
  .singlePost__information {
    display: block;
    padding-left: 30px;
    width: 54%;
  }
}

@media screen and (max-width: 639px) {
  .singlePost__information {
    padding-left: 0;
    padding-top: 20px;
    width: 100%;
  }
}

.singlePost__textInformation {
  padding-right: 10%;
  width: 58%;
}

@media screen and (max-width: 991px) {
  .singlePost__textInformation {
    width: 100%;
  }
}

.singlePost__readMore {
  width: 42%;
}

@media screen and (max-width: 991px) {
  .singlePost__readMore {
    margin-top: 30px;
    width: auto;
  }
}

.singlePost__title {
  color: #2b2b2b;
  font-family: "SVN-Gilroy";
  font-size: 18px;
  line-height: 1.35;
  margin: 0 0 10px 0;
  text-transform: none;
}

@media (max-width: 1280px) {
  .singlePost__title {
    font-size: 14px;
  }
}

.singlePost__title a {
  color: inherit;
}

.singlePost__title a:hover {
  color: #a93927;
}

.singlePost__description {
  color: #333;
  display: none;
  text-align: justify;
}

.singlePost__description *:last-child {
  margin-bottom: 0;
}

.singlePost__meta {
  color: #979797;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.16em;
  margin: 30px 0 0 0;
}

@media screen and (max-width: 991px) {
  .singlePost__meta {
    margin-top: 10px;
  }
}

.singlePost__buttonReadMore {
  border: none;
  color: #fff;
  display: inline-block;
  font-family: "SVN-Gilroy";
  font-size: 15px;
  font-weight: 500;
  height: 44px;
  width: 190px;
  text-align: center;
  text-transform: uppercase;
  background: -webkit-linear-gradient(182.57deg, #ff8a1f -5.87%, #e73125 112.26%);
  background: -moz-linear-gradient(182.57deg, #ff8a1f -5.87%, #e73125 112.26%);
  background: -o-linear-gradient(182.57deg, #ff8a1f -5.87%, #e73125 112.26%);
  background: linear-gradient(267.43deg, #ff8a1f -5.87%, #e73125 112.26%);
  -webkit-box-shadow: 0px 4px 80px rgba(222, 79, 35, 0.5);
     -moz-box-shadow: 0px 4px 80px rgba(222, 79, 35, 0.5);
          box-shadow: 0px 4px 80px rgba(222, 79, 35, 0.5);
  -webkit-border-radius: 30px;
     -moz-border-radius: 30px;
          border-radius: 30px;
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media screen and (max-width: 1499px) {
  .singlePost__buttonReadMore {
    font-size: 13px;
    height: 40px;
    line-height: 40px;
  }
}

@media screen and (max-width: 1199px) {
  .singlePost__buttonReadMore {
    font-size: 12px;
  }
}

@media screen and (max-width: 767px) {
  .singlePost__buttonReadMore {
    height: 38px;
    line-height: 38px;
    font-size: 12px;
    min-width: 120px;
  }
  .singlePost__buttonReadMore:before {
    width: 45px;
  }
  .singlePost__buttonReadMore span {
    padding: 0 15px;
  }
}

.singlePost__buttonReadMore:before {
  display: none;
  content: "";
  width: 60px;
  height: 100%;
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  border-right: 1px solid #a82b16;
  background: url(../../images/button--icon--plus.svg) center center no-repeat;
}

@media screen and (max-width: 1499px) {
  .singlePost__buttonReadMore:before {
    width: 50px;
  }
}

@media screen and (max-width: 767px) {
  .singlePost__buttonReadMore:before {
    width: 40px;
  }
}

.singlePost__buttonReadMore span {
  padding: 0 35px;
}

@media screen and (max-width: 1499px) {
  .singlePost__buttonReadMore span {
    padding: 0 15px;
  }
}

.singlePost__buttonReadMore:hover {
  color: #fff;
}

.page-blogs .xem-them {
  text-align: center;
}

.page-blogs .xem-them .xem-them-button {
  background: #a93927;
  color: #fff;
  display: inline-block;
 font-family: "SVN-Gilroy";
  padding: 14px 48px;
}

.page-blogs .xem-them .xem-them-button:hover {
  background: #802b1d;
}

.page-blogs .swiper-pagination-bullets {
  margin: 30px 0 0 0;
  position: static;
  text-align: center;
  width: 100%;
}

@media screen and (max-width: 639px) {
  .page-blogs .swiper-pagination-bullets {
    margin-top: 15px;
  }
}

.page-blogs .swiper-pagination-bullets .swiper-pagination-bullet {
  background: none;
  -webkit-border-radius: 0;
     -moz-border-radius: 0;
          border-radius: 0;
  /* override */
  display: inline-block;
  font-size: 0;
  height: 13px;
  line-height: 13px;
  margin: 0 8px !important;
  /* override */
  opacity: 1;
  /* override */
  outline: none;
  text-align: center;
  -webkit-transform: rotate(45deg);
     -moz-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
       -o-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transition: 0.3s ease;
  -o-transition: 0.3s ease;
  -moz-transition: 0.3s ease;
  transition: 0.3s ease;
  vertical-align: middle;
  width: 13px;
}

.page-blogs .swiper-pagination-bullets .swiper-pagination-bullet.swiper-pagination-bullet-active, .page-blogs .swiper-pagination-bullets .swiper-pagination-bullet:hover {
  background: #ffdb6b;
}

.page-blogs .swiper-pagination-bullets .swiper-pagination-bullet.swiper-pagination-bullet-active:before, .page-blogs .swiper-pagination-bullets .swiper-pagination-bullet:hover:before {
  display: none;
}

.page-blogs .swiper-pagination-bullets .swiper-pagination-bullet:before {
  background: #555;
  content: "";
  display: inline-block;
  height: 8px;
  vertical-align: middle;
  width: 8px;
}



@media (max-width: 767px) {
  .page-blogs .pagination {
    margin-top: 0;
    padding-top: 0;
  }
}

/* PAGE TIN TUC
-----------------------------*/
.sectionHighLight {
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-bottom: 2px solid #ebebeb;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 60px;
  padding-bottom: 100px;
}

@media screen and (max-width: 1499px) {
  .sectionHighLight {
    padding-bottom: 70px;
  }
}

@media screen and (max-width: 991px) {
  .sectionHighLight {
    display: block;
  }
}

@media screen and (max-width: 639px) {
  .sectionHighLight {
    margin-bottom: 0px;
    padding-bottom: 40px;
  }
}

.sectionHighLight__box--large {
  padding-right: 20px;
  width: 60%;
}

@media screen and (max-width: 1499px) {
  .sectionHighLight__box--large {
    width: 60.5%;
  }
}

@media screen and (max-width: 1399px) {
  .sectionHighLight__box--large {
    width: 61%;
  }
}

@media screen and (max-width: 1199px) {
  .sectionHighLight__box--large {
    width: 55%;
  }
}

@media screen and (max-width: 1024px) {
  .sectionHighLight__box--large {
    width: 60%;
  }
}

@media screen and (max-width: 991px) {
  .sectionHighLight__box--large {
    margin-bottom: 35px;
    padding-right: 0;
    width: 100%;
  }
}

.sectionHighLight__box--small {
  width: 40%;
}

@media screen and (max-width: 1499px) {
  .sectionHighLight__box--small {
    width: 39.5%;
  }
}

@media screen and (max-width: 1399px) {
  .sectionHighLight__box--small {
    width: 39%;
  }
}

@media screen and (max-width: 1199px) {
  .sectionHighLight__box--small {
    width: 45%;
  }
}

@media screen and (max-width: 1024px) {
  .sectionHighLight__box--small {
    width: 35%;
  }
}

@media screen and (max-width: 991px) {
  .sectionHighLight__box--small {
    width: 100%;
  }
}

.sectionHighLightPostLarge__inner {
  position: relative;
}

.sectionHighLightPostLarge__img a {
  display: block;
}

.sectionHighLightPostLarge__img img {
  width: 100%;
}

.sectionHighLightPostLarge__info {
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  bottom: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  left: 0;
  max-width: 50%;
  padding: 20px;
  position: absolute;
  top: 0;
  width: 320px;
}

@media screen and (max-width: 639px) {
  .sectionHighLightPostLarge__info {
    max-width: 100%;
    position: relative;
    width: 100%;
  }
}

.sectionHighLightPostLarge__info:before {
  background: -webkit-linear-gradient(182.57deg, #ee5324 -5.87%, #e73025 112.26%);
  background: -moz-linear-gradient(182.57deg, #ee5324 -5.87%, #e73025 112.26%);
  background: -o-linear-gradient(182.57deg, #ee5324 -5.87%, #e73025 112.26%);
  background: linear-gradient(267.43deg, #ee5324 -5.87%, #e73025 112.26%);
  bottom: 0;
  color: #fff;
  content: "";
  display: block;
  left: 0;
  opacity: 0.8;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 1;
}

.sectionHighLightPostLarge__title {
  color: #fff;
  font-size: 18px;
  position: relative;
  text-transform: none;
  z-index: 2;
}

.sectionHighLightPostLarge__title a {
  color: inherit;
}

.sectionHighLightPostLarge__title:after {
  background: #fff;
  content: "";
  display: block;
  height: 5px;
  margin-top: 20px;
  width: 60%;
}

.sectionHighLightPostLarge__description {
  text-align: justify;
}

.sectionHighLightPostSmall:not(:last-child) {
  margin-bottom: 20px;
}

@media screen and (max-width: 639px) {
  .sectionHighLightPostSmall:not(:last-child) {
    margin-bottom: 30px;
  }
}

.sectionHighLightPostSmall__inner {
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (max-width: 639px) {
  .sectionHighLightPostSmall__inner {
    display: block;
  }
}

.sectionHighLightPostSmall__img {
  width: 46%;
}

@media screen and (max-width: 639px) {
  .sectionHighLightPostSmall__img {
    width: 100%;
  }
}

.sectionHighLightPostSmall__img a {
  display: block;
}

.sectionHighLightPostSmall__img img {
  width: 100%;
}

.sectionHighLightPostSmall__info {
  padding-left: 40px;
  width: 54%;
}

@media screen and (max-width: 1199px) {
  .sectionHighLightPostSmall__info {
    padding-left: 25px;
  }
}

@media screen and (max-width: 639px) {
  .sectionHighLightPostSmall__info {
    padding-left: 0;
    padding-top: 15px;
    width: 100%;
  }
}

.sectionHighLightPostSmall__title {
  color: #2b2b2b;

  font-size: 18px;
  font-weight: 500;
  text-transform: none;
}

@media screen and (max-width: 1280px) {
  .sectionHighLightPostSmall__title {
    font-size: 16px;
  }
}

.sectionHighLightPostSmall__title:after {
  background: #a93927;
  content: "";
  display: block;
  height: 5px;
  margin-top: 30px;
  width: 60%;
}

@media screen and (max-width: 639px) {
  .sectionHighLightPostSmall__title:after {
    display: none;
  }
}

.sectionHighLightPostSmall__title a {
  color: inherit;
}

.sectionHighLightPostSmall__title a:hover {
  color: #a93927;
}

.sectionHighLightPostSmall__description {
  display: none;
  font-size: 14px;
  letter-spacing: -0.05em;
  text-align: justify;
}

.sectionRelated__title {
  font-size: 30px;
  margin-bottom: 50px;
  text-transform: uppercase;
}

@media screen and (max-width: 1499px) {
  .sectionRelated__title {
    font-size: 27px;
  }
}

@media screen and (max-width: 1280px) {
  .sectionRelated__title {
    font-size: 25px;
  }
}

@media screen and (max-width: 639px) {
  .sectionRelated__title {
    font-size: 20px;
    margin-bottom: 35px;
    text-align: center;
  }
}

.sectionRelated .flex {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
     -moz-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.sectionRelated .flex .postContainer {
  width: 75%;
}

@media (max-width: 767px) {
  .sectionRelated .flex .postContainer {
    width: 100%;
    margin-top: 30px;
  }
}

.sectionRelated .flex .postContainer .singlePost_img {
  width: 40%;
}

.sectionRelated .flex .postContainer .singlePost__information {
  width: 60%;
}

.sectionRelated .flex .postContainer .singlePost__textInformation {
  width: 100%;
  padding-right: 0;
}

.sectionRelated .flex .sidebar {
  width: 25%;
  position: relative;
  padding-left: 30px;
}

@media (max-width: 767px) {
  .sectionRelated .flex .sidebar {
    padding-left: 0;
    width: 100%;
    margin-top: 30px;
  }
}

.sectionRelated .flex .sidebar .singlePost__inner {
  display: block;
}

.sectionRelated .flex .sidebar .singlePost__img {
  width: 100%;
}

.sectionRelated .flex .sidebar .singlePost__information {
  width: 100%;
  padding-left: 0px;
  margin-top: 15px;
}

.sectionRelated .flex .sidebar .singlePost__textInformation {
  width: 100%;
  padding-right: 0px;
}

@media (max-width: 1024px) {
  .sectionRelated .flex .sidebar .singlePost__meta {
    display: none;
  }
}

.sectionRelated .flex .sidebar .singlePost__date {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
     -moz-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.sectionRelated .flex .sidebar .singlePost:nth-child(n+3) .singlePost__img {
  display: none;
}

.sectionRelated .flex .sidebar .singlePost:not(:last-child) {
  margin-bottom: 15px;
}

.sectionRelated .tin-lien-quan-separator {
  background: -webkit-gradient(linear, left top, right top, from(rgba(196, 196, 196, 0)), color-stop(43.36%, rgba(196, 196, 196, 0.5)), to(rgba(196, 196, 196, 0)));
  background: -webkit-linear-gradient(left, rgba(196, 196, 196, 0) 0%, rgba(196, 196, 196, 0.5) 43.36%, rgba(196, 196, 196, 0) 100%);
  background: -moz-linear-gradient(left, rgba(196, 196, 196, 0) 0%, rgba(196, 196, 196, 0.5) 43.36%, rgba(196, 196, 196, 0) 100%);
  background: -o-linear-gradient(left, rgba(196, 196, 196, 0) 0%, rgba(196, 196, 196, 0.5) 43.36%, rgba(196, 196, 196, 0) 100%);
  background: linear-gradient(90deg, rgba(196, 196, 196, 0) 0%, rgba(196, 196, 196, 0.5) 43.36%, rgba(196, 196, 196, 0) 100%);
  width: 100%;
  height: 1px;
  margin-top: 0px;
  margin-bottom: 35px;
  position: relative;
  left: -8%;
}

.sectionRelated .vertical-line {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 1px;
  height: 90%;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(196, 196, 196, 0)), color-stop(43.36%, rgba(196, 196, 196, 0.5)), to(rgba(196, 196, 196, 0)));
  background: -webkit-linear-gradient(rgba(196, 196, 196, 0) 0%, rgba(196, 196, 196, 0.5) 43.36%, rgba(196, 196, 196, 0) 100%);
  background: -moz-linear-gradient(rgba(196, 196, 196, 0) 0%, rgba(196, 196, 196, 0.5) 43.36%, rgba(196, 196, 196, 0) 100%);
  background: -o-linear-gradient(rgba(196, 196, 196, 0) 0%, rgba(196, 196, 196, 0.5) 43.36%, rgba(196, 196, 196, 0) 100%);
  background: linear-gradient(rgba(196, 196, 196, 0) 0%, rgba(196, 196, 196, 0.5) 43.36%, rgba(196, 196, 196, 0) 100%);
}

@media (max-width: 767px) {
  .sectionRelated .vertical-line {
    display: none;
  }
}

.page-news .page-title {
  margin: 0 0 40px 0;
  text-align: center;
}

.page-news .page-title h1 {
  color: #00407a;
  display: inline-block;
  font-size: 30px;
  font-weight: bold;
  margin: 0;
  padding-bottom: 25px;
  position: relative;
  text-transform: uppercase;
}

.page-news .page-title h1:before, .page-news .page-title h1:after {
  background: #b9a334;
  content: "";
  display: block;
  left: auto;
  position: absolute;
  right: 0;
  z-index: 9;
}

.page-news .page-title h1:before {
  bottom: 10px;
  height: 8px;
  width: 60%;
}

.page-news .page-title h1:after {
  bottom: 0;
  height: 4px;
  width: 40%;
}

.archive-description {
  margin: 15px 0 0 0;
  text-align: center;
}

/* SINGE POST
-----------------------------*/

.page-single-blog .page-content:after {
  clear: both;
  content: "";
  display: block;
  height: 0;
  line-height: 0;
  visibility: hidden;
}

.page-single-blog .sunshine-button.xem-het {
  display: none;
}

.single-post-wrapper {
  margin: 0;
}
.single-post-wrapper p:not(:last-child){
  margin-bottom: 12px;
}
.single-post-wrapper .aligncenter{
  margin: 0 auto;
}
.single-post-wrapper .alignright{
  margin-left: auto;
}
.single-post-wrapper img, .single-post-wrapper iframe, .single-post-wrapper video{
  max-width: 100%;
  object-fit: cover;
}
.post-header {
  margin: 0 0 25px 0;
}

.post-excerpt {
  font-weight: bold;
  margin: 0 0 30px 0;
  text-align: justify;
}


.post-description > *:last-child {
  margin-bottom: 0;
}

.post-description h2 {
  font-size: 1.15em;
}

.post-description .wp-caption-text {
  font-size: 0.9em;
  font-style: italic;
  font-weight: 400;
  margin-top: 5px;
  width: 100%;
  text-align: center;
}
.page a:hover, .page a:hover .title_plubgin{
  color: #bd3945;
}


a#loadMore{
  width: 100%;
}
.post .post-thumb a:hover .post-content a {
  color: #fff;
}
.menu-cat li{
  background: #EDEDED;
  color: #000;
}

.menu-cat li.active{
  background: #BD3945;
  color: #fff;
}

.menu-cat li.active:hover{
  background: #EDEDED;
  color: #BD3945;
}
.menu-cat li:hover{
  background: #BD3945;
  color: #fff;
}
.menu-cat li:hover a{
  color: inherit;
}
.breadcrum:before{
  position: absolute;
  content: '';
  background: #fff;
  height: 1px;
  width: calc( 3vw - 10px);
  left: -3vw;
  top: 50%;
  transform: translateY(-50%);
}

.post .post-thumb{
  border-radius: 10px;
  overflow: hidden;
}

.post .post-thumb::after {
      /* background: rgba(0, 0, 0, 0) linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%) repeat scroll 0 0;
      content: "";
      display: block;
      height: 100%;
      position: absolute;
      right: -75%;
      top: 0;
      transform: skewX(-25deg);
      width: 50%;
      z-index: 2; */
  }
 .post .post-thumb:hover::after {
      /* animation: 1s ease 0s normal none 1 running fixedAnim;
      animation: 1s ease 0s normal none 1 running fixedAnim;
      -webkit-animation: 1s ease 0s normal none 1 running fixedAnim;
      -moz-animation: 1s ease 0s normal none 1 running fixedAnim; */
  }
 
@-webkit-keyframes fixedAnim {
    0% {
        right: 125%;
    }
    125% {
        right: 0;
    }
}

@-moz-keyframes fixedAnim {
    0% {
        right: 125%;
    }
    125% {
        right: 0;
    }
}

@keyframes fixedAnim {
    0% {
        right: 125%
    }
    125% {
        right: 0;
    }
}

.page-single-blog .page-content{
    background: #fff;
    margin-top: 0px;
    z-index: 10;
    position: relative;
    padding: 0vw 3vw;
}
@media screen and (max-width: 767px) {
  .page-single-blog .page-content{
    padding: 0px 0px;
  }
}
.page-name .line{
    position: relative;
    width: 6vw;
    height: 2px;
    background: #bd3945;
    margin-right: 15px;
    float: left;
    margin-bottom: 1px;
    bottom: -12px;
}
.page-search{
  padding-bottom: 4vw;
}
.page-search .list-post{
  background: #fff;
}
.page-search .loadMoreBtn .loadMoreBtn-label{
  bottom: 30px;
}
@media(max-width:1024px){
  .page-search{
    padding-bottom: 60px;
  }
}
/* .post:hover .post-thumb:hover::after {
    animation: 1s ease 0s normal none 1 running fixedAnim;
    animation: 1s ease 0s normal none 1 running fixedAnim;
    -webkit-animation: 1s ease 0s normal none 1 running fixedAnim;
    -moz-animation: 1s ease 0s normal none 1 running fixedAnim;
} */
.post:hover .post-title a{
  color: #bd3945;
}