* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  scroll-behavior: smooth;
}

::selection {
  background-color: var(--main-color);
  color: #fff;
}

:root {
  --main-color: #1a4a96;
  --secondary: #f11b25;
  --black: #000;
  --border: #eeefef;
  --ternary: #4a4a4a;
  --bg: rgba(214, 232, 235, 0.8);
}

html {
  overflow-x: hidden;
}
body {
  font-family: "Figtree", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 400;
  overflow-x: hidden;
  color: var(--ternary);
}

a {
  text-decoration: none;
}

a:focus {
  box-shadow: none;
}

ul {
  padding: 0;
  margin-bottom: 0;
}

ul li {
  list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin-bottom: 0;
}

/* font size */

h1 {
  font-weight: 500;
  font-size: 72px;
  line-height: 1.2;
}

h2 {
  font-weight: 500;
  font-size: 52px;
  line-height: 1.3;
}

h3 {
  font-weight: 600;
  font-size: 38px;
  line-height: 1.3;
}

h4 {
  font-weight: 500;
  font-size: 24px;
  line-height: 1.3;
}

h5 {
  font-weight: 500;
  font-size: 20px;
  line-height: 1.5;
}
h6 {
  font-weight: 500;
  font-size: 18px;
  line-height: 1.5;
}
p {
  font-size: 15px;
  line-height: 1.5;
  font-weight: 400;
  color: var(--lightwhite);
}
.fs-14 {
  font-size: 14px;
  line-height: 1.5;
}
/* font size */
.transition-3 {
  transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
}

.text-underline {
  text-decoration: underline;
}
.light-white {
  color: var(--lightwhite);
}
.primary {
  color: var(--main-color);
}

.border {
  border: 1px solid var(--border);
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type="number"] {
  -moz-appearance: textfield;
}

*,
*::before,
*::after {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  list-style: none;
  list-style-type: none;
  text-decoration: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

.fs-section {
  padding: 100px 0;
}
body.overflowY {
  overflow-y: hidden;
}

.btn-fill {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  border-radius: 5px;
  background: var(--secondary);
  overflow: hidden;
  cursor: pointer;
  border: none;
  padding: 15px 26px;
  border-radius: 8px;
}

.btn-fill:after {
  content: " ";
  width: 0%;
  height: 100%;
  background: var(--main-color);
  position: absolute;
  transition: all 0.4s ease-in-out;
  right: 0;
}

.btn-fill:hover::after {
  right: auto;
  left: 0;
  width: 100%;
}

.btn-fill p {
  text-align: center;
  color: #fff;
  z-index: 20;
  transition: all 0.3s ease-in-out;
}
.btn-fill svg {
  z-index: 20;
}

.btn-fill:hover p {
  color: #fff;
  animation: scaleUp 0.5s ease-in-out;
}
.black {
  color: var(--black);
}

/* <==========header section start===========> */
.sticky-header {
  /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15); */
}
.header-wrapper {
  box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.2);
  position: relative;
}

.header {
  /* position: fixed;
  top: 0;
  left: 0; */
  z-index: 100;
  width: 100%;
  height: auto;
  margin: 0 auto;
  padding: 15px 12px;
  transition: all 0.35s ease;
  padding: 20px;
}

.header.on-scroll {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow-medium);
}

.navbar {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  column-gap: 1.25rem;
  padding: 0;
  width: 100%;
  height: auto;
  margin: 0 auto;
  background-color: var(--bg2);
}

.brand {
  width: auto;
  max-width: 150px;
  height: 80px;
  overflow: hidden;
}

.brand img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.menu {
  position: fixed;
  top: 72px;
  right: -100%;
  width: 100%;
  height: 100%;
  padding: 3rem 0;
  overflow: hidden;
  background-color: #fff;
  box-shadow: var(--shadow-medium);
  z-index: 5;
}

.menu.is-active {
  right: 0;
  width: 100%;
  transition: all 0.4s ease-in-out;
}

.menu-inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  row-gap: 0.5rem;
}

