/* Main body part */
.customers-hero{
 background-color:#CCEEF2;
}
.customers-hero-wrapper{
  padding:6.75rem 3rem 6.75rem;
	display:flex;
	flex-direction:column;
	row-gap:5.875rem;
	position:relative;
  background: var(--Hero-Linear-Gradient, linear-gradient(180deg, rgba(204, 238, 242, 0.15) 10.18%, rgba(0, 79, 95, 0.23) 38.2%, rgba(204, 238, 242, 0.12) 98.23%));}

.customers-hero-top{
	display:flex;
	justify-content:center;
	align-items:center;
	flex-direction:column;
	max-width: 75rem;
	margin:0 auto;
}
.customers-hero-top-title{
	font-size: 5rem;
	font-weight: 800;
	text-align:center;
	margin-bottom: 1.5rem;
	color:#004f5f;
  line-height: 5.85rem; /* 117% */
}
.customers-hero-top-subtitle{
  color:#004F5F;
  font-size: 1.25rem;
  font-weight: 800;
  line-height: 2.25rem; /* 150% */
  margin-bottom: 1rem;
}
.customers-hero-top-copy{
	font-size: 1.375rem;
	font-weight: 500;
	line-height: 2.0625rem; /* 150% */
	text-align: center;
	color:#37464F;
}

@media(max-width: 120rem) {
.customers-hero-wrapper{
		padding: 2.75rem 2.375rem 5rem;
      gap: 3.375rem;
	}
 .customers-hero-top-title{
		font-size: 3.5rem;
    line-height: 4.095rem
	}
}

@media(max-width: 48rem) {
  	.customers-hero-wrapper{
		 padding:2.125rem 1.375rem 3.375rem;
     gap: 2.75rem;
	}
  .customers-hero-top-title{
		font-size:3.125rem;
    line-height: 4.095rem;
	}
}
 

@media(max-width: 25.8rem) {

  .customers-hero-top-title{
		font-size: 2.5rem;
    line-height: 3rem;
	}
  .customers-hero-top-subtitle {
    text-align: center;
  }
}



/* Search */

.blog-search-section {
padding: 2rem 0;  
}
/* Style for search input */
#blog-search-form input[type="text"] {
	width: 100%;
  max-width: 900px;
	display: block;
  margin: 0 auto;
	font-size: 1rem;
	padding: 0.625rem 1rem 0.625rem 3.5rem;
	color: #37464f;
	border-radius:0.625rem;
	background-image:url(https://www.stibosystems.com/hubfs/2020wot/_icons/icon_magnifying_glass_search_2c.png);
	background-repeat: no-repeat;
	background-size: 1.5rem;
	background-position: 0.938rem 50%;
	height:3rem;
	border: 1px solid #D6DADB;
}
#blog-search-results h3{
  margin: 0!important;
  padding: 2rem 1rem 1rem 2.5rem;
  display:inline-block;
  position:relative;
  font-size: 1.5rem;
}
#blog-search-results h3::before{
  content: '';
  background-color: #00BFD8;
  height: 3px;
  width: calc(100% - 2.5rem);
  position: absolute;
  bottom: 0;
  left: 2.5rem;
}
#blog-search-results h3::after{
  content: '';
  background-color: #fff;
  height: 3px;
  width: 3px;
  position: absolute;
  bottom: 0;
  right: 4px
}


#blog-search-form input[type="text"]::placeholder {
  color:#D6DADB;
}


#blog-search-form input[type="text"]:focus {
  outline: none;
}

/* Style for search results container */
.blog-search-results-container {
  position: absolute;
  top: 85%;
  max-height: 70vh;
  overflow-y: auto;
  background-color: #fff;
  max-width: 900px;
  border-radius: 0.625rem;
  width: 100%;
  transform: translateX(-50%);
  left: 50%;
  box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.25);
  opacity:0;
  transition: opacity 0.4s ease, transform 0.4s ease;
}

  .blog-search-results-container::-webkit-scrollbar {
	width: 0.275rem;
}

.blog-search-results-container::-webkit-scrollbar-track {
	background-color: transparent;
}

.blog-search-results-container::-webkit-scrollbar-thumb {
	background-color: #004f5f;
	border-radius: 0.625rem;
}

.blog-search-results-container .post-card {
  display: flex;
  align-items: center;
  padding: 1.5rem 2.5rem;
  color: #004f5f;
  text-decoration: none;
  transition: all 0.3s ease;
}

.blog-search-results-container .post-card:hover {
  background-color:  rgba(204, 238, 242, 0.5);
}

.blog-search-results-container .post-card-content {
  flex: 1 1 auto;
}

.blog-search-results-container .post-card-content h4 {
  margin: 0;
  color: #1B2327;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.5rem;
}

.post-card.animate-in {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.5s , transform 0.4s;
}
.post-card.animate-in.visible {
  opacity: 1;
  transform: translateY(0);
}
.blog-search-results-container.visible{
  opacity:1;
	z-index:100;
  margin: 0 auto;
}
.post-meta{
  font-size:1rem;
}

.post-caard-content hr{
  background-image: url(https://www.stibosystems.com/hubfs/2020wot/line%20with%20dot%20ocean.png);
  background-position: 100% 0;
  background-repeat: no-repeat;
  border-top: none!important;
  border: 0;
  height: 4px;
}

.pagination {
  display: flex;
  justify-content: center;
  margin-top: 20px;
  padding-bottom:1rem;
  gap:1rem;
}

.pagination a {
  padding: 10px 20px;
  border-radius: 5px;
  color: #fff;
  background-color: #004f5f;
  text-decoration: none;
  margin-right: 10px;
  transition: background-color 0.2s ease-in-out;
  font-weight:500;
}

.pagination a:hover {
  background-color: #ccdbdf;
  color:#004f5f;
}

.pagination .prev {
  margin-right: 0;
}

.pagination .next {
  margin-left: 0;
}

@media(max-width:900px){

  .blog-search-results-container {
    width: 90%;
  }
  
@media(max-width:650px){
  .blog-search-results-container.visible {
    top: 90%; 
}
}


