.header {
  width: 100%;
  top: 0;
  z-index: 999;
  transition: all 0.3s ease-in-out;
}

.header.fixed {
  position: fixed;
  top: 0;
  background-color: white; /* Or any solid color */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  animation: slideDown 0.4s ease-in-out;
}
@media (max-width: 991px){
.c-logo-wrapper{
  display: contents!important;
}

}

@keyframes slideDown {
  0% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(0);
  }
}
.logo-img{
  object-fit: contain;
  max-height: 70px;
}
.nav-link:hover {
  color: #dc3545 !important;
}
.nav-item {
  padding: 0px 4px;
  font-weight: 600;
}
.hero {
  background-image: url("../images/site/hero.jpg");
  background-size:cover;
  padding: 60px 0px;
  /* filter: grayscale(1); */
   min-height: 75vh; 
  height: auto;
  display:flex;
  align-items:center;
}

.heroo {
  background-image: url("../images/site/hero.jpg");
  background-size: cover;
  background-attachment: fixed;
  background-repeat: no-repeat;
  /* background-position: center; */
}

.hero-quote{
  background-color: #121213c2;
}

.section {
  padding: 60px 0px;
}
a {
  text-decoration: none;
}

.overlay {
  inset: 0 0 0 0;
  background-color: #00000080;
}

.typing {
  border-right: 0.15em solid white;
  white-space: nowrap;
  overflow: hidden;
  display: block;
  text-align: center;
  width: 0;
  animation: typing 3s steps(22, end) forwards, blink 0.75s step-end infinite;
}

/*@keyframes typing {*/
/*  from {*/
/*    width: 0;*/
/*  }*/
/*  to {*/
/*    width: 12ch;*/
  } /*Adjust this based on text length */
/*}*/

/*@keyframes blink {*/
/*  from,*/
/*  to {*/
/*    border-color: transparent;*/
/*  }*/
/*  50% {*/
/*    border-color: white;*/
/*  }*/
/*}*/

.c-btn {
  padding: 12px 40px !important;
}

.c-btn-sm{
    padding: 10px 20px !important;
}

.card{
    justify-content:space-between;
    min-height:410px;
}

.h-about {
  background-image: url(../images/site/breadcrumb-banner.jpg);
  background-size: cover;
  background-attachment: fixed;
  background-repeat: no-repeat;
  /* background-position: center; */
}

.h-blogs-slider{
    min-height:412.7px;
}

.footer{
	background-color: #121213!important;
}

.social ul{
  list-style: none;
  display: flex;
  padding: 0;
  font-size: 24px;
}
.copyright{
	background-color: #dc3545 !important;
}

/*======================================================= ABOUT PAGE ================================================================= */
.about-banner {
  background-size: cover;
  background-position: bottom;
  max-height: 300px;
  min-height: 250px;
  background-repeat: no-repeat;
}

.about-section {
  background-color: #e1ebf5;
}

.about-img {
  width: 100%;
  max-height: 550px;
  object-fit: cover;
}
/* ==============================================================contact-form================================================== */
.mobile_number {
  font-size: 14px;
}
/* ==============================================================Blogs-section================================================== */
.slide-img-link {
  overflow: hidden;
}
.slide-img {
  transition: 500ms ease-in-out;
}
.slide-img-wrapper:hover .slide-img {
  transform: scale(1.5);
}

.blog-date{
	font-size: 12px;
}

.blog-banner{
  background-image: url('../images/site/breadcrumb-banner.jpg');
}
.swiper-button-prev,.swiper-button-next{
  width: calc(var(--swiper-navigation-size)/ 20* 20);
  border-radius: 50%;
  background-color: #dc3545;
  color: #eaedf0;
}

.swiper-button-prev::after,.swiper-button-next::after{
  font-size: 14px;
}

@media(max-width: 768px){
    .about-banner, .card{
        min-height:auto;
    }
    
}