.menu-link {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: var(--black);
  transition: all 0.3s linear;
  position: relative;
}
.menu-link.active {
  color: var(--main-color);
}
.menu-link:hover {
  color: var(--main-color);
}
.burger {
  position: relative;
  display: block;
  cursor: pointer;
  user-select: none;
  order: 1;
  z-index: 10;
  width: 1.6rem;
  height: 1.15rem;
  border: none;
  outline: none;
  background: none;
  visibility: visible;
  margin-left: auto;
  transform: rotate(0deg);
  transition: 0.35s ease;
}

.burger-line {
  position: absolute;
  display: block;
  left: 0;
  width: 100%;
  height: 1.5px;
  border: none;
  outline: none;
  opacity: 1;
  border-radius: 1rem;
  transform: rotate(0deg);
  background-color: var(--black);
  transition: 0.25s ease-in-out;
}

.burger-line:nth-child(1) {
  top: 0px;
}

.burger-line:nth-child(2) {
  top: 0.5rem;
  width: 70%;
}

.burger-line:nth-child(3) {
  top: 1rem;
}

.burger.is-active .burger-line:nth-child(1) {
  top: 0.5rem;
  transform: rotate(135deg);
}

.burger.is-active .burger-line:nth-child(2) {
  opacity: 0;
  visibility: hidden;
}

.burger.is-active .burger-line:nth-child(3) {
  top: 0.5rem;
  transform: rotate(-135deg);
}

.contact-num {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 30px 8px 8px;
  background-color: var(--bg1);
  box-shadow: -2px -3px 5px rgba(0, 168, 181, 0.6);
  border-radius: 50px;
  transition: all 0.5s linear;
  cursor: pointer;
}
.contact-num:hover {
  box-shadow: 2px 3px 5px rgba(0, 168, 181, 0.6);
}
.contact-num .icon-box {
  width: 50px;
  height: 50px;
  border-radius: 100%;
  display: grid;
  place-items: center;
  gap: 10px;
  background-color: var(--main-color);
}
.contact-num .icon-box svg {
  width: 26px;
  height: 26px;
}

/* home baner section start */
.home-banner .container-fluid {
  min-height: 85vh;
  display: flex;
  align-items: center;
  background-image: url(../img/bg3.png);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}
.home-banner .container-fluid::before {
  content: "";
  position: absolute;
  left: 0px;
  top: 0px;
  width: 50%;
  height: 100%;

  background: linear-gradient(90deg, #1a4a96 50%, rgba(26, 74, 150, 0) 100%);
}
.home-banner .container {
  z-index: 3;
}
.home-banner .btn-fill {
  display: inline-flex;
}
.home-banner .btn-fill:after {
  background: var(--bg);
}

/* medicle-department section start */
.container-fluid {
  width: calc(100% - 24px);
  padding-left: 0;
  padding-right: 0;
  margin: 0 12px;
  border-radius: 24px;
  position: relative;
  overflow: hidden;
}
.medicle-department .container-fluid {
  width: calc(100% - 24px);
  background-color: var(--bg);
}
.medicle-department .container-fluid::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-image: url(../img/bg1.png);
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
}
.heading {
  margin-bottom: 40px;
  max-width: 482px;
}

.heading .subtitle {
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--secondary);
}
.heading .subtitle h6 {
  text-transform: uppercase;
}
.heading .subtitle svg {
  width: 32px;
  height: 32px;
}

.heading h2 {
  color: var(--main-color);
}
.center-heading {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.center-heading .subtitle {
  justify-content: center;
}

.department-card {
  background-color: #fff;
  border-radius: 20px;
  padding: 30px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s linear;
}
.department-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 4px 30px 0 rgba(0, 0, 0, 0.05);
}
.department-card .icon-box {
  width: 50px;
  height: 50px;
  overflow: hidden;
  margin-bottom: 40px;
}
.department-card .icon-box svg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.department-card p {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
}
.department-card .img-box {
  width: 70px;
  height: 70px;
  overflow: hidden;
  position: absolute;
  top: 30px;
  right: 30px;
  opacity: 0;
  visibility: none;
  transition: all 0.3s linear;
}
.department-card:hover .img-box {
  opacity: 1;
  visibility: visible;
}
.department-card .img-box img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}
.department-card1 {
  width: 100%;
  height: 100%;
  min-height: 240px;
  border-radius: 24px;
  padding: 40px;
  background-image: url("../img/img1.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: end;
  gap: 15px;
  overflow: hidden;
}

.department-card1::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(26, 74, 150, 0.6);
  z-index: 1;
}

