.wider_nav-scnt {
  background: rgba(255, 255, 255, 0.85) !important;
}
.about-hero-section {
  position: relative;
  width: 100%;
  height: 960px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.about-hero-section .hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 960px;
  z-index: 0;
}
.about-hero-section .hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-hero-section .hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
  padding-bottom: 60px;
}
.about-hero-section .hero-content .hero-title-wrapper {
  margin-bottom: 5px;
}
.about-hero-section .hero-content .hero-title {
  font-size: 38px;
  font-weight: 400;
  color: #f8faff;
  display: block;
  margin-bottom: 39px;
}
.about-hero-section .hero-content .hero-titlet {
  font-size: 20px;
  color: #ffffff;
  letter-spacing: 2px;
}
.about-hero-section .hero-content .hero-subtitle {
  font-size: 20px;
  color: #fff;
  letter-spacing: 1px;
  margin-bottom: 124px;
}
html {
  scroll-behavior: smooth;
}
.case-study-page {
  width: 100%;
  background-color: #f8fbff;
  padding-bottom: 163px;
}
.case-study-page .sticky-nav {
  width: 100%;
  display: flex;
  align-items: center;
  padding-top: 70px;
}
.case-study-page .sticky-nav .nav-container {
  width: 1280px;
  margin: 0 auto;
  box-sizing: border-box;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.case-study-page .sticky-nav .nav-container .nav-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 40px;
}
.case-study-page .sticky-nav .nav-container .nav-links li a {
  text-decoration: none;
  font-size: 18px;
  color: #666;
  padding-bottom: 10px;
  position: relative;
  transition: color 0.3s;
}
.case-study-page .sticky-nav .nav-container .nav-links li a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background-color: #002454;
  transition: width 0.3s;
}
.case-study-page .sticky-nav .nav-container .nav-links li a:hover,
.case-study-page .sticky-nav .nav-container .nav-links li a.active {
  color: #002454;
  font-weight: bold;
}
.case-study-page .sticky-nav .nav-container .nav-links li a:hover::after,
.case-study-page .sticky-nav .nav-container .nav-links li a.active::after {
  width: 100%;
}
.case-study-page .sticky-nav .nav-container .nav-search {
  width: 320px;
  height: 60px;
  border-radius: 30px;
  position: relative;
  background-color: #002454;
  display: flex;
  align-items: center;
  padding: 0 20px;
}
.case-study-page .sticky-nav .nav-container .nav-search input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: #fff;
  font-size: 14px;
}
.case-study-page .sticky-nav .nav-container .nav-search input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}
.case-study-page .sticky-nav .nav-container .nav-search button {
  background: transparent;
  border: none;
  padding: 0;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
}
.case-study-page .sticky-nav .nav-container .nav-search button svg {
  width: 20px;
  height: 20px;
}
.case-study-page .content-wrapper {
  width: 1280px;
  margin: 0 auto;
  box-sizing: border-box;
}
.case-study-page .content-wrapper .category-section {
  padding-top: 90px;
}
.case-study-page .content-wrapper .category-section .category-title {
  font-size: 44px;
  color: #002454;
  font-weight: 700;
  margin: 0 0 60px;
}
.case-study-page .content-wrapper .category-section .case-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.case-study-page .content-wrapper .category-section .case-grid .case-card {
  width: 400px;
  background: #fff;
  overflow: hidden;
  transition: all 0.3s ease;
  cursor: pointer;
  margin-bottom: 20px;
}
.case-study-page .content-wrapper .category-section .case-grid .case-card .card-img {
  width: 400px;
  height: 230px;
  overflow: hidden;
}
.case-study-page .content-wrapper .category-section .case-grid .case-card .card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.case-study-page .content-wrapper .category-section .case-grid .case-card .card-body {
  padding: 25px;
}
.case-study-page .content-wrapper .category-section .case-grid .case-card .card-body .card-title {
  font-size: 20px;
  color: #050505;
  font-weight: 500;
  margin: 0 0 15px;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.case-study-page .content-wrapper .category-section .case-grid .case-card .card-body .card-desc {
  font-size: 16px;
  color: #5E6770;
  line-height: 1.6;
  margin-bottom: 20px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.case-study-page .content-wrapper .category-section .case-grid .case-card .card-body .card-tag {
  display: inline-block;
  font-size: 12px;
  color: #013998;
  padding: 4px 10px;
  border: 1px solid #013998;
  border-radius: 2px;
}
.case-study-page .content-wrapper .category-section .case-grid .case-card:hover .card-title {
  color: #002454;
}
.case-study-page .content-wrapper .category-section .case-grid .case-card:hover .card-img img {
  transform: scale(1.05);
}
::-webkit-input-placeholder {
  font-size: 14px;
  color: #fff;
}
