.pagi { width:100%;display:flex;align-items:center;justify-content:center; }
.result-item { border-bottom: 1px solid #ccc; padding: 10px; min-height: 50px; }
.pagination-link {   transition: transform 0.3s ease;   margin: 0 4px; text-decoration: none; color: rgba(0,0,0,0.55); font-weight:bold;cursor: pointer; }

.pagination-link:hover { transform: scaleX(150%) scaleY(150%);    }

.pagination-link.active { font-weight: bold; color: #000; }
.result_link { color:#00488d; font-weight:bold; text-decoration: none; font-size: 18px;  display:flex; align-items:center;  }
.result_div { font-size: 14px; width: 700px; }




.all_div {
	border: 1px solid rgba(0,0,0,0.25);
	border-top: 0;
	border-right: 0;
	border-left: 0;
	padding: 30px;
	

}




.header3 {
	position: fixed;
	background-color: #00488d;
	width: 100%;
	height: 80px;
	top: 0px;
	z-index: 30;
}


.all_div {
  opacity: 0;
  transform: translateX(-30px) scale(1);
  filter: blur(2px);
  transition: 
    opacity 0.6s ease-out,
    transform 0.6s ease-out,
    filter 0.6s ease-out;
  will-change: opacity, transform, filter;
}

.all_div.animated {
  opacity: 1;
  transform: translateX(0) scale(1);
    filter: blur(0);
}