.department-card1 .body {
  z-index: 3;
}
.department-card1 .btn-fill {
  width: 45px;
  height: 45px;
  border-radius: 100%;
  overflow: hidden;
  display: inline-flex;
  padding: 0;
  transition: all 0.5s linear;
}

/* hopme about section start */
.home-about .heading {
  max-width: unset;
}

.home-about-desc {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: end;
}
.home-about .img-box {
  width: 100%;
  height: 310px;
  overflow: hidden;
  border-radius: 24px;
}

.home-about .img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.home-about ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.home-about ul li {
  display: flex;
  align-items: center;
  gap: 10px;
}
.home-about .btn-fill {
  display: inline-flex;
  width: fit-content;
}
.img-anim {
  position: relative;
  overflow: hidden;
}
.img-anim::after {
  content: "";
  position: absolute;
  width: 200%;
  height: 0%;
  left: 50%;
  top: 50%;
  background-color: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%) rotate(-45deg);
  z-index: 1;
}
.img-anim:hover::after {
  height: 250%;
  transition: all 600ms linear;
  background-color: transparent;
}

/* home choose section start */
.home-choose-box1 {
  min-height: 290px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: var(--main-color);
  padding: 24px;
  border-radius: 15px;
}
.home-choose-box2 {
  height: 100%;
  background-color: var(--bg);
  padding: 24px 30px;
  border-radius: 15px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.home-choose-box2 .icon-box {
  width: 45px;
  height: 45px;
  display: grid;
  place-items: center;
  background-color: #fff;
  border-radius: 100%;
  overflow: hidden;
  transition: all 0.5s linear;
}
.home-choose-box2 .icon-box h5 {
  color: var(--secondary);
}
.home-choose-box2 .card-body h5 {
  color: var(--black);
}
.home-choose .img-box {
  width: 100%;
  height: 290px;
  overflow: hidden;
  border-radius: 15px;
}
.home-choose .img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* cot-section start */
.cot-section .container-fluid {
  background-image: url("../img/bg2.png");
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}
.cot-section .container-fluid::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(26, 74, 150, 0.9);
  z-index: 1;
}
.cot-inner {
  position: relative;
  z-index: 3;
}
.cot-section .btn-fill {
  display: inline-flex;
}
.cot-section .cot-inner {
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

/* home-experts section start */
.home-experts {
  padding-top: 24px;
  padding-bottom: 24px;
}
.home-experts .container-fluid {
  border: 1px solid var(--border);
}

.home-experts-box {
  border: 1px solid var(--border);
  border-radius: 24px;
  overflow: hidden;
  position: relative;
}

.home-experts-box .img-box {
  width: 100%;
  height: 330px;
  background-color: var(--bg);
  display: flex;
  justify-content: center;
  align-items: end;
  padding: 24px 8px 0;
  position: relative;
  overflow: hidden;
}
.home-experts-box .img-box::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 70px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0) 0%,
    #ffffff 94.83%
  );
}
.home-experts-box .img-box::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(26, 74, 150, 0) 0%,
    rgba(26, 74, 150, 100%) 94.83%
  );
  opacity: 0;
  visibility: hidden;
  z-index: 1;
  transition: all 0.3s linear;
}
.home-experts-box:hover .img-box::before {
  top: 0;
  opacity: 1;
  visibility: visible;
}
.home-experts-box .img-box img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.home-experts-box .card-body {
  padding-top: 20px;
  padding-bottom: 15px;
  text-align: center;
}

/* review section start */
.testinomials {
  padding-top: 24px;
  padding-bottom: 24px;
}
.testinomials .container-fluid {
  background-color: var(--bg);
  position: relative;
}
.testinomials-left {
  width: 100%;
  height: 460px;
  border-radius: 15px;
  overflow: hidden;
}
.testinomials-left img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.reviews-box {
  position: relative;
}

