/* FONT IMPORT */

/* Google Font */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&family=Bebas+Neue&display=swap");


:root {
  --white: #fff;
  --black: #000;
  --primary: #ae0606;
  --secondary: #121472;
}

html {
  scroll-behavior: smooth;
  height: 100%;
  overflow-x: hidden;
}

body {
  position: relative;
  background: #fdfbef;
  overflow-x: hidden;
  height: 100%;
  font-family: "Poppins", sans-serif;
}

section {
  position: relative;
  padding: 6rem 0;
}

p {
  font-size: 1rem;
  font-weight: 400;
  line-height: 2;
  color: #000;
  margin: 0;
  font-family: "Poppins", sans-serif;
}

@font-face {
  font-family: 'Britania-font';
  src: url('../fonts/Britania_Ligatura.otf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

h1,
h2 {
  font-family: 'Britania-font', Arial, sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #000;
  margin: 0;
}

.img-auto {
  display: block;
  max-width: 100%;
  margin: 0 auto;
}

.img {
  perspective: none;
  overflow: hidden;
  transform-style: preserve-3d;
}

.img img {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  will-change: transform, box-shadow;
  display: block;
}

a,
button {
  text-decoration: none !important;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  font-family: "Poppins", sans-serif;
}

a:hover,
button:hover {
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

figure {
  margin: 0;
}

/* Cursor Start */

.mouse-cursor {
  position: fixed;
  left: 0;
  top: 0;
  pointer-events: none;
  border-radius: 50%;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  visibility: hidden;
}

.cursor-inner {
  margin-left: 2px;
  margin-top: 2px;
  width: 7px;
  height: 7px;
  z-index: 10000001;
  background-color: var(--primary);
  -webkit-transition: width 0.3s ease-in-out, height 0.3s ease-in-out,
    margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
  -o-transition: width 0.3s ease-in-out, height 0.3s ease-in-out,
    margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
  transition: width 0.3s ease-in-out, height 0.3s ease-in-out,
    margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

.cursor-inner.cursor-hover {
  margin-left: -10px;
  margin-top: -10px;
  width: 30px;
  height: 30px;
  background-color: var(--primary);
  opacity: 0.3;
}

/* Cursor End */

/* PRELOADER */

body.loading {
  overflow: hidden;
  height: 100vh;
}

.preLoader {
  width: 100%;
  height: 100%;
  z-index: 1111;
  display: flex;
  flex-direction: column;
  align-items: end;
  justify-content: start;
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  z-index: 11113;
}

.preLoader .counter {
  color: var(--white);
  font-size: 15rem;
  font-family: var(--font-heading);
  font-weight: 700;
  position: absolute;
  bottom: 0rem;
  right: 5rem;
}

.preLoader .bar {
  height: 20%;
  width: 100vw;
  background-color: var(--primary);
}

/* PRELOADER */

/* GLOBAL CSS */

.themeBtn {
  background-color: var(--primary);
  font-size: 1.125rem;
  color: var(--white);
  text-transform: uppercase;
  font-weight: 500;
  display: inline-block;
  border-radius: 35px;
  padding: 1rem 2.6rem;
  line-height: normal;
}

.themeBtn:hover {
  color: var(--white)
}

.themeBtn.borderBtn {
  background: transparent;
  border: 1px solid #fff;
  padding: 1.04em 2em;
}

/* NAV HEADER CSS */

header {
  background: #f5f3e8;
  left: 0;
  right: 0;
  margin: 0 auto;
  z-index: 111;
  top: 0;
  width: 100%;
  transition: 0.3s ease-in-out;
  padding: 0rem 3rem 0rem 0rem;
  position: relative;
}

.navbar-brand {
  margin: 0;
  padding: 2rem 7.7rem 2rem 2rem;
  background: #fdfbef;
  clip-path: polygon(0% 0%, 100% 0%, 89% 100%, 0% 100%);
  position: relative;
}

.navbar-brand img {
  width: 265px;
}



.navbar-nav {
  align-items: center;
  width: 86%;
  gap: 3.2rem;

  line-height: 0;
  width: fit-content;
  /* margin-left: auto; */
  margin-right: auto;
}

.navbar-nav .nav-item {
  line-height: 1;
}

.navbar-nav .nav-item .nav-link {
  font-size: 1.1rem;
  color: var(--black);
  font-weight: 500;
  padding: 0 0;
  display: inline-block;
  position: relative;
  line-height: 0;
}

.navbar-nav .nav-link:hover {
  color: var(--black) !important;
  font-weight: 500;
}

/* Active Tab Styling */
.navbar-nav .nav-link.active {
  color: var(--black) !important;
  font-weight: 500;
}

.navbar-nav .nav-item:has(.nav-link.active) {
  color: var(--black);
  /* Bullet color changes */
}

.navbar-nav .nav-link.active::before {
  width: 100%;
}

.navbar-nav .nav-link:before {
  position: absolute;
  content: "";
  width: 0%;
  height: 3px;
  background: var(--secondary);
  bottom: -17px;
  left: 50%;
  transform: translateX(-50%);
  transition: 0.3s ease;
}

.navbar-nav .nav-link:hover:before {
  width: 100%;

}

body.menu-open {
  overflow: hidden;
}

@media (max-width: 991.98px) {

  .side-menu {
    position: fixed;
    top: 0;
    left: -380px;
    /* hidden by default */
    width: 380px;
    height: 100%;
    background: #f5f3e8;
    padding-top: 60px;
    transition: 0.4s ease;
    z-index: 9999;
  }

  .side-menu.show {
    left: 0;
  }

  .navbar-nav {
    flex-direction: column;
    padding-left: 20px;
  }

  .navbar-nav .nav-link {
    color: #fff;
    padding: 10px 0;
  }

}

.menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s ease;
  z-index: 999;
}

.menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

.navbar-toggler .toggler-icon {
  display: inline-block;
  width: 30px;
  height: 22px;
  position: relative;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.navbar-toggler .toggler-icon span {
  display: block;
  position: absolute;
  height: 3px;
  width: 100%;
  background: #000;
  border-radius: 2px;
  opacity: 1;
  left: 0;
  transition: all 0.3s ease;
}

/* Default = Hamburger */
.navbar-toggler .toggler-icon span:nth-child(1) {
  top: 0;
  transform: rotate(0);
}

.navbar-toggler .toggler-icon span:nth-child(2) {
  top: 9px;
  opacity: 1;
}

.navbar-toggler .toggler-icon span:nth-child(3) {
  top: 18px;
  transform: rotate(0);
}

/* When menu open = X */
.navbar-toggler.active .toggler-icon span:nth-child(1) {
  top: 9px;
  transform: rotate(45deg);
}

.navbar-toggler.active .toggler-icon span:nth-child(2) {
  opacity: 0;
}

.navbar-toggler.active .toggler-icon span:nth-child(3) {
  top: 9px;
  transform: rotate(-45deg);
}

.head-btn .themeBtn {
  display: flex;
  align-items: center;
}

.head-btn .themeBtn p {
  font-size: 1.125rem;
  color: var(--white);
  /* text-transform: uppercase; */
  font-weight: 500;
  /* padding-right: 0.5rem; */
}

/* .head-btn .themeBtn span {
 
} */

/* Drop-Down Css Start */

.navbar .nav-item.drop-down {
  position: relative;
  z-index: 1;
  line-height: 1;
}

.navbar .nav-item.drop-down a {
  line-height: 0;
}

.navbar .nav-item .drp-menu a {
  line-height: 1;
}

.quicklist li a:hover {
  color: var(--primary);
}

.navbar .drop-down>a:after {
  content: "\f0d7";
  font-family: "Font Awesome 5 Pro";
  font-weight: 900;
  padding-left: 0.625rem;
  color: var(--primary);
}

.navbar .drop-down ul {
  display: block;
  position: absolute;
  left: 0.875rem;
  /* top: 100%; */
  top: calc(100% + 30px);
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  padding: 0;
  background: #fff;
  box-shadow: 0px 0px 30px rgb(127 137 161 / 25%);
  transition: 0.3s;
  border-radius: 10px;
  border: 1px solid var(--primary);
}

.navbar .drop-down:hover>ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .drop-down li {
  min-width: 250px;
  position: relative;
  list-style: none;
}

.navbar .drop-down ul a {
  padding: 1rem 1.0625rem;
  font-size: 0.8125rem;
  font-weight: 500;
  text-transform: none;
  color: #151515;
  display: block;
  text-transform: capitalize;
  border-radius: 10px;
  /* border: 1px solid #02b0f8; */
  border-bottom: 1px solid #0000001a;
}

.navbar .drop-down ul a:hover {
  background: var(--primary);
  color: var(--white);
  border-color: white;
}

header .drop-down .dropdown-icon {
  font-size: 21px;
  margin-left: 0px;

  transition: 0.3s;
  position: relative;
  top: 2px;
}

/* Rotate icon when hovered */
.drop-down:hover .dropdown-icon {
  transform: rotate(180deg);
}

/* !NAV HEADER CSS */

.main-slider {
  height: 100vh;
  z-index: 2;
}

.main-slider .slideOne{
 position: relative;
    left: -36px; 
}


.homeSlider.swiper-container {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
  overflow: hidden;
}

.homeSlider.swiper-container .swiper-slide {
  overflow: hidden;
}

.homeSlider .swiper-pagination {
  bottom: 8rem;
  width: fit-content;
  left: 18rem;
}

.homeSlider .swiper-pagination {
  display: flex;
  flex-direction: column;
  align-items: end;
  justify-content: center;
  top: -63% !important;
  left: 96% !important;
  position: relative;
  gap: 2.7rem;
}

.homeSlider .swiper-pagination-bullet {
  width: 50px;
  height: 2px;
  background: var(--white);
  position: relative;
  opacity: 1;
}

.homeSlider .swiper-pagination-bullet-active::after {
  content: attr(data-index);
  position: absolute;
  left: 0px;
  top: -34px;
  font-size: 24px;
  color: #fff;
}

.homeSlider .swiper-pagination-bullet-active {
  width: 90px;

}



.homeSlider .slide-inner {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  background-size: cover;
  background-position: center;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: center;
}

.main-slider h1 {
  margin: 0;
  color: var(--white);
  font-size: 3.3rem;

  line-height: 1;
  font-weight: 500;
  text-transform: capitalize;
  position: relative;
}

.main-slider h1 span {
  font-family: 'Andasia-font', Arial, sans-serif;
  position: absolute;
  font-weight: 300;
  right: -30px;
}


.main-slider .wl-span {
  color: var(--white);
  font-weight: 500;
  line-height: 1.2;
  margin: 0.625rem 0;
  font-size: 1.3625rem;
}

.main-slider p {
  font-size: 1.5rem;
  color: white;
  line-height: 1.4;
  font-weight: 300;
  padding-top: 1rem;
}

.main-slider .themeBtn {
  margin-top: 0.9rem;
}

/* slide-social-icon */
.header_links {
  position: relative;
  z-index: 11;
  top: 31%;
  left: 1%;
  width: fit-content;
  display: flex;
  flex-direction: column;
}

.header_links li:first-child {
  writing-mode: sideways-rl;
  color: #fff;
  font-size: 17px;
  font-style: italic;
  margin: 0 14px 16px 12px;
}

ul.header_links li a {
  color: #fff;
  font-size: 22px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: transparent;
  transition: all 0.3s ease;
  display: grid;
  place-items: center;
}

ul.header_links li a:hover {
  color: var(--white);
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--secondary);
  transition: all 0.3s ease;
}

ul.header_links li {
  line-height: 1;
  margin-bottom: 20px;
}

.arrow {
  animation: upDown 1.5s ease-in-out infinite;
  position: absolute;
  left: 0;
  right: -1%;
  margin: auto;
  bottom: 2%;
  text-align: center;
  width: fit-content;
  height: fit-content;
  z-index: 0;
}

.arrow i {
  height: 6.25rem;
  width: 4rem;
  display: grid;
  place-items: center;
  margin: auto;
  background-color: rgb(217 217 217 / 34%);
  border-radius: 30px;
  color: var(--white);
  font-size: 1.285rem;
  border: 2px solid var(--white);
}

@keyframes upDown {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(10px);
    /* neeche */
  }

  100% {
    transform: translateY(0);
    /* wapas upar */
  }
}


/* !MAIN HERO SLIDER CSS */

.section-about {
  position: relative;
  /* background: url(../images/left-about-bg.png) no-repeat;
  background-position: left; */
  z-index: 1;
}

.section-about:after {
  content: "";
  position: absolute;
  background: url(../images/right-about-bg.png) no-repeat;
  background-position: right;
  width: 100%;
  height: 109vh;
  top: -9%;
  right: 0;
  z-index: -1;
}

.about-img {
  position: relative;
}

/* .about-img figure {
  display: flex;
  justify-content: right;
} */

.about-img {
  position: relative;
}

.about-before-img {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  bottom: -23px;
  left: -32px;

  font-weight: 800;
}

.about-before-img p {
  line-height: 1.3;
  padding-left: 0.5rem;
  color: var(--black);


  font-size: 1.2rem;
  font-weight: 600;
}

.about-content {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  /* padding-left: 3.3rem;
  padding-right: 5.6rem; */
}

.about-content .before-content-before {
  position: absolute;
  right: -58%;
  top: 55%;
}

.after-content-before {
  position: absolute;
  left: -20%;
  bottom: -4%;
}

.about-content span {
  font-size: 24px;
  /* font-weight: 500; */
  color: var(--secondary);
}

.about-content h2 {
  font-size: 4rem;
  color: var(--black);
}

.about-content p {
  width: 83%;
}

.about-content .top-bar {
  padding-top: 1rem;
}

/* Drop-Down Css Start */

.section-podcasts .container-podcasts {
  padding-left: 8rem;
}

.section-podcasts h2 {
  text-align: center;
  padding-bottom: 3rem;
  font-size: 4.2rem;
}

.section-podcasts .container-podcasts .podcast-content {
  padding: 1rem;
  /* border-radius: 20px; */
  transition: background 0.3s ease, transform 0.3s ease;
  background: var(--white);
}

/* Active slide background */
.section-podcasts .swiper-slide-active .podcast-content {
  background: #fff;
  box-shadow: 6px 7px 21px -13px #bcb3b3;
  /* apna desired active bg color */
  /* transform: scale(1.05); */
  /* optional, thoda zoom effect */
}

.btn-thmeBTn {
  display: flex;
  justify-content: center;
  width: 100%;
  /* margin-top: 3rem; */
}



.podcast-content h4 {
  font-size: 2rem;
  padding: 1rem 0 0.5rem;
  font-weight: bold;
  text-align: center;
}



.podcast-content .content {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.podcast-content .content p {
  width: 80%;
}

.podcast-content .content a {
  transform: skewX(-16deg);
  border-radius: 10px;
  padding: 0.6rem 2rem;
  margin: 1rem 0;
  background: var(--secondary);
}

.section-podcasts .btn-style {
  justify-content: center;
  display: flex;
  padding-top: 5rem;
}

.section-podcasts .swiper-slide:nth-child(even) {
  margin-top: 20px
}


.top-bar {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 20px;
  padding: 20px 0px 15px 0px;

}

.call-us-btn {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: var(--white);
  font-size: 16px;
  padding-left: 1rem;
}

@keyframes call-animation {
  0% {
    box-shadow: 0 0 0 0px rgb(15 6 101 / 45%);
  }

  100% {
    box-shadow: 0 0 0 9px rgb(15 6 102 / 33%);
  }
}


.call-icon {
  /* background: linear-gradient(157deg, rgba(239, 211, 103, 0.95) 10%, rgba(185, 140, 48, 0.97) 43%); */
  background: var(--secondary);
  color: var(--black);
  border-radius: 50%;
  font-size: 18px;
  margin-right: 17px;
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  animation: call-animation 2s infinite;

}

.call-icon figure img {
  width: 25px;
  height: auto;
}

.call-text {
  display: flex;
  flex-direction: column;
  color: var(--black);
  font-size: 20px;
  padding: 0;
}

.call-text span:first-child {
  font-size: 18px;
  color: var(--white);
}

.call-text span:last-child {
  font-weight: bold;
  font-size: 20px;
  color: var(--white);
}

/* Drop-Down Css End  */
.section-who-we {
  background: var(--secondary);
  padding: 0 0 0 1rem;
}

.section-who-we .content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  position: relative;
  z-index: 1;
  width: 83%;
  /* background: url(../images/who-we-img-bg.png) no-repeat var(--primary); */
  padding-left: 3rem;
}

.section-who-we .content .heading-span {
  line-height: 2.5;
  font-size: 1.3rem;
  color: var(--white);
}

.section-who-we .content h2 {
  font-size: 4.8rem;
  color: var(--white);
}

.section-who-we .content p {
  color: var(--white);
}

.section-who-we .content .themeBtn {
  background: linear-gradient(6deg, rgba(0, 0, 0, 0.98) 5%, rgba(18, 20, 114, 1) 44%);
}

.section-who-we:before {
  content: "";
  position: absolute;
  width: 135vh;
  height: 100%;
  background: url(../images/who-we-img-bg.png) no-repeat var(--primary);
  z-index: 0;
  right: 0;
}

.section-who-we figure {

  z-index: 1;
  position: relative;
}

.section-who-we:after {
  content: "";
  position: absolute;
  width: 3%;
  height: 100%;
  background: url(../images/right-clip.png) no-repeat;
  right: 0;
  top: 0;
}

/* .section-who-we:before {
  content: "";
  position: absolute;
  width: 50%;
  height: 100%;
  background: url(../images/after-left-clip.png) no-repeat;
  left: 0;
  top: 0;
} */



/* serve-section Css  */
/* Default styles for slides */
/* =========================
   SERVE TESTIMONIAL SLIDER
========================= */
.serve-top-content h2 {
  font-size: 4rem;
  text-align: center;
}

.serve-top-content p {
  text-align: center;
  padding-bottom: 2rem;
  font-weight: 500;
}

.serve-slider {
  margin-top: 50px;
  padding-bottom: 60px;
}

/* Swiper wrapper spacing fix */
.serve-slider .swiper-wrapper {
  align-items: center;
}

/* Slide base design */
.serve-slider .swiper-slide {
  position: relative;
  background: url("../images/serve-last.png") no-repeat center;
  background-size: cover;
  height: 620px;
  border-radius: 25px;
  overflow: hidden;
  transition: all 0.4s ease;
  display: flex;
  align-items: normal;
  justify-content: center;

}

/* Inner card spacing */
.serve-slide {
  margin: 0 20px;
  transition: all 0.4s ease;
}

/* Content box styling */
.serve-slide {
  text-align: center;
  color: #333;
  width: 69%;
}

/* Default bottom image hidden */
.serve-bottom {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s ease;
}

/* Active slide styling (Swiper equivalent of slick-current) */
.serve-slider .swiper-slide-active {
  transform: scale(1.12);
  z-index: 2;
  background-image: url(../images/serve-active.png);
  /* box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15); */
  height: 56vh;
  background-size: cover;
}

.serve-slider .swiper-slide-active .serve-slide {

  position: relative;
  top: -48px;
}

.serve-slider .swiper-pagination-bullet {
  width: 15px;
  height: 15px;
}

/* Active slide bottom image show */
.serve-slider .swiper-slide-active .serve-bottom {
  opacity: 1;
  transform: translateY(0);
}

/* Image styling */
.serve-img img {
  max-width: 90px;
  border-radius: 50%;
  margin-bottom: 15px;
}

/* Review text */
.review-content h6 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 5px;
}

.review-content p {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 10px;
}

/* Quote image */
.commas-img img {
  width: 30px;
  margin: 10px auto;
}

/* Pagination */
.serve-slider .swiper-pagination {
  bottom: 0 !important;
}

/* Responsive */
@media(max-width:991px) {

  .serve-slider .swiper-slide {
    height: 380px;
  }

  .serve-slider .swiper-slide-active {
    transform: scale(1.05);
  }
}

@media(max-width:767px) {

  .serve-slider .swiper-slide {
    height: auto;
    padding: 30px 15px;
  }

  .serve-slide {
    margin: 0 10px;
  }

  .serve-slider .swiper-slide-active {
    transform: scale(1);
  }
}


/* Faq Sec Css Start */

/* gallery-section */
.section-3 h2 {
  padding-bottom: 1rem;
}

.section-3 figure:nth-of-type(2) {
  display: flex;
  justify-content: end;
  padding: 1rem 0;
}

.section-3 .gallery-box-2,
.gallery-box-3 {
  display: flex;
  flex-direction: column;
  /* justify-content: center; */
  height: 100%;
  justify-content: end;
  align-items: start;
}

.gallery-btn {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2.5rem 0;
}





/* blog-section */


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

.blog-box h4 {
  font-size: 22px;
  color: var(--black);
  padding-top: 0.3rem;
  font-weight: bold;
  padding-bottom: 1rem;
}

.blogSlider .content {
  padding: 0 2rem;
}

.section-blog-inner-1 h2,
.section-blog-inner h2,
.section-blog h2 {
  font-size: 4rem;
  text-align: center;
  padding-bottom: 2rem;
}

.section-blog-inner-1 .blog-box,
.blog-box .blog-img {
  position: relative;
}

.section-blog-inner-1 .blog-box span,
.blog-box .blog-img span {
  position: absolute;
  background: var(--secondary);
  width: 80px;
  height: 80px;
  /* border-radius: 100%; */
  /* background: url(../images/Shapeblog.png) no-repeat; */
  z-index: 16;
  left: 20px;
  bottom: -16px;
  display: grid;
  place-items: center;
  color: white;
  text-align: center;
  font-weight: 700;
  border-radius: 10px 0 10px;
}

.section-blog-inner-1 .blog-box span {
  bottom: 39%;
}

.section-blog-inner-1 .blog-box h4 {
  padding-top: 1.3rem;
  padding-bottom: 0rem;
}

.section-blog-inner-1 .blog-box .content p {
  padding: 10px 0 0.9rem;

}

.blog-box .blog-img img {
  width: 100%;
}

.section-blog-inner-1 .content a {
  padding-bottom: 1rem;
}

.section-blog-inner-1 .blog-box {
  border-radius: 60px 0 0 0;
  background: #fff;
  margin-bottom: 2rem;
}

.blog-box .content {
  position: relative;
  padding: 13px 15px;
  border-radius: 20px;
  background: var();
}



.blogSlider .swiper-slide {
  background: #fff;
  border-radius: 60px 0 0 0;
  height: 61vh;
  display: flex;
  flex-direction: column;
}

.blog-box .content figure img {
  width: 30px !important;
}

.section-blog-inner-1 .content a,
.section-blog-inner .content a,
.blogSlider .content a {
  padding-top: 1rem;
  display: block;
  font-size: 1.2rem;
  color: var(--secondary);
}

.section-blog-inner .blog-box {
  background: var(--white);
  padding: 0rem 0rem;
  display: block;
}

.section-blog-inner .col-md-4 {
  margin-bottom: 2rem;
}

.section-blog-inner .content {
  background: #fff;
  padding: 0 1rem 2rem;
}

.blog-box .content p {
  padding: 10px 0 5rem;
  line-height: 1.7;
  font-size: 1rem;
}

.blog-box .content figure {
  position: relative;
  top: -64px;
}

/* --------------- */
.blog-cta {
  padding-top: 4rem;
}

.blog-cta .cta-box {
  background: #f5f3e8;
  border-radius: 20px;
  padding: 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.blog-cta .sub-head {
  color: var(--primary);
  font-weight: 600;
  display: inline-block;
  margin-bottom: 1rem;
}

.blog-cta h2 {
  margin-bottom: 1rem;
}

.blog-cta p {
  max-width: 700px;
  margin: 0 auto 2rem;
}

.blog-cta .cta-services {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin: 0 0 2rem;
  padding: 0;
  list-style: none;
}

.blog-cta .cta-services li {
  background: #fff;
  padding: 12px 18px;
  border-radius: 50px;
  font-size: 14px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, .08);
}

.blog-cta .cta-contact {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.blog-cta .cta-contact a {
  color: var(--black);
  font-weight: 600;
  text-decoration: none;
}

.blog-cta .themeBtn {
  margin: 0 auto;
  /* max-width: 250px; */
}

.blog-cta .cta-quote {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(0, 0, 0, .1);
  display: flex;
  justify-content: center;
}

.blog-cta .cta-quote p {
  margin: 0;
  font-style: italic;
  font-weight: 500;
}

@media (max-width: 767px) {
  .blog-cta .cta-box {
    padding: 2rem 1.5rem;
  }

  .blog-cta .cta-contact {
    flex-direction: column;
    gap: 10px;
  }
}

/* ----------------- */
.section-blog {

  padding-top: 0;
}

.section-3 h2 {
  font-size: 4.4rem;
}

.section-3 p {
  padding-bottom: 1.2rem;
}

.section-referral h3 {
  font-size: 3rem;
  padding: 2rem 0 0rem;
  font-family: 'Britania-font', Arial, sans-serif;
}

.section-referral,
.section-form {
  position: relative;
  padding-top: 0;
  margin: 0rem 0 30rem;
}

.section-referral .btn-style,
.section-form .btn-style {
  justify-content: center;
  display: flex;
  padding-top: 1rem;

  width: 100%;
}

.section-referral .btn-style {

  width: 88%;
}

.section-referral .btn-style .themeBtn {
  width: 100%;
  border-radius: 10px;
}

.section-referral .btn-style .themeBtn,
.section-form .btn-style .themeBtn {
  padding: 0.9rem 3rem;
}

.section-referral::before,
.section-form::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100vh;
  background: url(../images/before-contact.png) no-repeat;
  top: -35%;
  /* left: 21%; */
  right: 0;
  margin: auto;
  z-index: -1;
  background-size: auto;
  background-position: center;
}

.section-referral h2,
.section-form h2 {
  font-size: 4.1rem;
  text-align: center;
  padding-bottom: 1.6rem;

}

.section-referral form textarea,
.section-referral form input,
.section-form form textarea,
.section-form form input {
  width: 100%;
  padding: 1.6rem;
  margin: 1rem 0;
  background: #ffffffd6;
  border: 2px solid #c1b4b44d;
}

.section-referral form textarea,
.section-referral form input {
  width: 88%;
}

.section-referral form textarea::placeholder,
.section-referral form input::placeholder,
.section-form form textarea::placeholder,
.section-form form input::placeholder {
  color: var(--black);
}

.section-referral form textarea:focus,
.section-referral form input:focus,
.section-form form textarea:focus,
.section-form form input:focus {
  box-shadow: unset;
  border-color: var(--primary);
}

.section-form form textarea {
  height: 190px;
}

/* .contact-img {
  position: absolute;
  top: 255px;
  z-index: -1;
} */
.section-referral:after,
.section-form:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100vh;
  background: url(../images/contact-img.png) no-repeat;
  bottom: -122%;
  background-size: cover;
  z-index: -1;
}

