:root {
  --bs-primary-rgb: #b52825;
}

h1,h2,h3,h4,h5,h6 {
  font-family: "Merriweather", serif;
  /* color: #b52825; */
}

/*

.merriweather-<uniquifier> {
  font-family: "Merriweather", serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
  font-variation-settings:
    "wdth" 100;
}


.montserrat-<uniquifier> {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
}
*/

.bg-pattern {
  background-color: #b52825;
  background: url(../images/bg-pattern.png) #b52825;
  background-attachment: fixed;
  background-position: center;
  position: relative;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 35vh;
}
.bg-pattern:before{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 1;
}
.bg-pattern .container{
  max-width: 70%;
  position: relative;
  z-index: 9;
}

.form-control {
    border: 2px solid #b52825;
    color: #b52825;
}

.border {
    border-color: #b52825 !important;
}

.swiper-button-next, .swiper-button-prev {
    color: #ffffff !important;
    background: #333333;
    width: 40px;
    height: 40px;
    border-radius: 5px;
    overflow: hidden;
}

.swiperControls {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 0;
    gap: 20px;
}

.swiperControls .swiper-button-next, .swiperControls .swiper-button-prev {
    position: static;
    margin: 0;
}

.swiper-button-next:after, .swiper-button-prev:after {
    font-size: 25px !important;
}

.bg-hero-gradient {
  /* background: url(../images/bg-pattern.png) repeat 0 0, linear-gradient(263deg, rgba(108, 28, 113, 1) 0%, rgba(234, 246, 255, 1) 38%, rgba(255, 255, 255, 1) 100%); */
  /* background: url(../images/bg-pattern.png) repeat 0 0, linear-gradient(274deg,rgba(108, 28, 113, 1) 2%, rgba(255, 230, 255, 1) 77%); */
  background-color: #eaf6ff;
}

.banner-text {
    position: absolute;
    top: 0;
    left: 0;
    padding: 1rem 3rem;
    max-width: 100%;
    width: 100%;
    height: 100%;
    text-align: center;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
}
.banner-text .cust-btn-grp {
    justify-content: center;
}

.banner-wrappper .banner-text .slider-innerbox{
  width: 60%;
  display: inline-block;
  padding: 0;
  margin: 0;
  border: none;
  outline: none;
  max-width: 70%;
  color: #ffffff;
}

.banner-wrappper .banner-text .slider-innerbox h3,
.banner-wrappper .banner-text .slider-innerbox h1,
.banner-wrappper .banner-text .slider-innerbox h5{
  color: #ffffff;
  text-align: center;
}




@media (min-width: 992px) { 
  /*Sticky top image or content basis content top is considerd with header heoght*/
  .sticky-top-desktop {
    position: sticky;
      top: 120px;
  }
}

body {
  background-color: #eaf6ff;
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  overflow-x: hidden;
  color: #333;
}

h1, h2 {
  font-family: "Merriweather", serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
}

p {
  font-weight: 500;
}

header {
  position: sticky;
    top: 0;
    left: 0;
    z-index: 99;
}

/*animated anchor underline start*/
a {
  text-decoration: none !important;
}
a.animated-underline, a.animated-underline:hover {
  position: relative; /* 1 */
  text-decoration: none; /* 2 */
  display: inline; /* 3 */
}

a.animated-underline::before,
a.animated-underline::after {
  content: '';
  position: absolute; /* 1 */
  top: 100%; /* 1 */
  height: 1px; /* 2 */
  width: 50%; /* 2 */
  transform: scaleX(0); /* 3 */
  transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1); /* 4 */
  background-color: currentcolor; /* 5 */
}
a.animated-underline::before {
  left: 0;
  transform-origin: left;
}
a.animated-underline::after {
  right: 0;
  transform-origin: right;
}
a.animated-underline:active::before,
a.animated-underline:hover::before,
a.animated-underline:active::after,
a.animated-underline:hover::after {
  transform: scaleX(1); /* 1 */
}
/*animated anchor underline end*/

/*animated submit button start*/
.anime-submit {
  font-family: inherit;
  font-size: 20px;
  background: #b52825;
  color: white;
  padding: 0.7em 1em;
  padding-left: 0.9em;
  display: flex;
  align-items: center;
  border: none;
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.2s;
  cursor: pointer;
}

.anime-submit span {
  display: block;
  margin-left: 0.3em;
  transition: all 0.3s ease-in-out;
}

.anime-submit svg {
  display: block;
  transform-origin: center center;
  transition: transform 0.3s ease-in-out;
}

.anime-submit:hover .svg-wrapper {
  animation: fly-1 0.6s ease-in-out infinite alternate;
}

.anime-submit:hover svg {
  transform: translateX(3.5em) rotate(45deg) scale(1.1);
}

.anime-submit:hover span {
  transform: translateX(10em);
}

.anime-submit:active {
  transform: scale(0.95);
}

@keyframes fly-1 {
  from {
    transform: translateY(0.1em);
  }

  to {
    transform: translateY(-0.1em);
  }
}
/*animated submit button end*/

/*animated expand icon button start*/
.expand-icon-button {
  --main-color: #b52825;   /* fallback if not set */

  max-width: fit-content;
  background: var(--main-color);
  color: #fff;
  font-family: inherit;
  padding: 0.35em;
  padding-left: 1.2em;
  font-size: 17px;
  font-weight: 500;
  border-radius: 30px;
  border: none;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  box-shadow: inset 0 0 1.6em -0.6em color-mix(in srgb, var(--main-color) 60%, black);
  overflow: hidden;
  position: relative;
  height: 2.8em;
  padding-right: 40px;
  cursor: pointer;
  text-decoration: none;
}

.expand-icon-button .eb-icon {
  background: #fff;
  margin-left: 1em;
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 2.2em;
  width: 2.2em;
  border-radius: 30px;
  box-shadow: 0.1em 0.1em 0.6em 0.2em color-mix(in srgb, var(--main-color) 70%, black);
  right: 0.3em;
  transition: all 0.3s;
}

.expand-icon-button .eb-icon img {
    max-width: 20px;
    height: 20px;
}

.expand-icon-button .eb-icon svg,
.expand-icon-button .eb-icon i {
  width: 1.1em;
  transition: transform 0.3s;
  color: var(--main-color);
}

.expand-icon-button:hover .eb-icon {
  width: calc(100% - 0.6em);
}

.expand-icon-button:hover .eb-icon svg,
.expand-icon-button:hover .eb-icon i {
  transform: translateX(0.1em);
}

.expand-icon-button:active .eb-icon {
  transform: scale(0.95);
}
/*animated expand icon button end*/

.nav-link {
  font-size: 16px;
  font-weight: 500;
  padding: 14px 15px !important;
  color: var(--primary-color);
  text-transform: capitalize;
  transition: all 0.3s ease-in-out;
}

.navbar-nav .dropdown-menu {
  position: static;
  background: #320b0a;
  padding: 0;
  overflow: hidden;
  /* width: 200px; */
}

.dropdown-item {
  font-size: 16px;
  font-weight: 500;
  padding: 10px 15px !important;
  color: #ffffff;
  text-transform: capitalize;
  transition: all 0.3s ease-in-out;
}

/*Hero BAnner*/

.hero-section {
    /* min-height: calc(100vh - 75px); */
    min-height: auto;
    /* display: flex; */
    width: 100%;
    background: #f9f9f9;
}

.banner-wrappper {
    position: relative;
    width: 100%;
    background-color: rgba(13, 61, 114, 0.7);
}

.hero-section h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: #b52825;
}

.hero-section h3, .hero-section h5 {
  color: #333333;
}

.hero-section h5 {
    font-size: 1.125rem;
    line-height: 1.5;
    margin-top: 20px;
}

.hero-right-img {
    height: 100%;
}

.heroSectionImageWrap {
  height: 100%;
  width: 100%;
}