.reviews-box .bg-icon {
  position: absolute;
  top: 10px;
  right: 90px;
  width: 70px;
  height: 70px;
  object-fit: contain;
}
.reviews-box .bg-icon svg {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.reviews-swiper {
  background-color: #fff;
  border-radius: 15px;
  border: 1px solid var(--border);
}
.review-box-inner {
  padding: 60px;
  text-align: start;
}
.reviews-box p {
  margin-top: 24px;
  margin-bottom: 15px;
}
.swiper-button-next {
  right: -10px;
  left: auto;
}
.swiper-button-prev {
  left: -10px;
  right: auto;
}
.swiper-button-prev,
.swiper-button-next {
  background-color: var(--secondary);
  width: 40px;
  height: 40px;
  border-radius: 100%;
  display: grid;
  place-items: center;
  transition: all 0.3s linear;
  opacity: 0;
  visibility: hidden;
}
.swiper-button-next:after,
.swiper-button-prev:after {
  color: #fff;
  font-size: 20px;
}

.reviews-swiper:hover .swiper-button-prev,
.reviews-swiper:hover .swiper-button-next {
  opacity: 1;
  visibility: visible;
}
.reviews-swiper:hover .swiper-button-next {
  right: 5px;
  left: auto;
}
.reviews-swiper:hover .swiper-button-prev {
  left: 5px;
  right: auto;
}
.swiper-pagination-bullet {
  background-color: var(--secondary);
}
.swiper-pagination-bullet-active {
  background-color: var(--secondary);
}
.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal {
  bottom: 35px;
}
.testinomials .anim-icon {
  position: absolute;
  bottom: -10px;
  right: -10px;
  width: 160px;
  height: 200px;
  overflow: hidden;
  transform: rotate(-20deg);
}
.testinomials .anim-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* home blog section start */
.home-blog-section .heading {
  max-width: unset;
}
.home-blog1 .img-box {
  width: 100%;
  height: 335px;
  overflow: hidden;
  border-radius: 8px;
}
.home-blog1 .img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-blog1 .card-body {
  padding-top: 24px;
}
.home-blog .subtitle {
  padding: 4px 15px;
  background-color: var(--bg);
  border-radius: 15px;
  display: inline-block;
  color: var(--secondary);
}
.home-blog a {
  color: var(--secondary);
  text-decoration: underline;
  transition: all 0.3s linear;
}
.home-blog a:hover {
  text-decoration: none;
}
.home-blog2 {
  display: flex;
  gap: 24px;
  padding-bottom: 15px;
  border-bottom: 1px solid var(--border);
}
.home-blog2 .img-box {
  width: 200px;
  min-width: 200px;
  height: 140px;
  overflow: hidden;
  border-radius: 8px;
}
.home-blog2 .img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.home-blog-right .home-blog2:not(:last-child) {
  margin-bottom: 24px;
}

/* footer section start */
footer {
  padding-bottom: 24px;
}
footer .footer-row {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 40px;
  z-index: 2;
}
.footer-row .logo {
  width: auto;
  height: 50px;
  overflow: hidden;
}
.footer-row .logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
footer .container-fluid {
  background-color: var(--bg);
  position: relative;
  padding-bottom: 20px;
}
.footer-widget-box1 {
  max-width: 315px;
}
.footer-widget-box1 .logo-box {
  width: auto;
  height: 50px;
  overflow: hidden;
}
.footer-widget-box1 .logo-box img {
  height: 100%;
  object-fit: contain;
}

.footer-widget-box2 ul li:not(:last-child) {
  margin-bottom: 8px;
}
.footer-widget-box2 ul li a {
  color: var(--ternary);
  transition: all 0.3s linear;
}
.footer-widget-box2 ul li a:hover {
  color: var(--secondary);
}
.footer-widget-box3 {
  max-width: 360px;
}
.footer-widget-box3 ul {
  margin: 30px 0;
}
.footer-widget-box3 ul li a {
  display: flex;
  gap: 10px;
  color: var(--ternary);
  margin-bottom: 15px;
  transition: all 0.3s linear;
}

.footer-widget-box3 ul li a {
  color: var(--ternary);
  transition: all 0.3s linear;
}
.footer-widget-box3 ul li a:hover {
  color: var(--secondary);
}
footer .social-icon {
  width: 48px;
  height: 48px;
  background-color: #fff;
  border-radius: 100%;
  display: grid;
  place-items: center;
  transition: all 0.3s linear;
}
footer .social-icon:hover {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transform: translateY(-3px);
}
footer .social-icon svg path {
  transition: all 0.3s linear;
}
footer .social-icon:hover svg path {
  fill: var(--secondary);
}
footer .widget-img {
  width: 280px;
  height: 220px;
  overflow: hidden;
  position: absolute;
  bottom: -30px;
  left: 0;
  z-index: -1;
}
footer .widget-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* <========== about us page start =========> */

.inner-banner .container-fluid {
  position: relative;
  height: 450px;
  background: linear-gradient(rgba(26, 74, 150, 0.5), rgba(26, 74, 150, 0.5)),
    url("../img/inner_banner.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  text-align: center;
}

.breadcrumb-item + .breadcrumb-item::before {
  color: #fff;
}
.about-us .heading {
  max-width: unset;
}

.aboutus-left {
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 15px;
}
.aboutus-left img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* mission-vision section start */
.mission-vision .container-fluid {
  background-color: var(--bg);
}
.mission-vision-box {
  width: 100%;
  height: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  gap: 15px;
}
.mission-vision-box .icon-box {
  width: 60px;
  min-width: 60px;
  height: 60px;
  border-radius: 100%;
  display: grid;
  place-items: center;
  background-color: var(--main-color);
}

/* caring section start */
.caring .heading {
  max-width: 600px;
}
.caring-box {
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 15px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
  background-color: var(--bg);
}

.caring-box .divider {
  width: 45%;
  height: 1px;
  background-color: var(--ternary);
  opacity: 0.4;
}

.caring-box p {
  max-width: 200px;
}

.caring-box svg {
  width: 55px;
  min-width: 55px;
  height: 55px;
  object-fit: contain;
}
/* aboutus page end */

/* our specialities page start */
.our-specialities .department-card {
  background-color: var(--bg);
}

/* contactus page start */
.contact-box {
  width: 100%;
  height: 100%;
  padding: 24px;
  border-radius: 8px;
  background-color: var(--bg);
  display: flex;
  align-items: center;
  gap: 15px;
}

.contact-box .icon-box {
  width: 60px;
  min-width: 60px;
  height: 60px;
  border-radius: 100%;
  display: grid;
  place-items: center;
  gap: 10px;
  background-color: #fff;
}
.contact-box .icon-box svg {
  width: 26px;
  height: 26px;
}
.contact-box1 {
  background: linear-gradient(rgba(26, 74, 150, 0.5), rgba(26, 74, 150, 0.5)),
    url("../img/img2.png");
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

.contact-right {
  width: 100%;
  height: 610px;
  border-radius: 15px;
  overflow: hidden;
}
.contact-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.contact-box p {
  word-break: break-all;
}
.contact-box {
  padding: 15px;
}

.map-box {
  width: 100%;
  height: 600px;
  overflow: hidden;
  border-radius: 15px;
}
.map iframe {
  width: 100%;
  height: 100%;
}

.home-blog1 .img-box {
  height: 230px;
}

/* blog details page start */
.blog-details-left .first::first-letter {
  padding: 10px;
  background-color: var(--main-color);
  float: left;
  margin-right: 8px;
  font-weight: 600;
  font-size: 28px;
  line-height: 1.3;
  color: #fff;
  border-radius: 4px;
  margin-top: 4px;
}

.blog-details-left .desc .img-box {
  width: 100%;
  height: 250px;
  border-radius: 15px;
  overflow: hidden;
}
.blog-details-left .desc .img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s linear;
}
.blog-details-left .desc .img-box img:hover {
  transform: scale(1.05);
}

.blog-details-left .block-img {
  width: 100%;
  height: 480px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 4px 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.5s linear;
}
.blog-details-left .block-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.blog-details-left .desc1 h3,
.blog-details-left .desc2 h3,
.blog-details-left .desc4 h3,
.blog-details-left .desc6 h3,
.blog-details-left .desc7 h3
 {
  color: var(--black);
}
.blog-details-left .desc1 p {
  padding: 10px 15px;
  background-color: #e3effc;
  border-radius: 50px;
}
.blog-details-left .desc2 {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.blog-details-left .desc2 .author {
  padding: 22px 30px 32px;
  border: 1px solid var(--border);
  border-radius: 15px;
}
.blog-details-left .desc2 .author .icon-box {
  position: absolute;
  top: -10px;
  left: -7px;
  width: 40px;
  height: 40px;
  background-color: #fff;
}
.blog-details-left .desc2 .author .icon-box svg {
  width: 22px;
  height: 22px;
  object-fit: contain;
}
.blog-details-left .desc2 .author .box {
  background-color: var(--main-color);
  padding: 10px 30px;
  position: absolute;
  bottom: -25px;
  left: 5%;
  transform: skew(-25deg, 0deg);
}
.blog-details-left .desc4 ul li {
  display: flex;
  align-items: center;
  gap: 10px;
}

.blog-details-left .desc4 {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.blog-details-left .desc4 ul li:not(:last-child) {
  margin-bottom: 10px;
}

.blog-details-left .tags div {
  display: flex;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
}
.blog-details-left .tags p {
  padding: 10px 15px;
  background-color: #e3effc;
  border-radius: 4px;
}
.blog-social-box {
  display: flex;
  align-content: center;
  gap: 10px;
  padding: 10px 20px;
  border: 1px solid var(--border);
  border-radius: 50px;
}
.blog-social-box svg {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.blog-review {
  width: 100%;
  height: auto;
  padding: 40px 30px;
  box-shadow: 4px 10px 30px rgba(0, 0, 0, 0.05);
  border-radius: 15px;
}
.blog-review .form-control {
  width: 100%;
  height: 50px;
  padding-left: 0;
  padding-right: 0;
  border: 0;
  border-bottom: 1px solid var(--border);
  border-radius: 0;
}
.blog-review .form-control:hover,
.blog-review textarea:hover {
  border-bottom-color: var(--black);
}
.blog-review .form-control:focus {
  box-shadow: none;
}
.blog-review textarea {
  width: 100%;
  height: 150px;
  border: 0;
  border-bottom: 1px solid var(--border);
  resize: none;
  outline: 0;
}

.blog-details-left .desc3 .img-box {
  width: 100%;
  height: 250px;
  border-radius: 15px;
  overflow: hidden;
}
.blog-details-left .desc3 .img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.blog-review-box .top .icon-box {
  width: 60px;
  height: 60px;
  border-radius: 100%;
  display: grid;
  place-items: center;
  background-color: var(--main-color);
  color: #fff;
}

.blog-review-box {
  padding-bottom: 30px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 30px;
}
.blog-review-box .top {
  display: flex;
  align-items: center;
  gap: 15px;
}
.blog-review-box .top .icon-box {
  width: 60px;
  height: 60px;
  border-radius: 100%;
  display: grid;
  place-items: center;
  background-color: var(--main-color);
  color: #fff;
}
.blog-review-box .icon-box h4 {
  font-size: 18px;
}
.blog-review-box .top span {
  font-size: 18px;
  line-height: 1.5;
  font-weight: 600;
}

.recent_charity {
  width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 4px 10px 40px rgba(0, 0, 0, 0.05);
  border: 0;
  transition: all 0.5s linear;
}

.recent_charity .card-title {
  border-bottom: 1px solid #2b2b2b;
}
.recent_charity .card-body {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 40px 30px;
}
.recent_charity .img-box {
  width: 70px;
  min-width: 70px;
  height: 70px;
  overflow: hidden;
  border-radius: 4px;
}
.recent_charity .img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s linear;
}
.recent_charity .box {
  display: flex;
  align-items: center;
  gap: 15px;
}

.recent_charity .box svg {
  width: 18px;
  height: 18px;
  object-fit: contain;
}

.recent_charity .box span {
  color: var(--black);
}

.recent_charity .box h5 {
  color: var(--black);
  transition: all 0.3s linear;
}
.recent_charity .box:hover h5 {
  color: var(--main-color);
}
.recent_charity .box:hover .img-box img {
  transform: scale(1.1);
}
@media screen and (max-width: 991px) {
  
}
@media screen and (max-width: 576px) {
  
}