.section-referral:after {
  bottom: -78%;
}

.after-form-bg:after {
  top: -187%;
}

/* footer */





.inner-banner {
  background-size: cover;
  background-position: center;
  padding: 15rem 0;
  z-index: 2;
}

.inner-banner-content h1 {
  font-size: 67px;
  font-weight: 500;
  color: var(--white);
  /* text-transform: capitalize; */
}

/* .content {
  width: 80%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
} */
.gallery-banner {
  background-image: url(../images/gallery-banner.png);
  background-size: cover;
  background-position: top;
}

.about-banner {
  background-image: url(../images/about-banner.png);
}

.resources-banner {
  background-image: url(../images/resources-banner.png);
}

.inner-section-1 .content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  width: 90%;
}

.inner-section-1 .content h2 {
  font-size: 3.7rem;
}

.inner-section-1 .content h3 {
  padding: 1rem 0;
}

.inner-section-1 .content ul {
  padding: 1rem 0 1rem 2.3rem;

}

.inner-section-1 .content ul li {
  padding: 0.3rem 0;
  list-style: disc;
}

.inner-section-1 figure {
  display: flex;
  justify-content: center;
}

.youtub-link {
  position: relative;
}

.youtub-link .control-btn {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;


}

.youtub-link .control-btn a {
  width: 100px;
  height: 100px;
  border-radius: 100%;
  background: red;
  display: grid;
  place-items: center;
  animation: pulse-animation 2s infinite;
  backdrop-filter: blur(6px);
  overflow: hidden;
  background-position: center;

}

