@import url(https://fonts.googleapis.com/css2?family=BioRhyme:wght@200..800&amp;display=swap);
@import url(https://fonts.googleapis.com/css2?family=Spartan:wght@100..900&amp;display=swap);
@import url(https://fonts.googleapis.com/css2?family=Arvo:ital,wght@0,400;0,700;1,400;1,700&amp;display=swap);
:root {
  --primary-white: #ffffff;
  --main-orange: #d4ac3b;
  --primary-black: #000000;
  --grey-black: #181818;
  --grey: #818181;
  --grey-bg: #f2f5f7;
  --icon-bg: #f0f0f0;
  --overlay-color: #d4ac3b;
  --box-shadow-color: rgba(255, 109, 45, 0.3);
  --bg-orange-semi-transparent: rgba(199, 61, 0, 0.8);
  --bg-orange-transparent: rgba(199, 61, 0, 0.6);
  --bg-black-transparent: rgba(0, 0, 0, 0.5);
  --bg-popup-color: rgba(0, 0, 0, 0.8);
  --bg-black-semi-transparent: rgba(24, 24, 24, 0);
  --border-color: #e5e5e5;
  --light-border-color: rgba(255, 255, 255, 0.2);
  --sky-bg-color: #d4e5f3;
  --progress-bg-color: #363435;
  --footer-bg-color: #2b2b2b;
  --overlay-color: rgba(255, 109, 45, 0.8);
  --line-color: #d9dee1;
  --border-color: #d9dee1;
  --yello-bg-color: rgb(255, 210, 0);
  --icon-color: #b5b5b5;
  --submenu-bg-hover-color: #e84700;
  --hero-lg-font-size: 5rem;
  --font-size-btn: 1.2rem;
  --font-size-xx-sm: 1.4rem;
  --font-size-x-sm: 1.6rem;
  --font-size-sm: 1.8rem;
  --font-size-md-light: 2rem;
  --font-size-md: 2.4rem;
  --font-size-md-bold: 3rem;
  --font-size-lg: 3.4rem;
  --font-size-x-lg: 6rem;
  --font-family-bio-rhyme: "BioRhyme";
  --font-family-spartan: "Spartan";
  --font-family-arvo: "Arvo", serif;
}
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  font-size: 62.5%;
  overflow-x: hidden;
}
@media (max-width: 1200px) {
  html {
    font-size: 56.25%;
  }
}
@media (max-width: 991px) {
  html {
    font-size: 50%;
  }
}
body {
  line-height: 1;
  overflow-x: hidden;
}
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background-color: #ebebeb;
  -webkit-border-radius: 10px;
  border-radius: 10px;
}
::-webkit-scrollbar-thumb {
  -webkit-border-radius: 10px;
  border-radius: 10px;
  background: var(--main-orange);
}
.scrollToTopBtn {
  background-color: var(--main-orange);
  border: none;
  border-radius: 50%;
  fill: var(--primary-white);
  cursor: pointer;
  height: 48px;
  width: 48px;
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 100;
  opacity: 0;
  transform: translateY(100px);
  transition: all 0.5s ease;
}
.scrollToTopBtn svg {
  height: 30px;
  width: 30px;
}
.showBtn {
  opacity: 1;
  transform: translateY(0);
}
@keyframes customFadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 50px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.custom-fadeInUp {
  animation-name: customFadeInUp;
}
@keyframes fadeInLeftSmall {
  from {
    opacity: 0;
    transform: translateX(-100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.fadeInLeftSmall {
  animation: fadeInLeftSmall 1s ease forwards;
}
@keyframes fadeInRightSmall {
  from {
    opacity: 0;
    transform: translateX(100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.fadeInRightSmall {
  animation: fadeInRightSmall 1s ease forwards;
}
.primary-heading {
  font-size: var(--font-size-x-lg);
  font-family: var(--font-family-bio-rhyme);
  color: var(--grey-black);
  font-weight: 700;
  text-align: left;
}
.about-us-block .primary-heading{
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
@media (max-width: 991px) {
  .primary-heading {
    text-align: center;
    font-size: 4.2rem;
  }
}
.primary-heading .orange-dot {
  color: var(--main-orange);
}
.primary-heading .underline {
  height: 4px;
  border: 2px solid var(--main-orange);
  width: 80px;
  margin: 12px 0;
  background-color: var(--main-orange);
  display: block;
}
@media (max-width: 991px) {
  .primary-heading .underline {
    margin: 12px auto;
  }
}
.primary-discription {
  font-family: var(--font-family-spartan);
  font-weight: 500;
  font-size: var(--font-size-x-sm);
  text-align: center;
  color: var(--grey);
  line-height: 1.875;
}
@media (max-width: 991px) {
  .primary-discription {
    text-align: center;
    font-size: var(--font-size-x-sm);
    width: 100%;
  }
}
.container {
  max-width: 128rem;
  margin: 0 auto;
  padding: 0 3.2rem;
}
.grid {
  display: grid;
  column-gap: 4.8rem;
  row-gap: 9.6rem;
}
@media (max-width: 1200px) {
  .grid {
    column-gap: 3.2rem;
    row-gap: 7.2rem;
  }
}
.grid-4-col {
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 991px) {
  .grid-4-col {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .grid-4-col {
    grid-template-columns: repeat(1, 1fr);
  }
}
p {
  font-family: var(--font-family-spartan);
  font-weight: 500;
  font-size: var(--font-size-x-sm);
  color: rgb(60, 60, 60);
  line-height: 1.883;
}
.btn,
.btn:link,
.btn:visited {
  font-family: var(--font-family-spartan);
  font-weight: bold;
  font-size: var(--font-size-btn);
  text-decoration: none;
  padding: 22px 52px 20px;
  letter-spacing: 2px;
  border-radius: 48px;
  display: inline-block;
  border: none;
  text-align: center;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 991px) {
  .btn,
  .btn:link,
  .btn:visited {
    padding: 18px 38px 16px;
    letter-spacing: 1px;
  }
}
@media (max-width: 767px) {
  .btn,
  .btn:link,
  .btn:visited {
    padding: 12px 32px 10px;
  }
}
.btn--orange:link,
.btn--orange:visited {
  background-color: var(--main-orange);
  color: var(--primary-white);
}
.btn--orange:hover,
.btn--orange:active {
  background-color: var(--primary-white);
  color: var(--main-orange);
}
.btn--white:link,
.btn--white:visited {
  background-color: var(--primary-white);
  color: var(--main-orange);
}
.btn--white:hover,
.btn--white:active {
  background-color: var(--main-orange);
  color: var(--primary-white);
}
.visually-hidden {
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}
.swiper-hero {
  height: 100%;
  width: 100%;
}
.hero-slider {
  width: 100%;
  height: 100%;
  position: relative;
}
.hero-slider .swiper-slide {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  position: relative;
}
.hero-slider .swiper-slide .hero-slide-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: calc(100% + 100px);
  height: 100%;
  object-fit: cover;
}
.hero-slider .swiper-slide {
  position: relative;
  overflow: hidden;
}

.hero-slider .swiper-slide::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.45); /* Dark overlay (adjust opacity) */
  z-index: 1; /* Keep it above background, but below text */
}

.hero-slider .swiper-slide .hero-text-box {
  position: relative;
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
  width: 80%;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  z-index: 2; /* Ensures text stays above overlay */
}

@media (max-width: 1456px) {
  .hero-slider .swiper-slide .hero-text-box {
    padding-top: 18.2rem;
    padding-bottom: 18.2rem;
  }
}
.hero-slider .swiper-slide .hero-text-box .hero-heading {
  font-size: var(--hero-lg-font-size);
  color: var(--primary-white);
  font-family: var(--font-family-bio-rhyme);
  font-weight: bold;
  line-height: 1.1;
  width: 90%;
}
@media (max-width: 991px) {
  .hero-slider .swiper-slide .hero-text-box .hero-heading {
    font-size: 7.2rem;
  }
}
@media (max-width: 767px) {
  .hero-slider .swiper-slide .hero-text-box .hero-heading {
    font-size: 20px;
  }
}
.hero-slider .swiper-slide .hero-text-box .description {
  font-size: var(--font-size-md-light);
  color: var(--primary-white);
  font-family: var(--font-family-spartan);
  font-weight: 600;
  line-height: 1.5;
  padding: 3.2rem 0;
  width: 50%;
}
@media (max-width: 1200px) {
  .hero-slider .swiper-slide .hero-text-box .description {
    padding: 2.8rem 0;
    width: 90%;
  }
}
@media (max-width: 991px) {
  .hero-slider .swiper-slide .hero-text-box .description {
    font-size: var(--font-size-sm);
    width: 65%;
  }
}
@media (max-width: 767px) {
  .hero-slider .swiper-slide .hero-text-box .description {
    font-size: var(--font-size-xx-sm);
    padding: 1.2rem 0;
    width: 100%;
  }
}
.hero-slider .swiper-slide .hero-text-box .hero-sm-text {
  font-size: var(--font-size-x-lg);
  color: var(--grey-black);
  width: 57%;
}
@media (max-width: 991px) {
  .hero-slider .swiper-slide .hero-text-box .hero-sm-text {
    font-size: 4.2rem;
    width: 53%;
  }
}
@media (max-width: 767px) {
  .hero-slider .swiper-slide .hero-text-box .hero-sm-text {
    font-size: 3.2rem;
    width: 72%;
  }
}
.hero-slider .swiper-slide .hero-text-box .orange--text {
  color: var(--main-orange);
}
.hero-slider .swiper-slide .hero-text-box .grey-text {
  color: var(--grey);
  font-family: var(--font-family-spartan);
  font-weight: 600;
}
.hero-slider .swiper-hero-button-next,
.hero-slider .swiper-hero-button-prev {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 52px;
  height: 52px;
  background: var(--main-orange);
  fill: var(--primary-white);
  border-radius: 50%;
  padding: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.hero-slider .swiper-button-disabled {
  background: var(--primary-white);
  opacity: 0.302;
}
.hero-slider .swiper-button-disabled path {
  fill: var(--primary-black);
}
.hero-slider .swiper-hero-button-next {
  right: 52px;
}
@media (max-width: 1200px) {
  .hero-slider .swiper-hero-button-next {
    right: 28px;
    width: 42px;
    height: 42px;
    padding: 10px;
  }
}
@media (max-width: 940px) {
  .hero-slider .swiper-hero-button-next {
    right: 28px;
    width: 38px;
    height: 38px;
    padding: 10px;
  }
}
@media (max-width: 767px) {
  .hero-slider .swiper-hero-button-next {
    right: 18px;
    width: 32px;
    height: 32px;
    padding: 8px;
  }
}
.hero-slider .swiper-hero-button-prev {
  left: 52px;
}
@media (max-width: 1200px) {
  .hero-slider .swiper-hero-button-prev {
    left: 28px;
    width: 42px;
    height: 42px;
    padding: 10px;
  }
}
@media (max-width: 940px) {
  .hero-slider .swiper-hero-button-prev {
    left: 28px;
    width: 38px;
    height: 38px;
    padding: 10px;
  }
}
@media (max-width: 767px) {
  .hero-slider .swiper-hero-button-prev {
    left: 18px;
    width: 32px;
    height: 32px;
    padding: 8px;
  }
}
.hero-slider .swiper-hero-pagination {
  display: flex;
  gap: 2px;
}
.hero-slider .swiper-horizontal > .swiper-pagination-bullets,
.hero-slider .swiper-pagination-bullets.swiper-pagination-horizontal {
  position: absolute;
  z-index: 1;
  bottom: 46px;
  left: 50%;
  transform: translateX(-50%);
  width: auto;
}
@media (max-width: 1200px) {
  .hero-slider .swiper-horizontal > .swiper-pagination-bullets,
  .hero-slider .swiper-pagination-bullets.swiper-pagination-horizontal {
    bottom: 28px;
  }
}
@media (max-width: 767px) {
  .hero-slider .swiper-horizontal > .swiper-pagination-bullets,
  .hero-slider .swiper-pagination-bullets.swiper-pagination-horizontal {
    bottom: 18px;
  }
}
.hero-slider .swiper-hero-pagination .swiper-pagination-bullet {
  height: 1rem;
  width: 1rem;
  background: var(--primary-white);
  opacity: 0.4;
}
@media (max-width: 940px) {
  .hero-slider .swiper-hero-pagination .swiper-pagination-bullet {
    height: 8px;
    width: 8px;
  }
}
.hero-slider .swiper-hero-pagination .swiper-pagination-bullet-active {
  background: var(--main-orange);
  opacity: 1;
}
.hero-slider .hero-btn {
  display: flex;
  gap: 12px;
  margin-top: 1.6rem;
}
.features-section {
  background: url("../images/home/paw-bg.png") no-repeat center;
  background-size: cover;
  position: relative;
}
.features-section .headings {
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
  margin-bottom: 8.2rem;
}
@media (max-width: 767px) {
  .hero-slider .hero-btn {
    flex-direction: column;
  }
}
.features-section {
  padding: 15rem 0;
}
@media (max-width: 767px) {
  .features-section {
    padding: 5rem 0;
  }
}
.features-section .headings {
  display: flex;
  align-items: center;
  gap: 2.4rem;
  justify-content: space-between;
  margin-bottom: 8.2rem;
}
@media (max-width: 991px) {
  .features-section .headings {
    flex-direction: column;
  }
}
.features-section .grid {
  column-gap: 3rem;
}
.features-section .feature-block {
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
  text-decoration: none;
  position: relative;
}
.features-section .feature-block .img-block {
  position: relative;
  display: inline-block;
  margin-bottom: 22px;
}
.features-section .feature-block .img-block .feature-img {
  border-radius: 50% 50%;
  width: 212px;
  height: 212px;
  display: block;
  object-fit: cover;
}
.features-section .feature-block .img-block .plus-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 50px;
  width: 50px;
  fill: var(--primary-white);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.features-section .feature-block .img-block .overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--overlay-color);
  opacity: 0;
  border-radius: 50% 50%;
  transition: opacity 0.3s ease;
}
.features-section .feature-block .feature-icon-block {
  outline: 2px solid var(--main-orange);
  background-color: var(--primary-white);
  border-radius: 50%;
  position: absolute;
  left: 50%;
  top: -50px;
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
  align-items: center;
  height: 102px;
  width: 102px;
  z-index: 1;
  transition: 0.3s ease;
}
.features-section .feature-block .feature-icon-block .feature-icon {
  height: 40px;
  width: 40px;
  fill: var(--main-orange);
}
.features-section .feature-block .feature-text-box {
  outline: 1px solid var(--border-color);
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  gap: 2.8rem;
  padding: 3.6rem 1.2rem;
}
.features-section .feature-block .feature-text-box .title {
  font-size: 20px;
  font-family: var(--font-family-bio-rhyme);
  color: var(--grey-black);
  font-weight: bold;
  line-height: 1.25;
}
.features-section .feature-block .feature-text-box .feature-text {
  font-family: var(--font-family-spartan);
  font-weight: 500;
  font-size: var(--font-size-x-sm);
  color: var(--grey);
  line-height: 1.88;
}
.features-section .feature-block .feature-text-box .link {
  color: var(--grey);
  font-family: var(--font-family-spartan);
  font-weight: 600;
  font-size: var(--font-size-xx-sm);
  line-height: 2.15;
}
.features-section .feature-block .feature-box-v2 {
  padding-top: 8.8rem;
  background-color: white;
}
.features-section .feature-block:hover .feature-img {
  background-color: var(--bg-orange-semi-transparent);
}
.features-section .feature-block:hover .feature-text-box {
  outline: 2px solid var(--main-orange);
  box-shadow: 0px 10px 20px 0px var(--box-shadow-color);
}
.features-section .feature-block:hover .link {
  color: var(--main-orange);
  text-decoration: underline;
}
.features-section .feature-block:hover .plus-icon {
  opacity: 1;
}
.features-section .feature-block:hover .overlay {
  opacity: 1;
}
.features-section .feature-block:hover .feature-icon-block {
  background-color: var(--main-orange);
}
.features-section .feature-block:hover .feature-icon-block .feature-icon {
  fill: var(--primary-white);
}
.features-section .heading-center {
  margin-bottom: 5rem;
}
.features-section .heading-center .primary-heading {
  text-align: center;
}
.features-section .heading-center .primary-heading .underline {
  margin: 12px auto;
}
.features-section .heading-center .primary-discription {
  text-align: center;
  margin: auto;
}
.features-section .about-feature-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}
@media (max-width: 991px) {
  .features-section .about-feature-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .features-section .about-feature-wrapper {
    grid-template-columns: repeat(1, 1fr);
  }
}
.features-section .about-feature-wrapper .about-feature-card {
  text-decoration: none;
}
.features-section
  .about-feature-wrapper
  .about-feature-card
  .about-feature-img {
  width: 100%;
  border-radius: 10px;
  max-height: 262px;
  height: 100%;
  object-fit: cover;
}
.features-section
  .about-feature-wrapper
  .about-feature-card
  .about-feature-content {
  margin-top: 1rem;
  padding: 4rem 3rem;
  outline: 1px solid var(--border-color);
  border-radius: 10px;
}
.features-section
  .about-feature-wrapper
  .about-feature-card
  .about-feature-content
  .title {
  font-size: var(--font-size-md);
  font-family: var(--font-family-bio-rhyme);
  color: var(--grey-black);
  font-weight: bold;
  line-height: 1.87;
  margin-bottom: 3rem;
}
.services-section {
  padding: 15rem 0;
  background: url("../images/home/services-bg.png") no-repeat center;
  background-size: cover;
}
@media (max-width: 767px) {
  .services-section {
    padding: 5rem 0;
  }
}
.services-section .primary-heading {
  text-align: center;
}
.services-section .primary-heading .underline {
  margin: 12px auto;
}
.services-section .primary-discription {
  text-align: center;
  margin: auto;
}
.services-section .services-card-section {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  margin-top: 5.2rem;
}
@media (max-width: 991px) {
  .services-section .services-card-section {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 767px) {
  .services-section .services-card-section {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 425px) {
  .services-section .services-card-section {
    grid-template-columns: 1fr;
  }
}
.services-section .services-card-section .service-card {
  position: relative;
  text-decoration: none;
  transition: 0.3s ease;
}
.services-section .services-card-section .service-card .service-img-block {
  position: relative;
  display: inline-block;
  margin-bottom: 1rem;
  width: 100%;
}
.services-section
  .services-card-section
  .service-card
  .service-img-block
  .service-img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  display: block;
  object-fit: cover;
}

.gallery-img{
  width: 100%;
  height: 100%;
  border-radius: 10px;
  display: block;
  object-fit: cover;
  margin-bottom: 10px;
}
.services-section
  .services-card-section
  .service-card
  .service-img-block
  .plus-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 50px;
  width: 50px;
  fill: var(--primary-white);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.services-section
  .services-card-section
  .service-card
  .service-img-block
  .overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #d4ab3bcc;
  opacity: 0;
  border-radius: 10px;
  transition: opacity 0.3s ease;
}
.services-section
  .services-card-section
  .service-card
  .service-img-block::after {
  content: "➔"; /* Right arrow */
  background-color: var(--main-orange);
  border: 6px solid var(--primary-white);
  border-radius: 50%;
  position: absolute;
  width: 80px;
  height: 80px;
  font-size: var(--font-size-md-light);
  font-family: var(--font-family-spartan);
  color: var(--primary-white);
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  right: 2rem;
  bottom: -5rem;
  transition: 0.3s ease;
}
.services-section .services-card-section .service-card .service-content {
  outline: 1px solid var(--border-color);
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 4rem 3rem;
  text-align: left;
  background-color: white;
}
.services-section .services-card-section .service-card .service-content .title {
  font-size: var(--font-size-md);
  font-family: var(--font-family-bio-rhyme);
  color: var(--grey-black);
  font-weight: bold;
  line-height: 1.25;
}
.services-section
  .services-card-section
  .service-card
  .service-content
  .news-text
  span {
  color: var(--grey);
  font-family: var(--font-family-spartan);
  font-weight: 400;
  font-size: var(--font-size-xx-sm);
  margin-right: 2.2rem;
}
.services-section
  .services-card-section
  .service-card
  .service-content
  .service-description {
  font-family: var(--font-family-spartan);
  font-weight: 500;
  font-size: var(--font-size-x-sm);
  color: var(--grey);
  line-height: 1.875;
}
/* .services-section
  .services-card-section
  .service-card
  .service-content
  .read-more {
  color: var(--grey);
  font-family: var(--font-family-spartan);
  font-weight: 600;
  font-size: var(--font-size-xx-sm);
  line-height: 1.55;
  transition: 0.3s ease;
} */
.services-section
  .services-card-section
  .service-card
  .service-content
  .read-more
  a {
  color: var(--grey);
  font-family: var(--font-family-spartan);
  font-weight: 600;
  font-size: var(--font-size-xx-sm);
  line-height: 1.55;
  transition: 0.3s ease;
}
.services-section .services-card-section .service-card:hover .service-content {
  outline: 2px solid var(--main-orange);
  box-shadow: 0px 10px 20px 0px var(--box-shadow-color);
}
.services-section .services-card-section .service-card:hover .plus-icon {
  opacity: 1;
}
.services-section .services-card-section .service-card:hover .overlay {
  opacity: 1;
}
.services-section
  .services-card-section
  .service-card:hover
  .service-img-block::after {
  background-color: var(--primary-black);
}
.services-section .services-card-section .service-card:hover .read-more a {
  text-decoration: underline;
  color: var(--main-orange);
}
.services-section .services-card-section .hidden-item {
  display: none;
}
.services-section .services-card-section .hidden-item.visible {
  display: block;
}
.services-section .service-more-btn {
  display: flex;
  justify-content: center;
}
.services-section .service-more-btn .btn--white {
  font-family: var(--font-family-bio-rhyme);
  font-weight: 700;
  font-size: var(--font-size-x-sm);
  background-color: var(--grey-black);
  color: var(--primary-white);
  transition: 0.3s ease;
  margin-top: 10rem;
}
.services-section .service-more-btn .btn--white:hover {
  background-color: var(--main-orange);
}
.about-us-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
@media (max-width: 991px) {
  .about-us-section {
    grid-template-columns: 1fr;
  }
}
.about-us-section .about-img-block {
  background: url("../images/home/about-us.png");
  background-repeat: no-repeat;
  background-position: center;
  background-color: var(--main-orange);
  background-size: cover;
  position: relative;
}
@media (max-width: 991px) {
  .about-us-section .about-img-block {
    min-height: 50rem;
  }
}
.about-us-section .about-img-block .about-banner {
  background-color: var(--primary-white);
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 2.8rem;
  max-width: 660px;
  height: 167px;
  border-radius: 20px 0 0 20px;
  padding: 2.4rem;
  position: absolute;
  right: 0;
  bottom: 10rem;
  margin-left: 2rem;
}
@media (max-width: 1200px) {
  .about-us-section .about-img-block .about-banner {
    height: 124px;
  }
}
@media (max-width: 991px) {
  .about-us-section .about-img-block .about-banner {
    height: 102px;
  }
}
@media (max-width: 767px) {
  .about-us-section .about-img-block .about-banner {
    height: 82px;
  }
}
.about-us-section .about-img-block .about-banner .icon-inner {
  height: 80px;
  width: 80px;
  fill: var(--main-orange);
}
@media (max-width: 991px) {
  .about-us-section .about-img-block .about-banner .icon-inner {
    height: 60px;
    width: 60px;
  }
}
@media (max-width: 767px) {
  .about-us-section .about-img-block .about-banner .icon-inner {
    height: 50px;
    width: 50px;
  }
}
.about-us-section .about-img-block .about-banner .banner-inner-text {
  font-size: 25px;
  font-family: var(--font-family-bio-rhyme);
  color: var(--grey-black);
  font-weight: bold;
  line-height: 1.294;
  width: 70%;
}
@media (max-width: 991px) {
  .about-us-section .about-img-block .about-banner .banner-inner-text {
    font-size: 2.8rem;
    width: 50%;
  }
}
@media (max-width: 767px) {
  .about-us-section .about-img-block .about-banner .banner-inner-text {
    font-size: 1.8rem;
  }
}
.about-us-section .about-text-block {
  background: url("../images/home/about-paw.png");
  padding: 10rem 0;

  color: var(--primary-white);
}
@media (max-width: 991px) {
  .about-us-section .about-text-block {
    padding: 7rem 0;
  }
}
@media (max-width: 767px) {
  .about-us-section .about-text-block {
    padding: 5rem 0;
  }
}
.about-us-section .about-text-block .primary-heading {
  color: var(--primary-white);
  padding-left: 10.2rem;
  text-align: left;
  font-weight: 400;
  margin-bottom: 3rem;
}
@media (max-width: 1200px) {
  .about-us-section .about-text-block .primary-heading {
    padding-left: 9.2rem;
  }
}
@media (max-width: 767px) {
  .about-us-section .about-text-block .primary-heading {
    padding-left: 3.2rem;
  }
}
.about-us-section .about-text-block .primary-heading .underline {
  border-color: var(--primary-white);
  background-color: var(--primary-white);
  margin: 14px 0;
}
.about-us-section .about-text-block .about-us-comment {
  background-color: #000000a1;
  max-width: 660px;
  padding: 5.6rem 2.2rem;
}
@media (max-width: 1200px) {
  .about-us-section .about-text-block .about-us-comment {
    padding: 4.6rem 9.2rem;
  }
}
@media (max-width: 767px) {
  .about-us-section .about-text-block .about-us-comment {
    padding: 2.6rem 3.2rem;
  }
}
.about-us-section .about-text-block .about-us-comment .comment {
  font-size: 20px;
  font-family: var(--font-family-bio-rhyme);
  color: var(--primary-white);
  font-weight: 400;
  line-height: 1.467;
}
@media (max-width: 767px) {
  .about-us-section .about-text-block .about-us-comment .comment {
    font-size: var(--font-size-md);
  }
}
.about-us-section .about-text-block .about-us-comment .about-name {
  font-size: var(--font-size-md-light);
  margin-top: 3.8rem;
  color: var(--primary-white);
  a {
    text-decoration: none;
    color: white;
  }
}
.about-us-section .about-text-block .about-video-box {
  display: flex;
  align-items: center;
  gap: 2.4rem;
  padding-left: 10.2rem;
  margin-top: 3rem;
}
@media (max-width: 1200px) {
  .about-us-section .about-text-block .about-video-box {
    padding-left: 9.2rem;
  }
}
@media (max-width: 767px) {
  .about-us-section .about-text-block .about-video-box {
    padding-left: 3.2rem;
  }
}
.about-us-section .about-text-block .about-video-box .video-block:link,
.about-us-section .about-text-block .about-video-box .video-block:visited {
  position: relative;
  text-decoration: none;
}
.about-us-section
  .about-text-block
  .about-video-box
  .video-block:link
  .video-img,
.about-us-section
  .about-text-block
  .about-video-box
  .video-block:visited
  .video-img {
  border-radius: 10px;
  width: 219px;
  height: 137px;
  background-color: var(--main-orange);
}
@media (max-width: 767px) {
  .about-us-section
    .about-text-block
    .about-video-box
    .video-block:link
    .video-img,
  .about-us-section
    .about-text-block
    .about-video-box
    .video-block:visited
    .video-img {
    width: 168px;
    height: 112px;
  }
}
.about-us-section
  .about-text-block
  .about-video-box
  .video-block:link
  .video-play-icon,
.about-us-section
  .about-text-block
  .about-video-box
  .video-block:visited
  .video-play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 70px;
  width: 70px;
  fill: var(--main-orange);
  opacity: 1;
  background-color: var(--primary-white);
  border-radius: 50%;
  padding: 1rem;
}
.about-us-section .about-text-block .about-video-box .modal {
  display: none;
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: var(--bg-black-transparent);
}
.about-us-section .about-text-block .about-video-box .modal-content {
  position: relative;
  margin: 15% auto;
  padding: 30px;
  width: 80%;
  max-width: 700px;
}
.about-us-section .about-text-block .about-video-box .modal-content iframe {
  width: 100%;
  border: none;
}
.about-us-section .about-text-block .about-video-box .close-btn {
  position: absolute;
  top: 4px;
  right: 4px;
  height: 28px;
  width: 28px;
  font-weight: bold;
  cursor: pointer;
  background-color: var(--primary-white);
  border-radius: 50%;
}
.about-us-section .about-text-block .about-video-box .video-text-box {
  width: 42%;
}
@media (min-width: 1800px) {
  .about-us-section .about-text-block .about-video-box .video-text-box {
    width: 27%;
  }
}
.about-us-section
  .about-text-block
  .about-video-box
  .video-text-box
  .video-title {
  font-family: var(--font-family-bio-rhyme);
  font-weight: bold;
  font-size: var(--font-size-md);
  line-height: 1.25;
}
@media (max-width: 767px) {
  .about-us-section
    .about-text-block
    .about-video-box
    .video-text-box
    .video-title {
    font-size: var(--font-size-sm);
  }
}
.about-us-section
  .about-text-block
  .about-video-box
  .video-text-box
  .watch-video {
  font-size: var(--font-size-btn);
  font-family: var(--font-family-spartan);
  color: var(--primary-white);
  font-weight: bold;
  line-height: 1.25;
  text-transform: uppercase;
  margin-top: 3.2rem;
  letter-spacing: 1.5px;
}
.about-us-v2-section {
  width: 100%;
  position: relative;
}

.about-us-v2-section .image-container .video-container {
  width: 100%;
  padding: 6rem 0;
}
.about-us-v2-section .image-container .video-container .video-wrapper {
  position: relative;
}
.about-us-v2-section
  .image-container
  .video-container
  .video-wrapper
  .about-v2-img {
  background-color: var(--grey-black);
  border-radius: 10px;
  width: 100%;
  height: 657px;
  object-fit: cover;
}
@media (max-width: 767px) {
  .about-us-v2-section
    .image-container
    .video-container
    .video-wrapper
    .about-v2-img {
    height: 482px;
  }
}
.about-us-v2-section
  .image-container
  .video-container
  .video-wrapper
  .video-play-banner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4.8rem;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 1;
}
.about-us-v2-section
  .image-container
  .video-container
  .video-wrapper
  .video-play-banner
  .icon-play {
  width: 118px;
  height: 118px;
  fill: var(--main-orange);
  background: var(--primary-white);
  border-radius: 50%;
  padding: 18px;
}
@media (max-width: 991px) {
  .about-us-v2-section
    .image-container
    .video-container
    .video-wrapper
    .video-play-banner
    .icon-play {
    height: 82px;
    width: 82px;
  }
}
@media (max-width: 767px) {
  .about-us-v2-section
    .image-container
    .video-container
    .video-wrapper
    .video-play-banner
    .icon-play {
    height: 62px;
    width: 62px;
    padding: 8px;
  }
}
.about-us-v2-section
  .image-container
  .video-container
  .video-wrapper
  .video-play-banner
  .video-text-box
  .video-heading {
  font-size: var(--font-size-md-bold);
  font-family: var(--font-family-bio-rhyme);
  color: var(--primary-white);
  font-weight: bold;
  line-height: 1.333;
  text-align: center;
  width: 75%;
  margin: auto;
}
@media (max-width: 991px) {
  .about-us-v2-section
    .image-container
    .video-container
    .video-wrapper
    .video-play-banner
    .video-text-box
    .video-heading {
    width: 100%;
  }
}
.about-us-v2-section
  .image-container
  .video-container
  .video-wrapper
  .video-play-banner
  .video-text-box
  .watch-video {
  font-size: var(--font-size-x-sm);
  font-family: var(--font-family-spartan);
  font-weight: bold;
  line-height: 1.25;
  text-transform: uppercase;
  margin-top: 3.8rem;
  letter-spacing: 1.5px;
  color: var(--primary-white);
  text-align: center;
}
.about-us-v2-section .image-container .video-container .video-wrapper .modal {
  display: none;
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: var(--bg-black-transparent);
}
.about-us-v2-section
  .image-container
  .video-container
  .video-wrapper
  .modal-content {
  position: relative;
  margin: 15% auto;
  padding: 30px;
  width: 80%;
  max-width: 700px;
}
.about-us-v2-section
  .image-container
  .video-container
  .video-wrapper
  .modal-content
  iframe {
  width: 100%;
  border: none;
}
.about-us-v2-section
  .image-container
  .video-container
  .video-wrapper
  .close-btn {
  position: absolute;
  top: 4px;
  right: 4px;
  height: 28px;
  width: 28px;
  font-weight: bold;
  cursor: pointer;
  background-color: var(--primary-white);
  border-radius: 50%;
}
.about-us-v2-section
  .image-container
  .video-container
  .about-us-services-section {
  /* display: grid; */
  gap: 3.2rem;
  grid-template-columns: 1fr 1fr;
}
@media (max-width: 991px) {
  .about-us-v2-section
    .image-container
    .video-container
    .about-us-services-section {
    grid-template-columns: 1fr;
    gap: 0;
  }
}
.about-us-v2-section
  .image-container
  .video-container
  .about-us-services-section
  .primary-heading {
  font-size: var(--font-size-lg);
  color: #000;
  margin: 4.8rem 0;
}
.about-us-v2-section
  .image-container
  .video-container
  .about-us-services-section
  .primary-heading
  .underline {
  border: 2px solid #f8c847;
  background-color: var(--primary-white);
}
.about-us-v2-section
  .image-container
  .video-container
  .about-us-services-section
  .accordian-section
  .accordian-block {
  background-color: var(--primary-white);
  border-radius: 10px;
  margin-bottom: 10px;
}
.about-us-v2-section
  .image-container
  .video-container
  .about-us-services-section
  .accordian-section
  .accordian-block
  .accordion {
  background-color: var(--primary-white);
  font-size: var(--font-size-md-light);
  font-family: var(--font-family-bio-rhyme);
  color: var(--primary-black);
  font-weight: bold;
  cursor: pointer;
  padding: 18px;
  border-radius: 10px;
  width: 100%;
  border: none;
  text-align: left;
  outline: none;
  transition: 0.4s;
  display: flex;
  align-items: center;
  gap: 2rem;
}
@media (max-width: 767px) {
  .about-us-v2-section
    .image-container
    .video-container
    .about-us-services-section
    .accordian-section
    .accordian-block
    .accordion {
    padding: 18px;
  }
}
.about-us-v2-section
  .image-container
  .video-container
  .about-us-services-section
  .accordian-section
  .accordian-block
  .active,
.about-us-v2-section
  .image-container
  .video-container
  .about-us-services-section
  .accordian-section
  .accordian-block
  .accordion:hover {
  background-color: var(--primary-white);
}
.about-us-v2-section
  .image-container
  .video-container
  .about-us-services-section
  .accordian-section
  .accordian-block
  .icon {
  height: 2rem;
  width: 2rem;
  fill: var(--primary-white);
  line-height: 1.2;
  border-radius: 50%;
  background-color: var(--main-orange);
  display: inline-block;
}
.about-us-v2-section
  .image-container
  .video-container
  .about-us-services-section
  .accordian-section
  .accordian-block
  .accordian-minus-icon {
  display: none;
}
.about-us-v2-section
  .image-container
  .video-container
  .about-us-services-section
  .accordian-section
  .accordian-block
  .accordian-plus-icon {
  display: inline;
}
.about-us-v2-section
  .image-container
  .video-container
  .about-us-services-section
  .accordian-section
  .accordian-block
  .panel {
  font-size: var(--font-size-x-sm);
  font-family: var(--font-family-spartan);
  font-weight: 500;
  line-height: 1.875;
  color: var(--grey);
  padding: 0 50px 0 58px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
}
@media (max-width: 767px) {
  .about-us-v2-section
    .image-container
    .video-container
    .about-us-services-section
    .accordian-section
    .accordian-block
    .panel {
    padding: 0 52px;
  }
}
.about-us-v2-section
  .image-container
  .video-container
  .about-us-services-section
  .accordian-section
  .accordian-block
  .panel.open {
  max-height: 200px;
  padding-bottom: 38px;
}
.about-us-v2-section
  .image-container
  .video-container
  .about-us-services-section
  .toggle-card-section
  .tab--block {
  display: flex;
  justify-content: space-between;
  gap: 0.6rem;
}
.about-us-v2-section
  .image-container
  .video-container
  .about-us-services-section
  .toggle-card-section
  .tab--block
  .tab-links {
  font-size: var(--font-size-sm);
  padding: 2.2rem 1.8rem;
  font-family: var(--font-family-bio-rhyme);
  color: var(--primary-white);
  font-weight: bold;
  line-height: 1.5;
  background-color: var(--bg-orange-transparent);
  outline: none;
  border: none;
  border-radius: 10px 10px 0 0;
  cursor: pointer;
  width: 100%;
  display: inline-block;
  transition: all 0.2s ease-in-out;
}
@media (max-width: 767px) {
  .about-us-v2-section
    .image-container
    .video-container
    .about-us-services-section
    .toggle-card-section
    .tab--block
    .tab-links {
    font-size: var(--font-size-xx-sm);
    padding: 2rem 1.2rem;
  }
}
.about-us-v2-section
  .image-container
  .video-container
  .about-us-services-section
  .toggle-card-section
  .tab--block
  .active-tab {
  background-color: var(--primary-white);
  color: var(--primary-black);
}
.about-us-v2-section
  .image-container
  .video-container
  .about-us-services-section
  .toggle-card-section
  .toggle-card {
  display: flex;
  gap: 3rem;
  padding: 4.6rem;
  align-items: center;
  border-radius: 0 0 10px 10px;
  background-color: var(--primary-white);
  transition: all 0.2s ease-in-out;
}
@media (max-width: 767px) {
  .about-us-v2-section
    .image-container
    .video-container
    .about-us-services-section
    .toggle-card-section
    .toggle-card {
    gap: 2rem;
    padding: 2.6rem;
  }
}
.about-us-v2-section
  .image-container
  .video-container
  .about-us-services-section
  .toggle-card-section
  .toggle-card
  .toggle-card-img {
  border-radius: 10px;
  object-fit: cover;
  width: 100%;
  height: 186px;
  background-color: var(--primary-black);
  overflow: hidden;
}
.about-us-v2-section
  .image-container
  .video-container
  .about-us-services-section
  .toggle-card-section
  .toggle-card
  .card-text {
  font-size: var(--font-size-x-sm);
  font-family: var(--font-family-spartan);
  font-weight: 500;
  color: var(--grey);
  line-height: 1.875;
  text-align: left;
}
@media (max-width: 1200px) {
  .about-us-v2-section
    .image-container
    .video-container
    .about-us-services-section
    .toggle-card-section
    .toggle-card
    .card-text {
    line-height: 1.65;
  }
}
@media (max-width: 767px) {
  .about-us-v2-section
    .image-container
    .video-container
    .about-us-services-section
    .toggle-card-section
    .toggle-card
    .card-text {
    line-height: 1.4;
  }
}
.about-us-v2-section
  .image-container
  .video-container
  .about-us-services-section
  .toggle-card-section
  .hidden {
  display: none;
}
.feedback-section {
  background-color: black;
  width: 100%;
}
.feedback-section .feedback--wrapper {
  padding: 10.2rem 0;
}
@media (max-width: 767px) {
  .feedback-section .feedback--wrapper {
    padding: 5rem 0;
  }
}
.feedback-section .feedback--wrapper .primary-heading {
  text-align: center;
}
.feedback-section .feedback--wrapper .primary-heading .underline {
  margin: 12px auto;
}
.feedback-section .feedback--wrapper .swiper {
  width: 100%;
  max-width: 100%;
  margin-top: 40px;
  padding: 0 18rem;
  overflow: visible;
}
@media (max-width: 991px) {
  .feedback-section .feedback--wrapper .swiper {
    padding: 0 29rem;
    margin-top: 20px;
  }
}
@media (max-width: 767px) {
  .feedback-section .feedback--wrapper .swiper {
    padding: 20px;
  }
}
.feedback-section .feedback--wrapper .swiper .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
  opacity: 0.4;
  cursor: pointer;
}
@media (max-width: 767px) {
  .feedback-section .feedback--wrapper .swiper .swiper-slide {
    padding: 20px;
  }
}
.feedback-section .feedback--wrapper .swiper .swiper-slide-active {
  opacity: 1;
}
.feedback-section .feedback--wrapper .swiper .feedback-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.8rem;
  border-radius: 10px;
  background-color: var(--primary-white);
  padding: 3.2rem 3.8rem;
  text-align: center;
}
.feedback-section
  .feedback--wrapper
  .swiper
  .feedback-card
  .feedback-img-block {
  position: relative;
}
.feedback-section
  .feedback--wrapper
  .swiper
  .feedback-card
  .feedback-img-block
  .feedback-img {
  border-radius: 50%;
  width: 76px;
  height: 76px;
}
.feedback-section
  .feedback--wrapper
  .swiper
  .feedback-card
  .feedback-img-block::after {
  content: "“";
  font-size: 112px;
  font-family: var(--font-family-spartan);
  line-height: 1.2;
  color: var(--main-orange);
  position: absolute;
  display: inline-block;
  left: -3rem;
  top: -1rem;
}
.feedback-section .feedback--wrapper .swiper .feedback-card .feedback-text {
  font-size: var(--font-size-sm);
  font-family: var(--font-family-spartan);
  font-weight: 500;
  color: var(--grey);
  line-height: 1.889;
}
.feedback-section .feedback--wrapper .swiper .feedback-card .feedback-name {
  font-family: var(--font-family-spartan);
  font-weight: 600;
  font-size: var(--font-size-xx-sm);
  color: var(--main-orange);
  margin-top: 1.8rem;
}
.feedback-section .feedback--wrapper .swiper .feedback-pagination {
  display: flex;
  justify-content: center;
  margin-top: 5rem;
  gap: 2px;
}
.feedback-section
  .feedback--wrapper
  .swiper
  .feedback-pagination
  .swiper-pagination-bullet {
  width: 1rem;
  height: 1rem;
  background-color: var(--primary-white);
  opacity: 0.4;
}
.feedback-section
  .feedback--wrapper
  .swiper
  .feedback-pagination
  .swiper-pagination-bullet-active {
  background-color: var(--main-orange);
  opacity: 1;
}
.feedback-section .dogs-potrait {
  display: flex;
  justify-content: center;
}
.feedback-section .dogs-potrait .dogs-img {
  width: 80%;
}
.breeds-section {
  padding: 10.2rem 0;
  background-color: var(--grey-black);
}
@media (max-width: 767px) {
  .breeds-section {
    padding: 5rem 0;
  }
}
.breeds-section .primary-heading {
  text-align: center;
  color: var(--primary-white);
}
.breeds-section .primary-heading .underline {
  margin: 12px auto;
}
.breeds-section .primary-discription {
  text-align: center;
  margin: auto;
}
.breeds-section .breed-card-block {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 3rem;
  margin: 5rem 0;
}
@media (max-width: 991px) {
  .breeds-section .breed-card-block {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 767px) {
  .breeds-section .breed-card-block {
    grid-template-columns: repeat(2, 1fr);
  }
}
.breeds-section .breed-card-block .dog-breed-card:link,
.breeds-section .breed-card-block .dog-breed-card:visited {
  outline: 1px solid var(--light-border-color);
  border-radius: 10px;
  background-color: var(--bg-black-semi-transparent);
  text-decoration: none;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2.2rem;
  padding: 2.8rem 0;
  transition: 0.1s linear;
}
.breeds-section .breed-card-block .dog-breed-card:link .breed-img,
.breeds-section .breed-card-block .dog-breed-card:visited .breed-img {
  width: 116px;
  height: 116px;
  border-radius: 50%;
  object-fit: cover;
}
.breeds-section .breed-card-block .dog-breed-card:link .dog-breed-title,
.breeds-section .breed-card-block .dog-breed-card:visited .dog-breed-title {
  font-size: var(--font-size-sm);
  font-family: var(--font-family-bio-rhyme);
  color: var(--primary-white);
  font-weight: bold;
  line-height: 1.2;
  text-align: center;
}
.breeds-section .breed-card-block .dog-breed-card:link:hover,
.breeds-section .breed-card-block .dog-breed-card:link:active,
.breeds-section .breed-card-block .dog-breed-card:visited:hover,
.breeds-section .breed-card-block .dog-breed-card:visited:active {
  outline: 2px solid var(--main-orange);
  box-shadow: 0px 10px 20px 0px var(--box-shadow-color);
  transition: 0.1s linear;
}
.breeds-section .breeds-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
}
@media (max-width: 767px) {
  .breeds-section .breeds-buttons {
    flex-direction: column;
  }
}
.breeds-section .breeds-buttons .btn {
  font-family: var(--font-family-bio-rhyme);
  font-weight: bold;
  font-size: var(--font-size-x-sm);
  text-transform: capitalize;
  letter-spacing: 0;
}
.breeds-section .breeds-buttons .btn--white {
  color: var(--grey-black);
}
.breeds-section .breeds-buttons .btn--white:hover {
  color: var(--primary-white);
}
.breeds-light-section {
  background-color: var(--primary-white);
}
.breeds-light-section .primary-heading {
  color: var(--primary-black);
}
.breeds-light-section .breed-card-block .dog-breed-card:link,
.breeds-light-section .breed-card-block .dog-breed-card:visited {
  outline: 1px solid var(--border-color);
  transition: 0.1s linear;
}
.breeds-light-section .breed-card-block .dog-breed-card:link .breed-img,
.breeds-light-section .breed-card-block .dog-breed-card:visited .breed-img {
  outline: 1px solid var(--border-color);
}
.breeds-light-section .breed-card-block .dog-breed-card:link .dog-breed-title,
.breeds-light-section
  .breed-card-block
  .dog-breed-card:visited
  .dog-breed-title {
  color: var(--primary-black);
}
.breeds-light-section .breed-card-block .active {
  outline: 2px solid var(--main-orange) !important;
  box-shadow: 0px 10px 20px 0px var(--box-shadow-color);
}
.breeds-light-section .breed-card-content {
  display: none;
  opacity: 0;
  transition: opacity 0.5s ease;
}
.breeds-light-section .breed-main-img {
  width: 100%;
  max-height: 568px;
  object-fit: cover;
  border-radius: 10px;
}
.breeds-light-section .inner-container {
  max-width: 850px;
  margin: 0 auto;
  gap: 8px;
}
.breeds-light-section .inner-container .primary-heading {
  text-align: center;
  line-height: 1.2;
}
@media (max-width: 767px) {
  .breeds-light-section .inner-container .primary-heading {
    font-size: 4rem;
  }
}