.heroSectionImageWrap img {
  /* height: 100%;
  width: 100%;
  object-fit: fill; */
}
.btn-appointment {
  background-color: #1e90ff;
  color: white;
  border-radius: 30px;
  font-weight: 600;
  padding: 12px 24px;
}
.btn-appointment:hover {
  background-color: #007bff;
}
.rating {
    font-size: 1.1rem;
    padding: 5px 10px;
    background: #b52825;
    border-radius: 5px;
    display: inline-flex;
    box-shadow: 3px 3px 0px #282828;
}
span.rating-text {
    font-weight: 600;
    color: #b52825;
    display: inline-flex;
    gap: 10px;
}
img.rating-text-logo {
    max-height: 20px;
}
.doctor-card {
    position: absolute;
    bottom: 20%;
    left: 20px;
    background: #fff;
    border-radius: 10px;
    padding: 10px 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 10px;
    animation: exportmoveobject 3s infinite linear alternate;
}
.doctor-card a {
  display: inline-block;
}
@keyframes exportmoveobject{
	50%{
		left: 50px;
	}
}
.doctor-card img {
    width: 100px;
    height: 100px;
    border-radius: 15px;
    object-fit: cover;
}

/*Dental top bar*/
.top-bar {
    background-color: #b52825;
    color: #fff;
}
.top-bar h5 {
   font-family: "Merriweather", serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
}
.top-bar i {
    font-size: 40px;
    color: #ffffff;
}
.appointment-btn {
  background: linear-gradient(to right, #27c0ff, #007bff);
  color: #fff;
  border-radius: 30px;
  padding: 10px 25px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.appointment-btn:hover {
  background: linear-gradient(to right, #1aa3e8, #0056b3);
  color: #fff;
}
.divider {
  border-left: 1px solid rgba(255, 255, 255, 0.2);
  height: 100%;
}

/*About Content*/
.about-section {
  background-color: #fff;
  position: relative;
}

.badge-circle {
  width: 120px;
  height: 120px;
  background-color: #1e90ff;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-weight: bold;
  font-size: 14px;
  padding: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.badge-circle .circle-text {
  transform: rotate(-15deg);
}

@media (max-width: 768px) {
  .badge-circle {
    width: 90px;
    height: 90px;
    font-size: 12px;
  }
}

/*Services Section*/
.services-section {
  background-color: #f0f8ff;
}

.ico-wrap {
    max-width: 70px;
}

.ico-wrap img {
    max-height: 70px;
}

.service-card {
    background-color: #fff;
    border-radius: 20px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 350px;
}

.service-card .expand-icon-button, .team-member .expand-icon-button, .blog-card .expand-icon-button {
    max-width: 100%;
}

.service-card i {
    font-size: 40px;
    color: #b52825;
}
  .know-more-service {
    text-decoration: none;
  }

  .know-more-service i {
    font-size: 25px;
  }

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

/*visit clicnic*/
.visit-clinic-section .overlay {
  background: rgba(0, 0, 0, 0.5);
}

.visit-clinic-section h2 {
  color: #fff;
  font-size: 2rem;
}

.counter {
    font-size: 2rem;
    color: #b52825;
}

.counter.plus::after {
  content: "+";
  margin-left: 5px;
}

.clinic-banner-stats {
  background: url(../images/video-bg.png) no-repeat 0 0 transparent;
  background-attachment: fixed;
  background-size: cover;
  background-position: bottom right;
  overflow: hidden;
}

.clinic-banner-stats.ratio::before {
  background-color: rgba(0,0,0,.3);
}

a.play-video-icon.video-link {
    font-size: 1rem;
    border: 1px solid #ffffff;
    border-radius: 5px;
    padding: 10px 20px;
    color: #ffffff;
    max-width: 300px;
    width: 100%;
    display: inline-block;
    text-transform: uppercase;
    transition: all .5s ease;
    font-weight: 600;
}

a.play-video-icon.video-link:hover {
  background-color: #fff;
  border: 1px solid #b52825;
  color: #b52825;
}

.bg-fixed-home-section {
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bg-fixed-home-section::before {
    content: "";
    background: rgba(0, 0, 0, .5);
    position: absolute;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.content-cbs {
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.content-cbs a.play-video-icon i {
    color: #fff;
    font-size: 3.5rem;
}

/*why us section*/
.why-choose-section {
  background-color: #f0f8ff;
  position: relative;
}

.tooth-image-wrapper {
    position: relative;
    width: 250px;
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tooth-image-wrapper img {
  z-index: 2;
  position: relative;
}

.circle-bg {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(173, 216, 230, 0.15); /* light blue */
  z-index: 1;
  box-shadow: var(--bs-box-shadow) !important;
}

.feature-item {
    padding: 20px;
    position: relative;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
    box-shadow: var(--bs-box-shadow) !important;
}

@media (max-width: 768px) {
  .tooth-image-wrapper {
    margin-top: 2rem;
    margin-bottom: 2rem;
  }

  .circle-bg {
    width: 200px;
    height: 200px;
  }
}

/*what we do*/
.what-we-do-section .accordion-button {
  font-size: 1rem;
  background-color: transparent;
  color: #0d1b2a;
}

.what-we-do-section .accordion-button:focus {
  box-shadow: none;
}

.what-we-do-section .accordion-button:not(.collapsed)::after {
  transform: rotate(180deg);
}

.what-we-do-section .accordion-button::after {
  margin-left: auto;
}

.accordion-item {
    background-color: transparent;
}

/*team section*/
.team-section {
  background-color: #f0f8ff; /* soft blue background */
}

.team-member img {
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 4/5;
}

.team-member {
    transition: transform 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.team-member h6 {
    font-size: 1.2rem;
    color: #6b1c70;
    font-family: "Merriweather", serif;
}

.team-member:hover {
  transform: translateY(-5px);
}

/*testimonials*/
.testimonial-section {
  background-color: #f8fbfd;
}

.rating-box {
  bottom: 20px;
  left: 20px;
  max-width: 250px;
  font-size: 0.9rem;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.stars {
  font-size: 1.2rem;
}

.swiper-button-next,
.swiper-button-prev {
  color: #0d6efd;
}

.swiper-slide {
  height: auto;
}

/*blogs section*/
.blogs-section {
  background-color: #e8f4fb;
}

.blog-card {
  border: none;
  background: transparent;
}

.image-wrapper {
  cursor: pointer;
}

.image-wrapper img {
  transition: transform 0.3s ease;
  display: block;
  border-radius: 1rem;
}

.image-wrapper:hover img {
  transform: scale(1.05);
}

.overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: rgba(0, 0, 0, 0.5);
  padding: 10px 20px;
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.3s ease;
  color: white;
  font-weight: 600;
}

.image-wrapper:hover .overlay {
  opacity: 1;
}

.view-btn {
  font-size: 1.1rem;
}

.card-title {
  margin-top: 1rem;
  font-size: 1.1rem;
}

.read-more {
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

.read-more i {
  font-size: 1.2rem;
}

.btn-primary {
  background-color: #0d6efd;
  border: none;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.btn-primary:hover {
  background-color: #084cd9;
}

/*contact form section*/
.contact-section {
  background-color: #fff;
  padding: 3rem 1rem;
}

.contact-info h2 {
  font-size: 2.5rem;
  line-height: 1.2;
}

.contact-info small {
  letter-spacing: 2px;
}

.btn-primary {
    background-color: #b52825;
    border: none;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: #921d78;
    text-decoration: none;
}

.bi {
  vertical-align: middle;
}

/*footer*/
.footer-section {
    /* background: url(../images/bg-pattern.png) repeat 0 0 #b52825; */
    background: #b52825;
    color: #ffffff !important;
}

.footer-section a.footer-link {
    color: #ffffff !important;
    text-decoration: none !important;
    transition: color 0.3s ease;
    font-size: .8rem;
    font-weight: 600;
}

.footer-section a.footer-link:hover {
  color: #3b7aa9;
  text-decoration: underline;
}

.footer-section h5 {
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.footer-section p,
.footer-section li {
  font-weight: 300;
  font-size: 0.95rem;
}

hr {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

h3.logo img {
    background: #ffffff;
    padding: 10px;
    border-radius: 20px;
}

.fees-section {
    background: url(../images/video-bg.png) no-repeat 0 0 transparent;
    background-size: cover;
    background-attachment: fixed;
    position: relative;
    background-color: rgba(0, 0, 0, 0.2);
}

.fees-section::before {
    content: "";
    background-color: rgba(0,0,0,.6);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
}

/*contact info section*/
.contact-info-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

.contact-text {
  flex: 1 1 400px;
  min-width: 320px;
}

.section-label {
  color: #3b7aa9;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 2px;
  margin-bottom: 0.5rem;
}

.section-title {
  font-weight: 700;
  font-size: 2.5rem;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.section-title span {
  color: #3b7aa9;
}

.section-description {
  font-weight: 400;
  color: #5c6b73;
  font-size: 1rem;
  max-width: 400px;
  margin-bottom: 2rem;
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
}

.card {
  background: #fff;
  border-radius: 15px;
  padding: 1.5rem;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
}

.icon {
    background: #e3f1ff;
    display: flex;
    padding: 10px;
    border-radius: 50%;
    margin-bottom: 1rem;
    height: 62px;
    width: 62px;
    align-items: center;
    justify-content: center;
}

.card h4 {
  margin-bottom: 0.5rem;
  color: #0f324f;
  font-weight: 700;
}

.card p {
  color: #6c7a89;
  font-weight: 400;
}

.map-container {
  flex: 1 1 500px;
  min-width: 320px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
  border: 0;
  display: block;
  width: 100%;
  height: 450px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .contact-info-section {
    flex-direction: column;
  }

  .map-container {
    height: 300px;
  }

  .map-container iframe {
    height: 300px;
  }
}

/*contact form section*/
.contact-section {
}

.contact-image img {
  width: 100%;
  max-width: 450px;
  border-radius: 20px;
  object-fit: cover;
  display: block;
}

.contact-form-container {
  flex: 1;
  min-width: 320px;
}

.contact-label {
  color: #3b7aa9;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 2px;
  margin-bottom: 0.5rem;
}

.contact-title {
  font-weight: 700;
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.contact-title span {
  color: #3b7aa9;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.input-row {
  display: flex;
  gap: 1rem;
}

.input-row input {
  flex: 1;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 10px;
  font-size: 1rem;
  outline: none;
  transition: border-color 0.3s ease;
}

.input-row input:focus {
  border-color: #3b7aa9;
}

textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 10px;
  font-size: 1rem;
  resize: vertical;
  outline: none;
  transition: border-color 0.3s ease;
}

textarea:focus {
  border-color: #3b7aa9;
}

.submit-btn {
  align-self: flex-start;
  background-color: #3b7aa9;
  color: #fff;
  border: none;
  padding: 12px 25px;
  border-radius: 30px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: background-color 0.3s ease;
}

.submit-btn:hover {
  background-color: #2a5c7b;
}

.arrow {
  font-weight: 900;
  font-size: 1.2rem;
  line-height: 1;
}

/* Responsive */

@media (max-width: 768px) {
  .contact-section {
    flex-direction: column;
  }

  .input-row {
    flex-direction: column;
  }

  .input-row input {
    width: 100%;
  }

  .contact-image img {
    max-width: 100%;
  }
}

.nav-tabs {
  gap: 10px;
}

.nav-tabs .nav-link {
  color: #b52825;
  border: 1px solid #b52825 !important;
  border-radius: 5px !important;
}

.nav-tabs .nav-link.active, .nav-tabs .nav-link:hover {
    background: #b52825;
    color: #ffffff;
    border: 1px solid #b52825 !important;
}

.faqs-section .accordion {
    background: transparent !important;
}

.faqs-section .accordion .accordion-item {
    background: #323232 !important;
    border: 0 !important;
    margin-bottom: 10px;
    border-radius: 15px !important;
    color: #fff;
    overflow: hidden;
}

.faqs-section .accordion .accordion-item button.accordion-button {
    background: #b52825;
    color: #fff;
    font-weight: 500;
}

/* Default state (collapsed) */
.faqs-section .accordion .accordion-item .accordion-button::after {
    filter: invert(1); /* No inversion, default color */
  }

  /* Inverted color when expanded */
.faqs-section .accordion .accordion-item .accordion-button:not(.collapsed)::after {
    filter: invert(1); /* Inverts the color of the arrow */
  }

  /* Optional: Change the background color of the accordion button */
.faqs-section .accordion .accordion-item .accordion-button {
    background-color: #4b0b5d;
    color: white; /* Text color */
  }


  .map-wrapper {
    width: 100%;
    height: 100%;
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
}

.breadcrumb-item+.breadcrumb-item::before {
    color: rgb(255 255 255);
}

/*sticky right*/

.sticky-icons {
    position: fixed;
    top: 35%;
    right: 0;
    transform: translateY(-50%);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.icon-s {
    display: flex;
    align-items: center;
    background: #fff;
    padding: 6px;
    border-radius: 6px 0 0 6px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
    text-decoration: none;
    color: #000;
    overflow: hidden;
    width: 200px; /* default: only icon visible */
    transition: all 0.3s ease;
    gap: 10px;
    transform: translateX(78%)
}

.icon-s img {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
}

.icon-s span {
    opacity: 1;
    transition: opacity 0.3s ease;
    font-size: .8rem;
}

.icon-s:hover {
    transform: translateX(0%)
}

.icon-s:hover span {
    opacity: 1;
}

/* Optional brand background colors */
.icon-s.google { background: #fff; }
.icon-s.practo { background: #2b2d42; color: #fff; }
.icon-s.whatsapp { background: #25d366; color: #fff; }


.gallery-item {
    display: block; /* hidden until Load More or filter */
}
.gallery-title {
    text-align: center;
    font-size: 14px;
    margin-top: 5px;
}


/************************************/
/***     08. Why Choose Us css    ***/
/************************************/

.why-choose-us{
  position: relative;
  background: var(--secondary-color) url('../images/why-choose-us-bg.svg') no-repeat;
  background-position: top center;
  background-size: auto;
  padding: 10px 0;
}

.why-choose-us .why-choose-box-2 {
    text-align: left;
}

.why-choose-us .icon-star-image{
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(10px, -50%);
}

.why-choose-box-1{
  position: relative;
  z-index: 1;
}

.why-choose-box-1 .why-choose-item{
  flex-direction: row-reverse;
}

.why-choose-box-1 .why-choose-item .icon-box{
    margin-left: 15px;
  margin-right: 0;
}

.why-choose-box-1 .why-choose-item .why-choose-content{
  text-align: right;
}

.why-choose-item{
    display: flex;
    align-items: center;
  margin-bottom: 60px;
}

.why-choose-item:last-child{
  margin-bottom: 0;
}

.why-choose-item .icon-box{
    margin-right: 15px;
}

.why-choose-item .icon-box img{
  max-width: 48px;
}

.why-choose-content{
    width: calc(100% - 63px);
}

.why-choose-content h3{
  font-size: 20px;
  font-weight: 600;
  text-transform: capitalize;
  margin-bottom: 5px;
}

.why-choose-content p{
  margin: 0;
}

.why-choose-image{
  position: relative;
  z-index: 1;
}

.why-choose-image img{
  max-width: 100%;
}

/*////*/
.what-we-do-section{
  background-color: #ffffff !important;
}

a[rel="noreferrer"]{
  display: none !important;
}
.why-choose-us .col-lg-4.order-lg-1.order-md-2.order-1 {
    align-items: center;
    display: flex;
}
.services-section .service-card .ico-wrap {
  max-width: 100%;
  text-align: center;
}
.services-section .service-card .card-cont{
  text-align: center;
}
.modal-backdrop.show{
  z-index: 9 !important;
}
.modal .close {
  position: absolute;
  right: -10px;
  top: -10px;
  width: 36px;
  height: 36px;
  background: #b52825;
  color: #ffffff !important;
  font-size: 28px;
  line-height: 30px;
  border: none !important;
  border-radius: 50% !important;
  cursor: pointer;
}

.modal .form-control {
  border: 1px solid #a4a4a4;
  color: var(--bs-body-color);
}

.wpcf7-form textarea.form-control{
  min-height: 150px;
  height: 100px;;
}

.wpcf7-form .col-md-4{
  width: 100% !important;
  max-width: 100% !important;
}


.header-practo-appointment {
    background: #212529 !important;
    box-shadow: none;
    margin-left: 10px;
    width: auto !important;
    min-width: inherit;
}
.header-practo-appointment .eb-icon{
  box-shadow: none !important;
}
.testimonial-section{
  position: relative;
}
.testimonial-section:after {
  content: "";
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  height: 90px;
  background-color: #f8fbfd;
  z-index: 99;
}

.footer-contact-section .list-unstyled a{
  text-decoration: none;
  color: inherit;
}

/*////*/

.howit-works-buttontext {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 30px 0 0 0;
}

.howit-works-buttontext .inner-box{
  width: 100%;
  max-width: 680px;
  margin: 0 auto;
  display: inline-block;
  padding: 0;
}
.howit-works-buttontext .button-block{
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0;
}


.navbar-expand-lg .navbar-collapse{
  justify-content: flex-end !important;
}


.navbar-expand-lg .navbar-nav .nav-link{
  font-family: "Merriweather", serif;
  font-size: 18px;
}

.top-bar p a i {
  font-size: 12px;
  min-width: 16px !important;
  display: inline-block;
}

.top-bar p a i.bi-telephone{
  display: none;
}


/*/////*/

.mobile-footer-sticky-block{
  display: none;
  opacity: 0;
}

@media (max-width: 992px){

  .sticky-icons{
    right: 20px;
  }

}

@media (max-width: 767px){

  .sticky-icons{
    right: 0;
  }

  .images-compare-label{
    font-size: 7px !important;
    padding: 3px 5px;
  }

  .mobile-footer-sticky-block{
    width: 100%;
    display: flex;
    opacity: 1;
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 9999;
    padding: 5px 15px;
    margin: 0;
    max-width: 100%;
    border: none;
    outline: none;
    text-decoration: none;
    background-color: #f8f9fa;
    border-top: 1px solid #cccccc;
  }

  .mobile-footer-sticky-block .footer-sticky-buttons {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-content: flex-start;
    gap: 10px;
    text-align: center;
    padding: 0;
    margin: 0;
    border: none;
    outline: none;
  }

  .mobile-footer-sticky-block a{
    color: inherit;
    width: 100%;
    padding: 0;
    margin: 0;
    border: none;
    outline: none;

  }
  .mobile-footer-sticky-block .sticky-btn{
    width: 100%;
    display: inline-block;
    max-width: 100%;
    padding: 0;
    margin: 0;
    font-size: 0.9rem;
  }

  .mobile-footer-sticky-block .icon-box{
    width: 100%;
    padding: 5px;
    margin: 0;
    border: none;
    outline: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
    text-align: center;
    align-items: center;
    border-radius: 8px;
  }

  .mobile-footer-sticky-block .icon-box .icon{
    display: inline-block;
    width: 32px;
    height: 32px;
    background-color: transparent;
    font-size: 18px;
    color: #333333;
    padding: 0;
    margin: 0;
  }

  .mobile-footer-sticky-block .icon-box .icon i{
    font-size: 20px;
  }

  .mobile-footer-sticky-block .icon-box .text{
    width: 100%;
    padding: 0;
    margin: 0;
    text-align: center;
    font-size: 0.7rem;
    line-height: 1.2;
    font-weight: 500;
  }

  .mobile-footer-sticky-block .icon-box:hover, 
  .mobile-footer-sticky-block .icon-box:active,
  .mobile-footer-sticky-block .icon-box:focus{
    background-color: #b52825;
  }

  .mobile-footer-sticky-block .icon-box:hover .icon i, 
  .mobile-footer-sticky-block .icon-box:active .icon i,
  .mobile-footer-sticky-block .icon-box:focus .icon i{
    color: #ffffff;
  }

  .mobile-footer-sticky-block .icon-box:hover .text, 
  .mobile-footer-sticky-block .icon-box:active .text,
  .mobile-footer-sticky-block .icon-box:focus .text{
    color: #ffffff;
  }

  .top-bar .container-lg{
    padding: 0 !important;
  }

  .top-bar .icon-box{
    display: none !important;
  }

  .top-bar .border-start.border-end{
    border: none !important;
  }
  .top-bar .align-items-center {
    justify-content: flex-start !important;
    text-align: left;
  }

  .hero-section h1 {
    font-size: 1.1rem !important;
  }

  .top-bar p a i.bi-telephone{
    display: inline-block;
  }


}

/*////*/

.footer-contact-section .footer-contact-image{
  background-color: #000;
  background-image: url(../images/contact.jpeg);
  background-position: center;
  background-size: cover;
}
.footer-contact-section .footer-contact-image img{
  max-width: 100%;
}

.footer-contact-section .map-wrapper {
    width: 100%;
    height: 200px;
}
.footer-contact-section .book-right-contactbox {
    padding: 0 0 0 50px;
}

#bookAppointment .modal-dialog{
  max-width: 800px !important;
}
#bookAppointment .popup-imagebox{
  background-color: #000;
  background-image: url(../images/book-now-popup.png);
  background-position: center;
  background-size: cover;
}

.footer-contact-section

#bookAppointment .popup-imagebox{
  background-color: #000;
  background-image: url(../images/book-now-popup.png);
  background-position: center;
  background-size: cover;
}

@media (min-width: 768px){
  .footer-contact-section .footer-contact-image img{
   display: none;
  }
}


@media (max-width: 480px){
  .small, small {
    font-size: 13px !important;
    line-height: 1.5;
  }

  .hero-section h5 {
    font-size: 0.9rem !important;
  }

  .h5, h5 {
    font-size: 1.2rem !important;
  }
  .h2, h2 {
    font-size: 1.5rem !important;
  }

  
  .visit-clinic-section h2 {
    color: #fff;
    font-size: 1.5rem;
  }
  .content-cbs{
    padding: 30px;
    max-width: 100%;
  }

  .why-choose-box-1 .why-choose-item {
    flex-direction: revert;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    margin: 0 0 30px 0;
    gap: 15px;
    text-align: center;
  }
  .why-choose-box-1 .why-choose-item {
    flex-direction: column !important;
  }

  .why-choose-content h3{
    text-align: center;
  }
  .why-choose-content p{
    text-align: center;
  }



}




/* ? ============================== BLOG LIST PAGE ============================== */
/* =============== BLOG LIST SECTION =============== */
.tb-blog-list-section {
    margin: 0 0 100px;
}
.tb-blog-list-section .tb-blog-list-section-content .tb-blog-list-section-card1 {
    background: #fff;
    box-shadow: 0px 0px 35px 0px rgba(0, 0, 0, 0.06);
    padding: 40px;
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
    overflow: hidden;
    position: sticky;
    top: 120px;
}
.tb-blog-list-section .tb-blog-list-section-content .tb-blog-list-section-card1 .tb-recent-post-title,
.tb-blog-list-section .tb-blog-list-section-content .tb-blog-list-section-card1 .tb-about-us-title {
    font: 500 26px/28px 'Oswald', Helvetica, sans-serif;
    letter-spacing: 0.2px;
    margin: 0 0 25px;
    text-transform: uppercase;
}
.tb-blog-list-section .tb-blog-list-section-content .tb-blog-list-section-card1 .tb-recent-post-card {
    display: flex;
    align-items: start;
    margin: 0 0 30px;
}
.tb-blog-list-section .tb-blog-list-section-content .tb-blog-list-section-card1 .tb-recent-post-card.tb-card2 {
    margin: 0 0 40px;
}
.tb-blog-list-section .tb-blog-list-section-content .tb-blog-list-section-card1 .tb-recent-post-card .tb-recent-post-img {
    width: 50%;
}
.tb-blog-list-section .tb-blog-list-section-content .tb-blog-list-section-card1 .tb-recent-post-card .tb-recent-post-img img {
    width: 100%;
}
.tb-blog-list-section .tb-blog-list-section-content .tb-blog-list-section-card1 .tb-recent-post-section .tb-recent-post-cards-section .tb-recent-post-card .tb-recent-post-img,
.tb-blog-list-section .tb-blog-list-section-content .tb-blog-list-section-card1 .tb-blog-list-card-img,
.tb-blog-list-section .tb-blog-list-section-content .tb-blog-list-section-card1 .tb-about-us-section .tb-about-us-img,
.tb-blog-list-section .tb-blog-list-section-content .tb-blog-list-section-card2 .tb-blog-card .tb-blog-card-img {
    display: inline-block;
    overflow: hidden;
    overflow: hidden;
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
}
.tb-blog-list-section .tb-blog-list-section-content .tb-blog-list-section-card1 .tb-recent-post-section .tb-recent-post-cards-section .tb-recent-post-card .tb-recent-post-img img,
.tb-blog-list-section .tb-blog-list-section-content .tb-blog-list-section-card1 .tb-blog-list-card-img img,
.tb-blog-list-section .tb-blog-list-section-content .tb-blog-list-section-card1 .tb-about-us-section .tb-about-us-img img,
.tb-blog-list-section .tb-blog-list-section-content .tb-blog-list-section-card2 .tb-blog-card .tb-blog-card-img img {
    transition: all 400ms ease-in-out;
    -webkit-transition: all 400ms ease-in-out;
    -moz-transition: all 400ms ease-in-out;
    -ms-transition: all 400ms ease-in-out;
    -o-transition: all 400ms ease-in-out;
    width: 100%;
}
.tb-blog-list-section .tb-blog-list-section-content .tb-blog-list-section-card1 .tb-recent-post-section .tb-recent-post-cards-section .tb-recent-post-card:hover .tb-recent-post-img img,
.tb-blog-list-section .tb-blog-list-section-content .tb-blog-list-section-card1 .tb-recent-post-section .tb-recent-post-cards-section .tb-recent-post-card:focus .tb-recent-post-img img,
.tb-blog-list-section .tb-blog-list-section-content .tb-blog-list-section-card1 .tb-recent-post-section .tb-recent-post-cards-section .tb-recent-post-card:active .tb-recent-post-img img,
.tb-blog-list-section .tb-blog-list-section-content .tb-blog-list-section-card1 .tb-blog-list-card-img:hover img,
.tb-blog-list-section .tb-blog-list-section-content .tb-blog-list-section-card1 .tb-blog-list-card-img:focus img,
.tb-blog-list-section .tb-blog-list-section-content .tb-blog-list-section-card1 .tb-blog-list-card-img:active img,
.tb-blog-list-section .tb-blog-list-section-content .tb-blog-list-section-card1 .tb-about-us-section:hover .tb-about-us-img img,
.tb-blog-list-section .tb-blog-list-section-content .tb-blog-list-section-card1 .tb-about-us-section:focus .tb-about-us-img img,
.tb-blog-list-section .tb-blog-list-section-content .tb-blog-list-section-card1 .tb-about-us-section:active .tb-about-us-img img,
.tb-blog-list-section .tb-blog-list-section-content .tb-blog-list-section-card2 .tb-blog-card:hover .tb-blog-card-img img,
.tb-blog-list-section .tb-blog-list-section-content .tb-blog-list-section-card2 .tb-blog-card:focus .tb-blog-card-img img,
.tb-blog-list-section .tb-blog-list-section-content .tb-blog-list-section-card2 .tb-blog-card:active .tb-blog-card-img img {
    transform: scale(1.05);
    -webkit-transform: scale(1.05);
    -moz-transform: scale(1.05);
    -ms-transform: scale(1.05);
    -o-transform: scale(1.05);
}
.tb-blog-list-section .tb-blog-list-section-content .tb-blog-list-section-card1 .tb-recent-post-card .tb-recent-post-card-content {
    margin: 0 0 0 20px;
}
.tb-blog-list-section .tb-blog-list-section-content .tb-blog-list-section-card1 .tb-recent-post-card .tb-recent-post-card-content .tb-recent-post-card-title {
    font-family: "Merriweather", serif;
    font-size: 18px;
    letter-spacing: 0.5px;
    margin: 0 0 10px;
    text-transform: none;
}
.tb-blog-list-section .tb-blog-list-section-content .tb-blog-list-section-card1 .tb-recent-post-card .tb-recent-post-card-content .tb-post-date {
    font: 500 15px/17px 'Roboto', Helvetica, sans-serif;
    letter-spacing: 0.2px;
    color: #b52825;
    margin: 0 0 10px;
    text-decoration: underline;
}
.tb-blog-list-section .tb-blog-list-section-content .tb-blog-list-section-card1 .tb-recent-post-card .tb-recent-post-card-content .tb-post-detail {
    font: 400 15px/22px 'Roboto', Helvetica, sans-serif;
    letter-spacing: 0.2px;
    color: #717171;
}
.tb-blog-list-section .tb-blog-list-section-content .tb-blog-list-section-card1 .tb-blog-list-card-img {
    margin: 0 0 30px;
}
.tb-blog-list-section .tb-blog-list-section-content .tb-blog-list-section-card1 .tb-about-us-section .tb-about-us-img {
    margin: 0 0 10px;
}
.tb-blog-list-section .tb-blog-list-section-content .tb-blog-list-section-card1 .tb-about-us-section .tb-about-us-detail {
    font: 400 16px/26px 'Roboto', Helvetica, sans-serif;
    letter-spacing: 0.2px;
    color: #383838;
    margin: 0 0 15px;
}
.tb-blog-list-section .tb-blog-list-section-content .tb-blog-list-section-card1 .tb-about-us-section .tb-common-btn,
.tb-blog-list-section .tb-blog-list-section-content .tb-blog-list-section-card2 .tb-blog-card .tb-blog-card-content .tb-common-btn {
    padding: 12px 24px;
}
.tb-blog-list-section .tb-blog-list-section-content .tb-blog-list-section-card2 .tb-blog-card {
    margin: 0 0 30px;
    background: #fff;
    box-shadow: 0px 0px 35px 0px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
    padding: 15px;
}
.tb-blog-list-section .tb-blog-list-section-content .tb-blog-list-section-card2 .tb-blog-card:last-child {
    margin: 0;
}
.tb-blog-list-section .tb-blog-list-section-content .tb-blog-list-section-card2 .tb-blog-card .tb-blog-list-blog-col {
    padding: 0;
}
.tb-blog-list-section .tb-blog-list-section-content .tb-blog-list-section-card2 .tb-blog-card .tb-blog-card-img {
    position: relative;
    z-index: 2;
    display: inline-block;
    vertical-align: top;
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
}
.tb-blog-list-section .tb-blog-list-section-content .tb-blog-list-section-card2 .tb-blog-card .tb-blog-card-img::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    transition: all 400ms ease-in-out;
    -webkit-transition: all 400ms ease-in-out;
    -moz-transition: all 400ms ease-in-out;
    -ms-transition: all 400ms ease-in-out;
    -o-transition: all 400ms ease-in-out;
    z-index: 3;
}
.tb-blog-list-section .tb-blog-list-section-content .tb-blog-list-section-card2 .tb-blog-card:hover .tb-blog-card-img::before,
.tb-blog-list-section .tb-blog-list-section-content .tb-blog-list-section-card2 .tb-blog-card:focus .tb-blog-card-img::before,
.tb-blog-list-section .tb-blog-list-section-content .tb-blog-list-section-card2 .tb-blog-card:active .tb-blog-card-img::before {
    background: rgba(0, 0, 0, 0.5);
}
.tb-blog-list-section .tb-blog-list-section-content .tb-blog-list-section-card2 .tb-blog-card .tb-blog-card-img .tb-blog-list-search-icon {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    width: 50px;
    height: 50px;
    background: #ffffff;
    color: #111111;
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    transform: scale(2);
    -webkit-transform: scale(2);
    -moz-transform: scale(2);
    -ms-transform: scale(2);
    -o-transform: scale(2);
    z-index: 5;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 400ms ease-in-out;
    -webkit-transition: all 400ms ease-in-out;
    -moz-transition: all 400ms ease-in-out;
    -ms-transition: all 400ms ease-in-out;
    -o-transition: all 400ms ease-in-out;
}
.tb-blog-list-section .tb-blog-list-section-content .tb-blog-list-section-card2 .tb-blog-card .tb-blog-card-img .tb-blog-list-search-icon:hover,
.tb-blog-list-section .tb-blog-list-section-content .tb-blog-list-section-card2 .tb-blog-card .tb-blog-card-img .tb-blog-list-search-icon:focus,
.tb-blog-list-section .tb-blog-list-section-content .tb-blog-list-section-card2 .tb-blog-card .tb-blog-card-img .tb-blog-list-search-icon:active {
    background: #b52825;
    color: #111;
}
.tb-blog-list-section .tb-blog-list-section-content .tb-blog-list-section-card2 .tb-blog-card:hover .tb-blog-card-img .tb-blog-list-search-icon,
.tb-blog-list-section .tb-blog-list-section-content .tb-blog-list-section-card2 .tb-blog-card:focus .tb-blog-card-img .tb-blog-list-search-icon,
.tb-blog-list-section .tb-blog-list-section-content .tb-blog-list-section-card2 .tb-blog-card:active .tb-blog-card-img .tb-blog-list-search-icon {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: scale(1);
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
}
.tb-blog-list-section .tb-blog-list-section-content .tb-blog-list-section-card2 .tb-blog-card .tb-blog-card-content {
    padding: 0 30px;
}
.tb-blog-list-section .tb-blog-list-section-content .tb-blog-list-section-card2 .tb-blog-card .tb-blog-card-content .tb-blog-date {
    display: flex;
    font: 400 15px/17px 'Roboto', Helvetica, sans-serif;
    letter-spacing: 0.3px;
    margin: 0 0 15px;
}
.tb-blog-list-section .tb-blog-list-section-content .tb-blog-list-section-card2 .tb-blog-card .tb-blog-card-content .tb-blog-date span {
    color: #111;
}
.tb-blog-list-section .tb-blog-list-section-content .tb-blog-list-section-card2 .tb-blog-card .tb-blog-card-content .tb-blog-date i {
    color: #b52825;
    width: 16px;
    height: 16px;
    margin: 0 5px 0 0;
    display: flex;
    justify-content: center;
    align-items: center;
}
.tb-blog-list-section .tb-blog-list-section-content .tb-blog-list-section-card2 .tb-blog-card .tb-blog-card-content .tb-blog-title {
    font-size: 20px;
    line-height: 1.5;
    font-family: "Merriweather", serif;
    letter-spacing: 0.2px;
    padding: 0 0 17px;
    margin: 0 0 15px;
    text-transform: none;
    position: relative;
}
.tb-blog-list-section .tb-blog-list-section-content .tb-blog-list-section-card2 .tb-blog-card .tb-blog-card-content .tb-blog-title::before {
    content: '';
    position: absolute;
    top: auto;
    left: 0;
    right: auto;
    bottom: 0;
    width: 60px;
    height: 3px;
    background: #b52825;
}
.tb-blog-list-section .tb-blog-list-section-content .tb-blog-list-section-card2 .tb-blog-card .tb-blog-card-content .tb-blog-detail {
    font: 400 16px/28px 'Roboto', Helvetica, sans-serif;
    letter-spacing: 0.1px;
    color: #545454;
    margin: 0 0 15px;
}
@media (max-width: 1499px) {
    .tb-blog-list-section .tb-blog-list-section-content .tb-blog-list-section-card1 {
        padding: 30px;
    }
    .tb-blog-list-section .tb-blog-list-section-content .tb-blog-list-section-card1 .tb-recent-post-title,
    .tb-blog-list-section .tb-blog-list-section-content .tb-blog-list-section-card1 .tb-about-us-title {
        font-size: 22px;
        line-height: 24px;
    }
    .tb-blog-list-section .tb-blog-list-section-content .tb-blog-list-section-card1 .tb-recent-post-card .tb-recent-post-card-content .tb-recent-post-card-title {
        font-size: 18px;
        line-height: 20px;
        margin: 0 0 10px;
    }

    .tb-blog-list-section .tb-blog-list-section-content .tb-blog-list-section-card1 .tb-recent-post-card .tb-recent-post-card-content .tb-recent-post-card-title a{
      font-family: inherit;
      color: inherit;
      font-size: inherit;
    }

    .tb-blog-list-section .tb-blog-list-section-content .tb-blog-list-section-card1 .tb-recent-post-card .tb-recent-post-card-content .tb-post-date {
        font-size: 13px;
        line-height: 15px;
        margin: 0 0 10px;
    }
    .tb-blog-list-section .tb-blog-list-section-content .tb-blog-list-section-card1 .tb-recent-post-card .tb-recent-post-card-content .tb-post-detail,
    .tb-blog-list-section .tb-blog-list-section-content .tb-blog-list-section-card1 .tb-about-us-section .tb-about-us-detail {
        font-size: 14px;
        line-height: 24px;
    }
    .tb-blog-list-section .tb-blog-list-section-content .tb-blog-list-section-card2 .tb-blog-card .tb-blog-card-content .tb-blog-date {
        font-size: 14px;
        line-height: 16px;
    }
    .tb-blog-list-section .tb-blog-list-section-content .tb-blog-list-section-card2 .tb-blog-card .tb-blog-card-content .tb-blog-title {
        font-size: 22px;
        line-height: 24px;
    }
    .tb-blog-list-section .tb-blog-list-section-content .tb-blog-list-section-card2 .tb-blog-card .tb-blog-card-content .tb-blog-detail {
        font-size: 14px;
        line-height: 24px;
    }
    .tb-blog-list-section .tb-blog-list-section-content .tb-blog-list-section-card1 .tb-about-us-section .tb-common-btn,
    .tb-blog-list-section .tb-blog-list-section-content .tb-blog-list-section-card2 .tb-blog-card .tb-blog-card-content .tb-common-btn {
        padding: 10px 20px;
    }
}
@media (max-width: 1399px) {
    .tb-blog-list-section .tb-blog-list-section-content .tb-blog-list-section-card1 .tb-recent-post-card .tb-recent-post-img {
        width: 80%;
    }
}
@media (max-width: 1299px) {
    .tb-blog-list-section {
        margin: 0 0 80px;
    }
    .tb-blog-list-section .tb-blog-list-section-content .tb-blog-list-section-card1 {
        padding: 30px;
    }
}
@media (max-width: 1199px) {
    .tb-blog-list-section {
        margin: 0 0 60px;
    }
    .tb-blog-list-section .tb-blog-list-section-content .tb-blog-list-section-card1 {
        padding: 20px;
    }
    .tb-blog-list-section .tb-blog-list-section-content .tb-blog-list-section-card1 .tb-recent-post-card {
        margin: 0 0 30px;
    }
    .tb-blog-list-section .tb-blog-list-section-content .tb-blog-list-section-card1 .tb-recent-post-card .tb-recent-post-img {
        width: 90%;
        margin: 0 12px 0 0;
    }
    .tb-blog-list-section .tb-blog-list-section-content .tb-blog-list-section-card1 .tb-recent-post-card .tb-recent-post-card-content {
        margin: 0 0 0 0;
    }
    .tb-blog-list-section .tb-blog-list-section-content .tb-blog-list-section-card2 .tb-blog-card .tb-blog-card-content .tb-blog-date {
        font-size: 13px;
        line-height: 15px;
        margin: 0 0 10px;
    }
    .tb-blog-list-section .tb-blog-list-section-content .tb-blog-list-section-card2 .tb-blog-card .tb-blog-card-content .tb-blog-title {
        font-size: 17px;
        line-height: 20px;
        padding: 0 0 12px;
        margin: 0 0 10px;
    }
    .tb-blog-list-section .tb-blog-list-section-content .tb-blog-list-section-card2 .tb-blog-card .tb-blog-card-content .tb-blog-detail {
        font-size: 13px;
        line-height: 24px;
        margin: 0 0 10px;
    }
    .tb-blog-list-section .tb-blog-list-section-content .tb-blog-list-section-card1 .tb-about-us-section .tb-common-btn,
    .tb-blog-list-section .tb-blog-list-section-content .tb-blog-list-section-card2 .tb-blog-card .tb-blog-card-content .tb-common-btn {
        font-size: 13px;
        line-height: 15px;
    }
}
@media (max-width: 991px) {
    .tb-blog-list-section {
        margin: 0 0 40px;
    }
    .tb-blog-list-section br {
        display: none;
    }
    .tb-blog-list-section .tb-blog-list-section-content .tb-blog-list-section-card1 {
        top: 20px;
    }
    .tb-blog-list-section .tb-blog-list-section-content .tb-blog-list-section-card1 {
        padding: 15px;
    }
    .tb-blog-list-section .tb-blog-list-section-content .tb-blog-list-section-card-col {
        padding: 0 10px;
    }
    .tb-blog-list-section .tb-blog-list-section-content .tb-blog-list-section-card1 .tb-recent-post-title,
    .tb-blog-list-section .tb-blog-list-section-content .tb-blog-list-section-card1 .tb-about-us-title {
        margin: 0 0 15px;
    }
    .tb-blog-list-section .tb-blog-list-section-content .tb-blog-list-section-card1 .tb-recent-post-title,
    .tb-blog-list-section .tb-blog-list-section-content .tb-blog-list-section-card1 .tb-about-us-title {
        font-size: 20px;
        line-height: 22px;
    }
    .tb-blog-list-section .tb-blog-list-section-content .tb-blog-list-section-card1 .tb-recent-post-card {
        margin: 0 0 15px;
    }
    .tb-blog-list-section .tb-blog-list-section-content .tb-blog-list-section-card1 .tb-recent-post-card.tb-card2 {
        margin: 0 0 20px;
    }
    .tb-blog-list-section .tb-blog-list-section-content .tb-blog-list-section-card1 .tb-recent-post-card .tb-recent-post-img {
        width: 250px;
        margin: 0 10px 0 0;
    }
    .tb-blog-list-section .tb-blog-list-section-content .tb-blog-list-section-card1 .tb-recent-post-card .tb-recent-post-card-content .tb-recent-post-card-title {
        font-size: 16px;
        line-height: 18px;
    }
    .tb-blog-list-section .tb-blog-list-section-content .tb-blog-list-section-card1 .tb-blog-list-card-img {
        margin: 0 0 15px;
    }
    .tb-blog-list-section .tb-blog-list-section-content .tb-blog-list-section-card2 .tb-blog-card {
        margin: 0 0 20px;
    }
    .tb-blog-list-section .tb-blog-list-section-content .tb-blog-list-section-card2 .tb-blog-card .tb-blog-card-content .tb-blog-title {
        font-size: 20px;
        line-height: 22px;
        margin: 0 0 10px;
    }
    .tb-blog-list-section .tb-blog-list-section-content .tb-blog-list-section-card2 .tb-blog-card .tb-blog-card-img {
        margin: 0 0 15px;
    }
    .tb-blog-list-section .tb-blog-list-section-content .tb-blog-list-section-card2 .tb-blog-card .tb-blog-card-content {
        padding: 0;
    }
}
@media (max-width: 767px) {

    .tb-blog-list-section .tb-blog-list-section-content .tb-blog-list-section-card1 .tb-recent-post-title,
    .tb-blog-list-section .tb-blog-list-section-content .tb-blog-list-section-card1 .tb-about-us-title {
        margin: 0 0 15px;
    }
    .tb-recent-post-cards-section,
    .tb-blog-list-section .tb-blog-list-section-content .tb-blog-list-section-card1 .tb-other-section {
        display: block;
    }
    .tb-blog-list-section .tb-blog-list-section-content .tb-blog-list-section-card-col {
        padding: 0 15px;
    }
    .tb-blog-list-section .tb-blog-list-section-content .tb-blog-list-section-card1 {
        padding: 30px;
        margin: 0 60px;
    }
    .tb-blog-list-section .tb-blog-list-section-content .tb-blog-list-section-card1 .tb-recent-post-card.tb-card1 {
        margin: 0 0 15px;
    }
    .tb-blog-list-section .tb-blog-list-section-content .tb-blog-list-section-card1 .tb-recent-post-card.tb-card2 {
        margin: 0 0 25px;
    }
    .tb-blog-list-section .tb-blog-list-section-content .tb-blog-list-section-card1 .tb-about-us-section .tb-about-us-detail {
        margin: 0 0 10px;
    }
    .tb-blog-list-section .tb-blog-list-section-content .tb-blog-list-section-card1 .tb-recent-post-card .tb-recent-post-img {
        width: 110px;
        margin: 0 15px 0 0;
    }
    .tb-blog-list-section .tb-blog-list-section-content .tb-blog-list-section-card1 .tb-about-us-section .tb-about-us-img {
        margin: 0 0 5px;
    }
    .tb-blog-list-section .tb-blog-list-section-content .tb-blog-list-section-card2 {
        margin: 0 0 30px;
    }
    .tb-blog-list-section .tb-blog-list-section-content .tb-blog-list-section-card2 .tb-blog-card {
        justify-content: center;
    }
    .tb-blog-list-section .tb-blog-list-section-content .tb-blog-list-section-card2 .tb-blog-card .tb-blog-card-img::before {
        background: rgba(0, 0, 0, 0.5);
    }
    .tb-blog-list-section .tb-blog-list-section-content .tb-blog-list-section-card2 .tb-blog-card .tb-blog-card-img .tb-blog-list-search-icon {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: scale(1);
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -ms-transform: scale(1);
        -o-transform: scale(1);
        width: 45px;
        height: 45px;
        font-size: 16px;
    }
}





@media (max-width: 575px) {
    .tb-blog-list-section .tb-blog-list-section-content .tb-blog-list-section-card2 {
        text-align: center;
    }
    .tb-blog-list-section .tb-blog-list-section-content .tb-blog-list-section-card1 .tb-recent-post-card .tb-recent-post-img {
        width: 150px;
        margin: 0 12px 0 0;
    }
    .tb-blog-list-section .tb-blog-list-section-content .tb-blog-list-section-card1 .tb-recent-post-card .tb-recent-post-card-content .tb-recent-post-card-title {
        margin: 0 0 5px;
    }
    .tb-blog-list-section .tb-blog-list-section-content .tb-blog-list-section-card2 .tb-blog-card .tb-blog-card-content .tb-blog-date {
        justify-content: center;
    }
    .tb-blog-list-section .tb-blog-list-section-content .tb-blog-list-section-card2 .tb-blog-card .tb-blog-card-content .tb-blog-title {
        font-size: 24px;
        line-height: 26px;
    }
    .tb-blog-list-section .tb-blog-list-section-content .tb-blog-list-section-card2 .tb-blog-card .tb-blog-card-content .tb-blog-title::before {
        right: 0;
        margin: auto;
    }
}
@media (max-width: 480px) {
    .tb-blog-list-section {
        margin: 0 0 20px 0;
    }
    .tb-blog-list-section .tb-blog-list-section-content .tb-blog-list-section-card1 {
        margin: 0;
        padding: 26px;
    }
    .tb-blog-list-section .tb-blog-list-section-content .tb-blog-list-section-card1 .tb-recent-post-card .tb-recent-post-img {
        width: 150px;
    }
    .tb-blog-list-section .tb-blog-list-section-content .tb-blog-list-section-card2 .tb-blog-card .tb-blog-card-content .tb-blog-title {
        font-size: 20px;
        line-height: 22px;
    }
}
@media (max-width: 360px) {
    .tb-blog-list-section .tb-blog-list-section-content .tb-blog-list-section-card1 {
        padding: 20px;
    }
    .tb-blog-list-section .tb-blog-list-section-content .tb-blog-list-section-card1 .tb-recent-post-card .tb-recent-post-img {
        width: 180px;
    }
}
/* ? ============================== BLOG DETAILS PAGE ============================== */
/* =============== BLOG DETAILS SECTION =============== */
.tb-blog-list-section .tb-blog-list-section-content .tb-blog-detail-section-card {
    position: sticky;
    top: 120px;
}
.tb-blog-list-section .tb-blog-list-section-content .tb-blog-detail-section-card .tb-blog-card {
    background: #fff;
    overflow: hidden;
    box-shadow: 0px 2px 16px 0px rgba(37, 37, 37, 0.08);
    padding: 15px;
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
}
.tb-blog-list-section .tb-blog-list-section-content .tb-blog-detail-section-card .tb-blog-card .tb-blog-card-img {
    max-width: 100%;
    border-radius: 10px;
    overflow: hidden;
    margin: 0 0 25px;
}
.tb-blog-list-section .tb-blog-list-section-content .tb-blog-detail-section-card .tb-blog-card .tb-blog-card-content {
    padding: 0 10px;
}
.tb-blog-list-section .tb-blog-list-section-content .tb-blog-detail-section-card .tb-blog-card .tb-blog-card-content .tb-blog-date {
    color: #111;
    display: flex;
    font: 400 15px/17px 'Roboto', Helvetica, sans-serif;
    letter-spacing: 0.3px;
    margin: 0 0 15px;
}
.tb-blog-list-section .tb-blog-list-section-content .tb-blog-detail-section-card .tb-blog-card .tb-blog-card-content .tb-blog-date i {
    color: #b52825;
    width: 16px;
    height: 16px;
    margin: 0 5px 0 0;
    display: flex;
    justify-content: center;
    align-items: center;
}
.tb-blog-list-section .tb-blog-list-section-content .tb-blog-detail-section-card .tb-blog-card .tb-blog-card-content .tb-blog-title {
    font: 500 31px/32px 'Oswald', Helvetica, sans-serif;
    letter-spacing: 0.2px;
    margin: 0 0 15px;
    text-transform: uppercase;
}
.tb-blog-list-section .tb-blog-list-section-content .tb-blog-detail-section-card .tb-blog-card .tb-blog-card-content .tb-blog-detail {
    font: 400 16px/26px 'Roboto', Helvetica, sans-serif;
    letter-spacing: 0.1px;
    color: #545454;
    margin: 0 0 15px;
}

.blog-readmore {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.blog-readmore a.expand-icon-button.mb-5.mx-auto {
    margin: 0 0 15px 0 !important;
}
.tb-blog-list-section-card2 {
    margin-bottom: 30px;
}


@media (max-width: 1499px) {
    .tb-blog-list-section .tb-blog-list-section-content .tb-blog-detail-section-card .tb-blog-card .tb-blog-card-img {
        margin: 0 0 20px;
    }
    .tb-blog-list-section .tb-blog-list-section-content .tb-blog-detail-section-card .tb-blog-card .tb-blog-card-content .tb-blog-date {
        font-size: 14px;
        line-height: 16px;
    }
    .tb-blog-list-section .tb-blog-list-section-content .tb-blog-detail-section-card .tb-blog-card .tb-blog-card-content .tb-blog-title {
        font-size: 24px;
        line-height: 26px;
    }
    .tb-blog-list-section .tb-blog-list-section-content .tb-blog-detail-section-card .tb-blog-card .tb-blog-card-content .tb-blog-detail {
        font-size: 14px;
        line-height: 22px;
    }
}
@media (max-width: 1199px) {
    .tb-blog-list-section .tb-blog-list-section-content .tb-blog-detail-section-card .tb-blog-card .tb-blog-card-img {
        margin: 0 0 15px;
    }
    .tb-blog-list-section .tb-blog-list-section-content .tb-blog-detail-section-card .tb-blog-card .tb-blog-card-content .tb-blog-date {
        font-size: 13px;
        line-height: 15px;
        margin: 0 0 15px;
    }
    .tb-blog-list-section .tb-blog-list-section-content .tb-blog-detail-section-card .tb-blog-card .tb-blog-card-content .tb-blog-title {
        font-size: 22px;
        line-height: 24px;
        margin: 0 0 10px;
    }
    .tb-blog-list-section .tb-blog-list-section-content .tb-blog-detail-section-card .tb-blog-card .tb-blog-card-content .tb-blog-detail {
        font-size: 13px;
        line-height: 20px;
        margin: 0 0 10px;
    }
}
@media (max-width: 991px) {
    .tb-blog-list-section .tb-blog-list-section-content .tb-blog-detail-section-card {
        top: 20px;
    }
    .tb-blog-list-section .tb-blog-list-section-content .tb-blog-detail-section-card .tb-blog-card .tb-blog-card-content .tb-blog-date {
        font-size: 13px;
        line-height: 15px;
        margin: 0 0 12px;
    }
}


@media (max-width: 767px) {
    .tb-blog-list-section .tb-blog-list-section-content .tb-blog-detail-section-card .tb-blog-card .tb-blog-card-content {
        padding: 0;
    }
    .tb-blog-list-section .tb-blog-list-section-content .tb-blog-detail-section-card .tb-blog-card .tb-blog-card-content .tb-blog-date {
        margin: 0 0 10px;
    }
    .tb-blog-list-section .tb-blog-list-section-content .tb-blog-detail-section-card .tb-blog-card .tb-blog-card-content .tb-blog-title {
        font-size: 19px;
        line-height: 21px;
    }
    .tb-blog-list-section .tb-blog-list-section-content .tb-blog-detail-section-card {
        text-align: center;
        margin: 0 0 30px;
    }
    .tb-blog-list-section .tb-blog-list-section-content .tb-blog-detail-section-card .tb-blog-card {
        justify-content: center;
    }
    .tb-blog-list-section .tb-blog-list-section-content .tb-blog-detail-section-card .tb-blog-card .tb-blog-card-content .tb-blog-date {
        justify-content: center;
    }

    .why-choose-content {
      width: 100%;
    }
    .why-choose-item{
      flex-direction: column;
    }
    
}





@media (max-width: 575px) {
    .tb-blog-list-section .tb-blog-list-section-content .tb-blog-detail-section-card .tb-blog-card .tb-blog-card-content .tb-blog-date {
        margin: 0 0 12px;
    }
}
@media (max-width: 480px) {
    .tb-blog-list-section .tb-blog-list-section-content .tb-blog-detail-section-card {
        margin: 0 0 20px;
    }
}

.bloglist-main-content {
  background-color: #f7f7f7;
}