.breadcrumbs-list {
  text-align: center;
}
.loading {
  position: fixed;
  z-index: 999;
  background: rgba(255, 255, 255, 0.7);
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.loading i {
  animation: spin 1s infinite linear;
  color: #0d4b88;
}
.loading img {
  animation: spin 1s infinite linear;
  width: 30px;
}
@-moz-keyframes spin {
  0% {
    -moz-transform: rotate(0deg);
  }
  100% {
    -moz-transform: rotate(360deg);
  }
}
@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
  }
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.page-title {
  text-align: center;
}
#main_content {
  position: relative;
  z-index: 10;
}
.filter-tab-inner ul {
  justify-content: center;
  display: flex;
  flex-wrap: wrap;
  padding: 0;
  margin: 0;
}
.filter-tab-inner ul li {
  list-style: none;
}
.filter-tab-inner ul li a {
  background-color: #e5eef7;
  color: #0d4b88;
  padding: 12px 24px;
  display: block;
  text-transform: uppercase;
  font-weight: 500;
}
.filter-tab-inner ul li.active a {
  background-color: #0d4b88;
  color: #fff;
}
@media (max-width: 767.98px) {
  .filter-tab-inner ul li {
    width: 100%;
  }
}
@media (min-width: 768px) {
  .filter-tab {
    transform: translateY(-50%);
  }
  .filter-tab-inner ul li {
    margin: 0 2px;
  }
  .filter-tab-inner ul li a {
    background-color: #e5eef7;
  }
}
@media (min-width: 1600px) {
  .filter-tab {
    margin: 0 40px;
  }
  .filter-tab ul li a {
    font-size: 16px;
    padding: 12px 32px;
  }
}
.section-news {
  padding: 30px 0 20px;
}
@media (min-width: 1200px) {
  .section-news {
    padding: 30px 0 20px;
  }
}
@media (min-width: 1600px) {
  .section-news {
    padding: 60px 0 40px;
  }
}

/* --- proj  -- */
.proj { 
  background: #f2f2f2;
  margin-bottom: 20px;
}
.proj-detail{
	padding: 10px;
}
.proj .proj-thumb {
  margin-bottom: 5px;
}
.proj .proj-thumb img{
	max-width: 100%;
}
.proj .proj-meta {
  color: #0d4b88;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 5px;
}
.proj .proj-title {
  font-size: 16px;
  line-height: 24px;
  font-weight: 700;
}
.proj .proj-title a {
  color: #0d4b88;
}
.proj .proj-title a:hover {
  color: #c99b52;
}
.proj .proj-link { 
  margin-bottom: 10px;
}
.proj .proj-link a {
  color: #0d4b88;
  display: block;
  font-weight: 700;
}
.proj .proj-link a:hover {
  color: #0d4b88;
}
.proj .proj-content {
  font-weight: 500;
}

/* --- post  -- */
.post {
  padding: 10px;
  background: #f2f2f2;
  margin-bottom: 20px;
}
.post .news-thumb {
  margin-bottom: 5px;
}
.post .news-meta {
  color: #0d4b88;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 5px;
}
.post .news-title {
  font-size: 16px;
  line-height: 24px;
  font-weight: 700;
}
.post .news-title a {
  color: #333;
}
.post .news-title a:hover {
  color: #333;
}
.post .news-link {
  /*border-bottom: 1px solid #0d4b88;*/
  margin-bottom: 10px;
}
.post .news-link a {
  color: #0d4b88;
  display: block;
  font-weight: 700;
}
.post .news-link a:hover {
  color: #0d4b88;
}
.post .news-content {
  font-weight: 500;
}




.read-more__wrapper {
  text-align: center;
}
.read-more-post {
  font-weight: 700;
  color: #0d4b88;
  text-align: center;
  cursor: pointer;
}
.read-more-post:hover {
  color: #0d4b88;
}