.breeds-light-section .inner-container .news-text {
  margin: 2rem 0;
}
.breeds-light-section .inner-container .news-text span {
  color: var(--grey);
  font-family: var(--font-family-spartan);
  font-weight: 400;
  font-size: var(--font-size-xx-sm);
  margin-right: 2.2rem;
}
.breeds-light-section .inner-container .quote-block {
  padding: 5rem 6rem;
  border: 2px solid var(--main-orange);
  border-radius: 10px;
  margin-bottom: 5rem;
}
.breeds-light-section .inner-container .quote-block .quote {
  font-size: var(--font-size-md);
  font-family: var(--font-family-bio-rhyme);
  font-weight: 400;
  color: var(--main-orange);
  line-height: 1.467;
  text-align: left;
}
.breeds-light-section .inner-container .quote-block .name {
  font-size: var(--font-size-md-light);
  margin-top: 3.8rem;
  text-align: left;
  margin-bottom: 0;
}
.breeds-light-section .inner-container .img-gallery {
  display: flex;
  gap: 2.8rem;
  justify-content: center;
  margin-bottom: 5rem;
  padding-top: 1rem;
  cursor: pointer;
}
@media (max-width: 767px) {
  .breeds-light-section .inner-container .img-gallery {
    flex-wrap: wrap;
  }
}
.breeds-light-section .inner-container .img-gallery .img-block {
  position: relative;
  display: inline-block;
}
.breeds-light-section .inner-container .img-gallery .img-block .dog-img {
  border-radius: 50% 50%;
  width: 149px;
  height: 149px;
  display: block;
  object-fit: cover;
}
@media (max-width: 991px) {
  .breeds-light-section .inner-container .img-gallery .img-block .dog-img {
    height: 120px;
    width: 120px;
  }
}
@media (max-width: 767px) {
  .breeds-light-section .inner-container .img-gallery .img-block .dog-img {
    width: 90px;
    height: 90px;
  }
}
.breeds-light-section .inner-container .img-gallery .img-block .plus-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 50px;
  width: 50px;
  fill: var(--primary-white);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.breeds-light-section .inner-container .img-gallery .img-block .overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--overlay-color);
  opacity: 0;
  border-radius: 50% 50%;
  transition: opacity 0.3s ease;
}
.breeds-light-section
  .inner-container
  .img-gallery
  .img-block:hover
  .plus-icon {
  opacity: 1;
}
.breeds-light-section .inner-container .img-gallery .img-block:hover .overlay {
  opacity: 1;
}
.breeds-light-section .inner-container .img-popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--bg-popup-color);
  justify-content: center;
  align-items: center;
  z-index: 10;
}
.breeds-light-section .inner-container .img-popup.opened {
  display: flex;
}
.breeds-light-section .inner-container .popup-image {
  max-width: 80%;
  max-height: 80%;
  border-radius: 10px;
}
.breeds-light-section .inner-container .close-btn {
  position: absolute;
  top: 20px;
  right: 30px;
  height: 30px;
  width: 30px;
  fill: var(--primary-white);
  cursor: pointer;
}
.breeds-light-section .inner-container .heading .primary-heading {
  font-size: var(--font-size-md);
  margin-bottom: 4rem;
}
.breeds-light-section .inner-container .form {
  max-width: 852px;
  margin: 5rem auto 0;
}
@media (max-width: 991px) {
  .breeds-light-section .inner-container .form {
    padding: 0 10rem;
  }
}
@media (max-width: 767px) {
  .breeds-light-section .inner-container .form {
    padding: 0 0rem;
  }
}
.breeds-light-section .inner-container .form .form-block {
  display: flex;
  gap: 2rem;
  margin-bottom: 2rem;
}
@media (max-width: 991px) {
  .breeds-light-section .inner-container .form .form-block {
    flex-direction: column;
  }
}
.breeds-light-section .inner-container .form .form-group {
  width: 100%;
}
.breeds-light-section .inner-container .form .form-group input[type="text"],
.breeds-light-section .inner-container .form .form-group input[type="email"],
.breeds-light-section .inner-container .form .form-group input[type="tel"],
.breeds-light-section .inner-container .form .form-group textarea {
  outline: none;
  width: 100%;
  padding: 18px 30px;
  border: 1px solid var(--border-color);
  border-radius: 3.6rem;
  box-sizing: border-box;
  font-family: var(--font-family-spartan);
  line-height: 1.2;
  color: var(--grey);
  font-size: var(--font-size-xx-sm);
}
.breeds-light-section .inner-container .form .form-group textarea {
  width: 100%;
  height: 185px;
  resize: none;
  border-radius: 2.6rem;
}
.breeds-light-section .inner-container .form .btn--white {
  font-size: var(--font-size-x-sm);
  font-family: var(--font-family-bio-rhyme);
  color: var(--primary-white);
  font-weight: bold;
  line-height: 1.2;
  background-color: var(--grey-black);
  text-transform: capitalize;
  display: flex;
  letter-spacing: 0px;
  padding: 18px 32px;
  margin: 2rem auto;
  transition: 0.3s ease;
}
.breeds-light-section .inner-container .form .btn--white:hover {
  background-color: var(--main-orange);
  color: var(--primary-white);
}
.breeds-light-section .inner-container .form #successMessage {
  margin-top: 15px;
  text-align: center;
  font-weight: bold;
  font-family: var(--font-family-spartan);
}
.breeds-light-section .breed-card-content.active {
  display: block;
  opacity: 1;
}
.healthcare-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background-color: var(--grey-bg);
}
@media (max-width: 991px) {
  .healthcare-section {
    grid-template-columns: 1fr;
  }
}
.healthcare-section .healthcare-img-block {
  background: url("../images/home/dog-highlights.png");
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
  position: relative;
}
@media (max-width: 991px) {
  .healthcare-section .healthcare-img-block {
    min-height: 70rem;
  }
}
.healthcare-section .healthcare-img-block .text-banner {
  background-color: var(--primary-white);
  display: flex;
  justify-content: end;
  align-items: center;
  gap: 2.8rem;
  max-width: 660px;
  height: 167px;
  border-radius: 20px 0 0 20px;
  padding: 2.4rem;
  position: absolute;
  right: 0;
  bottom: 10rem;
}
@media (max-width: 1200px) {
  .healthcare-section .healthcare-img-block .text-banner {
    height: 124px;
  }
}
@media (max-width: 991px) {
  .healthcare-section .healthcare-img-block .text-banner {
    height: 102px;
  }
}
@media (max-width: 767px) {
  .healthcare-section .healthcare-img-block .text-banner {
    height: 82px;
  }
}
.healthcare-section .healthcare-img-block .text-banner .icon-inner {
  height: 80px;
  width: 80px;
  fill: var(--main-orange);
}
@media (max-width: 991px) {
  .healthcare-section .healthcare-img-block .text-banner .icon-inner {
    height: 60px;
    width: 60px;
  }
}
@media (max-width: 767px) {
  .healthcare-section .healthcare-img-block .text-banner .icon-inner {
    height: 50px;
    width: 50px;
  }
}
.healthcare-section .healthcare-img-block .text-banner .banner-inner-text {
  font-size: 25px;
  font-family: var(--font-family-bio-rhyme);
  color: var(--grey-black);
  font-weight: bold;
  line-height: 1.294;
}
@media (max-width: 991px) {
  .healthcare-section .healthcare-img-block .text-banner .banner-inner-text {
    font-size: 2.8rem;
  }
}
@media (max-width: 767px) {
  .healthcare-section .healthcare-img-block .text-banner .banner-inner-text {
    font-size: 1.8rem;
  }
}
.healthcare-section .healthcare-details {
  max-width: 660px;
  padding: 10rem 0 10rem 8rem;
}
@media (max-width: 1200px) {
  .healthcare-section .healthcare-details {
    padding: 10rem 0 10rem 8rem;
  }
}
@media (max-width: 991px) {
  .healthcare-section .healthcare-details {
    padding: 5rem 0;
  }
}
.healthcare-section .healthcare-details .dog-healthcare-services .container {
  position: relative;
}
.healthcare-section .healthcare-details .dog-healthcare-services .service-item {
  display: flex;
  align-items: center;
  position: relative;
}
.healthcare-section
  .healthcare-details
  .dog-healthcare-services
  .service-item:last-child
  > .service-content {
  margin-bottom: 0;
  border-bottom: none;
}
.healthcare-section
  .healthcare-details
  .dog-healthcare-services
  .service-item
  .service-icon {
  width: 85px;
  height: 85px;
  background-color: var(--grey-bg);
  border: 2px solid var(--main-orange);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  left: -30px;
}
@media (max-width: 991px) {
  .healthcare-section
    .healthcare-details
    .dog-healthcare-services
    .service-item
    .service-icon {
    height: 75px;
    width: 75px;
    left: -15px;
  }
}
@media (max-width: 767px) {
  .healthcare-section
    .healthcare-details
    .dog-healthcare-services
    .service-item
    .service-icon {
    height: 65px;
    width: 65px;
  }
}
.healthcare-section
  .healthcare-details
  .dog-healthcare-services
  .service-item
  .service-icon
  .icon-inner {
  height: 40px;
  width: 40px;
  fill: var(--main-orange);
  line-height: 1.2;
}
.healthcare-section
  .healthcare-details
  .dog-healthcare-services
  .service-item
  .service-content {
  margin-left: 80px;
  padding: 30px 0;
  border-bottom: 1px solid var(--border-color);
}
@media (max-width: 767px) {
  .healthcare-section
    .healthcare-details
    .dog-healthcare-services
    .service-item
    .service-content {
    margin-left: 60px;
  }
}
.healthcare-section
  .healthcare-details
  .dog-healthcare-services
  .service-item
  .service-content
  .service-name {
  font-family: var(--font-family-bio-rhyme);
  font-size: var(--font-size-md);
  font-weight: 700;
  color: var(--grey-black);
  margin-bottom: 10px;
  line-height: 1.2;
}
.healthcare-section
  .healthcare-details
  .dog-healthcare-services
  .service-item
  .service-content
  .service-detail {
  color: var(--grey);
  font-size: var(--font-size-x-sm);
  font-family: var(--font-family-spartan);
  font-weight: 500;
  line-height: 1.665;
}
.healthcare-section
  .healthcare-details
  .dog-healthcare-services
  .container:before {
  content: "";
  position: absolute;
  left: 42px;
  top: 0;
  bottom: 0;
  width: 2px;
  background-color: var(--main-orange);
  height: 400px;
  margin: auto;
}
@media (max-width: 991px) {
  .healthcare-section
    .healthcare-details
    .dog-healthcare-services
    .container:before {
    left: 42px;
    height: 347px;
  }
}
@media (max-width: 767px) {
  .healthcare-section
    .healthcare-details
    .dog-healthcare-services
    .container:before {
    height: 332px;
  }
}
.healthcare-section
  .healthcare-details
  .dog-healthcare-services
  .dog-healthcare-buttons {
  display: flex;
  margin: 3rem 0;
  gap: 1rem;
}
@media (max-width: 991px) {
  .healthcare-section
    .healthcare-details
    .dog-healthcare-services
    .dog-healthcare-buttons {
    justify-content: center;
    flex-direction: column;
    padding: 0 2.5rem;
  }
}
.healthcare-section
  .healthcare-details
  .dog-healthcare-services
  .dog-healthcare-buttons
  .btn {
  font-family: var(--font-family-bio-rhyme);
  font-weight: bold;
  font-size: var(--font-size-x-sm);
  text-transform: capitalize;
  letter-spacing: 0;
}
.healthcare-section
  .healthcare-details
  .dog-healthcare-services
  .dog-healthcare-buttons
  .btn--white {
  color: var(--primary-white);
  background-color: var(--grey-black);
}
.healthcare-section
  .healthcare-details
  .dog-healthcare-services
  .dog-healthcare-buttons
  .btn--white:hover {
  background-color: var(--main-orange);
}
.groomer-section {
  padding: 15rem 0;
}
@media (max-width: 767px) {
  .groomer-section {
    padding: 5rem 0;
  }
}
.groomer-section .container {
  padding: 0;
}
@media (max-width: 1300px) {
  .groomer-section .container {
    padding: 0 3.2rem;
  }
}
.groomer-section .primary-heading {
  text-align: center;
}
.groomer-section .primary-heading .underline {
  margin: 12px auto;
}
.groomer-section .primary-discription {
  text-align: center;
  margin: auto;
}
.groomer-section .grid {
  column-gap: 3rem;
}
.groomer-section .groomers-cards-block {
  margin-top: 4.4rem;
}
.groomer-section .groomers-cards-block .groomer-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.4rem;
  padding: 4rem 0;
  border-radius: 10px;
  width: 100%;
  outline: 1px solid var(--border-color);
  transition: 0.2s linear;
}
.groomer-section .groomers-cards-block .groomer-card .groomer-img {
  width: 212px;
  height: 213px;
  border-radius: 50%;
  object-fit: cover;
}
.groomer-section
  .groomers-cards-block
  .groomer-card
  .groomer-card__content
  .groomer-name {
  font-size: var(--font-size-md);
  font-family: var(--font-family-bio-rhyme);
  color: var(--grey-black);
  font-weight: bold;
  line-height: 1.25;
  text-align: center;
  text-transform: capitalize;
}
.groomer-section
  .groomers-cards-block
  .groomer-card
  .groomer-card__content
  .groomer-job-title {
  font-family: var(--font-family-spartan);
  font-weight: 600;
  font-size: var(--font-size-btn);
  color: var(--grey);
  text-transform: uppercase;
  letter-spacing: 1px;
  text-align: center;
  margin-top: 1.4rem;
}
.groomer-section .groomers-cards-block .groomer-card .groomer-social-icons {
  list-style-type: none;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}
