/* Disable Bootstrap gutters globally */
.row {
    --bs-gutter-x: 0 !important;
    --bs-gutter-y: 0 !important;
}
  
  .page-item__row {

  }

  .page-item__box {
    padding: 6.5px;
  }

/* CARD WRAPPER */
.page-item__wrap {
    border: 2px solid transparent;
    border-radius: 12px;
    overflow: hidden;
    transition: border-color .3s ease, transform .3s ease, box-shadow .3s ease;
    background: #fff;
}

.page-item__wrap:hover {
    border-color: #61bfe8;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

/* IMAGE */
.page-item__thumb {
    overflow: hidden;
}

.page-item__thumb img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform .3s ease;
}

.page-item__wrap:hover .page-item__thumb img,
.page-item__wrap:focus-within .page-item__thumb img {
  transform: scale(1.05);
}

/* CONTENT */
.page-item__content {
    padding: 18px 20px;
    background: #F0F3F7;
    border: 1px solid #D3DDEB;
    border-top: none;
}

/* TITLE */
.page-item__content h4 {
    color: #242C38;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
}

/* DESCRIPTION */
.page-item__content p {
    color: #242C38;
    font-size: 0.75rem;
    font-weight: 300;
    line-height: 1.5;
    letter-spacing: 0.063em;
}

/* SECTION TITLE */
.page-item__title h3 {
    font-size: 24px;
    font-weight: 600;
    color: #242C38;
    border-bottom: 1px solid #D3DDEB;
    padding-bottom: 10px;
    margin-bottom: 25px;
}

/* RESPONSIVE */
/* @media(max-width: 767px){
    .page-item__wrap { margin-bottom: 20px; }
} */



/* Search Form CSS */
.search_form_wrap .search_form_inner{
  position: relative;
}
.search_form_wrap .search_form_inner input {
	border-radius: 5px;
	border: 1.5px solid #D8DDE6;
	background: transparent;
	height: 48px;
	padding: 10px;
	color: #242C38;
	font-size: 14px;
	font-weight: 600;
	line-height: 18px;
	letter-spacing: 1px;
	width: 290px;
  position: relative;
  z-index: 1;
}

.search_form_wrap .search_form_inner input:focus-visible{
  outline: none;
}
.search_form_wrap .search_form_inner input:focus{
  border: 1.5px solid #4EA1DE;
}

.search_form_inner label {
  color: #8995A8;
  font-size: 14px;
  font-weight: 600;
  line-height: 18px;
  letter-spacing: 1px;
  position: absolute;
  left: 17px;
  top: 15px;
  transition: .3s;
}
.search_form_inner button {
  background: none;
  border: none;
  padding: 0;
  position: absolute;
  right: 15px;
  top: 12px;
}
.search_form_inner button:hover{
  background: none;
}
.search_form_inner button:focus{
  background: none;
}
.search_form_inner.search-active label{
    font-size: 10px;
    font-weight: 400;
    line-height: 12px;
    letter-spacing: 0.5px;
    transform: translateY(-11px);
}
.search_form_wrap .search_form_inner.search-active input{
  padding-right: 32px;
}