.youtub-link .control-btn a i {
  font-size: 2rem;
  color: white;
}



@keyframes pulse-animation {
  0% {
    box-shadow: 0 0 0 0px rgb(238, 203, 189, 0.9);
  }

  100% {
    box-shadow: 0 0 0 20px rgb(230, 42, 42, 0.1);
  }
}

.inner-section-1 .care-img {
  position: relative;
  display: contents;
}

.inner-section-1 .care-2 {
  position: absolute;
  top: -6%;
  right: -21%;
}

.services-banner {
  background: url(../images/services-banner.png) no-repeat;

}

.service-section-3,
.service-section {
  z-index: 1;
}

.service-section .images-box {
  position: relative;
}

.service-section .images-box img {
  position: relative;
  z-index: 2;

  opacity: 0;
  transform: scale(0.7);
  transition: all 1s ease;
}


.service-section .images-box .line-img {
  position: absolute;
  width: 350px;
  height: 400px;
  background: var(--primary);
  left: -1%;
  top: -2%;
  border-radius: 20px;
  z-index: -1;
  opacity: 0;
  transform: translateX(200px);
}

.service-section .images-box .line-img-1 {
  position: absolute;
  width: 350px;
  height: 300px;
  background: var(--primary);
  top: 30%;
  border-radius: 20px;
  z-index: -1;
  opacity: 0;
  right: 10%;
}