.groomer-section
  .groomers-cards-block
  .groomer-card
  .groomer-social-icons
  .groomer-icon-link:link,
.groomer-section
  .groomers-cards-block
  .groomer-card
  .groomer-social-icons
  .groomer-icon-link:visited {
  text-decoration: none;
  background-color: var(--icon-bg);
  width: 41px;
  height: 41px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: 0.2s ease;
}
.groomer-section
  .groomers-cards-block
  .groomer-card
  .groomer-social-icons
  .groomer-icon-link:link
  .groomer-icon,
.groomer-section
  .groomers-cards-block
  .groomer-card
  .groomer-social-icons
  .groomer-icon-link:visited
  .groomer-icon {
  height: 2rem;
  width: 2rem;
  fill: var(--grey);
}
.groomer-section
  .groomers-cards-block
  .groomer-card
  .groomer-social-icons
  .groomer-icon-link:link:hover,
.groomer-section
  .groomers-cards-block
  .groomer-card
  .groomer-social-icons
  .groomer-icon-link:visited:hover {
  background-color: var(--main-orange);
}
.groomer-section
  .groomers-cards-block
  .groomer-card
  .groomer-social-icons
  .groomer-icon-link:link:hover
  .groomer-icon,
.groomer-section
  .groomers-cards-block
  .groomer-card
  .groomer-social-icons
  .groomer-icon-link:visited:hover
  .groomer-icon {
  fill: var(--primary-white);
}
.groomer-section .groomers-cards-block .groomer-card:hover {
  outline: 2px solid var(--main-orange);
  box-shadow: 0px 10px 20px 0px var(--box-shadow-color);
  transition: 0.2s linear;
}
.healthcare-stats-section {
  background: #000000;
  background-size: cover;
}
.healthcare-stats-section .primary-heading {
  text-align: center;
  color: var(--primary-white);
}
.healthcare-stats-section .primary-heading .underline {
  margin: 12px auto;
}
.healthcare-stats-section .stats-wrapper {
  padding: 15rem 0;
}
@media (max-width: 767px) {
  .healthcare-stats-section .stats-wrapper {
    padding: 5rem 0;
  }
}
.healthcare-stats-section .stats-wrapper .all-progress-loader {
  display: grid;
  align-items: center;
  margin-top: 9rem;
  grid-template-columns: auto auto auto auto;
  row-gap: 6rem;
}
@media (max-width: 767px) {
  .healthcare-stats-section .stats-wrapper .all-progress-loader {
    grid-template-columns: auto auto;
  }
}
.healthcare-stats-section .stats-wrapper .all-progress-loader .progress {
  border-right: 1px solid var(--light-border-color);
  display: grid;
}
@media (max-width: 767px) {
  .healthcare-stats-section
    .stats-wrapper
    .all-progress-loader
    .progress:nth-child(2) {
    border-right: none;
  }
}
.healthcare-stats-section
  .stats-wrapper
  .all-progress-loader
  .progress:last-child {
  border-right: none;
}
.healthcare-stats-section
  .stats-wrapper
  .all-progress-loader
  .progress
  .stats-title {
  text-align: center;
  font-family: var(--font-family-bio-rhyme);
  font-weight: 700;
  font-size: var(--font-size-sm);
  color: var(--primary-white);
  margin-top: 3rem;
}
.healthcare-stats-section
  .stats-wrapper
  .all-progress-loader
  .progress
  .circle-wrap {
  width: 144px;
  height: 144px;
  background: var(--light-border-color);
  border-radius: 50%;
  position: relative;
  justify-self: center;
}
.healthcare-stats-section
  .stats-wrapper
  .all-progress-loader
  .progress
  .circle-wrap
  .circle
  .mask,