@media (min-width: 1200px) {
  .post.full {
    margin-bottom: 20px;
    display: flex;
  }
  .post.full .news-thumb {
    width: 50%;
    margin-bottom: 0;
  }
  .post.full .news-detail {
    width: 50%;
    padding: 30px;
  }
  .post.full .news-title {
    height: auto;
  }
  .post .news-meta {
    font-size: 16px;
  }
  .post .news-link {
    font-size: 16px;
  }
  .post .news-content {
    font-size: 16px;
    line-height: 28px;
  }
  .post .news-title {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    height: 48px;
  }
  .read-more-post {
    font-size: 14px;
  }
}
@media (min-width: 1600px) {
  .post {
    margin-bottom: 30px;
  }
  .post.full {
    margin-bottom: 40px;
  }
  .post.full .news-detail {
    padding: 40px;
  }
  .read-more-post {
    font-size: 16px;
  }
}
#triangle-down {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #e5edf6;
  margin: 0 auto;
}
#triangle-down span {
  width: 0;
  height: 0;
  border-left: 9px solid transparent;
  border-right: 9px solid transparent;
  border-top: 12px solid #0d4b88;
}
#pagination {
  width: 100%;
  margin-top: 30px;
  margin-bottom: 30px;
}
#pagination ul {
  list-style: none;
  padding: 0;
  text-align: center;
  margin: 0 auto;
}
#pagination ul li {
  display: inline-block;
  width: 40px;
  height: 40px;
  margin: 0 auto;
  line-height: 40px;
  text-align: center;
  transition: all 0.25s;
  -webkit-transition: all 0.25s;
  background: #fff;
}
#pagination ul li a {
  display: block;
  height: 100%;
  width: 100%;
  font-size: 13px;
}
#pagination ul li.active {
  background-color: #0d4b88;
  color: #fff;
}
@media (min-width: 1200px) {
  #pagination ul li a {
    font-size: 14px;
  }
  #pagination ul li.active {
    font-size: 14px;
  }
}
@media (min-width: 1600px) {
  #pagination ul li a {
    font-size: 16px;
  }
  #pagination ul li.active {
    font-size: 16px;
  }
}

/******* search ********/
 
  .title-search{
  display: flex;
  align-items: flex-end;
  padding-top: 15px;
  padding-bottom: 20px;
}
@media (min-width: 1200px) {
  .title-search{
    min-height: 380px;
  }
}
@media (max-width: 1199.98px) {
  .title-search{
    padding-top: 50px;
    padding-bottom: 50px;
  }
}
@media (max-width: 791px) {
  .title-search{
    padding-top: 25px;
    padding-bottom: 30px;
  }
  .ser_search{
    width: 100% !important;
  }
}
.title-search h2{
  color: #fff;
  text-shadow: 0px 4px 3px rgba(0,0,0,0.4),
             0px 8px 13px rgba(0,0,0,0.1),
             0px 18px 23px rgba(0,0,0,0.1);
}
@media (min-width: 1200px) {
  #lastsearch{
      background: url('https://asianadanang.vn/wp-content/uploads/2021/03/home-bg.webp') bottom left;
      background-repeat: no-repeat;
      background-size: 100% auto;
  }
}
  .project_filter_wrapper {
    display: flex;
    flex-wrap: wrap;
    background-color: #ffffff;
    border-radius: 3px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 15px -3px, rgba(0, 0, 0, 0.05) 0px 4px 6px -2px;
    margin-top: 10px;
  }

  .project_filter_wrapper .ser_item.key_ser {
    width: 100%;
    height: 70px;
    padding: 15px 27px;
    display: flex;
    justify-content: space-between;
  }

  .project_filter_wrapper .ser_item.key_ser input {
    width: calc(100%);
    background: transparent;
    border: 0;
    outline: 0;
    font-size: 17px; 
  }

  .project_filter_wrapper .ser_item.key_ser button {
    width: 185px;
    height: 40px;
    background-color: #DCA447;
    border-radius: 3px;
    border: 0;
    color: #ffffff;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
  }

@media (min-width: 1200px) {

  .project_filter_wrapper .ser_item {
      width: calc(100% / 3);
  }
}
@media (max-width: 1199.98px) {
  .project_filter_wrapper .ser_item {
      width: calc(100% / 3);
  }
}
@media (max-width: 791px) {
  .project_filter_wrapper .ser_item {
      width: calc(100% / 2);
  }
}
@media (max-width: 361px) {
  .project_filter_wrapper .ser_item {
      width: calc(100% );
  }
}
  .projects {
    margin-top: 30px;
    margin-left: -15px;
    margin-right: -15px;
  }

  .projects .item {
    margin-bottom: 30px;
  }

  .projects .item_wrapper {
    border-radius: 3px;
    overflow: hidden;
    background-color: #ffffff;
  }

  .projects .info {
    padding: 30px;
  }

  .projects .info h4 {
    height: 54px;
  }
   .filter_custom select{ 
    background: transparent;
    -webkit-appearance: none; 
    border: 0; 
    cursor: pointer;
    
  }
  span.text_1{
    padding: 0 0 7px 0;
    color: #0d4b88;;
    font-weight: bold;
    
  }
  ul.pager li { 
    display: block;
    margin: 0 auto;
  }
  @media (min-width: 1200px) {
    ul.pager li {
      width: calc(100% / 3 - 30px);
    }
    span.text_1{
      font-size: 16px;
    }
    .filter_custom select{ 
      font-size: 15px;
    }
  }

  ul.pager li a {
    width: 100%;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #DCA447;
    color: #ffffff;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
  }

   

.filter_custom {
    height: 85px;
    padding: 20px 30px;
    border-top: 1px solid #E4E4E4;
    position: relative;
    display: flex;
    flex-direction: column;
}
@media (max-width: 1300px) {
  .banner-holder .page-title{
    padding-bottom: 4%;
  }
}