.service-section.animate img {
  opacity: 1;
  transform: scale(1);
}

.service-section.animate .line-img-1,
.service-section.animate .line-img {
  animation: lineJhatka 0.9s cubic-bezier(0.68, -0.6, 0.32, 1.6) forwards;
}

@keyframes lineJhatka {

  0% {
    opacity: 0;
    transform: translateX(200px);
  }

  60% {
    opacity: 1;
    transform: translateX(-20px);
  }

  100% {
    opacity: 1;
    transform: translateX(0);
  }

}

.inner-resources .content,
.service-section-3 .content,
.service-section .content {
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: center;
  width: 90%;
  align-items: start;
}

.service-section-3 .content span,
.service-section .content span {
  font-size: 9rem;
  color: #f8f2cad4;
  font-weight: 500;
  line-height: 1;
}


.service-section-3 .content h2,
.service-section .content h2 {
  color: var(--black);
  font-size: 3.2rem;
  font-weight: 500;
  font-family: "Poppins", sans-serif;
}

.service-section-3 .content {
  width: 85%;
}

.service-section-3:before {
  content: "";
  position: absolute;
  width: 30%;
  height: 100%;
  background: #161614;
  z-index: 0;
  top: 0
}

.service-section-3:after {
  content: "";
  position: absolute;
  width: 70%;
  height: 100%;
  /* background: url(../images/service-bg.png) no-repeat rgb(189 143 45 / 22%); */
  z-index: -1;
  top: 0;
  right: 0;
  background: var(--primary);
}