.healthcare-stats-section
  .stats-wrapper
  .all-progress-loader
  .progress
  .circle-wrap
  .circle
  .fill-1,
.healthcare-stats-section
  .stats-wrapper
  .all-progress-loader
  .progress
  .circle-wrap
  .circle
  .fill-2,
.healthcare-stats-section
  .stats-wrapper
  .all-progress-loader
  .progress
  .circle-wrap
  .circle
  .fill-3,
.healthcare-stats-section
  .stats-wrapper
  .all-progress-loader
  .progress
  .circle-wrap
  .circle
  .fill-4 {
  width: 144px;
  height: 144px;
  position: absolute;
  border-radius: 50%;
}
.healthcare-stats-section
  .stats-wrapper
  .all-progress-loader
  .progress
  .circle-wrap
  .circle
  .mask {
  clip: rect(0px, 150px, 150px, 72px);
}
.healthcare-stats-section
  .stats-wrapper
  .all-progress-loader
  .progress
  .circle-wrap
  .inside-circle {
  width: 132px;
  height: 132px;
  border-radius: 50%;
  background: var(--progress-bg-color);
  line-height: 120px;
  text-align: center;
  margin-top: 6px;
  margin-left: 6px;
  color: var(--primary-white);
  font-family: var(--font-family-bio-rhyme);
  font-weight: 700;
  position: absolute;
  z-index: 100;
  font-size: var(--font-size-md-bold);
  display: flex;
  align-items: center;
  justify-content: center;
  img {
    width: 40px;
  }
}
.healthcare-stats-section
  .stats-wrapper
  .all-progress-loader
  .progress
  .mask
  .full-1,
.healthcare-stats-section
  .stats-wrapper
  .all-progress-loader
  .progress
  .circle
  .fill-1 {
  clip: rect(0px, 75px, 150px, 0px);
  background-color: var(--main-orange);
}
.healthcare-stats-section
  .stats-wrapper
  .all-progress-loader
  .progress
  .mask
  .full-2,
.healthcare-stats-section
  .stats-wrapper
  .all-progress-loader
  .progress
  .circle
  .fill-2 {
  clip: rect(0px, 75px, 150px, 0px);
  background-color: var(--main-orange);
}
.healthcare-stats-section
  .stats-wrapper
  .all-progress-loader
  .progress
  .mask
  .full-3,
.healthcare-stats-section
  .stats-wrapper
  .all-progress-loader
  .progress
  .circle
  .fill-3 {
  clip: rect(0px, 75px, 150px, 0px);
  background-color: var(--main-orange);
}
.healthcare-stats-section
  .stats-wrapper
  .all-progress-loader
  .progress
  .mask
  .full-4,
.healthcare-stats-section
  .stats-wrapper
  .all-progress-loader
  .progress
  .circle
  .fill-4 {
  clip: rect(0px, 75px, 150px, 0px);
  background-color: var(--main-orange);
}
.healthcare-stats-section .dogs-potrait {
  display: flex;
  justify-content: center;
}
.healthcare-stats-section .dogs-potrait .dogs-img {
  width: 80%;
}
.footer {
  padding: 15rem 0;
  background-color: var(--grey-black);
}
@media (max-width: 767px) {
  .footer {
    padding: 5rem 0;
  }
}
.footer .grid {
  grid-template-columns: auto auto auto auto;
}
@media (max-width: 991px) {
  .footer .grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .footer .grid {
    grid-template-columns: repeat(1, 1fr);
  }
}
.footer .footer-wrapper .sub-heading {
  font-family: var(--font-family-bio-rhyme);
  font-weight: 700;
  font-size: var(--font-size-md);
  color: var(--primary-white);
  text-transform: capitalize;
}
.footer .footer-wrapper .footer-description {
  font-family: var(--font-family-spartan);
  font-weight: 500;
  color: var(--grey);
  font-size: var(--font-size-xx-sm);
  line-height: 1.665;
}
.footer .footer-wrapper .about-col {
  display: flex;
  flex-direction: column;
  gap: 3.2rem;
}
.footer .footer-wrapper .about-col .footer-social-links {
  list-style-type: none;
  display: flex;
  gap: 1rem;
}
.footer .footer-wrapper .about-col .footer-social-links .social-link:link,
.footer .footer-wrapper .about-col .footer-social-links .social-link:visited {
  text-decoration: none;
  background-color: var(--footer-bg-color);
  width: 41px;
  height: 41px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.3s ease;
}
.footer .footer-wrapper .about-col .footer-social-links .social-link:link .icon,
.footer
  .footer-wrapper
  .about-col
  .footer-social-links
  .social-link:visited
  .icon {
  height: 2rem;
  width: 2rem;
  fill: var(--grey);
  line-height: 1.2;
  transition: 0.3s ease;
}
.footer .footer-wrapper .about-col .footer-social-links .social-link:link:hover,
.footer
  .footer-wrapper
  .about-col
  .footer-social-links
  .social-link:visited:hover {
  background-color: var(--main-orange);
}
.footer
  .footer-wrapper
  .about-col
  .footer-social-links
  .social-link:link:hover
  .icon,
.footer
  .footer-wrapper
  .about-col
  .footer-social-links
  .social-link:visited:hover
  .icon {
  fill: var(--primary-white);
}
.footer .footer-wrapper .links-col {
  justify-self: center;
}
@media (max-width: 991px) {
  .footer .footer-wrapper .links-col {
    justify-self: start;
  }
}
.footer .footer-wrapper .links-col .footer-nav {
  margin-top: 3.2rem;
  list-style-type: none;
}
.footer .footer-wrapper .links-col .footer-nav .footer-link:link,
.footer .footer-wrapper .links-col .footer-nav .footer-link:visited {
  text-decoration: none;
  font-family: var(--font-family-spartan);
  font-weight: 500;
  color: var(--grey);
  font-size: var(--font-size-xx-sm);
  line-height: 2.429;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: 0.3s ease;
}
.footer .footer-wrapper .links-col .footer-nav .footer-link:link .icon-play,
.footer .footer-wrapper .links-col .footer-nav .footer-link:visited .icon-play {
  height: 14px;
  width: 14px;
  fill: var(--grey);
  line-height: 2.429;
  outline: 1px solid var(--grey);
  border-radius: 50%;
  transition: 0.3s ease;
}
.footer .footer-wrapper .links-col .footer-nav .footer-link:link:hover,
.footer .footer-wrapper .links-col .footer-nav .footer-link:visited:hover {
  color: var(--primary-white);
}
.footer
  .footer-wrapper
  .links-col
  .footer-nav
  .footer-link:link:hover
  .icon-play,
.footer
  .footer-wrapper
  .links-col
  .footer-nav
  .footer-link:visited:hover
  .icon-play {
  fill: var(--main-orange);
  outline: 1px solid var(--main-orange);
}
.footer .footer-wrapper .our-dogs-col .dogs-face-imgs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 3.2rem;
  max-width: 50%;
}
.footer .footer-wrapper .our-dogs-col .dogs-face-imgs .footer-img {
  position: relative;
  display: inline-block;
  transition: 0.3s ease;
}
.footer .footer-wrapper .our-dogs-col .dogs-face-imgs .footer-img img {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  object-fit: cover;
}
.footer .footer-wrapper .our-dogs-col .dogs-face-imgs .footer-img .plus-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 25px;
  width: 25px;
  fill: var(--primary-white);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.footer .footer-wrapper .our-dogs-col .dogs-face-imgs .footer-img .overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--overlay-color);
  opacity: 0;
  border-radius: 50% 50%;
  transition: opacity 0.3s ease;
}
.footer
  .footer-wrapper
  .our-dogs-col
  .dogs-face-imgs
  .footer-img:hover
  .plus-icon {
  opacity: 1;
}
.footer
  .footer-wrapper
  .our-dogs-col
  .dogs-face-imgs
  .footer-img:hover
  .overlay {
  opacity: 1;
}
.footer .footer-wrapper .subscribe-col {
  display: flex;
  flex-direction: column;
  gap: 3.2rem;
}
.footer .footer-wrapper .subscribe-col .email-validaion-block {
  min-width: 259px;
}
.footer .footer-wrapper .subscribe-col .email-validaion-block form {
  display: grid;
  align-items: center;
  grid-template-columns: 1fr auto;
  gap: 1rem;
}
.footer .footer-wrapper .subscribe-col .email-validaion-block form input {
  outline: none;
  border: none;
  color: var(--primary-white);
  background-color: var(--footer-bg-color);
  padding: 1.8rem 2.8rem;
  border-radius: 30px;
  width: 100%;
}
.footer
  .footer-wrapper
  .subscribe-col
  .email-validaion-block
  form
  input::placeholder {
  font-size: var(--font-size-xx-sm);
  font-family: var(--font-family-spartan);
  color: var(--grey);
  line-height: 1.714;
}
.footer .footer-wrapper .subscribe-col .email-validaion-block form button {
  border-radius: 50%;
  background-color: var(--main-orange);
  width: 52px;
  height: 52px;
  border: none;
  outline: none;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  padding-top: 2px;
  cursor: pointer;
}
.footer
  .footer-wrapper
  .subscribe-col
  .email-validaion-block
  form
  button
  .arrow-right {
  height: 24px;
  width: 24px;
  fill: var(--primary-white);
}
.footer .footer-wrapper .subscribe-col .email-validaion-block #error-message {
  color: red;
  font-size: var(--font-size-btn);
  text-align: left;
  visibility: hidden;
  margin-top: 4px;
  margin-left: 2rem;
}
.footer .copyright {
  font-family: var(--font-family-spartan);
  font-weight: 500;
  color: var(--grey);
  font-size: var(--font-size-btn);
  text-transform: uppercase;
  margin-top: 5rem;
  letter-spacing: 1px;
}
.questionaire-section {
  padding: 1.8rem 0;
background: #808080bd;
  background-repeat: repeat;
  background-size: cover;
}
@media (max-width: 767px) {
  .questionaire-section {
    padding: 5rem 0;
  }
}
.questionaire-section-2 {
  padding: 8.8rem 0;
  background-image: url(d4850ce21d5789d78a48.png);
  background-repeat: repeat;
  background-size: cover;
}
@media (max-width: 767px) {
  .questionaire-section-2 {
    padding: 5rem 0;
  }
}
.questionaire-section-2 .question-block .question .question-icon {
  background-color: black;
}
.questionaire-section-2 .question-block .question .question-icon .dog-icon {
  fill: var(--primary-white);
}
.questionaire-section-2 .question-block .question .question-text {
  color: var(--primary-black);
}
.question-block {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 3rem;
  align-items: center;
}
@media (max-width: 991px) {
  .question-block {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 767px) {
  .question-block {
    grid-template-columns: 1fr;
  }
}
.question-block .question {
  display: flex;
  align-items: center;
  gap: 2.4rem;
}
@media (max-width: 767px) {
  .question-block .question {
    flex-direction: column;
  }
}
.question-block .question .question-icon {
  border-radius: 50%;
  background-color: black;
  display: flex;
  justify-content: center;
  align-items: center;
}
.question-block .question .question-icon .dog-icon {
    height: 70px;
    width: 70px;
    fill: var(--main-orange);
    line-height: 1.2;
    padding: 1rem;
}
@media (max-width: 991px) {
  .question-block .question .question-icon .dog-icon {
    height: 75px;
    width: 75px;
  }
}
@media (max-width: 767px) {
  .question-block .question .question-icon .dog-icon {
    height: 60px;
    width: 60px;
  }
}
.question-block .question .question-text {
    font-size: 29px;
    font-family: var(--font-family-bio-rhyme);
    font-weight: 700;
    color: var(--primary-white);
    line-height: 1.2;
}
@media (max-width: 1200px) {
  .question-block .question .question-text {
    font-size: 20px;
  }
}
@media (max-width: 991px) {
  .question-block .question .question-text {
    font-size: 20px;
  }
}
@media (max-width: 767px) {
  .question-block .question .question-text {
    font-size: 25px;
    text-align: center;
  }
}
.question-block .question-btn {
  display: flex;
  gap: 1rem;
  justify-self: end;
}
@media (max-width: 991px) {
  .question-block .question-btn {
    justify-self: center;
  }
}
@media (max-width: 767px) {
  .question-block .question-btn {
    flex-direction: column;
    width: 100%;
  }
}
.question-block .question-btn .btn {
  position: relative;
  display: inline-block;
  font-family: var(--font-family-bio-rhyme);
  font-weight: bold;
  font-size: var(--font-size-x-sm);
  text-transform: capitalize;
  letter-spacing: 0;
  color: #fff;
  background: #111;
  padding: 12px 24px;
  border: 2px solid transparent;
  border-radius: 8px;
  cursor: pointer;
  overflow: hidden;
  z-index: 1;
  transition: color 0.3s ease;
}

/* Glowing Border Animation */
.question-block .question-btn .btn::before {
content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    width: calc(100% + 4px);
    height: calc(100% + 4px);
    background: linear-gradient(45deg, #d4ac3b, #000000, #fae5ab, #f8c847, #d4ac3b, #000000);
    background-size: 400%;
    z-index: -1;
    border-radius: 10px;
    animation: glowBorder 5s linear infinite;
   
}

/* Optional inner background for glowing aura */
.question-block .question-btn .btn::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 6px;
  z-index: -1;
}

/* Animation keyframes */
@keyframes glowBorder {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.question-block .question-btn .btn--orange {
  background-color: var(--primary-black);
}
.question-block .question-btn .btn--orange:hover {
  background-color: var(--primary-white);
}
.question-block .question-btn .btn--white:hover {
  background-color: var(--primary-black);
}
.page-header-section {
  background-image: url(../images/subanner.jpg);
  background-color: #000000;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.page-header-section .text-block {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 3.6rem;
  padding: 21.18rem 0 9.8rem 0;
}
@media (min-width: 1600px) {
  .page-header-section .text-block {
    padding: 25rem 0 15rem 0;
  }
}
.page-header-section .text-block .primary-heading {
  color: var(--primary-white);
  font-size: 5rem;
  line-height: 1;
}
.page-header-section .text-block .breadcrumb {
  padding: 0 0.5rem;
}
.page-header-section .text-block .breadcrumb ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
}
.page-header-section .text-block .breadcrumb ul li {
  line-height: 1.665;
  font-family: var(--font-family-spartan);
  font-weight: 500;
  font-size: var(--font-size-xx-sm);
  color: var(--primary-white);
  display: flex;
  align-items: center;
  fill: var(--primary-white);
}
.page-header-section .text-block .breadcrumb ul li .page-link:link,
.page-header-section .text-block .breadcrumb ul li .page-link:visited {
  text-decoration: none;
  color: var(--primary-white);
}
.page-header-section .text-block .breadcrumb ul li:not(:last-child)::after {
  display: inline-block;
  margin: 0 1.5rem;
  content: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20viewBox%3D%220%200%2024%2024%22%3E%3Ctitle%3Echevron-right%3C/title%3E%3Cpath%20fill%3D%22white%22%20d%3D%22M8.59%2C16.58L13.17%2C12L8.59%2C7.41L10%2C6L16%2C12L10%2C18L8.59%2C16.58Z%22/%3E%3C/svg%3E");
  width: 2rem;
  height: 2rem;
}
.contact-address-section {
  padding: 15rem 0;
}
@media (max-width: 767px) {
  .contact-address-section {
    padding: 5rem 0;
  }
}
.contact-address-section .map-block {
  margin: 0 15rem;
}
@media (max-width: 991px) {
  .contact-address-section .map-block {
    margin: 0 10rem;
  }
}
@media (max-width: 767px) {
  .contact-address-section .map-block {
    margin: 0 0rem;
  }
}
.contact-address-section .map-block .map-img {
  width: 100%;
  max-height: 457px;
  border-radius: 10px;
  object-fit: cover;
}
@media (max-width: 767px) {
  .contact-address-section .map-block .map-img {
    min-height: 500px;
  }
}
.contact-address-section .map-block .contact-block {
  display: grid;
  justify-content: space-around;
  gap: 3.2rem;
  grid-template-columns: auto auto auto;
  margin-top: -5rem;
}
@media (max-width: 991px) {
  .contact-address-section .map-block .contact-block {
    grid-template-columns: auto auto;
  }
}
@media (max-width: 767px) {
  .contact-address-section .map-block .contact-block {
    grid-template-columns: auto;
  }
}
.contact-address-section .map-block .contact-block .address-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 3.4rem;
  text-align: center;
}
@media (max-width: 767px) {
  .contact-address-section .map-block .contact-block .address-col {
    gap: 2rem;
  }
}
.contact-address-section .map-block .contact-block .email-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 3.4rem;
  text-align: center;
}
@media (max-width: 767px) {
  .contact-address-section .map-block .contact-block .email-col {
    gap: 2rem;
  }
}
.contact-address-section .map-block .contact-block .phone-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 3.4rem;
  text-align: center;
  justify-self: center;
}
@media (max-width: 991px) {
  .contact-address-section .map-block .contact-block .phone-col {
    grid-column: 1/-1;
  }
}
@media (max-width: 767px) {
  .contact-address-section .map-block .contact-block .phone-col {
    gap: 2rem;
  }
}
.contact-address-section .map-block .contact-block .contact-icon-box {
  border: 10px solid var(--primary-white);
  background-color: var(--main-orange);
  border-radius: 50%;
  width: 89px;
  height: 89px;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 100;
}
.contact-address-section .map-block .contact-block .contact-icon-box .icon {
  height: 4rem;
  width: 4rem;
  fill: var(--primary-white);
}
.contact-address-section .map-block .contact-block .contact-title {
  font-family: var(--font-family-bio-rhyme);
  font-weight: 700;
  color: var(--grey-black);
  font-size: var(--font-size-md-light);
  line-height: 1.5;
}
.contact-address-section .map-block .contact-block .contact-detail {
  font-family: var(--font-family-spartan);
  font-weight: 500;
  color: var(--grey);
  font-size: var(--font-size-x-sm);
  line-height: 1.665;
}
.contact-address-section .map-block .contact-block .contact-detail .link {
  text-decoration: none;
  color: inherit;
}
.contact-form-section {
  background-color: var(--grey-bg);
  padding: 15rem 0;
}
@media (max-width: 767px) {
  .contact-form-section {
    padding: 5rem 0;
  }
}
.contact-form-section .primary-heading {
  text-align: center;
}
.contact-form-section .primary-heading .underline {
  margin: 12px auto;
}
.contact-form-section .primary-discription {
  text-align: center;
  margin: auto;
}
.contact-form-section .form {
  max-width: 852px;
  margin: 5rem auto 0;
}