.service-section-3 .content span {
  color: rgb(49 49 48 / 40%);
}

.service-section-3 .content h2,
.service-section-3 .content p {
  color: var(--white);
}

.who-banner {
  background: url(../images/who-banner.png) no-repeat;
}

.contact-banner {
  background: url(../images/contact-banner.png) no-repeat;
}

.address-tab {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 22px;

}

.address-tab a {
  color: var(--black)
}

.address-tab p {
  font-size: 22px;
  padding: 10px 0;
  color: var(--black);
  text-transform: capitalize;
}

.address-tab .tel-icon {
  width: 150px;
  height: 150px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 100%;

}

.address-tab:nth-of-type(1) .tel-icon {
  background: var(--primary);
}

.address-tab:nth-of-type(2) .tel-icon {
  background: var(--secondary);
}

.address-tab:nth-of-type(3) .tel-icon {
  background: var(--primary);
}

.address-tab .loc-tab {
  background: #000;
}

.tel-icon i {
  font-size: 3rem;
  color: #fff;
}

.contact-map-sec iframe {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  padding: 0;
}

.location-img {
  display: flex;
  flex-direction: column;
  align-items: end;
}

.location-box {
  padding: 0;
  margin: 0;
  border: 7px solid #ffffff;
  border-radius: 17px;

}

.blog-detail h1,
.blog-detail h3 {
  padding-bottom: 1rem;
}

.blog-detail ul {
  padding: 1rem 0 1rem 2rem;
}

.blog-detail ul li {
  padding: 0.5rem 0;
  list-style: disc;
}

.blog-detail ol li {
  padding: 0.5rem 0;
}

/* -----------Donate--------------- */
.donation-section {
  padding: 80px 15px;
  background: #f5f7fb;
}

.donation-section .donation-step {
  display: none;
}

.donation-section .donation-step.active {
  display: block;
}

.donation-section .donation-card {
  max-width: 700px;
  margin: auto;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, .1);
}

.donation-section .donation-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.donation-section .donation-content,
.donation-section .form-card,
.donation-section .success-card {
  padding: 40px;
}

.donation-section .donation-content h2,
.donation-section .form-card h3 {
  margin-bottom: 20px;
}

.donation-section .donation-content p {
  margin-bottom: 30px;
}

/* .themeBtn {
            width: 100%;
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 15px;
            background: #69b867;
            color: #fff;
            border-radius: 8px;
            border: none;
            text-decoration: none;
            font-weight: 600;
        } */

.donation-section .secure-text {
  display: block;
  text-align: center;
  margin-top: 20px;
}

.donation-section .progress-wrap {
  height: 6px;
  background: #ddd;
  margin-bottom: 30px;
}