@media (max-width: 767px) {
  .contact-form-section .form {
    padding: 0 0rem;
  }
}
.contact-form-section .form .form-block {
  display: flex;
  gap: 2rem;
  margin-bottom: 2rem;
}
@media (max-width: 991px) {
  .contact-form-section .form .form-block {
    flex-direction: column;
  }
}
.contact-form-section .form .form-group {
  width: 100%;
}
.contact-form-section .form .form-group input[type="text"],
.contact-form-section .form .form-group input[type="email"],
.contact-form-section .form .form-group input[type="tel"],
.contact-form-section .form .form-group textarea {
  outline: none;
  width: 100%;
  padding: 18px 30px;
  border: 1px solid var(--border-color);
  border-radius: 3.6rem;
  box-sizing: border-box;
  font-family: var(--font-family-spartan);
  line-height: 1.2;
  color: var(--grey);
  font-size: var(--font-size-xx-sm);
}
.contact-form-section .form .form-group textarea {
  width: 100%;
  height: 185px;
  resize: none;
  border-radius: 2.6rem;
}
.contact-form-section .form .form-group .error {
  color: red;
  font-size: 14px;
  margin-top: 5px;
  margin-left: 2rem;
  font-family: var(--font-family-spartan);
}
.contact-form-section .form .btn--white {
  font-size: var(--font-size-x-sm);
  font-family: var(--font-family-bio-rhyme);
  color: var(--primary-white);
  font-weight: bold;
  line-height: 1.2;
  background-color: var(--grey-black);
  text-transform: capitalize;
  display: flex;
  letter-spacing: 0px;
  padding: 18px 32px;
  margin: 2rem auto;
  transition: 0.3s ease;
}
.contact-form-section .form .btn--white:hover {
  background-color: var(--primary-white);
  color: var(--primary-black);
}
.contact-form-section .form #successMessage {
  margin-top: 15px;
  text-align: center;
  font-weight: bold;
  font-family: var(--font-family-spartan);
}
.gallery-section {
  padding: 15rem 0;
}
@media (max-width: 767px) {
  .gallery-section {
    padding: 5rem 0;
  }
}
.gallery-section .button-group {
  display: flex;
  justify-content: center;
  margin-bottom: 5.2rem;
}
@media (max-width: 767px) {
  .gallery-section .button-group {
    flex-wrap: wrap;
  }
}
.gallery-section .button-group .filter-button {
  color: var(--grey);
  font-family: var(--font-family-bio-rhyme);
  font-weight: 700;
  font-size: var(--font-size-md-light);
  border: none;
  padding: 10px 20px;
  margin: 5px;
  cursor: pointer;
  outline: none;
  background: none;
}
@media (max-width: 767px) {
  .gallery-section .button-group .filter-button {
    padding: 10px 10px;
  }
}
.gallery-section .button-group .is-checked {
  color: var(--grey-black);
}
.gallery-section .gallery .gallery-item {
  margin: 15px;
  justify-self: center;
}
.gallery-section .gallery .gallery-item .gallery-card {
  position: relative;
  text-decoration: none;
  transition: 0.3s ease;
}
.gallery-section .gallery .gallery-item .gallery-card .gallery-img-block {
  position: relative;
  display: inline-block;
  margin-bottom: 1rem;
  width: 100%;
}
.gallery-section
  .gallery
  .gallery-item
  .gallery-card
  .gallery-img-block
  .gallery-img {
  width: 100%;
  max-height: 267px;
  border-radius: 10px;
  display: block;
  object-fit: cover;
}
.gallery-section
  .gallery
  .gallery-item
  .gallery-card
  .gallery-img-block
  .plus-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 50px;
  width: 50px;
  fill: var(--primary-white);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.gallery-section
  .gallery
  .gallery-item
  .gallery-card
  .gallery-img-block
  .overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--overlay-color);
  opacity: 0;
  border-radius: 10px;
  transition: opacity 0.3s ease;
}
.gallery-section .gallery .gallery-item .gallery-card:hover .plus-icon {
  opacity: 1;
}
.gallery-section .gallery .gallery-item .gallery-card:hover .overlay {
  opacity: 1;
}
.gallery-section .gallery .gallery-item .title {
  color: var(--grey-black);
  font-family: var(--font-family-bio-rhyme);
  font-weight: 700;
  font-size: var(--font-size-md-light);
  text-align: center;
  margin-top: 3rem;
}
.gallery-section .gallery .gallery-item .sub-title {
  font-family: var(--font-family-spartan);
  font-weight: 500;
  color: var(--grey);
  font-size: var(--font-size-xx-sm);
  text-align: center;
  margin-top: 2rem;
}
.gallery-section .gallery .gallery-item .hidden {
  display: none;
}
@media (max-width: 991px) {
  .gallery-section .gallery .gallery-item {
  }
}
@media (max-width: 767px) {
  .gallery-section .gallery .gallery-item {
    width: 100%;
  }
}
.gallery-section .gallery .gallery-item.hidden {
  display: none;
}
.gallery-section .more-btn {
  display: flex;
  justify-content: center;
}
.gallery-section .more-btn .btn--white {
  font-family: var(--font-family-bio-rhyme);
  font-weight: 700;
  font-size: var(--font-size-x-sm);
  background-color: var(--grey-black);
  color: var(--primary-white);
  transition: 0.3s ease;
  margin-top: 10rem;
}
.gallery-section .more-btn .btn--white:hover {
  background-color: var(--main-orange);
}
.gallery-detail-section {
  padding-top: 12rem;
  padding-bottom: 15rem;
}
@media (max-width: 767px) {
  .gallery-detail-section {
    padding: 5rem 0;
  }
}
.gallery-detail-section .main-gallery-block {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 8rem;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 10rem;
}
@media (max-width: 991px) {
  .gallery-detail-section .main-gallery-block {
    gap: 6rem;
  }
}
@media (max-width: 767px) {
  .gallery-detail-section .main-gallery-block {
    grid-template-columns: 1fr;
    padding-bottom: 4rem;
  }
}
.gallery-detail-section .main-gallery-block .gallery-img-block {
  display: block;
}
@media (max-width: 767px) {
  .gallery-detail-section .main-gallery-block .gallery-img-block {
    display: none;
  }
}
.gallery-detail-section
  .main-gallery-block
  .gallery-img-block
  .gallery-detail-img {
  width: 100%;
  border-radius: 10px;
  object-fit: cover;
  margin-bottom: 3rem;
}
.gallery-detail-section
  .main-gallery-block
  .gallery-img-block
  .gallery-detail-img:last-child {
  margin-bottom: 0;
}
.gallery-detail-section .main-gallery-block .gallery-swiper {
  display: none;
}
.gallery-detail-section .main-gallery-block .gallery-swiper .swiper {
  width: 100%;
  height: 100%;
  border-radius: 10px;
}
.gallery-detail-section .main-gallery-block .gallery-swiper .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
}
.gallery-detail-section .main-gallery-block .gallery-swiper .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}
.gallery-detail-section
  .main-gallery-block
  .gallery-swiper
  .gallery-pagination {
  display: flex;
  gap: 4px;
}
.gallery-detail-section
  .main-gallery-block
  .gallery-swiper
  .swiper-horizontal
  > .swiper-pagination-bullets,
.gallery-detail-section
  .main-gallery-block
  .gallery-swiper
  .swiper-pagination-bullets.swiper-pagination-horizontal {
  position: absolute;
  z-index: 1;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  width: auto;
}
.gallery-detail-section
  .main-gallery-block
  .gallery-swiper
  .gallery-pagination
  .swiper-pagination-bullet {
  height: 10px;
  width: 10px;
  background: var(--primary-white);
  opacity: 0.4;
}
.gallery-detail-section
  .main-gallery-block
  .gallery-swiper
  .gallery-pagination
  .swiper-pagination-bullet-active {
  background: var(--main-orange);
  opacity: 1;
}
@media (max-width: 767px) {
  .gallery-detail-section .main-gallery-block .gallery-swiper {
    display: contents;
  }
}
.gallery-detail-section .main-gallery-block .gallery-text-block .main-title {
  font-family: var(--font-family-bio-rhyme);
  font-weight: 700;
  color: var(--grey-black);
  font-size: var(--font-size-md);
  line-height: 1.2;
  margin-bottom: 2rem;
}
.gallery-detail-section
  .main-gallery-block
  .gallery-text-block
  .project-detail {
  font-family: var(--font-family-spartan);
  font-weight: 500;
  font-size: var(--font-size-x-sm);
  color: var(--grey);
  line-height: 1.883;
  margin-bottom: 4rem;
}
.gallery-detail-section .main-gallery-block .gallery-text-block .info-list {
  list-style: none;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 1rem;
}
.gallery-detail-section
  .main-gallery-block
  .gallery-text-block
  .info-list
  .info-item {
  display: flex;
  align-items: baseline;
  margin-bottom: 3rem;
}
.gallery-detail-section
  .main-gallery-block
  .gallery-text-block
  .info-list
  .info-item
  .dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background-color: var(--main-orange);
  display: inline-block;
  margin-right: 1.2rem;
}
.gallery-detail-section
  .main-gallery-block
  .gallery-text-block
  .info-list
  .info-item
  .info-text
  .info-title {
  font-family: var(--font-family-bio-rhyme);
  font-weight: 700;
  color: var(--grey-black);
  font-size: var(--font-size-md);
  line-height: 1.2;
}
.gallery-detail-section
  .main-gallery-block
  .gallery-text-block
  .info-list
  .info-item
  .info-text
  .info-content {
  font-family: var(--font-family-spartan);
  font-weight: 500;
  font-size: var(--font-size-x-sm);
  color: var(--grey);
  line-height: 1.883;
  margin-top: 1rem;
}
.gallery-detail-section
  .main-gallery-block
  .gallery-text-block
  .gallery-social-links {
  list-style-type: none;
  display: flex;
  gap: 1rem;
  margin-top: 4rem;
  margin-left: 2rem;
}
.gallery-detail-section
  .main-gallery-block
  .gallery-text-block
  .gallery-social-links
  .social-link:link,
.gallery-detail-section
  .main-gallery-block
  .gallery-text-block
  .gallery-social-links
  .social-link:visited {
  text-decoration: none;
  background-color: var(--icon-bg);
  width: 41px;
  height: 41px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.3s ease;
}
.gallery-detail-section
  .main-gallery-block
  .gallery-text-block
  .gallery-social-links
  .social-link:link
  .icon,
.gallery-detail-section
  .main-gallery-block
  .gallery-text-block
  .gallery-social-links
  .social-link:visited
  .icon {
  height: 2rem;
  width: 2rem;
  fill: var(--grey);
  line-height: 1.2;
  transition: 0.3s ease;
}
.gallery-detail-section
  .main-gallery-block
  .gallery-text-block
  .gallery-social-links
  .social-link:link:hover,
.gallery-detail-section
  .main-gallery-block
  .gallery-text-block
  .gallery-social-links
  .social-link:visited:hover {
  background-color: var(--main-orange);
}
.gallery-detail-section
  .main-gallery-block
  .gallery-text-block
  .gallery-social-links
  .social-link:link:hover
  .icon,
.gallery-detail-section
  .main-gallery-block
  .gallery-text-block
  .gallery-social-links
  .social-link:visited:hover
  .icon {
  fill: var(--primary-white);
}
.gallery-detail-section .gallery-icons {
  display: flex;
  justify-content: space-between;
  margin-top: 5rem;
}
.gallery-detail-section .gallery-icons .slider-icon {
  text-decoration: none;
  background-color: var(--icon-bg);
  width: 52px;
  height: 51px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.3s ease;
}
.gallery-detail-section .gallery-icons .slider-icon .icon-inner {
  height: 3rem;
  width: 3rem;
  fill: var(--grey);
}
.gallery-detail-section .gallery-icons .slider-icon:hover {
  background-color: var(--main-orange);
}
.gallery-detail-section .gallery-icons .slider-icon:hover .icon-inner {
  fill: var(--primary-white);
}
.news-detail-section {
  padding: 15rem 0;
}
@media (max-width: 767px) {
  .news-detail-section {
    padding: 5rem 0;
  }
}
.news-detail-section .news-img-block {
  position: relative;
}
.news-detail-section .news-img-block .news-detail-img {
  width: 100%;
  height: 568px;
  object-fit: cover;
  border-radius: 10px;
}
.news-detail-section .news-img-block .date-tag {
  background-color: var(--main-orange);
  border: 6px solid var(--primary-white);
  border-radius: 50%;
  position: absolute;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  left: 50%;
  margin-top: -4rem;
  transform: translateX(-50%);
  transition: 0.3s ease;
}
.news-detail-section .news-img-block .date-tag .date {
  font-size: var(--font-size-md);
  font-family: var(--font-family-spartan);
  font-weight: 500;
  color: var(--primary-white);
  line-height: 1;
}
.news-detail-section .news-img-block .date-tag .month {
  font-size: var(--font-size-xx-sm);
  font-family: var(--font-family-spartan);
  font-weight: 700;
  color: var(--primary-white);
  line-height: 1;
}
.news-detail-section .inner-container {
  max-width: 850px;
  margin: 0 auto;
  padding-top: 7rem;
  text-align: center;
}
.news-detail-section .inner-container .primary-heading {
  text-align: center;
  line-height: 1.2;
}
@media (max-width: 767px) {
  .news-detail-section .inner-container .primary-heading {
    font-size: 4rem;
  }
}
.news-detail-section .inner-container p {
  margin-bottom: 4rem;
}
.news-detail-section .inner-container .news-text {
  margin: 2rem 0;
}
.news-detail-section .inner-container .news-text span {
  color: var(--grey);
  font-family: var(--font-family-spartan);
  font-weight: 400;
  font-size: var(--font-size-xx-sm);
  margin-right: 2.2rem;
}
.news-detail-section .inner-container .quote-block {
  padding: 5rem 6rem;
  border: 2px solid var(--main-orange);
  border-radius: 10px;
  margin-bottom: 5rem;
}
.news-detail-section .inner-container .quote-block .quote {
  font-size: var(--font-size-md);
  font-family: var(--font-family-bio-rhyme);
  font-weight: 400;
  color: var(--main-orange);
  line-height: 1.467;
  text-align: left;
}
.news-detail-section .inner-container .quote-block .name {
  font-size: var(--font-size-md-light);
  margin-top: 3.8rem;
  text-align: left;
  margin-bottom: 0;
}
.news-detail-section .inner-container .img-gallery {
  display: flex;
  gap: 2.8rem;
  justify-content: center;
}
@media (max-width: 767px) {
  .news-detail-section .inner-container .img-gallery {
    flex-wrap: wrap;
  }
}
.news-detail-section .inner-container .img-gallery .img-block {
  position: relative;
  display: inline-block;
  margin-bottom: 22px;
  cursor: pointer;
}
.news-detail-section .inner-container .img-gallery .img-block .dog-img {
  border-radius: 50% 50%;
  width: 149px;
  height: 149px;
  display: block;
  object-fit: cover;
}
@media (max-width: 991px) {
  .news-detail-section .inner-container .img-gallery .img-block .dog-img {
    height: 120px;
    width: 120px;
  }
}
@media (max-width: 767px) {
  .news-detail-section .inner-container .img-gallery .img-block .dog-img {
    width: 90px;
    height: 90px;
  }
}
.news-detail-section .inner-container .img-gallery .img-block .plus-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 50px;
  width: 50px;
  fill: var(--primary-white);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.news-detail-section .inner-container .img-gallery .img-block .overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--overlay-color);
  opacity: 0;
  border-radius: 50% 50%;
  transition: opacity 0.3s ease;
}
.news-detail-section .inner-container .img-gallery .img-block:hover .plus-icon {
  opacity: 1;
}
.news-detail-section .inner-container .img-gallery .img-block:hover .overlay {
  opacity: 1;
}
.news-detail-section .inner-container .img-popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--bg-popup-color);
  justify-content: center;
  align-items: center;
  z-index: 10;
}
.news-detail-section .inner-container .img-popup.opened {
  display: flex;
}
.news-detail-section .inner-container .popup-image {
  max-width: 80%;
  max-height: 80%;
  border-radius: 10px;
}
.news-detail-section .inner-container .close-btn {
  position: absolute;
  top: 20px;
  right: 30px;
  height: 30px;
  width: 30px;
  fill: var(--primary-white);
  cursor: pointer;
}
.news-detail-section .inner-container .tags-and-share {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 10rem 0;
}
@media (max-width: 767px) {
  .news-detail-section .inner-container .tags-and-share {
    flex-direction: column;
    align-items: start;
    gap: 2rem;
  }
}
.news-detail-section .inner-container .tags-and-share .title {
  color: var(--grey-black);
  font-family: var(--font-family-spartan);
  font-weight: 700;
  font-size: var(--font-size-x-sm);
}
.news-detail-section .inner-container .tags-and-share .tags {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.news-detail-section .inner-container .tags-and-share .tags .tag-btn {
  background-color: var(--icon-bg);
  text-decoration: none;
  padding: 1rem 2rem;
  border-radius: 3rem;
  font-family: var(--font-family-spartan);
  font-weight: 500;
  font-size: var(--font-size-xx-sm);
  color: var(--grey);
}
.news-detail-section .inner-container .tags-and-share .share {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.news-detail-section .inner-container .tags-and-share .share .social-links {
  list-style-type: none;
  display: flex;
  gap: 1rem;
}
.news-detail-section
  .inner-container
  .tags-and-share
  .share
  .social-links
  .social-link:link,
.news-detail-section
  .inner-container
  .tags-and-share
  .share
  .social-links
  .social-link:visited {
  text-decoration: none;
  background-color: var(--icon-bg);
  width: 41px;
  height: 41px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.3s ease;
}
.news-detail-section
  .inner-container
  .tags-and-share
  .share
  .social-links
  .social-link:link
  .icon,
.news-detail-section
  .inner-container
  .tags-and-share
  .share
  .social-links
  .social-link:visited
  .icon {
  height: 2rem;
  width: 2rem;
  fill: var(--grey);
  line-height: 1.2;
  transition: 0.3s ease;
}
.news-detail-section
  .inner-container
  .tags-and-share
  .share
  .social-links
  .social-link:link:hover,
.news-detail-section
  .inner-container
  .tags-and-share
  .share
  .social-links
  .social-link:visited:hover {
  background-color: var(--main-orange);
}
.news-detail-section
  .inner-container
  .tags-and-share
  .share
  .social-links
  .social-link:link:hover
  .icon,
.news-detail-section
  .inner-container
  .tags-and-share
  .share
  .social-links
  .social-link:visited:hover
  .icon {
  fill: var(--primary-white);
}
.news-detail-section .inner-container .heading .primary-heading {
  font-size: 4rem;
}
.news-detail-section .inner-container .heading .primary-heading .underline {
  margin: 12px auto;
}
.news-detail-section .inner-container .comments-section {
  margin-bottom: 7rem;
}
.news-detail-section .inner-container .comments-section .comment-block {
  display: flex;
  align-items: start;
  gap: 3rem;
  border-bottom: 1px solid var(--border-color);
  margin-top: 4rem;
}
.news-detail-section
  .inner-container
  .comments-section
  .comment-block:last-child {
  border-bottom: none;
}
.news-detail-section
  .inner-container
  .comments-section
  .comment-block
  .profile-img {
  height: 76px;
  width: 76px;
  object-fit: cover;
  border-radius: 50%;
}
.news-detail-section
  .inner-container
  .comments-section
  .comment-block
  .comment-detail {
  text-align: left;
}
.news-detail-section
  .inner-container
  .comments-section
  .comment-block
  .comment-detail
  .name-reply-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.news-detail-section
  .inner-container
  .comments-section
  .comment-block
  .comment-detail
  .name-reply-btn
  .name {
  font-family: var(--font-family-bio-rhyme);
  font-weight: 700;
  font-size: var(--font-size-md-light);
  color: var(--grey-black);
}
.news-detail-section
  .inner-container
  .comments-section
  .comment-block
  .comment-detail
  .name-reply-btn
  .reply-btn:link,
.news-detail-section
  .inner-container
  .comments-section
  .comment-block
  .comment-detail
  .name-reply-btn
  .reply-btn:visited {
  color: var(--grey);
  line-height: 2.143;
  font-family: var(--font-family-spartan);
  font-weight: 700;
  font-size: var(--font-size-xx-sm);
  text-decoration: none;
  transition: 0.3s ease;
}
.news-detail-section
  .inner-container
  .comments-section
  .comment-block
  .comment-detail
  .name-reply-btn
  .reply-btn:link:hover,
.news-detail-section
  .inner-container
  .comments-section
  .comment-block
  .comment-detail
  .name-reply-btn
  .reply-btn:visited:hover {
  color: var(--main-orange);
  text-decoration: underline;
}
.news-detail-section
  .inner-container
  .comments-section
  .comment-block
  .comment-detail
  .date {
  font-family: var(--font-family-spartan);
  font-weight: 500;
  font-size: var(--font-size-btn);
  color: var(--grey);
  margin: 2rem 0;
  line-height: 3rem;
}
.news-detail-section .inner-container .form {
  max-width: 852px;
  margin: 5rem auto 0;
}
@media (max-width: 991px) {
  .news-detail-section .inner-container .form {
    padding: 0 10rem;
  }
}
@media (max-width: 767px) {
  .news-detail-section .inner-container .form {
    padding: 0 0rem;
  }
}
.news-detail-section .inner-container .form .form-block {
  display: flex;
  gap: 2rem;
  margin-bottom: 2rem;
}
@media (max-width: 991px) {
  .news-detail-section .inner-container .form .form-block {
    flex-direction: column;
  }
}
.news-detail-section .inner-container .form .form-group {
  width: 100%;
}
.news-detail-section .inner-container .form .form-group input[type="text"],
.news-detail-section .inner-container .form .form-group input[type="email"],
.news-detail-section .inner-container .form .form-group input[type="url"],
.news-detail-section .inner-container .form .form-group textarea {
  outline: none;
  width: 100%;
  padding: 18px 30px;
  border: 1px solid var(--border-color);
  border-radius: 3.6rem;
  box-sizing: border-box;
  font-family: var(--font-family-spartan);
  line-height: 1.2;
  color: var(--grey);
  font-size: var(--font-size-xx-sm);
}
.news-detail-section .inner-container .form .form-group textarea {
  width: 100%;
  height: 185px;
  resize: none;
  border-radius: 2.6rem;
}
.news-detail-section .inner-container .form .btn--white {
  font-size: var(--font-size-x-sm);
  font-family: var(--font-family-bio-rhyme);
  color: var(--primary-white);
  font-weight: bold;
  line-height: 1.2;
  background-color: var(--grey-black);
  text-transform: capitalize;
  display: flex;
  letter-spacing: 0px;
  padding: 18px 32px;
  margin: 2rem auto;
  transition: 0.3s ease;
}
.news-detail-section .inner-container .form .btn--white:hover {
  background-color: var(--main-orange);
  color: var(--primary-white);
}
.news-detail-section .inner-container .form #successMessage {
  margin-top: 15px;
  text-align: center;
  font-weight: bold;
  font-family: var(--font-family-spartan);
}
.service-detail-section {
  padding-top: 12rem;
  padding-bottom: 15rem;
}
@media (max-width: 767px) {
  .service-detail-section {
    padding: 5rem 0;
  }
}
.service-detail-section .service-detail-wrapper {
  gap: 4rem;
}
@media (max-width: 767px) {
  .service-detail-section .service-detail-wrapper {
    grid-template-columns: 1fr;
  }
}
.service-detail-section .service-detail-wrapper .primary-heading {
  font-size: var(--font-size-md);
  margin-bottom: 3rem;
  text-align: left;
}
.service-detail-section .service-detail-wrapper .primary-heading .underline {
  height: 2px;
  width: 50px;
  border: 1px solid var(--main-orange);
  margin: 12px 0;
}
.service-detail-section .service-detail-wrapper p {
  margin-bottom: 4rem;
}
@media (max-width: 767px) {
  .service-detail-section .service-detail-wrapper .form-button-area {
    grid-row: 2;
  }
}
.service-detail-section .service-detail-wrapper .form-button-area .btn-block {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 5rem;
}
.service-detail-section
  .service-detail-wrapper
  .form-button-area
  .btn-block
  .service-btn {
  text-decoration: none;
  font-family: var(--font-family-bio-rhyme);
  font-weight: 700;
  font-size: var(--font-size-md-light);
  color: var(--grey);
  text-transform: capitalize;
  border: 1px solid var(--border-color);
  padding: 2rem 3rem;
  border-radius: 3rem;
  display: inline-block;
  transition: 0.3s ease;
}
.service-detail-section
  .service-detail-wrapper
  .form-button-area
  .btn-block
  .active {
  background-color: var(--main-orange);
  color: var(--primary-white);
  border: 1px solid var(--main-orange);
}
.service-detail-section
  .service-detail-wrapper
  .form-button-area
  .btn-block
  .service-btn:active,
.service-detail-section
  .service-detail-wrapper
  .form-button-area
  .btn-block
  .service-btn:hover {
  background-color: var(--main-orange);
  color: var(--primary-white);
  border: 1px solid var(--main-orange);
}
.service-detail-section .service-detail-wrapper .joining-form-container {
  background-color: var(--grey-black);
  padding: 4rem;
  border-radius: 10px;
}
.service-detail-section
  .service-detail-wrapper
  .joining-form-container
  .newsletter-icon {
  width: 75px;
  height: 75px;
  border-radius: 50%;
  background-color: var(--main-orange);
  display: flex;
  justify-content: center;
  align-items: center;
  margin: auto;
  margin-bottom: 3rem;
}
.service-detail-section
  .service-detail-wrapper
  .joining-form-container
  .newsletter-icon
  .mail-icon {
  height: 4rem;
  width: 4rem;
  fill: var(--primary-white);
}
.service-detail-section
  .service-detail-wrapper
  .joining-form-container
  .primary-heading {
  text-align: center;
  color: var(--primary-white);
  margin-bottom: 3rem;
}
.service-detail-section
  .service-detail-wrapper
  .joining-form-container
  .primary-heading
  .underline {
  margin: 12px auto;
}
.service-detail-section
  .service-detail-wrapper
  .joining-form-container
  .joining-form {
  display: flex;
  justify-content: center;
  flex-direction: column;
  gap: 1rem;
}
.service-detail-section
  .service-detail-wrapper
  .joining-form-container
  .joining-form
  input[type="text"],
.service-detail-section
  .service-detail-wrapper
  .joining-form-container
  .joining-form
  input[type="email"],
.service-detail-section
  .service-detail-wrapper
  .joining-form-container
  .joining-form
  input[type="tel"],
.service-detail-section
  .service-detail-wrapper
  .joining-form-container
  .joining-form
  input[type="date"],
.service-detail-section
  .service-detail-wrapper
  .joining-form-container
  .joining-form
  textarea {
  font-family: var(--font-family-spartan);
  font-weight: 500;
  color: var(--grey);
  font-size: var(--font-size-xx-sm);
  padding: 2rem 3rem;
  border-radius: 3rem;
  border: none;
  outline: none;
}
.service-detail-section
  .service-detail-wrapper
  .joining-form-container
  .joining-form
  textarea {
  width: 100%;
  height: 134px;
  resize: none;
  border-radius: 2.6rem;
}
.service-detail-section
  .service-detail-wrapper
  .joining-form-container
  .joining-form
  .submit-btn {
  font-family: var(--font-family-bio-rhyme);
  font-weight: 700;
  font-size: var(--font-size-x-sm);
  color: var(--primary-white);
  background-color: var(--main-orange);
  text-align: center;
  padding: 1.6rem 3rem;
  border-radius: 3rem;
  border: none;
  outline: none;
  transition: 0.3s ease;
  cursor: pointer;
}
.service-detail-section
  .service-detail-wrapper
  .joining-form-container
  .joining-form
  .submit-btn:hover {
  background-color: var(--primary-white);
  color: var(--main-orange);
}
.service-detail-section
  .service-detail-wrapper
  .joining-form-container
  .joining-form
  .privacy-tag {
  font-family: var(--font-family-spartan);
  font-weight: 500;
  color: var(--grey);
  font-size: var(--font-size-xx-sm);
  text-align: center;
}
.service-detail-section .service-detail-wrapper .service-content-block {
  display: none;
  opacity: 0;
  transition: opacity 0.5s ease;
}
.service-detail-section
  .service-detail-wrapper
  .service-content-block
  .service-img-block {
  position: relative;
  padding-bottom: 3rem;
}
.service-detail-section
  .service-detail-wrapper
  .service-content-block
  .service-img-block
  .joining-form-container {
  position: absolute;
  max-width: 390px;
  top: 2rem;
  right: 2rem;
}
@media (max-width: 767px) {
  .service-detail-section
    .service-detail-wrapper
    .service-content-block
    .service-img-block
    .joining-form-container {
    right: -17rem;
    top: 72%;
    left: 50%;
    max-width: 100%;
    transform: translateX(-50%);
  }
}
.service-detail-section
  .service-detail-wrapper
  .service-content-block
  .service-img-block
  .joining-form-container
  .primary-heading {
  text-align: center;
  margin-top: 0;
}
.service-detail-section
  .service-detail-wrapper
  .service-content-block
  .service-main-img {
  width: 100%;
  border-radius: 10px;
  min-height: 590px;
  max-width: 850px;
  object-fit: cover;
}
@media (max-width: 991px) {
  .service-detail-section
    .service-detail-wrapper
    .service-content-block
    .service-main-img {
    min-height: 540px;
  }
}
@media (max-width: 767px) {
}
.service-detail-section
  .service-detail-wrapper
  .service-content-block
  .primary-heading {
  margin-top: 4rem;
  text-align: left;
}
.service-detail-section
  .service-detail-wrapper
  .service-content-block
  .checkpoint-box {
  list-style: none;
}
.service-detail-section
  .service-detail-wrapper
  .service-content-block
  .checkpoint-box
  .checkpoint {
  margin-bottom: 1rem;
  align-items: flex-start;
  display: grid;
  grid-template-columns: auto 1fr;
}
.service-detail-section
  .service-detail-wrapper
  .service-content-block
  .checkpoint-box
  .checkpoint
  p {
  margin-bottom: 0;
}
.service-detail-section
  .service-detail-wrapper
  .service-content-block
  .checkpoint-box
  .checkpoint::before {
  content: url("data:image/svg+xml,%3Csvg xmlns%3D%22http%3A//www.w3.org/2000/svg%22 viewBox%3D%220 0 24 24%22%3E%3Ctitle%3Echeck-decagram%3C/title%3E%3Cpath fill%3D%22%23ff6d2d%22 d%3D%22M23%2C12L20.56%2C9.22L20.9%2C5.54L17.29%2C4.72L15.4%2C1.54L12%2C3L8.6%2C1.54L6.71%2C4.72L3.1%2C5.53L3.44%2C9.21L1%2C12L3.44%2C14.78L3.1%2C18.47L6.71%2C19.29L8.6%2C22.47L12%2C21L15.4%2C22.46L17.29%2C19.28L20.9%2C18.46L20.56%2C14.78L23%2C12M10%2C17L6%2C13L7.41%2C11.59L10%2C14.17L16.59%2C7.58L18%2C9L10%2C17Z%22/%3E%3C/svg%3E");
  display: inline-block;
  height: 18px;
  width: 18px;
  margin: 4px 10px 0 0;
  vertical-align: top;
}
.service-detail-section .service-detail-wrapper .service-content-block .form {
  width: 100%;
  margin: 5rem auto 0;
}
.service-detail-section
  .service-detail-wrapper
  .service-content-block
  .form
  .form-block {
  display: flex;
  gap: 2rem;
  margin-bottom: 2rem;
}
@media (max-width: 991px) {
  .service-detail-section
    .service-detail-wrapper
    .service-content-block
    .form
    .form-block {
    flex-direction: column;
  }
}
.service-detail-section
  .service-detail-wrapper
  .service-content-block
  .form
  .form-group {
  width: 100%;
}
.service-detail-section
  .service-detail-wrapper
  .service-content-block
  .form
  .form-group
  input[type="text"],
.service-detail-section
  .service-detail-wrapper
  .service-content-block
  .form
  .form-group
  input[type="email"],
.service-detail-section
  .service-detail-wrapper
  .service-content-block
  .form
  .form-group
  input[type="tel"],
.service-detail-section
  .service-detail-wrapper
  .service-content-block
  .form
  .form-group
  textarea {
  outline: none;
  width: 100%;
  padding: 18px 30px;
  border: 1px solid var(--border-color);
  border-radius: 3.6rem;
  box-sizing: border-box;
  font-family: var(--font-family-spartan);
  font-weight: 500;
  line-height: 1.2;
  color: var(--grey);
  font-size: var(--font-size-xx-sm);
}
.service-detail-section
  .service-detail-wrapper
  .service-content-block
  .form
  .form-group
  textarea {
  width: 100%;
  height: 18rem;
  resize: none;
  border-radius: 2.6rem;
}
.service-detail-section
  .service-detail-wrapper
  .service-content-block
  .form
  .btn--white {
  font-size: var(--font-size-x-sm);
  font-family: var(--font-family-bio-rhyme);
  color: var(--primary-white);
  font-weight: bold;
  line-height: 1.2;
  background-color: var(--grey-black);
  text-transform: capitalize;
  display: flex;
  letter-spacing: 0px;
  padding: 18px 32px;
  margin: 2rem auto;
  transition: 0.3s ease;
}
.service-detail-section
  .service-detail-wrapper
  .service-content-block
  .form
  .btn--white:hover {
  background-color: var(--main-orange);
  color: var(--primary-white);
}
.service-detail-section
  .service-detail-wrapper
  .service-content-block
  .form
  #successMessage {
  margin-top: 15px;
  text-align: center;
  font-weight: bold;
  font-family: var(--font-family-spartan);
}
.service-detail-section .service-detail-wrapper .service-content-block.active {
  display: block;
  opacity: 1;
}
.news-section {
  padding: 15rem 0;
}
@media (max-width: 767px) {
  .news-section {
    padding: 5rem 0;
  }
}
.news-section .news-wrapper {
  display: grid;
  gap: 7rem;
}
@media (max-width: 767px) {
  .news-section .news-wrapper {
    grid-template-columns: 1fr;
  }
}
.news-section .news-wrapper .primary-heading {
  font-size: var(--font-size-md);
  margin-bottom: 3rem;
  text-align: left;
}
.news-section .news-wrapper .primary-heading .underline {
  height: 2px;
  width: 50px;
  border: 1px solid var(--main-orange);
  margin: 12px 0;
}
.news-section .news-wrapper .form-button-area .search-form {
  display: grid;
  align-items: center;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  margin-bottom: 5rem;
}
.news-section
  .news-wrapper
  .form-button-area
  .search-form
  input[type="search"] {
  font-family: var(--font-family-spartan);
  font-weight: 500;
  color: var(--grey);
  font-size: var(--font-size-xx-sm);
  padding: 2rem 3rem;
  border-radius: 3rem;
  border: 1px solid var(--border-color);
  outline: none;
  width: 100%;
}
.news-section .news-wrapper .form-button-area .search-form .search-btn {
  border-radius: 50%;
  background: none;
  border: none;
  outline: none;
  display: flex;
  justify-content: center;
  align-items: center;
}
.news-section
  .news-wrapper
  .form-button-area
  .search-form
  .search-btn
  .search-icon {
  height: 5rem;
  width: 5rem;
  fill: var(--primary-white);
  padding: 1.2rem;
  cursor: pointer;
  transition: 0.3s ease;
}
.news-section
  .news-wrapper
  .form-button-area
  .search-form
  .search-btn
  .search-icon:hover {
  fill: var(--main-orange);
}
.news-section .news-wrapper .form-button-area .btn-block {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 5rem;
}
.news-section .news-wrapper .form-button-area .btn-block .service-btn {
  text-decoration: none;
  font-family: var(--font-family-bio-rhyme);
  font-weight: 700;
  font-size: var(--font-size-md-light);
  color: var(--grey);
  text-transform: capitalize;
  border: 1px solid var(--border-color);
  padding: 2rem 3rem;
  border-radius: 3rem;
  display: inline-block;
  transition: 0.3s ease;
}
.news-section .news-wrapper .form-button-area .btn-block .service-btn:active,
.news-section .news-wrapper .form-button-area .btn-block .service-btn:hover {
  background-color: var(--main-orange);
  color: var(--primary-white);
  border: 1px solid var(--main-orange);
}
.news-section .news-wrapper .form-button-area .btn-block .active {
  background-color: var(--main-orange);
  color: var(--primary-white);
  border: 1px solid var(--main-orange);
}
.news-section .news-wrapper .form-button-area .joining-form-container {
  background-color: var(--grey-black);
  padding: 4rem;
  border-radius: 10px;
}
.news-section
  .news-wrapper
  .form-button-area
  .joining-form-container
  .newsletter-icon {
  width: 75px;
  height: 75px;
  border-radius: 50%;
  background-color: var(--main-orange);
  display: flex;
  justify-content: center;
  align-items: center;
  margin: auto;
  margin-bottom: 3rem;
}
.news-section
  .news-wrapper
  .form-button-area
  .joining-form-container
  .newsletter-icon
  .mail-icon {
  height: 4rem;
  width: 4rem;
  fill: var(--primary-white);
}
.news-section
  .news-wrapper
  .form-button-area
  .joining-form-container
  .primary-heading {
  text-align: center;
  color: var(--primary-white);
  margin-bottom: 3rem;
}
.news-section
  .news-wrapper
  .form-button-area
  .joining-form-container
  .primary-heading
  .underline {
  margin: 12px auto;
}
.news-section
  .news-wrapper
  .form-button-area
  .joining-form-container
  .joining-form {
  display: flex;
  justify-content: center;
  flex-direction: column;
  gap: 1rem;
}
.news-section
  .news-wrapper
  .form-button-area
  .joining-form-container
  .joining-form
  input[type="text"],
.news-section
  .news-wrapper
  .form-button-area
  .joining-form-container
  .joining-form
  input[type="email"],
.news-section
  .news-wrapper
  .form-button-area
  .joining-form-container
  .joining-form
  input[type="tel"],
.news-section
  .news-wrapper
  .form-button-area
  .joining-form-container
  .joining-form
  input[type="date"],
.news-section
  .news-wrapper
  .form-button-area
  .joining-form-container
  .joining-form
  textarea {
  font-family: var(--font-family-spartan);
  font-weight: 500;
  color: var(--grey);
  font-size: var(--font-size-xx-sm);
  padding: 2rem 3rem;
  border-radius: 3rem;
  border: none;
  outline: none;
}
.news-section
  .news-wrapper
  .form-button-area
  .joining-form-container
  .joining-form
  textarea {
  width: 100%;
  height: 134px;
  resize: none;
  border-radius: 2.6rem;
}
.news-section
  .news-wrapper
  .form-button-area
  .joining-form-container
  .joining-form
  .submit-btn {
  font-family: var(--font-family-bio-rhyme);
  font-weight: 700;
  font-size: var(--font-size-x-sm);
  color: var(--primary-white);
  background-color: var(--main-orange);
  text-align: center;
  padding: 1.6rem 3rem;
  border-radius: 3rem;
  border: none;
  outline: none;
  cursor: pointer;
  transition: 0.3s ease;
}
.news-section
  .news-wrapper
  .form-button-area
  .joining-form-container
  .joining-form
  .submit-btn:hover {
  background-color: var(--primary-white);
  color: var(--main-orange);
}
.news-section
  .news-wrapper
  .form-button-area
  .joining-form-container
  .joining-form
  .privacy-tag {
  font-family: var(--font-family-spartan);
  font-weight: 500;
  color: var(--grey);
  font-size: var(--font-size-xx-sm);
  text-align: center;
}
.news-section .news-wrapper .form-button-area .recent-posts-block {
  margin-top: 7rem;
}
.news-section .news-wrapper .form-button-area .recent-posts-block .recent-post {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  text-decoration: none;
  cursor: pointer;
  border-bottom: 1px solid var(--border-color);
  padding: 1.5rem 0;
}
.news-section
  .news-wrapper
  .form-button-area
  .recent-posts-block
  .recent-post
  .post-img-block {
  position: relative;
}
.news-section
  .news-wrapper
  .form-button-area
  .recent-posts-block
  .recent-post
  .post-img-block
  .post-img {
  width: 76px;
  height: 76px;
  object-fit: cover;
  border-radius: 50%;
}
.news-section
  .news-wrapper
  .form-button-area
  .recent-posts-block
  .recent-post
  .post-img-block
  .plus-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 30px;
  width: 30px;
  fill: var(--primary-white);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.news-section
  .news-wrapper
  .form-button-area
  .recent-posts-block
  .recent-post
  .post-img-block
  .overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--overlay-color);
  opacity: 0;
  border-radius: 50% 50%;
  transition: opacity 0.3s ease;
}
.news-section
  .news-wrapper
  .form-button-area
  .recent-posts-block
  .recent-post
  .post-img-block:hover
  .plus-icon {
  opacity: 1;
}
.news-section
  .news-wrapper
  .form-button-area
  .recent-posts-block
  .recent-post
  .post-img-block:hover
  .overlay {
  opacity: 1;
}
.news-section
  .news-wrapper
  .form-button-area
  .recent-posts-block
  .recent-post
  .post-title {
  display: flex;
  flex-direction: column;
}
.news-section
  .news-wrapper
  .form-button-area
  .recent-posts-block
  .recent-post
  .post-title
  p {
  font-family: var(--font-family-spartan);
  font-weight: 600;
  font-size: var(--font-size-x-sm);
  color: var(--grey-black);
}
.news-section
  .news-wrapper
  .form-button-area
  .recent-posts-block
  .recent-post:last-child {
  border-bottom: none;
}
.news-section .news-wrapper .form-button-area .service-content-block {
  display: none;
  opacity: 0;
  transition: opacity 0.5s ease;
}
.news-section .news-wrapper .form-button-area .service-content-block.active {
  display: block;
  opacity: 1;
}
@media (max-width: 767px) {
  .news-section .news-wrapper .news-card-block {
    grid-row: 1;
  }
}
.news-section .news-wrapper .news-card-block .services-section {
  padding: 0 0;
}
.news-section
  .news-wrapper
  .news-card-block
  .services-section
  .services-card-section {
  margin-top: 0;
  grid-template-columns: 1fr 1fr;
}
@media (max-width: 991px) {
  .news-section
    .news-wrapper
    .news-card-block
    .services-section
    .services-card-section {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}
.news-section
  .news-wrapper
  .news-card-block
  .services-section
  .services-card-section
  .service-card
  .service-img-block
  .date-tag {
  background-color: var(--main-orange);
  border: 6px solid var(--primary-white);
  border-radius: 50%;
  position: absolute;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  right: 2rem;
  margin-top: -4rem;
  transition: 0.3s ease;
}
.news-section
  .news-wrapper
  .news-card-block
  .services-section
  .services-card-section
  .service-card
  .service-img-block
  .date-tag
  .date {
  font-size: var(--font-size-md);
  font-family: var(--font-family-spartan);
  font-weight: 500;
  color: var(--primary-white);
  line-height: 1;
}
.news-section
  .news-wrapper
  .news-card-block
  .services-section
  .services-card-section
  .service-card
  .service-img-block
  .date-tag
  .month {
  font-size: var(--font-size-xx-sm);
  font-family: var(--font-family-spartan);
  font-weight: 700;
  color: var(--primary-white);
  line-height: 1;
}
.news-section
  .news-wrapper
  .news-card-block
  .services-section
  .services-card-section
  .service-card
  .service-img-block::after {
  display: none;
}
.news-section
  .news-wrapper
  .news-card-block
  .services-section
  .services-card-section
  .service-card:hover
  .service-img-block
  .date-tag {
  background-color: var(--primary-black);
}
.news-section .news-wrapper .pagination {
  display: inline-block;
  grid-area: 2/-2;
}
@media (max-width: 767px) {
  .news-section .news-wrapper .pagination {
    grid-row: 3;
  }
}
.news-section .news-wrapper .pagination a {
  border-radius: 50%;
  background-color: var(--icon-bg);
  float: left;
  width: 51px;
  height: 51px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: var(--font-size-md-light);
  font-family: var(--font-family-spartan);
  color: var(--grey);
  font-weight: 700;
  margin-right: 1rem;
  padding-top: 2px;
  transition: 0.3s ease;
}
.news-section .news-wrapper .pagination a .pagination-icon {
  border-radius: 50%;
  height: 2.4rem;
  width: 2.4rem;
  fill: var(--grey);
}
.news-section .news-wrapper .pagination a.active,
.news-section .news-wrapper .pagination :hover {
  background-color: var(--main-orange);
  color: var(--primary-white);
}
.news-section .news-wrapper .pagination a.active .pagination-icon,
.news-section .news-wrapper .pagination :hover .pagination-icon {
  fill: var(--primary-white);
}
.error-section {
  padding: 15rem 0;
}
@media (max-width: 767px) {
  .error-section {
    padding: 5rem 0;
  }
}
.error-section .inner-container {
  max-width: 850px;
  margin: 0 auto;
  text-align: center;
}
.error-section .inner-container .primary-heading {
  text-align: center;
}
.error-section .inner-container .orange--text {
  color: var(--main-orange);
}
.error-section .inner-container .error-img {
  height: 100%;
  width: 100%;
}
.error-section .inner-container .headings {
  margin-top: 2.4rem;
}
.error-section .inner-container .headings .primary-heading {
  text-align: center;
}
.error-section .inner-container .headings .primary-heading .underline {
  margin: 12px auto;
}
.error-section .inner-container .headings .primary-discription {
  width: 100%;
  text-align: center;
  margin-top: 2.4rem;
}
.error-section .inner-container .headings .primary-discription a:link,
.error-section .inner-container .headings .primary-discription a:visited {
  display: inline;
  color: var(--main-orange);
}
.error-section .inner-container .error-btns {
  display: flex;
  gap: 2rem;
  justify-content: center;
  margin-top: 5rem;
}
@media (max-width: 767px) {
  .error-section .inner-container .error-btns {
    flex-direction: column;
    gap: 1rem;
  }
}
.error-section .inner-container .error-btns .btn {
  font-family: var(--font-family-bio-rhyme);
  font-size: var(--font-size-x-sm);
  text-transform: capitalize;
}
.error-section .inner-container .error-btns .btn--white:link,
.error-section .inner-container .error-btns .btn--white:visited {
  background-color: var(--grey-black);
  color: var(--primary-white);
}
.error-section .inner-container .error-btns .btn--white:active,
.error-section .inner-container .error-btns .btn--white:hover {
  background-color: var(--main-orange);
}
.error-section .inner-container .error-btns .btn--orange:active,
.error-section .inner-container .error-btns .btn--orange:hover {
  background-color: var(--grey-black);
  color: var(--primary-white);
}
.announcement-bar {
  background-color: black;
  padding: 1.2rem 0;
}
.announcement-bar .announcement-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.announcement-bar .announcement-content p {
  font-size: var(--font-size-btn);
  color: white;
}
@media (max-width: 767px) {
  .announcement-bar .announcement-content p {
    font-size: 1rem;
  }
}
.announcement-bar .announcement-content .announcement-bar-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 2rem;
}
@media (max-width: 767px) {
  .announcement-bar .announcement-content .announcement-bar-links {
    gap: 1.2rem;
  }
}
.announcement-bar
  .announcement-content
  .announcement-bar-links
  .social-link
  .icon {
  height: 18px;
  width: 18px;
  fill: white;
}
.announcement-bar
  .announcement-content
  .announcement-bar-links
  .social-link
  .icon:hover {
  fill: var(--main-orange);
}
@media (max-width: 991px) {
  .announcement-bar {
    display: none;
  }
}
header .header-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  transition: all 0.25s ease;
}
header .header-inner-wrapper {
  display: flex;
  align-items: center;
  height: 100%;
}
header.sticky-nav {
  position: fixed;
  top: 40px;
  left: 0;
  width: 100%;
  z-index: 9999;
  transition: all 0.25s ease;
}
@media (max-width: 991px) {
  header.sticky-nav {
    top: 0;
  }
}
header .logo {
  position: relative;
  img {
    max-width: 100px;
  }
}
header .logo .show-sticky {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  visibility: hidden;
  transition: all 0.25s ease;
}
header .logo .hide-sticky {
  transition: all 0.25s ease;
  max-width: 110px;
}
header.scrolled {
  top: 0;
  background-color: var(--primary-white);
}
header.scrolled .header-wrapper {
  height: 90px;
}
header.scrolled .navigation-menu a {
  color: var(--primary-black);
}
header.scrolled .logo .show-sticky {
  opacity: 1;
  visibility: visible;
  max-width: 80px;
}
header.scrolled .logo .hide-sticky {
  opacity: 0;
  visibility: hidden;
}
header .hamburger {
  display: none;
}
@media (max-width: 991px) {
  header .hamburger {
    display: block;
  }
}
.navigation-menu {
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  height: 100%;
  z-index: 9999;
  
}
.navigation-menu-wrapper {
  height: 100%;
  z-index: 9999;
  
}
.navigation-menu ul {
  margin: 0;
}
.navigation-menu > li > a {
  padding: 0 25px;
}