.donation-section .progress-fill {
  height: 100%;
  background: #000;
}

.donation-section .w-25 {
  width: 25%;
}

.donation-section .w-50 {
  width: 50%;
}

.donation-section .w-75 {
  width: 75%;
}

.donation-section .amount-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin: 25px 0;
}

.donation-section .amount-box {
  border: 1px solid #ddd;
  padding: 18px;
  text-align: center;
  border-radius: 10px;
  cursor: pointer;
}

.donation-section .amount-box input {
  display: none;
}

.donation-section .amount-box.active {
  background: var(--secondary);
  color: #fff;
}

.donation-section .form-card input {
  width: 100%;
  height: 55px;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 0 15px;
  margin-bottom: 15px;
}

.donation-section .double-field {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.donation-section .step-btns {
  display: flex;
  gap: 15px;
}

.donation-section .back-btn {
  flex: 1;
  border: none;
  border-radius: 8px;
  background: #ddd;
}

.donation-section .step-btns .themeBtn {
  flex: 1;
}

.donation-section .success-card {
  text-align: center;
}

.donation-section .success-icon {
  width: 100px;
  height: 100px;
  margin: 0 auto 25px;
  background: var(--secondary);
  color: #fff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 40px;
}

.donation-section .success-info {
  margin: 25px 0;
  font-weight: 600;
}

.donation-section .themeBtn {
  width: 100%;
  border: none;
}

/* ------end----- */
footer {
  background: url(../images/footer-bg.png) no-repeat;
  padding: 17rem 0 0rem;
  background-size: cover;
  background-position: center;
  z-index: 2;
  position: relative;
}

footer figure img {
  width: 300px;
}

.footer-row {
  justify-content: space-between;
}

.footer-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
}