.navigation-menu li {
  /* height: 100%; */
  list-style: none;
}
.navigation-menu a {
  font-family: var(--font-family-bio-rhyme);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.1rem;
  color: black;
  text-decoration: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 100%;
  outline: 0;
  position: relative;
}
.navigation-menu a .icon {
  height: 14px;
  transition: all 0.25s ease;
}
.navigation-menu a .icon svg {
  vertical-align: top;
}
.navigation-menu.navigation-menu-2 a {
  color: var(--primary-black);
}
.navigation-menu .menu-item-has-children {
  position: relative;
}
.navigation-menu .menu-item-has-children .active-tab {
  color: var(--grey-black);
}
.navigation-menu .sub-menu {
  position: absolute;
  top: 100%;
  width: max-content;
  opacity: 0;
  visibility: hidden;
  padding: 2rem 0;
  min-width: 28rem;
  margin-top: 15px;
  margin-left: -25px;
}
.navigation-menu .sub-menu li a {
  opacity: 0;
  visibility: hidden;
  padding: 1.4rem 3rem 1.4rem 3rem;
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--main-orange);
  transition: all 0.25s ease;
}
.navigation-menu .sub-menu li a svg {
  fill: var(--main-orange);
}
.navigation-menu .sub-menu li:hover > a,
.navigation-menu .sub-menu li.current-menu-item > a {
  background-color: var(--main-orange);
  color: var(--primary-white);
}
.navigation-menu .sub-menu li:hover > a svg,
.navigation-menu .sub-menu li.current-menu-item > a svg {
  fill: var(--primary-white);
}
.navigation-menu .sub-menu .sub-menu {
  top: 0;
  left: calc(100% + 10px);
  background-color: var(--main-orange);
  border-radius: 10px;
  box-shadow: inset 25px 0px 25px -25px rgba(0, 0, 0, 0.2),
    0px 0px 25px 0px rgba(0, 0, 0, 0.2);
  margin-left: 0;
}
.navigation-menu .sub-menu .sub-menu a {
  color: var(--primary-white);
}
.navigation-menu .sub-menu .sub-menu li:hover > a,
.navigation-menu .sub-menu .sub-menu li.current-menu-item > a {
  background-color: var(--submenu-bg-hover-color);
}
.navigation-menu .sub-menu .sub-menu::before {
  content: "";
  position: absolute;
  top: 0;
  left: -10px;
  width: 100%;
  height: 100%;
}
.navigation-menu > .menu-item-has-children {
  position: relative;
}
.navigation-menu > .menu-item-has-children::before {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
}
.navigation-menu > .menu-item-has-children .menu-item-has-children {
  position: static;
}
.home-2-menu a:link,
.home-2-menu a:visited {
  color: var(--grey);
}
.home-2-menu a:active,
.home-2-menu a:hover {
  color: var(--grey-black);
}
.nav-dropdown-bg {
  position: fixed;
  background-color: var(--primary-white);
  z-index: 9998;
  opacity: 0;
  visibility: hidden;
  top: 0;
  left: 0;
  transform-origin: center center;
  border-radius: 1rem;
  pointer-events: none;
  display: block;
  box-shadow: 0px 0px 25px 0px rgba(0, 0, 0, 0.2);
}
.nav-dropdown-bg-icon,
.nav-dropdown-bg .icon {
  position: fixed;
  top: -16px;
  left: 50px;
  z-index: inherit;
  transform: scale(1);
  display: block;
  pointer-events: none;
}
.nav-dropdown-bg-icon svg,
.nav-dropdown-bg .icon svg {
  width: 30px;
  height: 30px;
  fill: var(--primary-white);
}
.nav-dropdown-bg-icon {
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
}
.nav-dropdown-bg .icon {
  opacity: 0;
}
.header-wrapper {
  z-index: 9999;
}
.header {
  background-color: white;
}
@media (max-width: 991px) {
  .header-wrapper.desktop {
    display: none;
  }
}
@media (min-width: 991px) {
  .header-wrapper.mobile {
    display: none;
  }
}
.mobile.navigation-menu {
  display: block;
  position: relative;
  padding: 0;
  --item-font-size: 18px;
  --item-font-weight: 500;
  --item-line-height: 60px;
  --item-color-normal: var(--primary-black);
  overflow-y: scroll;
    max-height: 300px;
}
.mobile.navigation-menu li {
  width: 100%;
  /* height: 40px; */
  display: block;
}
.mobile.navigation-menu li a {
  padding-right: 15px;
  padding-left: 0;    
  height: 35px;
}
.mobile.navigation-menu a {
  font-size: var(--item-font-size);
  font-weight: var(--item-font-weight);
  line-height: var(--item-line-height);
  color: var(--item-color-normal);
}
.mobile.navigation-menu li:hover,
.mobile.navigation-menu li:focus,
.mobile.navigation-menu li:active,
.mobile.navigation-menu li.current-menu-item,
.mobile.navigation-menu li.current-menu-ancestor {
  color: var(--main-orange);
}
.mobile.navigation-menu li:hover > a,
.mobile.navigation-menu li:focus > a,
.mobile.navigation-menu li:active > a,
.mobile.navigation-menu li.current-menu-item > a,
.mobile.navigation-menu li.current-menu-ancestor > a {
  background-color: rgba(0, 0, 0, 0);
  color: inherit !important;
}
.mobile.navigation-menu li:hover > a .icon svg,
.mobile.navigation-menu li:focus > a .icon svg,
.mobile.navigation-menu li:active > a .icon svg,
.mobile.navigation-menu li.current-menu-item > a .icon svg,
.mobile.navigation-menu li.current-menu-ancestor > a .icon svg {
  fill: var(--main-orange) !important;
}
.mobile.navigation-menu .icon {
  fill: var(--item-color-normal) !important;
  width: 10px;
  height: 15px;
  pointer-events: none;
}
.mobile.navigation-menu .icon svg {
  width: inherit;
  height: inherit;
}
.mobile.navigation-menu .menu-item-has-children {
  position: static;
}
.mobile.navigation-menu .sub-menu {
  top: 0;
  width: 100%;
  left: 100%;
  padding: 0;
  margin-top: 0;
  margin-left: 0;
  min-width: 100%;
}
.mobile.navigation-menu .sub-menu li a {
  padding: 0;
  font-size: var(--item-font-size);
  font-weight: var(--item-font-weight);
  line-height: var(--item-line-height);
  color: var(--item-color-normal);
}
.mobile.navigation-menu .sub-menu .sub-menu {
  top: 0;
  left: 100%;
  background-color: rgba(0, 0, 0, 0);
  box-shadow: none;
}
.mobile.navigation-menu .back-button a {
  justify-content: initial;
  align-items: center;
  color: var(--primary-black);
  display: flex;
  align-items: center;
}
.mobile.navigation-menu .back-button a .icon {
  transform: rotate(180deg);
  fill: var(--primary-black);
  margin-right: 0.8rem;
}
.desktop.navigation-menu {
  padding: 0;
}
.desktop.navigation-menu > li {
  display: flex;
  align-items: center;
}
.desktop.navigation-menu > li > a {
  height: unset;
}
.desktop.navigation-menu > li > a::after {
  bottom: -5px;
}
.desktop.navigation-menu > .menu-item-has-children > a::after {
  display: none;
}
.desktop.navigation-menu > .menu-item-has-children > a .icon {
  width: 1.4rem;
  height: auto;
  margin-left: 0.5rem;
  fill: var(--color-primary);
  display: inline-flex;
}
.desktop.navigation-menu > li {
  position: relative;
}
.desktop.navigation-menu > .current-menu-ancestor::after,
.desktop.navigation-menu > .current-menu-item::after {
  display: block;
}
.desktop.navigation-menu > li {
  padding: 0;
  padding-right: 17px;
}
.desktop.navigation-menu > li > a {
  justify-content: flex-start;
  padding: 0;
}
@media (max-width: 991px) {
  .desktop.navigation-menu {
    display: none;
  }
}
.search {
  position: relative;
}
.search-icon {
  padding: 1rem;
  background-color: var(--main-orange);
  border-radius: 50%;
  aspect-ratio: 1;
  cursor: pointer;
  min-width: 34px;
  min-height: 34px;
}
.search-icon svg {
  height: 1.4rem;
  fill: var(--primary-white);
}
.search-icon:hover {
  background-color: var(--primary-white);
}
.search-icon:hover svg {
  fill: var(--main-orange);
}
.search-dropdown {
  position: absolute;
  top: calc(100% + 2rem);
  right: -3.4rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(5rem);
  transition: all 0.3s ease;
}
.search-dropdown input {
  width: 610px;
  max-width: 100%;
  height: 60px;
  outline: none;
  padding: 18px 30px;
  border: 1px solid var(--border-color);
  border-radius: 1rem;
  box-sizing: border-box;
  font-family: var(--font-family-spartan);
  line-height: 1.2;
  color: var(--grey);
  font-size: var(--font-size-xx-sm);
}
.search-dropdown input::-webkit-search-cancel-button {
  -webkit-appearance: none;
  appearance: none;
}
.search-dropdown button {
  position: absolute;
  top: 50%;
  right: 2rem;
  transform: translateY(-50%);
  border: none;
  background-color: rgba(0, 0, 0, 0);
  cursor: pointer;
}
.search-dropdown button svg {
  height: 2rem;
  fill: var(--main-orange);
  vertical-align: middle;
}
.search-dropdown .arrow-icon {
  position: absolute;
  top: -2.4rem;
  right: 3rem;
  width: 0;
  height: 0;
  width: 4rem;
  height: 4rem;
  fill: var(--primary-white);
}
.search.active .search-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
@media (max-width: 991px) {
  .search {
    display: none;
  }
}
.hamburger-icon {
  cursor: pointer;
  padding: 0 1rem;
}
.hamburger-icon .bar {
  width: 18px;
  height: 3px;
  background-color: black;
}
.hamburger-icon .bar:nth-child(n + 2) {
  margin-top: 3px;
}
.hamburger-icon .bar:nth-child(2) {
  margin-left: 2px;
}
@media (max-width: 991px) {
  .hamburger-icon .bar {
    height: 2px;
  }
}
.hamburger-content {
  position: fixed;
  top: 0;
  left: 0;
  background-color: var(--primary-white);
  width: 100vw;
  height: 100vh;
  z-index: 99999999;
  transition: all 0.5s ease-in-out;
}
/*.hamburger.direction-left .hamburger-content {*/
/*  transform: translateX(-100%);*/
/*}*/
.hamburger.direction-right .hamburger-content {
  right: -100%;
}
.hamburger.shown.direction-left .hamburger-content {
  transform: translateX(0);
}
.hamburger.shown.direction-right .hamburger-content {
  right: 0;
}
.hamburger-close {
  font-size: 22px;
  height: 22px;
  fill: var(--primary-black);
  cursor: pointer;
}
.hamburger-close svg {
  height: inherit;
  fill: inherit;
}
.hamburger-content {
  --padding-left: 3.8rem;
  --padding-right: 3.8rem;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 2.5rem var(--padding-right) 2.5rem var(--padding-left);
}
.hamburger-content-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 3rem;
}
.hamburger-content-main {
  margin-top: 5.5rem;
}
.hamburger-content-main .navigation-menu > li::after {
  display: none;
}
.hamburger-content-main .navigation-menu > li > a {
  padding: 0 0;
}
.hamburger-content-main .navigation-menu .sub-menu {
  margin-top: 0;
  margin-left: 3.8rem;
}
.hamburger-content-main ul {
  padding: 0 var(--padding-left) 0 var(--padding-right) !important;
}
header .home-2-humburger .bar {
  background-color: var(--primary-black);
}
header.scrolled .hamburger-icon .bar {
  background-color: var(--primary-black);
}

.dog-records {
  display: flex;
}
/* Container */
.shemeek-services {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  padding: 2rem;
  background: #f9f9f9;
}

.dog-records .meta-info{
    justify-content:center !important;
}

/* Card Design */
.shemeek-services .service-card {
  background: #fff;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  max-width: 450px;
  flex: 1 1 350px;
  position: relative;
  border-top: 8px solid #d4a017; /* Golden Yellow */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Hover effect */
.shemeek-services .service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

/* Headings */
.shemeek-services .service-title {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #222;
}

/* Paragraph text */
.shemeek-services .service-text {
  font-size: 18px;
  line-height: 1.6;
  color: #444;
}

/* Responsive Design */
@media (max-width: 768px) {
  .shemeek-services {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
  }
  
  .questions-main{
            display:flex;
            justify-content:center;
            gap:10px;
        }
  .custom-modal-content {
    background-color: #fff;
    margin: 30% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    max-width: 600px;
    border-radius: 8px;
    position: relative;
    overflow-y: scroll;
    max-height: 400px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    animation-name: animatetop;
    animation-duration: 0.4s;
    text-align: left;
}



  .shemeek-services .service-card {
    max-width: 90%;
  }
}

.feedback--wrapper h1 {
  color: white !important;
}
.enquiry-form {
  display: flex;
}

.enquiry-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
  padding: 2rem;
}

.enquiry-form img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.enquiry-form p {
  margin-bottom: 1.5rem;
  color: #444;
  line-height: 1.6;
}

/* Form styling */
#contactForm {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

#blog-main {
  background: white !important;
}

.gallery-section {
  padding: 60px 20px;
  background: #f9f9f9;

  .container {
    max-width: 1300px;
    margin: 0 auto;
  }

  .gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    justify-content: center;
  }

  .gallery-item {
    position: relative;
    background: #fff;
    /* border-radius: 16px; */
    /* margin: 5px; */
    padding: 5px;
    border: 2px solid #d4ac3b;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;

    &:hover {
      transform: translateY(-6px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);

      .overlay {
        opacity: 1;
      }
    }

    .gallery-card {
      display: block;
      text-decoration: none;
      color: inherit;
    }

    .gallery-img-block {
      position: relative;
      width: 100%;
      height: 240px;
      overflow: hidden;

      img,
      video {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.4s ease;
      }

      &:hover img,
      &:hover video {
        transform: scale(1.1);
      }

      .overlay {
        position: absolute;
        inset: 0;
        background: linear-gradient(
          180deg,
          rgba(0, 0, 0, 0) 40%,
          rgba(0, 0, 0, 0.6) 100%
        );
        opacity: 0;
        transition: opacity 0.3s ease;
      }
    }

    h5.title {
      font-size: 15px;
      font-weight: 600;
      color: #333;
      margin: 12px 16px 6px;
    }

    p.sub-title {
      font-size: 0.9rem;
      color: #777;
      margin: 0 16px 16px;
      line-height: 1.4;
    }
  }
}

@media (max-width: 992px) {
  .gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .gallery {
    grid-template-columns: 1fr;
  }

  .gallery-item .gallery-img-block {
    height: 200px;
  }
}

.navigation-menu a {
  position: relative;
  display: inline-block;
  color: inherit;
  line-height: 30px;
  text-decoration: none;
  transition: color 0.2s ease;
}

/* ✅ Animated underline effect */
.navigation-menu a::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: rgb(212, 172, 59);
  transform: scaleX(0); /* hidden initially */
  transform-origin: left center; /* grows from left */
  transition: transform 0.3s ease;
}

/* Hover effect */
.navigation-menu a:hover::before {
  transform: scaleX(1); /* expands left → right */
}

/* Active state (always visible) */
.navigation-menu a.active::before,
.navigation-menu .menu-item.active > a::before {
  transform: scaleX(1);
}

.navigation-menu a.active,
.navigation-menu .menu-item.active > a {
  color: #d4ac3b;
  font-weight: 600;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 20px;
  padding: 20px;
}

.gallery-item {
  position: relative;
  cursor: pointer;
  overflow: hidden;

  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.thumbnail {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  padding: 10px;
  font-size: 14px;
  text-align: center;
}

.popup-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.8);
  justify-content: center;
  align-items: center;
}

.popup-modal.active {
  display: flex;
}

.modal-content {
  max-width: 90%;
  max-height: 90%;
}

.modal-content img,
.modal-content video {
  max-width: 100%;
  max-height: 100%;
  border-radius: 8px;
}

.close-btn {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 32px;
  color: white;
  cursor: pointer;
  z-index: 10000;
}
.enquiry-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
  padding: 2rem;
}

/* ✅ Below 992px -> 1 item per row */
@media (max-width: 768px) {
  .enquiry-form {
    grid-template-columns: 1fr;
  }
  .enquiry-img {
    display: none !important;
  }
  .custom-services .services-grid {
    display: grid;
    grid-template-columns: 1fr !important;
    gap: 40px;
    align-items: center;
  }
  .news-section
    .news-wrapper
    .news-card-block
    .services-section
    .services-card-section {
    grid-template-columns: 1fr !important;
  }
}
.custom-services .services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  align-items: center;
}

.custom-services .service-box {
  position: relative;
  background: #d4ac3b;
  border-radius: 10px;
  padding: 35px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  z-index: 1;
}
.custom-services .service-box h2 {
  font-size: 32px;
  margin-bottom: 15px;
  font-weight: bold;
}

.custom-services .service-box p {
  font-size: 18px;
  line-height: 1.6;
  color: #333;
}

.custom-services .arrow {
  display: flex;
  justify-content: center;
  align-items: center;
}

.custom-services .arrow img {
  max-width: 120px;
  width: 100%;
  height: auto;
}

/* ✅ Responsive */
@media (max-width: 992px) {
  .custom-services .services-grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }

  .custom-services .arrow {
    display: none; /* hide arrows on smaller screens */
  }

  .custom-services .service-box p {
    font-size: 14px;
    line-height: 1.6;
    color: #333;
  }
  .navigation-menu a::before {
    display: none !important;
  }
}

.custom-services .service-box {
  position: relative;
  z-index: 1 !important;
}
/* ✅ Before effect (yellow background behind card) */
.custom-services .service-box::before {
  content: "";
  position: absolute;
  top: 20px;
  left: 20px;
  width: 100%;
  height: 100%;
  background: #ffffff;
  border: 1px solid;
  border-radius: 10px;
  z-index: -5;
}

.about-us-v2-section {
  position: relative;
  z-index: 1;
}

.about-us-v2-section::after {
  content: "";
  position: absolute;
  top: 0; /* stick it to the bottom */
  left: 0;
  width: 100%;
  height: 50%; /* ✅ half the section height */
  background: #000;
  z-index: -1; /* keep it behind content */
}
.custom-section {
  padding: 15rem 0 5rem;
}
.custom-services {
  padding: 0 0 15rem;
}

.service-img {
  cursor: pointer;
}

.page-header-section {
  position: relative;
  z-index: 1;
  overflow: hidden; /* keeps overlay inside */
}

/* ✅ Overlay before effect */
.page-header-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4); /* light black overlay */
  z-index: 2; /* above background, below content */
}

/* Keep content above overlay */
.page-header-section > * {
  position: relative;
  z-index: 3;
}

/* Container */
.dogbook-container {
  max-width: 800px;
  font-family: "BioRhyme" !important;
  margin: 40px auto;
  background: #fff;
  padding: 25px;
  border-radius: 12px;
}

/* Title */
.dogbook-title {
  text-align: center;
  font-size: 28px;
  margin-bottom: 30px;
  color: #333;
}

/* Step indicators */
.dogbook-indicators {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
}

.dogbook-indicators div {
  flex: 1;
  text-align: center;
  padding: 10px;
  background: #ffffff;
  border-radius: 5px;
  font-size: 13px;
  border: 1px solid grey;
  text-transform: uppercase;
  margin: 0 5px;
}

.dogbook-indicators .active {
  background: #d4ac3b;
  color: #fff;
}

/* Steps */
.dogbook-step {
  display: none;
}

.dogbook-step.active {
  display: block;
}

/* Labels */
.dogbook-label {
  display: block;
  font-size: 16px;
  font-weight: 500;
  margin-top: 12px;
  margin-bottom: 5px;
  color: #444;
}

/* Inputs */
.dogbook-input,
.dogbook-select,
.dogbook-textarea {
  width: 100%;
  padding: 10px 12px;
  margin-bottom: 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 15px;
}

.dogbook-textarea {
  resize: vertical;
  height: 100px;
}

/* Buttons */
.dogbook-buttons {
  display: flex;
  justify-content: space-between;
  margin-top: 15px;
}

.dogbook-btn {
  background: #000;
  color: #fff;
  padding: 6px 18px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 12px;
  transition: 0.3s;
}

.dogbook-btn:hover {
  background: #000;
}

/* Responsive */
@media (max-width: 600px) {
  .dogbook-indicators {
    flex-direction: column;
  }

  .dogbook-indicators div {
    margin-bottom: 8px;
  }

  .dogbook-buttons {
    flex-direction: column;
  }

  .dogbook-buttons .dogbook-btn {
    width: 100%;
    margin-bottom: 10px;
  }
}
.dogbook-options {
  margin-bottom: 15px;
}
.dogbook-options label {
  font-size: 15px;
  margin-right: 15px;
  display: inline-block;
  cursor: pointer;
}
/* Parent menu */
.navigation-menu li.dropdown {
  position: relative;
}

/* Dropdown menu */
.navigation-menu li.dropdown .dropdown-menu {
  position: absolute;
  top: 75%; /* slightly below parent */
  left: 0;
  background-color: #fff;
  border-radius: 8px;
  padding: 10px 0;
  min-width: 250px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 999;
}

/* Show dropdown on hover */
.navigation-menu li.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Dropdown items */
.navigation-menu li.dropdown .dropdown-item a {
  display: block;
  padding: 5px 20px;
  color: #333;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.navigation-menu li.dropdown .dropdown-item a:hover {
  background-color: #d4ac3b;
  color: #fff;
}

.menu-item.dropdown > a i {
  margin-left: 5px;
  font-size: 0.8em; /* smaller arrow */
}

/* Rotate arrow on hover */
.navigation-menu li.dropdown:hover > a::after {
  transform: rotate(180deg);
}

.service-content {
  font-family: "BioRhyme" !important;
}

.service-content .h1,
.service-content .h2,
.service-content .h3,
.service-content .h4,
.service-content .h5,
.service-content .h6 {
  font-size: clamp(22px, 3vw, 28px) !important;
}

.service-content p {
  font-size: clamp(1rem, 1rem + 0.4vw, 2rem); /* ~15.2px — 18px */
}
.service-content li {
  list-style: none !important;
  position: relative;
  padding-left: 25px;
  line-height: 30px;
}

.service-content li::before {
  content: "✔";
  position: absolute;
  left: 0;
  line-height: 20px;
  margin: 4px 0px;
  color: #ffffff;
  background-color: #d4ac3b;
  padding: 0px 6px;
  border-radius: 50px;
}

.custom-modal-content .h1,
.custom-modal-content .h2,
.custom-modal-content .h3,
.custom-modal-content .h4,
.custom-modal-content .h5,
.custom-modal-content .h6 {
  font-size: clamp(22px, 3vw, 28px) !important;
}

.custom-modal-content p {
  font-size: clamp(1rem, 1rem + 0.4vw, 2rem); /* ~15.2px — 18px */
}

.custom-modal-content li {
  list-style: none !important;
  position: relative;
  padding-left: 25px;
  line-height: 0px;
}

.custom-modal-content li::before {
  content: "✔";
  position: absolute;
  left: 0;
  line-height: 20px;
  margin: 4px 0px;
  color: #ffffff;
  background-color: #d4ac3b;
  padding: 0px 6px;
  border-radius: 50px;
}
.custom-modal-title {
  font-size: 28px;
  margin-bottom: 20px;
  font-family: "BioRhyme" !important;
}

/* ======== Dropdown Menu (Services) ======== */

/* Parent Menu */
.navigation-menu .menu-item.dropdown > a {
  position: relative;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  color: #222;
  padding: 10px 7px;
  display: flex;
  align-items: center;
  gap: 5px;
}

/* Rotate arrow on hover */
.navigation-menu .menu-item.dropdown:hover > a::after {
  transform: rotate(180deg);
}

/* Dropdown menu container */
.navigation-menu .menu-item .dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 200px;
  background: #fff;
  border-radius: 6px;
  padding: 8px 0;
  margin-top: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  display: none;
  z-index: 100;
  animation: fadeDown 0.3s ease;
}

/* Dropdown items */
.navigation-menu .menu-item .dropdown-item a {
  display: block;
  padding: 10px 15px;
  color: #333;
  font-size: 15px;
  font-weight: 500;
  transition: background 0.3s ease, color 0.3s ease;
}

/* Hover effect */
.navigation-menu .menu-item .dropdown-item a:hover {
  background: #f5f5f5;
  color: #0077ff;
}

/* Show dropdown on hover */
.navigation-menu .menu-item.dropdown:hover .dropdown-menu {
  display: block;
}

/* Animation */
@keyframes fadeDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Mobile dropdown: hidden by default */
.navigation-menu.mobile .dropdown-menu {
  display: none;
  list-style: none;
  padding-left: 0;
  margin: 0;
}

/* Show dropdown when parent has 'active' class */
.navigation-menu.mobile .dropdown.active > .dropdown-menu {
  display: block;
}




.mobile-services-dropdown .dropdown-menu {
  display: none;
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.mobile-services-dropdown.active > .dropdown-menu {
  display: block;
}

/* Add caret rotation for active dropdown */
.navigation-menu.mobile .dropdown > a i {
  transition: transform 0.3s;
}

.navigation-menu.mobile .dropdown.active > a i {
  transform: rotate(180deg);
}
/* Add caret rotation for active dropdown */
.navigation-menu.mobile .dropdown > a i {
  transition: transform 0.3s;
}

.navigation-menu.mobile .dropdown.active > a i {
  transform: rotate(180deg);
}

.mobile-services-dropdown .dropdown-menu {
  display: none;
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.mobile-services-dropdown.active > .dropdown-menu {
  display: block;
}

.mobile-services-dropdown .dropdown-menu .dropdown-item {
  padding: 10px 20px;
}

.mobile-services-dropdown > a i {
  transition: transform 0.3s;
}

.mobile-services-dropdown.active > a i {
  transform: rotate(180deg);
}

.mobile-services-dropdown .dropdown-menu {
  /* These lines were removed: */
  /* position: absolute; */
  /* top: 75%; */
  /* left: 0; */
  /* z-index: 999; */

  background-color: #fff;
  border-radius: 8px;
  padding: 10px 0;
  min-width: 200px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
}

/* Slider Wrapper */
.custom-swiper {
  width: 100%;
  height: 100vh;
  position: relative;
}

/* Slides */
.custom-swiper .swiper-slide {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  background-size: cover;
  background-position: center;
}

/* Overlay */
.custom-swiper .swiper-slide::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgb(0 0 0 / 47%);
  z-index: 1;
}

/* Content */
.slide-content {
  position: relative;
  z-index: 2;
  max-width: 500px;
  margin-left: 100px;
  animation: fadeInLeft 1s ease forwards;
}

.slide-content h2 {
  font-size: clamp(28px, 5vw, 48px);
  margin: 0 0 20px;
  font-family: "BioRhyme" !important;
  color: rgb(240, 240, 240);
}

.slide-content p {
  font-size: clamp(14px, 2.5vw, 18px);
  line-height: 1.6;
  margin-bottom: 20px;
  font-family: "BioRhyme" !important;
  color: rgb(240, 240, 240);
}

/* Button */
.slide-btn {
  display: inline-block;
  padding: 12px 28px;
  font-size: clamp(14px, 2vw, 16px);
  font-weight: bold;
  color: #fff;
  background: #d4ac3b;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.slide-btn:hover {
  transform: scale(1.1);
}

/* Button animation (shine effect) */
.slide-btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255, 255, 255, 0.6),
    transparent
  );
  transition: all 0.5s;
}

.slide-btn:hover::after {
  left: 100%;
}

/* Animation */
@keyframes fadeInLeft {
  0% {
    opacity: 0;
    transform: translateX(-50px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Custom Navigation Arrows */
.custom-swiper .swiper-button-next,
.custom-swiper .swiper-button-prev {
  width: 50px;
  height: 50px;
  background: #d4ac3b;
  border-radius: 50%;
  backdrop-filter: blur(5px);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.custom-swiper .swiper-button-next:hover,
.custom-swiper .swiper-button-prev:hover {
  background: #d4ac3b;
  transform: scale(1.15);
}

.custom-swiper .swiper-button-next::after,
.custom-swiper .swiper-button-prev::after {
  font-size: 20px;
  font-weight: bold;
  color: #fff;
}

/* Position arrows */
.custom-swiper .swiper-button-prev {
  left: 20px;
}
.custom-swiper .swiper-button-next {
  right: 20px;
}

/* Custom Pagination */
.custom-swiper .swiper-pagination {
  bottom: 30px !important;
}

.custom-swiper .swiper-pagination-bullet {
  width: 14px;
  height: 14px;
  background: rgba(255, 255, 255, 0.4);
  opacity: 1;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.custom-swiper .swiper-pagination-bullet-active {
  background: #d4ac3b;
  transform: scale(1.3);
  box-shadow: 0 0 10px #d4ac3b;
}

/* ---------------- Responsive ---------------- */

/* Tablets (up to 992px) */
@media (max-width: 992px) {
  .custom-swiper .swiper-button-next,
  .custom-swiper .swiper-button-prev {
    width: 40px;
    height: 40px;
  }
  .custom-swiper .swiper-button-next::after,
  .custom-swiper .swiper-button-prev::after {
    font-size: 16px;
  }
  .custom-swiper .swiper-button-prev {
    left: 15px;
  }
  .custom-swiper .swiper-button-next {
    right: 15px;
  }
  .custom-swiper .swiper-pagination {
    bottom: 20px !important;
  }
}

/* Mobile (up to 576px) */
@media (max-width: 576px) {
  .custom-swiper .swiper-button-next,
  .custom-swiper .swiper-button-prev {
    width: 32px;
    height: 32px;
  }
  .custom-swiper .swiper-button-next::after,
  .custom-swiper .swiper-button-prev::after {
    font-size: 14px;
  }
  .custom-swiper .swiper-button-prev {
    left: 10px;
  }
  .custom-swiper .swiper-button-next {
    right: 10px;
  }
  .custom-swiper .swiper-pagination {
    bottom: 15px !important;
  }
  .custom-swiper .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
  }
  .slide-content {
    position: relative;
    z-index: 2;
    max-width: 500px;
    margin-left: 50px !important;
    animation: fadeInLeft 1s ease forwards;
  }
}

.achievements-grid-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  padding: 20px;
  justify-content: center; /* Centers the grid items */
  align-items: center;
  margin-top: 30px  ;
}

.achievement-item {
  position: relative;
  background-color: #ffffff;
  border: 2px dashed #d4ac3b;
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
  overflow: hidden;
  z-index: 1;
  background: linear-gradient(135deg, #d4ac3b, #f5e6a3, #d4ac3b);
  animation: glowing 3s infinite linear;
}

/* Before effect - glowing animated border */
.achievement-item::before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  border-radius: 12px;
  background: linear-gradient(135deg, #d4ac3b, #f5e6a3, #d4ac3b);
  background-size: 300% 300%;
  animation: glowing 3s infinite linear;
  opacity: 1;
  z-index: -1;
  transition: opacity 0.4s ease-in-out;
}

/* Hover effect */
.achievement-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
  background-color: #fafafa;
}



/* Text styles */
.achievement-item h2 {
    font-size: 17px;
    font-family: "BioRhyme", serif;
    color: #333;
    margin-bottom: 10px;
}

.achievement-item p {
 font-size: 14px;
    color: #000000;
}

/* Keyframes for glowing border animation */
@keyframes glowing {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.achievement-item i {
    font-size: 2em;
    color: #d4ac3b;
    padding: 10px;
    background: #ffffff;
    border: 1px solid #000000;
    border-radius: 48px;
    margin-bottom: 10px;
    transition: transform 0.3s 
ease-in-out;

}

.achievement-item:hover i {
    transform: scale(1.2) rotate(10deg);
    color: #b8860b;
}
.trophy {
    font-size: 2em;
    display: block;
    margin-bottom: 10px;
}


/* Dropdown hidden by default */
.has-dropdown .dropdown-menu {
  display: none;
  list-style: none;
  padding-left: 15px;
}

/* Show when parent has 'active' */
.has-dropdown.active .dropdown-menu {
  display: block;
}

/* Small transition for smoothness */
.dropdown-menu li a {
  display: block;
  padding: 8px 12px;
}



.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 20px;
    right: 20px;
    background-color: #25D366;
    border-radius: 50%;
    text-align: center;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 0 15px rgba(37, 211, 102, 0.6);
  }

  .whatsapp-float img {
    width: 30px;
    height: 30px;
  }

  .whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow:
      0 0 10px #25D366,
      0 0 20px #25D366,
      0 0 30px #25D366,
      0 0 40px #25D366;
  }

  /* Responsive adjustments */
  @media (max-width: 600px) {
    .whatsapp-float {
      width: 50px;
      height: 50px;
      bottom: 15px;
      right: 15px;
    }

    .whatsapp-float img {
      width: 26px;
      height: 26px;
    }
  }
  
 /* Loader container covers whole screen */
    #loaderContainer {
      position: fixed;
      top: 0;
      left: 0;
      height: 100%;
      width: 100%;
      background: white;
      display: flex;
      justify-content: center;
      align-items: center;
      z-index: 9999;
    }

    .loader {
      height: 4px;
      width: 130px;
      --c: no-repeat linear-gradient(#FFD700 0 0); /* gold */
      background: var(--c), var(--c), #d7b8fc;
      background-size: 60% 100%;
      animation: l16 3s infinite;
    }

    @keyframes l16 {
      0%   { background-position: -150% 0, -150% 0 }
      66%  { background-position: 250% 0, -150% 0 }
      100% { background-position: 250% 0, 250% 0 }
    }
.booking-success {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  min-height: 100vh;
  padding: 20px;
}

.booking-success .content-wrap {
  background: #fff;
  padding: 10px;
  border-radius: 15px;
  max-width: 600px;
  width: 100%;
}

.booking-success img {
  max-width: 100%;
  height: auto;
}

.booking-success h2 {
font-size: 2rem;
    margin-bottom: 15px;
    color: #333;
    font-family: 'BioRhyme';
}

.booking-success p {
  font-size: 1.5rem;
  margin-bottom: 20px;
  color: #555;
}

.booking-success .btn-home {
  display: inline-block;
  padding: 12px 25px;
  background: #000;
  color: #fff;
  border-radius: 8px;
  text-decoration: none;
  font-size: 20px;
  transition: background 0.3s ease;
    font-family: 'BioRhyme';
}

.booking-success .btn-home:hover {
     background-color: var(--main-orange);
}

 .terms-container {
            max-width: 800px;
            margin: 40px auto;
    
       
            border-radius: 8px;
       
            font-size: 16px;
            line-height: 1.6;
            color: #333;
            h3{
                color:red;
                     font-family: 'BioRhyme';
                     display:flex;
                     justify-content:center;
            }
           
        }

        .terms-container h2 {
            font-size: 24px;
            margin-bottom: 20px;
            color: #2c3e50;
            text-align: center;
             font-family: 'BioRhyme';
        }

        .terms-container ul {
            list-style: none;
            padding-left: 0;
        }

        .terms-container li {
         margin-bottom: 12px;
    padding-left: 26px;
    position: relative;
    font-family: 'BioRhyme';
        }

        .terms-container li::before {
            content: "✅";
            position: absolute;
            left: 0;
            top: 0;
            font-size: 16px;
            color: green;
        }
        
        .questions-main{
            display:flex;
            justify-content:end;
            gap:10px;
        }
        
        /* default hidden state */
.hamburger-content {
  position: fixed;
  top: 0;
  left: -100%;          /* hide it outside the viewport */
  width: 300px;         /* adjust as needed */
  height: 100vh;
  background: #fff;
  z-index: 1000;
  transition: left 0.4s ease-in-out;
  overflow-y: auto;
  box-shadow: 2px 0 10px rgba(0,0,0,0.2);
}

/* when active → slide in */
.hamburger-content.active {
  left: 0;
}


/* Gold shine effect */
.logo::before {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    120deg,
    rgba(255, 215, 0, 0) 0%,       /* transparent gold */
    rgba(255, 215, 0, 0.4) 40%,    /* soft golden highlight */
    rgba(255, 223, 0, 0.7) 50%,    /* bright gold center */
    rgba(255, 215, 0, 0.4) 60%,    /* fade out */
    rgba(255, 215, 0, 0) 100%      /* transparent */
  );
  mix-blend-mode: overlay;
  animation: goldShine 2s linear infinite;
}

@keyframes goldShine {
  0% {
    left: -75%;
  }
  100% {
    left: 125%;
  }
}


#section-new{
  padding: 0px 0px 15em !important;
}