footer .social-icon {
  display: flex;
  padding-top: 1.3rem;
  gap: 1.9rem;
  justify-content: flex-start;
  margin-bottom: 0.7rem;
}

footer .social-icon li a {
  color: var(--white);
  width: 50px;
  height: 50px;
  border: 1px solid var(--white);
  border-radius: 100%;
  display: grid;
  place-items: center;
  transition: 0.2s ease-in;
}

footer .social-icon li a:hover {
  color: var(--black);
  background: #ecf5ff;
  border-color: transparent;
}

footer .contact-details ul {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

footer .contact-details ul li {
  color: var(--white);
}

footer .contact-details h4 {
  font-size: 2rem;
  padding-bottom: 1.4rem;
  color: var(--white);
}

footer .contact-details li {
  font-size: 1.1rem;
  display: flex;
}

footer .contact-details i {
  color: var(--white) !important;
  font-size: 1.5rem !important;
}

footer .contact-details li,
footer .contact-details a,
footer .contact-details i {
  display: flex;
  align-items: center;
  padding-right: 0.7rem;
  color: var(--white);
  line-height: 2;
}

footer .footer-menu li a.active {
  color: var(--primary) !important;
}

footer .contact-details li a:hover,
footer .contact-details li a:hover i {
  color: var(--primary);
}

.footer-menu ul {
  display: flex;
  gap: 5.5rem;
  font-size: 1.2rem;
  margin-top: 2rem;
  border-bottom: 1px solid #fff;
  padding: 2rem 0 2rem;
  border-top: 1px solid #fff;
}

/* .footer-menu ul li {
  list-style: disc;
} */

.footer-menu ul li::marker {
  color: var(--white);
  font-size: 0.8rem;
}

.footer-menu ul li a {
  color: var(--white);
}

.footer-menu ul li a:hover {
  color: var(--primary);
}

.copyright {
  padding: 0.2rem 0 1.2rem;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.copyright p {
  color: var(--white);
}

.map-location iframe {
  border-radius: 20px;
}




.section-acoourdian h2 {
  font-size: 4rem;
  text-align: center;
}

.section-acoourdian p {
  text-align: center;
  padding-bottom: 2.3rem;
}

.section-acoourdian .card {
  background: transparent;
}

.section-acoourdian .card-header {
  background: none;
}

.accordion .card-header {
  cursor: pointer;
}

.accordion .btn-link {
  text-decoration: none;
  width: 100%;
  text-align: left;
  color: #000;
  font-weight: 600;
  position: relative;
  font-size: 1.6rem;
}

/* Default: PLUS sign */
.accordion .btn-link:after {
  content: '+';
  font-size: 18px;
  position: absolute;
  right: 0px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--secondary);
  border-radius: 75%;
  height: 30px;
  width: 30px;
  display: inline-grid;
  place-content: center;
  line-height: 0;
  color: white;
}

/* When open: MINUS sign */
.accordion .btn-link[aria-expanded="true"]:after {
  content: '−';
}



.accordion>.card>.card-header {
  border-bottom: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  border-top: 2px solid #e2dfca;
  border-bottom: 2px solid #e2dfca;
  /* border: none; */
  border-left: none;
  border-right: none;
  border-radius: 0;
}

.accordion>.card:not(:last-of-type) {
  border: none !important
}


.mental-wellness-resources .card {
  background: none;
  border: none;
}

.mental-wellness-resources ul {
  padding: 1rem 0 1rem 2.2rem;
}

.mental-wellness-resources ul li {
  list-style: disc;
  padding: 0.3rem 0;
}


.housing-support-resources .card {
  background: none !important;
  border: none;
}

.housing-support-resources ol,
.housing-support-resources ul {
  padding: 1rem 0 1rem 1.2rem;
}

.housing-support-resources ul li {
  list-style: disc;
  padding: 0.3rem 0;
}

.housing-support-resources ol li {
  padding: 0.3rem 0 !important;
}

.housing-support-resources a {
  color: #5873ad;
}

.housing-support-resources .list-unstyled li {
  list-style: none !important;
}

.housing-support-resources .themeBtn {
  color: white;
  width: fit-content;
}

.housing-support-resources h3 {
  padding: 0.8rem 0;
}

a[href^="tel"] {
  white-space: nowrap;
}