@import url('https://fonts.googleapis.com/css2?family=Cinzel+Decorative:wght@400;700;900&family=Quicksand:wght@300..700&display=swap');

:root {
  --text-revealing-animation-duration: 700ms;

  /* Base Colors */
  --primary-color: #24d2d3;
  --secondary-color: #16413d;
  --accent-color: #f1fffd;
  --primary-light: #d3e5e0;
  --footer-color: #143a35;
  --logo-color: #24d2d3;

  /* Typography */
  --default-font: "Quicksand", sans-serif;
  --title-font: "Cinzel Decorative", serif;
  --font-color: #2C2C2C;
}

html,
body {
  font-size: 16px;
  color: var(--font-color);
  font-family: var(--default-font);
  vertical-align: baseline;
  line-height: 26px;
  font-weight: 500;
  background-color: var(--accent-color) !important;
  scroll-behavior: smooth;
  box-sizing: border-box;
}

a {
  text-decoration: none;
}

.text-primary {
  color: var(--primary-color) !important;
}

.title-font {
  font-family: var(--title-font);
}

.bg-primary {
  background-color: var(--primary-color) !important;
}

.bg-accent {
  background-color: var(--accent-color) !important;
}

.border-primary {
  border: 1px dashed var(--primary-color) !important;
}


.primary-btn {
  position: relative;
  background-color: var(--primary-color);
  color: var(--accent-color);
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  line-height: 20px;
  letter-spacing: 1px;
  font-weight: 400;
  font-size: 14px;
  padding: 10px 36px;
  transform-origin: 79.2656px 20px;
  opacity: 1;
  transition: 300ms;
}

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

.primary-btn:hover::before,
.primary-btn:hover::after {
  width: 100%;
  background-color: #000000;
}

.primary-btn::before {
  position: absolute;
  left: 0;
  bottom: 107%;
  content: '';
  height: 2px;
  width: 20%;
  background-color: var(--primary-color);
  transition: 300ms;
}

.primary-btn::after {
  position: absolute;
  right: 0;
  top: 107%;
  content: '';
  height: 2px;
  width: 20%;
  background-color: var(--primary-color);
  transition: 300ms;
}





.title {
  font-family: var(--title-font);
  font-size: 3.4rem;
  line-height: 1.2;
  font-weight: 700;
  color: #000000;
  text-transform: capitalize;
}


.pretitle {
  position: relative;
  display: inline-block;
  text-align: center;
  color: var(--font-color);
  text-transform: uppercase;
  font-size: 1.28571rem;
  font-weight: 500;
  line-height: 1.4;
  padding-top: 50px;
  /* Space for the icon above */
}

.pretitle::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 40px;
  background-image: url('/assets/images/section/shape2.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}




.read-more-btn {
  text-transform: capitalize;
  font-size: 1rem;
  font-weight: 700;
  background-color: var(--primary-color);
  padding: 10px;
  display: block;
  text-decoration: none;
  color: var(--accent-color);
}

.nxtprev-btn {
  color: var(--primary-color);
  border: 1px solid var(--primary-color);
  background-color: transparent;
  font-weight: 500;
  padding: 6px 16px;
  transition: all 0.3s ease-in;
  border-radius: 0;
}

.nxtprev-btn:hover {
  background-color: var(--primary-color);
  color: #fff;
  transition: all 0.3s ease-out;
}

.icon-box {
  height: 30px;
  width: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  background-color: var(--primary-color);
  border-radius: 50%;
}

.mission-icon-box {
  width: 100px;
  height: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background-color: white;
  padding: 10px;
  border: 3px dashed var(--primary-color);
}

.banner-container {
  background-image: url(../images/background.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  min-height: 92vh;
}

.banner-wrapper {
  min-height: 92vh;
}

.banner-title {
  font-size: 50px;
  font-family: var(--title-font);
  font-weight: bold;
  line-height: 60px;
}

.service-container {
  background-image: url(../images/section/tq-bg1.jpg);
  background-size: cover;
  background-repeat: no-repeat;
}

.service-icon {
  height: 100px;
  width: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: white;
  margin: 0 auto;
  border-radius: 50%;
}

.mission-container img {
  width: 100%;
  scale: 1.2;
}

.mission-card .card-content p {
  font-size: 30px;
  line-height: 40px;
}

.service-card {
  background-color: #ffffff94;
  transition: all 0.3s ease-out;
  overflow: hidden;
}

.service-card:hover {
  background-color: transparent;
  transition: all 0.3s ease-in;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 50px;
}

.service-card h5 {
  font-weight: 700;
  font-family: var(--title-font);
}

.service-card .img-container {
  overflow: hidden;
}


.service-card img {
  transition: all 0.3s ease-out;
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.service-card:hover img {
  transform: scale(1.1);
  transition: all 0.3s ease-in;
}

.riba-card {
  padding: 30px;
  border: 1px solid rgb(224, 224, 224);
  border-radius: 50px;
  transition: all 0.3s ease-in;
}

.riba-card:hover {
  background-color: var(--accent-color);
  border: 1px solid var(--primary-color);
  border-radius: 30px;
  transition: all 0.3s ease-out;
}

.why-choose-us {
  background-image: url('/assets/images/shapebox.png');
}

.why-choose-card {
  /* background-image: linear-gradient(120deg, #fdfbfb 0%, #f9f9f9 100%); */
  background-image: linear-gradient(120deg, #fdfbfbda 0%, #f9f9f9c4 100%);
  padding: 30px;
  box-shadow: rgba(0, 0, 0, 0.1) -4px 9px 25px -6px;
}

.others-service-card {
  background-color: var(--primary-color);
  color: var(--accent-color);
  border: 0;
  border-radius: 0;
  box-shadow: rgba(0, 0, 0, 0.45) 0px 25px 20px -20px;
  transition: all 0.3s ease-in;
}

.others-service-card:hover {
  background-color: var(--secondary-color);
  color: #fff;
  transition: all 0.3s ease-out;
  box-shadow:
    rgba(31, 83, 77, 0.4) 5px 5px,
    rgba(31, 83, 77, 0.3) 10px 10px,
    rgba(31, 83, 77, 0.2) 15px 15px;
}

.others-service-card:hover img {
  margin-top: -65px;
  transition: all 0.3s ease-in-out;
}

.others-service-card img {
  margin: 0 auto;
  margin-top: -50px;
  width: 90%;
  height: 150px;
  object-fit: cover;
  border: 1px solid var(--accent-color);
  transition: all 0.3s ease-in-out;
}

.others-service-card .card-body {
  width: 100%;
  height: fit-content;
}

#avoid-riba-ayah {
  /* padding: 50px; */
}

#avoid-riba-ayah h2 {
  font-family: var(--title-font);
  font-weight: 700;
}

#back-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1;
  background-color: var(--accent-color);
  color: var(--secondary-color);
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--secondary-color);
  box-shadow: rgb(38, 57, 77) 0px 20px 30px -10px;
}


/* ***********************Banner Section Start*********************** */

.banner {
  position: relative;
  color: var(--accent-color);
  font-family: var(--default-font);
  height: 92vh;
}

.banner-background {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.animate-banner .banner-background {
  animation: fadeIn 1000ms ease-in;
}

.banner-foreground {
  position: absolute;
  z-index: 100;
  inset: 0;
  background-color: #00000062;
}

.banner-content-wrapper {
  position: relative;
  z-index: 1000;
  max-width: fit-content;
  background-color: var(--primary-color);
  padding-block: 8%;
  padding-inline: 10% 5%;
  border-bottom-right-radius: 600px;
  /* border-right: 20px solid var(--accent-color); */
  box-shadow: rgba(207, 207, 207, 0.4) 5px 5px, rgba(236, 236, 236, 0.3) 10px 10px, rgba(255, 255, 255, 0.2) 15px 15px;
}

.animate-banner .banner-content-wrapper {
  animation: fadeIn 500ms ease-in;
}

.banner-content {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 3rem;
}

.banner-moving-frame {
  position: absolute;
  left: 10%;
  bottom: 15%;
  height: 70%;
  width: 100%;
  border: 1rem solid rgba(220, 220, 220, 0.233);
}

.animate-banner .banner-moving-frame {
  animation: moveDownFrame 2000ms ease-out, movingFrame 8000ms linear infinite;
}


.banner-text-heading {
  position: relative;
  text-transform: uppercase;
  font-size: large;
  padding-left: 4rem;
}

.banner-text-heading::before {
  position: absolute;
  left: 0;
  top: 50%;
  translate: 0 -50%;
  content: "";
  width: 3rem;
  border: 1px solid var(--accent-color)
}

.banner-text-description {
  font-family: var(--title-font);
  position: relative;
  white-space: nowrap;
  line-height: 1.4;
  letter-spacing: 0px;
  font-weight: 800;
  font-size: clamp(25px, 4vw, 50px);
  --text-revealing-animation-duraion: 1200ms;
}

.banner-read-more-button {
  position: relative;
  background-color: var(--accent-color);
  color: var(--primary-color);
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  line-height: 20px;
  letter-spacing: 1px;
  font-weight: 600;
  font-size: 14px;
  padding: 10px 36px;
  transform-origin: 79.2656px 20px;
  opacity: 1;
  transition: 300ms;
}

.animate-banner .banner-read-more-button {
  animation: movingRight 2000ms;
}

.banner-read-more-button:hover {
  background-color: var(--secondary-color);
  color: var(--accent-color);
}

.banner-read-more-button:hover::before,
.banner-read-more-button:hover::after {
  width: 100%;
  background-color: var(--secondary-color);
}

.banner-read-more-button::before {
  position: absolute;
  left: 0;
  bottom: 107%;
  content: '';
  height: 2px;
  width: 20%;
  background-color: var(--accent-color);
  transition: 300ms;
}

.banner-read-more-button::after {
  position: absolute;
  right: 0;
  top: 107%;
  content: '';
  height: 2px;
  width: 20%;
  background-color: var(--accent-color);
  transition: 300ms;
}

.text-revealing::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  background-color: var(--accent-color);
}

.animate-banner .text-revealing::after {
  animation: textRevealing var(--text-revealing-animation-duraion) ease-in-out;
}

.banner-controller {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 1000;
  display: flex;
  gap: 10px;
  padding: 10px;
  background: rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.banner-controller img {
  width: auto;
  height: clamp(20px, 5vw, 60px);
  opacity: 0.5;
  cursor: pointer;
  transition: 300ms;
  border: clamp(2px, 0.5vw, 5px) solid transparent
}

.banner-controller img:hover {
  opacity: 1;
}

.banner-controller img.active {
  opacity: 1;
  border-color: var(--accent-color);
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes moveDownFrame {
  0% {
    bottom: 120%;
  }

  50% {
    bottom: 120%
  }

  100% {
    bottom: 15%;
  }
}

@keyframes movingFrame {
  0% {
    translate: 0 0
  }

  20% {
    translate: -1rem 1rem
  }

  40% {
    translate: 1rem 1rem
  }

  60% {
    translate: 1rem -1rem
  }

  80% {
    translate: -1rem -1rem
  }

  100% {
    translate: 0 0
  }
}

@keyframes movingRight {
  0% {
    opacity: 0%;
    translate: 0%;
  }

  50% {
    opacity: 0%;
    translate: -100%;
  }

  100% {
    opacity: 1;
    translate: 0;
  }
}

@keyframes textRevealing {
  0% {
    left: 0;
    right: 100%;
  }

  35% {
    left: 0;
    right: 0;
  }

  75% {
    left: 0;
    right: 0;
  }

  100% {
    left: 100%;
    right: 0;
  }
}


/* ***********************Banner Section End*********************** */


/************************ Welcome section start  **********************/

.welcome-pretitle {
  color: var(--primary-color);
  text-transform: uppercase;
  display: inline-block;
  vertical-align: middle;
  padding-right: 60px;
  position: relative;
  font-size: 1.28571rem;
  line-height: 1.66667;
  font-weight: 500;
}

.welcome-pretitle::before {
  width: 30px;
  margin-top: 6px;
  right: 20px;
  content: "";
  height: 1px;
  top: 12px;
  position: absolute;
  background-color: var(--primary-color);
}

.welcome-pretitle::after {
  content: "";
  width: 50px;
  height: 1px;
  top: 12px;
  position: absolute;
  background-color: var(--primary-color);
  right: 0;
}

@media (max-width: 600px) {

  .welcome-section .welcome-bg {
    width: 100%;
  }

  .banner {
    height: 60vh;
  }

  .mission-card .card-content p {
    font-size: 20px;
    line-height: 25px;
  }
}

/* ******************************Welcome section end ************************ */



/* ******************************Latest Project section start ************************ */

.project-section {
  position: relative;
  width: 50%;
  max-width: 936px;
  margin: auto;
}

.project-section::before {
  content: '';
  position: absolute;
  inset: 0;
  width: 20px;
  background: white;
  z-index: 10;
}

.project-section::after {
  content: '';
  position: absolute;
  height: 100%;
  width: 20px;
  right: 0;
  top: 0;
  background: white;
  z-index: 10;
}

.project-section img {
  opacity: 0.5;
  height: 500px;
  width: 100%;
  object-fit: cover;
  object-position: center;
  /* min-height: 600px; */
}

.project-section .active-slide img {
  opacity: 1;
}

.project-section .description {
  opacity: 0;
  position: absolute;
  bottom: 8%;
  right: 5%;
  padding: 1rem;
  max-width: 70%;

  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  /* border: 1px solid rgba(255, 255, 255, 0.3); */
}

.project-section .description b {
  font-family: var(--title-font);
  color: #000000;
  font-weight: 700;
  font-size: 1.2rem;
  padding-bottom: 15px;
  text-transform: capitalize;
}

.project-section .description::after {
  content: '';
  position: absolute;
  bottom: -15px;
  right: 30px;
  width: 0;
  height: 0;
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
  border-top: 15px solid rgba(255, 255, 255, 0.7);
  /* This becomes the visible triangle */
}

.project-section .description * {
  /* margin-block: 20px; */
}

.project-section .active-slide .description {
  opacity: 1;
  animation: reveal-description 500ms ease-in-out;
}

@keyframes reveal-description {
  from {
    opacity: 0;
    translate: 0 100%;
  }

  to {
    opacity: 1;
    translate: 0 0;
  }
}

@media (max-width: 576px) {

  .project-section-container {
    width: 100% !important;
  }

  .project-section {
    overflow: hidden !important;
    width: 100%;
  }

  .project-section img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    overflow: hidden;
  }
}

/* ******************************Latest Project section end ************************ */




/* ******************************Parallax Start ************************ */

/* Section background and parallax */
.video-section {
  background-image: url('/assets/images/section/bkg-parallax.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: start;
  padding: 60px 15px;
}

/* White content box */
.video-content-box {
  background: #ffffffee;
  padding: 50px;
  max-width: 650px;
  text-align: left;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  position: relative;
  text-align: center;
}

/* Text elements */
.section-label {
  color: var(--primary-color);
  text-transform: capitalize;
  font-size: 1.28571rem;
  font-weight: 500;
}

.video-heading {
  font-size: 1.28571rem;
  line-height: 1.44;
  font-weight: 500;
  margin: 15px 0 30px;
  font-family: var(--title-font);
  font-weight: 700;
  text-transform: capitalize;
}

.video-play a {
  color: var(--primary-color);
  text-transform: uppercase;
  font-weight: 600;
}

/* Play button and text layout */
.wrapper {
  position: relative;
  width: 70px;
  height: 70px;
}

.circle {
  width: 65px;
  height: 65px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 50%;
  background-color: var(--primary-color);
  margin: auto;
  transform: scale(1, 1);
}

.circle.pulse {
  animation-timing-function: ease;
  animation: pulse 2s infinite;
  background-color: var(--primary-light);
}

svg {
  fill: white;
  stroke: white;
  stroke-linejoin: round;
  stroke-width: 5;
  transition: all 0.3s;
}

svg:hover {
  cursor: pointer;
  fill: var(--color-text-dark);
  stroke: var(--color-text-dark);
  transform: scale(1.1, 1.1);
}

@keyframes pulse {
  0% {
    transform: scale(1, 1);
  }

  25% {
    transform: scale(1, 1);
  }

  50% {
    transform: scale(1.4, 1.4);
  }

  100% {
    transform: scale(1, 1);
  }
}


.video-popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.video-popup-content {
  position: relative;
  width: 80%;
  max-width: 800px;
  background: #fff;
}

.video-popup iframe {
  width: 100%;
  height: 450px;
}

.video-popup-close {
  position: absolute;
  top: 10px;
  right: 10px;
  background: transparent;
  cursor: pointer;
  padding: 0;
}





/* ******************************Parallax End ************************ */

/* ******************************How We Works Start ************************ */

.how-we-works .step-num {
  font-size: 30px;
  line-height: 30px;
  font-weight: 800;
  background-color: var(--secondary-color);
  color: var(--accent-color);
  display: flex;
  height: 50px;
  width: fit-content;
  padding: 30px;
  padding-left: 5px;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  font-family: var(--title-font);
  margin-bottom: 10px;
}

.step-num-circle {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--accent-color);
  color: var(--primary-color);
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 10px;
  font-size: 25px;
}

.step-number {
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
  border: 1px solid gray;
  border-radius: 50%;
}

.nav-tabs .nav-link.active .step-number {
  border: 1px solid var(--primary-color);
  background-color: var(--primary-color);
  color: var(--accent-color);
}


/* ******************************How We Works End ************************ */


/* ******************************Latest News Start ************************ */
.latestnews-section .carousel-item {
  min-height: 580px;
}

.news-card {
  overflow: hidden;
  height: 100% !important;
}

.news-card a {
  height: 300px;
  overflow: hidden;
  margin-bottom: 40px;
}

.news-card img {
  transition: all 0.3s ease-out;
  object-fit: cover;
  object-position: center;
  height: 100%;
}

.news-card:hover img {
  transform: scale(1.03);
  transition: all 0.3s ease-in;
}

.news-card-footer {
  color: var(--primary-color);
  text-transform: capitalize;
  font-size: 0.9rem;
  line-height: 1;
  font-weight: 600;
}

.entry-date {
  color: var(--primary-color);
  text-transform: uppercase;
  font-size: 1rem;
  line-height: 1.42857;
  letter-spacing: 1px;
  white-space: nowrap;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 20px;
  padding: 0 0 0 10px;
  -webkit-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  -o-transform: rotate(-90deg);
  transform: rotate(-90deg);
  -webkit-transform-origin: 0% 0%;
  -moz-transform-origin: 0% 0%;
  -ms-transform-origin: 0% 0%;
  transform-origin: 0% 0%;
}

.entry-date::after {
  content: '';
  position: absolute;
  top: 10px;
  background-color: var(--primary-color);
  width: 30px;
  height: 1px;
  right: 102%;
}

.news-title a {
  color: #000000;
  font-family: var(--title-font);
}

.news-title a:hover {
  color: var(--primary-color) !important;
}

.carousel-indicators [data-bs-target] {
  background-color: var(--primary-color);
  width: 12px;
  height: 12px;
  border-radius: 100%;
  border: 1px solid transparent;
}

.carousel-indicators {
  bottom: -30px;
}

.carousel-indicators button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: transparent;
  border: 2px solid var(--primary-color);
  margin: 0 6px;
  opacity: 0.6;
  transition: all 0.3s ease;
}

.carousel-indicators .active {
  background-color: var(--primary-color);
  border: 2px solid var(--primary-color);
  opacity: 1;
  transform: scale(1.2);
}

@media (max-width: 576px) {
  .news-card a {
    /* height: 120px; */
    margin-bottom: 10px;
  }

  .how-we-works .step-num {
    font-size: 20px;
    line-height: 30px;
  }
}

/* ******************************Latest News End ************************ */



/* ******************************FAQ start ************************ */

.faq-bg {
  position: relative;
}

.faq-bg .faq-content h2 {
  font-family: var(--title-font);
}

.faq-bg .faq-content {
  position: absolute;
  width: 80%;
  bottom: 0;
  right: 10px;
  padding: 20px;
  line-height: normal;
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

.accordion-item:active .show {
  border: none !important;
}

.accordion-button:focus {
  box-shadow: none;
  outline: none;
}

.accordion-button:not(.collapsed) {
  box-shadow: none;
}


/* ******************************FAQ end ************************ */

.ethical-section .investment-content {
  padding: 30px;
  width: 50%;
  background-color: rgba(255, 255, 255, 0.836);
  position: absolute;
  bottom: -20px;
  right: 0px;
  text-align: left;
}

/* ******************************Testimonials start ************************ */


.testimonials-section {
  /* background-image: url(/assets/images/section/dot-background.png); */
  background-image: url(/assets/images/shapebox.png);
  background-position: center;
  /* background-repeat: repeat; */
  background-repeat: no-repeat;
  padding: 50px 0;
}

.testimonials-section .carousel-item img {
  height: 80px;
  width: 80px;
  object-fit: cover;
  object-position: center;
  padding: 5px;
  border: 1px solid var(--primary-color);
  border-top-left-radius: 30px;
  transition: all 0.3s ease-in;
}

.testimonials-section .carousel-item img:hover {
  border-radius: 50%;
  transition: all 0.3s ease-out;
}

.testimonials-user {
  font-family: var(--title-font);
  font-size: 1.28rem;
  color: #000000;
  text-transform: capitalize;
}

.testimonial-text {
  padding-top: 30px;
  font-size: 1.28rem;
  line-height: 1.8rem;
}

.testimonial-card {
  position: relative;
  overflow: visible;
  padding-left: 40px;
}

.testimonial-card .qutation {
  position: absolute;
  left: 0;
  top: 0;
  font-size: 6rem;
  color: #6ca89b1a;
  z-index: 0;
}

.testimonial-card .date {
  font-size: 14px;
  color: var(--secondary-color);
  font-style: italic;
  position: relative;
}

.testimonial-card .date::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 20px;
  height: 2px;
  background-color: var(--primary-color);
}

.testimonials-section .rating-stars i {
  font-size: 0.8rem;
  margin-top: 5px;
}

.satisfied-container img {
  border-top-left-radius: 150px;
  border-right: 15px solid white;
}


/* ******************************Testimonials end ************************ */

.contact-card-section {
  padding: 0 15px;

}

.contact-card {
  box-shadow: rgba(0, 0, 0, 0.2) 0px 60px 40px -7px;
  background-color: var(--secondary-color);
  background-image: url(/assets/images/round5.png);
  background-position: bottom;
  padding: 40px;
}

.contact-card-section h2 {
  font-family: var(--title-font);
}

.contact-card .primary-btn {
  background-color: var(--accent-color);
  color: #000000;
  transition: all 0.3s ease-in;
}

.contact-card .primary-btn::before {
  background-color: var(--accent-color);
}

.contact-card .primary-btn::after {
  background-color: var(--accent-color);
}

.contact-card .primary-btn:hover {
  background-color: var(--primary-color);
  color: var(--accent-color);
  transition: all 0.3s ease-out;
}

/* ******************************Footer start ************************ */

footer {
  line-height: 1.42857;
  font-size: 1rem;
  background-color: var(--footer-color);
  background-image: url(/assets/images/dotted-map.png);
  background-repeat: no-repeat;
  background-size: cover;
  /* background-blend-mode:overlay; */
}

footer .footer-link-title {
  font-size: 1.28571rem;
  line-height: 1.66667;
  font-family: var(--title-font);
  text-transform: uppercase;
}

footer a {
  color: var(--accent-color);
  text-decoration: none;
}

footer a:hover {
  color: var(--primary-light);
}

footer nav ul li a {
  color: #1f3334;
  background-color: transparent;
  background-size: 200% 100%;
  background-position: 100%;
  -webkit-transition: all 0.9s cubic-bezier(0.19, 1, 0.22, 1);
  -o-transition: all 0.9s cubic-bezier(0.19, 1, 0.22, 1);
  transition: all 0.9s cubic-bezier(0.19, 1, 0.22, 1);
  background-image: -webkit-linear-gradient(to right, var(--primary-color), var(--primary-color) 50%, #1f3334 50%);
  background-image: linear-gradient(to right, var(--primary-color), var(--primary-color) 50%, #1f3334 50%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
}

footer nav ul li a:hover {
  background-position: 0%;
}

footer .iconbox-container a {
  position: relative;
  cursor: pointer;
  box-shadow: rgba(80, 170, 178, 0.4) -3px 3px;
  border-radius: 50%;
  transition: all 0.3s ease-in;
}

footer .iconbox-container a:hover {
  background-color: var(--primary-color);
  transition: all 0.3s ease-out;
}

footer .iconbox-container a:hover i {
  color: #fff;
}

footer .social-iconBox {
  width: 30px;
  height: 30px;
  border: 1px solid rgb(240, 240, 240);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
}

footer .social-iconBox i {
  color: var(--accent-color);
}

footer .copyright {
  background-color: #000000;
  padding: 20px 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-transform: capitalize;
  font-size: 0.92rem;
}

footer .copyright a {
  color: var(--logo-color);
  font-weight: 500;
}

@media (max-width: 576px) {
  footer .copyright {
    font-size: 0.72rem;
  }
}


/* ******************************Footer end ************************ */




/* ******************************Project Page start ************************ */
.category-filter-box {
  background-color: var(--accent-color);
  border: 1px dashed var(--primary-color);
  box-shadow: rgba(17, 17, 26, 0.1) 0px 0px 16px;
}

.category-filter-box .category-heading {
  padding: 12px;
  background-color: var(--secondary-color);
  color: var(--accent-color);
}

.category-filter div {
  padding: 5px;
}

.work-card {
  transition: all 0.3s ease;
}

.category-filter input[type="checkbox"] {
  display: none;
}

.category-filter label {
  position: relative;
  padding-left: 30px;
  cursor: pointer;
  font-size: 16px;
  color: var(--font-color);
  user-select: none;
  display: flex;
  align-items: center;
}

.category-filter label:before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  background-color: #fff;
  /* border: 1px dashed var(--primary-color); */
  /* border: 1px solid rgb(230, 230, 230); */
  box-shadow: rgba(9, 30, 66, 0.25) 0px 1px 1px, rgba(9, 30, 66, 0.13) 0px 0px 1px 1px;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.category-filter input[type="checkbox"]:checked+label:before {
  background-color: var(--primary-color);
  /* Color when checked */
  border-color: var(--primary-color);
}

.category-filter input[type="checkbox"]:checked+label:after {
  content: '\2713';
  position: absolute;
  left: 5px;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
  font-size: 12px;
}

/* Project Details page  */

.project-details-category {
  padding: 2px 12px;
  border-radius: 20px;
  background-color: var(--primary-color);
  color: var(--accent-color);
}

/* ******************************Project Page end ************************ */

.clear {
  clear: both;
}

::-moz-selection {
  background: #e4e3e3;
  text-shadow: none;
}

::selection {
  background: #e4e3e3;
  text-shadow: none;
}

.browserupgrade {
  margin: 26px 0;
  background: #00c3ff;
  color: #333333;
  padding: 26px 0;
}

.cursor {
  cursor: pointer;
}

.auto-complete-ul {
  background-color: white;
  z-index: 22222;
  opacity: 1 !important;
  padding: 20px;
  position: relative;
  width: 466px;
}

.ui-autocomplete-mainmenu {
  font-weight: bold;

  margin: .8em 0 .2em;
  line-height: 1.5;
}

.pointer {
  cursor: pointer !important;
}

#logoutMenu {
  display: inline-block;
  margin: 0;
  padding: 0;
}

#logoutMenu a {
  display: inline-block;
  padding: 10px 15px;
  color: inherit;
  text-decoration: none;
}

.logoRight {
  /* border-left: 3px solid #acc2b7; */
  padding-left: 10px;
  margin: 10px 0 0 10px;
  color: #03ad55;
  line-height: 30px;
  font-size: 25px;
  font-family: var(--default-font);
  font-weight: bold;
}

.logoRight span {
  font-size: 24px !important;
}

.sticky .logoRight {
  /* margin: 20px 0 0 10px; */
  margin-top: 10px;
  line-height: 25px;
  font-size: 20px;
}

.sticky .logoRight span {
  font-size: 16px !important;
}

/*** Section ***/
.section {
  padding: 40px 0;
}

.section2 {
  padding: 100px 0 70px;
}

.section-heading-one {
  display: block;
  position: relative;
  z-index: 999;
  padding: 0;
  margin: 0 0 56px;
  text-align: center;
}

.section-heading-one h2 {
  position: relative;
  text-transform: uppercase;
  color: #fff;
  margin: 0;
  padding: 0 0 28px;
  display: block;
}

.section-heading-one h2:after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 8px;
  background: url(../images/section/2.png) no-repeat;
  background-position: center;
}

.section-heading-two {
  display: block;
  position: relative;
  padding: 0;
  margin: 0 0 50px;
  text-align: center;
}

.section-heading-two h2 {
  display: block;
  position: relative;
  padding: 0 0 28px;
  margin: 0 0 30px;
  text-transform: uppercase;
  color: #111;
}

.section-heading-two h2:after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 8px;
  background: url(../images/section/1.png) no-repeat;
  background-position: center;
}

.section-heading-two p {
  margin: 0 auto;
  padding: 0;
  display: block;
  width: 70%;
}

.section-heading-three {
  display: block;
  position: relative;
  padding: 0;
}

.section-heading-three h2 {
  display: block;
  position: relative;
  padding: 0 0 28px;
  margin: 0 0 60px;
  text-transform: uppercase;
  color: #111;
}

.section-heading-three h2:after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 8px;
  background: url(../images/section/3.png) no-repeat;
  background-position: left;
}

.section-heading-four {
  display: block;
  position: relative;
  z-index: 999;
  padding: 0;
  margin: 0 0 56px;
  text-align: center;
}

.section-heading-four h2 {
  position: relative;
  text-transform: uppercase;
  color: #fff;
  margin: 0;
  padding: 0 0 28px;
  display: block;
}

.section-heading-four h2:after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 8px;
  background: url(../images/section/1.png) no-repeat;
  background-position: center;
}


/*** Reset ***/
.p-re {
  position: relative;
}

.p-ab {
  position: absolute;
}

.list-inline li {
  display: inline-block;
}

.af-be:after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}

.af-be:before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}

.af:after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}

.be:before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}

.bg-img {
  background-size: cover !important;
  background-repeat: no-repeat !important;
  background-position: center center !important;
}

.pagination {
  text-align: center;
  display: block !important;
  margin: 28px 0 0;
}

.pagination ul li {
  padding: 0 9px;
}

.pagination ul li a {
  line-height: 50px;
  display: block;
  padding: 0 18px;
  background: #f5f5f5;
  color: #999999;
  font-size: 18px;
  border-radius: 5px;
}

.pagination ul li a:hover {
  background: #e5ae49;
  color: #fff;
}

.pagination ul li:first-child {
  padding-right: 115px;
  padding-left: 0;
}

.pagination ul li:first-child a {
  font-size: 16px;
}

.pagination ul li:last-child {
  padding-right: 0;
  padding-left: 115px;
}

.pagination ul li:last-child a {
  font-size: 16px;
}

/***All plugins Reset***/
.owl-controls {
  margin-top: 51px !important;
}

.owl-controls .owl-pagination .owl-page span {
  margin: 0 5px;
  width: 10px;
  height: 10px;
  background: #e4e4e4 !important;
  opacity: 1;
}

.owl-controls .owl-pagination .owl-page.active span {
  background: #009146 !important;
}

.brand-area .owl-controls {
  position: absolute;
  top: -118px;
  right: 0;
  margin: 0 !important;
}


/*....................................
2. Header area start here
....................................*/
header .main-header {
  transition: all 0.3s;
}

header .main-header .logo-area a {
  display: block;
  padding: 0;
  line-height: 117px;
}

header .main-header .search-box {
  position: absolute;
  left: 15px;
  right: 15px;
  bottom: 0;
  z-index: 999;
  background: #fff;
  padding: 29px 0;
  display: none;
}

header .main-header .search-box form {
  width: 100%;
  padding: 0 50px;
  position: relative;
}

header .main-header .search-box form input {
  width: 100%;
  height: 60px;
  padding: 0 30px;
  border: 1px solid #009146;
}

header .main-header .search-box form button {
  position: absolute;
  top: 0;
  right: 70px;
  cursor: pointer;
  background: transparent;
  color: #009146;
  font-size: 20px;
  line-height: 60px;
  font-weight: 700;
  transition: all 0.3s;
}

header .main-header .search-box form button:hover {
  color: #e5ae49;
}

header .main-header .search-box form .close-search {
  position: absolute;
  top: 0;
  right: 15px;
  color: #e5ae49;
  line-height: 60px;
  font-size: 20px;
  display: inline-block;
  cursor: pointer;
  transition: all 0.3s;
}

header .main-header .search-box form .close-search:hover {
  color: #009146;
}

header .main-header.sticky {
  /* position: fixed; */
  top: 0;
  left: 0;
  right: 0;
  z-index: 99999;
  transition: all 0.3s;
  box-shadow: 0 1px 3px rgba(50, 50, 50, 0.4);
}

header .mobile-menu-area {
  display: none;
  float: inline-start;
  width: 100%;
}

header .mobile-menu-area.page {
  position: absolute;
  left: 0;
  right: 0;
  width: auto !important;
}

header .mean-container .mean-nav {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
}

.mobile-menu-area {
  float: left;
  width: 100%;
  background: #000000;
}

header .topbar {
  background: #009146;
  position: relative;
  display: block;
}

header .topbar .header-event .count-list li {
  background: #1a9c59;
  padding: 13px 22px;
  margin: 0 3px;
  cursor: pointer;
}

header .topbar .header-event .count-list li:first-child {
  background: transparent;
  padding: 13px 0;
  cursor: inherit;
  margin-left: 0 !important;
}

header .topbar .header-event .count-list li h6 {
  font-size: 16px;
  margin: 0;
  color: #ffffff;
  font-family: "Lato", sans-serif;
  text-transform: uppercase;
  font-weight: 700;
  padding-right: 22px;
  display: block;
}

header .topbar .header-event .count-list li span {
  color: #fff;
  margin: 0;
  display: inline-block;
  font-size: 16px;
  font-family: "Lato", sans-serif;
}

header .topbar .header-event .count-list li span.count {
  font-weight: 700;
  margin-right: 8px;
}

header .topbar .header-event .count-list li span.con {
  opacity: 0.5;
  font-weight: 400;
  text-transform: uppercase;
  transition: all 0.3s;
}

header .topbar .header-event .count-list li:hover span.con {
  opacity: 1;
}

header .topbar .header-social ul li {
  padding: 13px 0 13px 17px;
}

header .topbar .header-social ul li a {
  font-size: 20px;
  display: block;
  color: #fff;
  /* opacity: 0.3; */
}

header .topbar .header-social ul li a:hover {
  color: #c6bdbd;
  opacity: 0.7;
}

header .main-header {
  background: #fff;
}

header .main-header .menu-area nav ul li:first-child a {
  padding-left: 0;
}

header .main-header .menu-area nav ul li:last-child {
  float: right;
}

header .main-header .menu-area nav ul li.menu-btn {
  text-align: right;
}

header .main-header .menu-area nav ul li.menu-btn li {
  line-height: 117px;
}

header .main-header .menu-area nav ul li.menu-btn li .search-ico {
  display: block;
  font-size: 20px;
  cursor: pointer;
  transition: all 0.3s;
  color: #009146;
  font-weight: 700;
}

header .main-header .menu-area nav ul li.menu-btn li .search-ico:hover {
  color: #e5ae49;
}

header .main-header .menu-area nav ul li.menu-btn li a {
  display: inline-block;
}

header .main-header .menu-area nav ul li.menu-btn li:last-child {
  margin-left: 27px;
}

header .main-header .menu-area nav ul li.menu-btn li:last-child a {
  padding: 0;
}

header .main-header .menu-area nav ul li a {
  color: #111;
  font-family: var(--default-font);
  text-transform: capitalize;
  display: block;
  line-height: 90px;
  /* padding: 0 15px; */
  font-size: 18px;
}

header .main-header .menu-area nav ul li a:hover {
  color: #009146;
}

header .main-header .menu-area nav ul li.drop-menu {
  position: relative;
}

header .main-header .menu-area nav ul li.drop-menu .down-menu {
  background: #ffffff none repeat scroll 0 0;
  box-shadow: 0 0 0px rgba(0, 0, 0, 0.1), 0 1px 3px rgba(0, 0, 0, 0.1);
  left: 0;
  margin: 0;
  opacity: 0;
  padding: 0;
  position: absolute;
  top: 120%;
  transition: all 0.3s;
  visibility: hidden;
  width: 189px;
  z-index: 9999;
  margin-top: -15px;
  margin-left: 10px;
}

header .main-header .menu-area nav ul li.drop-menu .down-menu li {
  border-bottom: 1px solid #f4f4f4;
  display: block;
  padding: 0 !important;
}

header .main-header .menu-area nav ul li.drop-menu .down-menu li:last-child {
  float: inherit;
}

header .main-header .menu-area nav ul li.drop-menu .down-menu li a {
  background: #f7fce6c9 none repeat scroll 0 0;
  display: block;
  padding: 8px 18px;
  text-align: left;
  line-height: 0;
  text-decoration: none;
  text-transform: capitalize;
  font-size: 14px;
  line-height: 26px;
}

header .main-header .menu-area nav ul li.drop-menu .down-menu li a:hover {
  background: #fafafa none repeat scroll 0 0;
  color: #009146;
}

header .main-header .menu-area nav ul li.drop-menu .down-menu li a:after {
  display: none;
}

header .main-header .menu-area nav ul li.drop-menu:hover .down-menu {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

/*....................................
3. Slider area start here
....................................*/


@media only screen and (max-width: 576px) {
  .arrow {
    bottom: 90px;
    left: 50%;
    right: 50%;
    top: auto;
  }

  .navbar {
    padding: 0 !important;
  }

  .brand-section {
    padding: 0 !important;
  }

  .star {
    width: 16px;
  }

  .title {
    font-size: 2rem;
  }

  .welcome-pretitle {
    font-size: 1rem;
  }

}


.arrow {
  position: absolute;
  top: 35%;
  right: 10%;
  transform: translate(-50%, -50%);
  transform: rotate(270deg);
  cursor: pointer;
}

.arrow span {
  display: block;
  width: 1vw;
  height: 1vw;
  border-bottom: 3px solid white;
  border-right: 3px solid white;
  transform: rotate(45deg);
  margin: -10px;
  animation: animate 2s infinite;
}

.arrow span:nth-child(2) {
  animation-delay: -0.2s;
}

.arrow span:nth-child(3) {
  animation-delay: -0.4s;
}

@keyframes animate {
  0% {
    opacity: 0;
    transform: rotate(45deg) translate(-20px, -20px);
  }

  50% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: rotate(45deg) translate(20px, 20px);
  }
}


/*....................................
9. Contact area start here
....................................*/
.contact-area .map-area {
  position: relative;
  display: block;
  margin: 0 0 115px;
}

.contact-area .map-area .go-map {
  position: absolute;
  right: -25px;
  top: 54px;
  color: #fff;
  z-index: 999;
  display: inline-block;
  line-height: 55px;
  padding: 0 28px;
  z-index: 999;
  background: #009146;
}

.contact-area .map-area .go-map:hover {
  color: #e5ae49;
}

.contact-area .map-area .go-map:after {
  content: '';
  position: absolute;
  right: 0;
  bottom: -21px;
  width: 25px;
  height: 21px;
  background: url(../images/icon/g-map.png) no-repeat;
}

.contact-area .map-area .map-full {
  z-index: 99;
}

.contact-area .contact-info {
  height: 196px;
  border: 8px solid #f5f5f5;
  text-align: center;
  display: flex;
  justify-content: center;
  flex-direction: column;
  margin: 0 0 30px;
}

.contact-area .contact-info span {
  display: inline-block;
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  top: -54px;
  border: 8px solid #f5f5f5;
  width: 108px;
  height: 108px;
  background: #fff;
  font-size: 28px;
  color: #009146;
  border-radius: 100%;
  line-height: 94px;
  transition: all 0.3s;
}

.contact-area .contact-info p {
  margin: 0;
  color: #2c2c2c;
  font-family: Oswald, sans-serif;
}

.contact-area .contact-info:hover span {
  background: #009146;
  color: #fff;
}

.contact-area .form-area form fieldset {
  display: block;
  margin: 0 0 30px;
}

.contact-area .form-area form fieldset .feld {
  position: relative;
}

.contact-area .form-area form fieldset .feld input {
  width: 100%;
  border: 1px solid #e1e1e1;
  padding: 0 15px;
  height: 50px;
  transition: all 0.3s;
}

.contact-area .form-area form fieldset .feld input:focus {
  border: 1px solid #009146;
}

.contact-area .form-area form fieldset .feld input:focus+span {
  color: #009146;
}

.contact-area .form-area form fieldset .feld input::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  font-size: 14px;
  text-transform: capitalize;
  color: #797979;
}

.contact-area .form-area form fieldset .feld input::-moz-placeholder {
  /* Firefox 19+ */
  font-size: 14px;
  text-transform: capitalize;
  color: #797979;
}

.contact-area .form-area form fieldset .feld input:-ms-input-placeholder {
  /* IE 10+ */
  font-size: 14px;
  text-transform: capitalize;
  color: #797979;
}

.contact-area .form-area form fieldset .feld input:-moz-placeholder {
  /* Firefox 18- */
  font-size: 14px;
  text-transform: capitalize;
  color: #797979;
}

.contact-area .form-area form fieldset .feld span {
  position: absolute;
  right: 35px;
  top: 0;
  line-height: 50px;
  color: #797979;
  transition: all 0.3s;
}

.contact-area .form-area form fieldset .feld span.msg {
  right: 20px;
}

.contact-area .form-area form fieldset .feld textarea {
  width: 100%;
  border: 1px solid #e1e1e1;
  padding: 15px;
  height: 120px;
  transition: all 0.3s;
}

.contact-area .form-area form fieldset .feld textarea:focus {
  border: 1px solid #009146;
}

.contact-area .form-area form fieldset .feld textarea:focus+span {
  color: #009146;
}

.contact-area .form-area form fieldset .feld textarea::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  font-size: 14px;
  text-transform: capitalize;
  color: #797979;
}

.contact-area .form-area form fieldset .feld textarea::-moz-placeholder {
  /* Firefox 19+ */
  font-size: 14px;
  text-transform: capitalize;
  color: #797979;
}

.contact-area .form-area form fieldset .feld textarea:-ms-input-placeholder {
  /* IE 10+ */
  font-size: 14px;
  text-transform: capitalize;
  color: #797979;
}

.contact-area .form-area form fieldset .feld textarea:-moz-placeholder {
  /* Firefox 18- */
  font-size: 14px;
  text-transform: capitalize;
  color: #797979;
}

/*....................................
11. Breadcumb area start here
....................................*/
.breadcumb-area {
  position: relative;
  z-index: inherit !important;
  background: url(../images/breadcumb/1.jpg);
}

.breadcumb-area:after {
  background: rgba(0, 0, 0, 0.7);
}

.breadcumb-area .breadcumb {
  position: relative;
  z-index: 999;
  display: block;
  padding: 110px 0 90px;
}

.breadcumb-area .breadcumb h2 {
  color: #fff;
  font-size: 40px;
  text-transform: uppercase;
  margin: 0 0 10px;
  display: block;
}

.breadcumb-area .breadcumb ul {
  display: inline-block;
  background: rgba(0, 0, 0, 0.5);
  padding: 3px 5px;
}

.breadcumb-area .breadcumb ul li {
  padding: 0 6px;
}

.breadcumb-area .breadcumb ul li a {
  color: #707070;
  text-transform: capitalize;
}

.breadcumb-area .breadcumb ul li i {
  color: #707070;
}

.breadcumb-area .breadcumb ul li:last-child a {
  color: #009146;
}

.breadcumb-area .breadcumb ul li:last-child a:hover {
  color: #e5ae49;
}

/*....................................
19. Gallery area start here
....................................*/
.gallery-area .gallery-nav ul {
  display: block;
  /* margin: 0 0 60px; */
}

.gallery-area .gallery-nav ul li {
  cursor: pointer;
  color: #111;
  font-family: "Quicksand", sans-serif;
  font-weight: 400;
  text-transform: capitalize;
  background: #fff;
  border-radius: 5px;
  line-height: 40px;
  padding: 0 15px;
  transition: all 0.3s;
  margin: 3px;
}

.gallery-area .gallery-nav ul li.active {
  background: darkkhaki;
  color: #fff;
}

.gallery-area .gallery-nav ul li.active:hover {
  color: #fff;
}

.gallery-area .gallery-nav ul li:hover {
  color: darkkhaki;
}

.gallery-area .gallery figure {
  position: relative;
  margin: 0 0 30px !important;
}

.gallery-area .gallery figure:after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}

.gallery-area .gallery figure a img {
  width: 100%;
  display: block;
}

.gallery-area .gallery figure a span {
  position: absolute;
  /* z-index: 999; */
  left: 50%;
  right: 50%;
  top: 50%;
  bottom: 50%;
  background: rgba(0, 145, 70, 0.8);
  transition: all 0.3s;
  opacity: 0;
}

.gallery-area .gallery figure a span:before {
  /*content: '';*/
  content: 'View Full Size';
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 150px;
  /*height: 2px;*/
  margin: auto;
  background-color: #fff;
  color: white;
  font-weight: 600;
}

.gallery-area .gallery figure:hover a span {
  left: 10%;
  right: 10%;
  /*top: 10%;*/
  /*bottom: 10%;*/
  opacity: 1;
}


/*=======================Custom CSS ====================*/
.logo-area img {
  height: 70px;
}

.sticky .logo-area img {
  height: 70px;
}

.teststyle {
  color: #000000;
}

/* New Imran */

.fun-activities-card {
  transition: all 0.2s ease-in !important;
  border: 2px solid #f5f5dc !important;
}

.fun-activities-card:hover {
  /* border-bottom: 3px solid #ffc965; */
  border: 2px solid #ffc965 !important;
  transform: scale(1.05);
  transition: all 0.2s ease-out !important;
}


.card-link a {
  text-decoration: none;
  color: #FF5722;
  font-size: 15px;
}

/*################### CART CSS ################### */
/*=================Cart Popup=================*/
/* Shopping Cart */
.header .shopping {
  float: right;
  z-index: 9999;
}

.header .shopping .shopping-item {
  font: initial;
  text-align: left;
  position: absolute;
  top: 38px;
  right: 0;
  width: 100%;
  max-width: 400px;
  background: #fff;
  padding: 20px 25px;
  transition: all 0.3s ease 0s;
  -webkit-box-shadow: 0px 0px 5px rgb(0 0 0 / 20%);
  -moz-box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 0px 10px rgb(0 0 0 / 20%);
  opacity: 0;
  visibility: hidden;
  z-index: 9999;
  max-height: 95vh;
  overflow-y: auto;
}

.header .shopping:hover .shopping-item,
.header .shopping .shopping-item.activeCart {
  opacity: 1;
  visibility: visible;
}

.header .shopping .dropdown-cart-header {
  padding-bottom: 10px;
  margin-bottom: 15px;
  border-bottom: 1px solid #e6e6e6;
}

.header .shopping .dropdown-cart-header span {
  color: #222;
  font-size: 130%;
  font-weight: 600;
}

.shopping-list {
  margin: 0px;
}

.header .shopping-list li {
  overflow: hidden;
  border-bottom: 1px solid #e6e6e6;
  padding-bottom: 15px;
  margin-bottom: 15px;
  position: relative;
  display: block !important;
}

.header .shopping-list li>div {
  display: flex;
  justify-content: space-between;
}


.header .shopping-list .cart-img img,
.cartImg {
  width: 70px;
  height: 70px;
  border-radius: 0;
}

.header .shopping-list .cart-img:hover img {
  transform: scale(1.09);
}

.header .shopping-list h4 {
  font-size: 14px;
}

.header .shopping-list h4 a {
  font-weight: 600;
  font-size: 120%;
  color: #333;
}

.header .shopping-list h4 a:hover {
  color: #F7941D;
}

.header .shopping-list .quantity {
  line-height: 22px;
}

.header .shopping-list li .remove {
  position: absolute;
  top: 0;
  right: 0;
  height: 20px;
  width: 20px;
  line-height: 18px;
  text-align: center;
  background: #000;
  color: #222;
  border-radius: 50%;
  font-size: 11px;
  border: 1px solid #f10c0c;
}

.header .shopping-list li .remove:hover {
  background: #1076bd;
  color: #000 !important;
  border-color: transparent;
}

.header .shopping-item .bottom {
  text-align: center;
}

.header .shopping-item .total {
  overflow: hidden;
  display: block;
  padding-bottom: 10px;
}

.header .shopping-item .total span {
  text-transform: uppercase;
  color: #222;
  font-size: 13px;
  font-weight: 600;
  float: left;
}

.header .shopping-item .total .total-amount {
  float: right;
  font-size: 14px;
}

.header .shopping-item .bottom .btn {
  background: #1076bd;
  padding: 10px 20px;
  display: block;
  color: #fff;
  margin-top: 10px;
  border-radius: 0px;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 500;
  position: relative;
  transition: all 0.4s ease;
}

.header .shopping-item .bottom .btn:hover {
  background: #F7941D;
  color: #fff;
}

.cart-img img {
  width: 100%;
  max-width: 150px;
  min-width: 100px;
  border-radius: 2px;
  outline: 2px solid white;
  padding: 3px
}

input[type="number"].numberField {
  width: 12ch;
  height: auto;
  padding: 0 0 0 10px;
}

.textBlinking {
  animation: blinking 1000ms linear infinite;
}

@keyframes blinking {
  0% {
    opacity: 1;
    text-shadow: 0 0 5px lightseagreen;
  }

  100% {
    opacity: 0.3;
  }
}


.radioBtn {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;

  border-radius: 50%;
  width: 25px;
  height: 25px;

  border: 2px solid lightskyblue;
  transition: 0.2s all linear;
  margin-right: 5px;

  position: relative;
  top: 2px;
}

.radioBtn:checked {
  border: 8px solid lightskyblue;
}

.spinner,
.spinner:before,
.spinner:after {
  border-radius: 50%;
}

.spinner {
  color: #ffffff;
  font-size: 22px;
  text-indent: -99999px;
  margin: 0px auto;
  position: relative;
  width: 20px;
  height: 20px;
  box-shadow: inset 0 0 0 2px;
  -webkit-transform: translateZ(0);
  -ms-transform: translateZ(0);
  transform: translateZ(0);
}

.spinner:before,
.spinner:after {
  position: absolute;
  content: "";
}

.spinner:before {
  width: 10.4px;
  height: 20.4px;
  background: #095cfa;
  border-radius: 20.4px 0 0 20.4px;
  top: -0.2px;
  left: -0.2px;
  -webkit-transform-origin: 10.4px 10.2px;
  transform-origin: 10.4px 10.2px;
  -webkit-animation: loading 2s infinite ease 1.5s;
  animation: loading 2s infinite ease 1.5s;
}

.spinner:after {
  width: 10.4px;
  height: 10.2px;
  background: #095cfa;
  border-radius: 0 10.2px 10.2px 0;
  top: -0.1px;
  left: 10.2px;
  -webkit-transform-origin: 0px 10.2px;
  transform-origin: 0px 10.2px;
  -webkit-animation: loading 2s infinite ease;
  animation: loading 2s infinite ease;
}

@-webkit-keyframes loading {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes loading {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}


.insidebody {
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  min-height: 60vh;
}

.insideAboutUs {
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

.insideDonateNow {
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

.pageTransBody {
  width: 100%;
  display: block;
  position: relative;
}

/*==================breadcrumb=================*/

.breadcrumbs {
  list-style: none;
  padding: 20px 0 !important;
  margin: 0;
}

.breadcrumbs_item {
  font-family: Oswald, Arial, Helvetica, sans-serif;
  font-size: 24px !important;
  position: relative;
  display: inline-block;
}

.breadcrumbs_item:before {
  content: '\203A';
  display: inline-block;
  border-radius: 50%;
  margin: 0 10px;
  color: white;
}

.breadcrumbs_item a {
  color: black;
}

.breadcrumbs_item a:hover {
  color: #bc2029;
}

.breadcrumbs_item:first-child:before {
  display: none;
}

.separator {
  margin: 0 auto 20px auto;
  width: 100%;
  height: 20px;
  background: url(../images/separator.png) center center no-repeat;
}

/*================Contact Us====================*/

.reserve-box {
  position: relative;
  margin-bottom: 30px;
}

.reserve-box .inner-box {
  position: relative;
  padding: 30px 0px;
}

.reserve-box .inner-box .content {
  position: relative;
  padding-left: 90px;
  padding-right: 15px;
}

.reserve-box .inner-box:before {
  position: absolute;
  content: '';
  left: 30px;
  top: 0px;
  right: 0px;
  bottom: 0px;
  border: 1px dashed #414141;
  background: white;
  -webkit-transition: all 600ms ease;
  -ms-transition: all 600ms ease;
  -o-transition: all 600ms ease;
  -moz-transition: all 600ms ease;
  transition: all 600ms ease;
}

.reserve-box .inner-box:hover::before {
  border-style: solid;
}

.reserve-box .inner-box .content .icon {
  position: absolute;
  left: 0px;
  top: 6px;
  width: 60px;
  height: 60px;
  text-align: center;
  line-height: 63px;
  font-size: 26px;
  display: inline-block;
  -webkit-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  transition: all 300ms ease;
  /* background: url(../images/icons/cap-1.png) no-repeat; */
}

.reserve-box .inner-box .content .icon:after {
  position: absolute;
  content: '';
  left: 0px;
  top: 0px;
  width: 60px;
  height: 60px;
  opacity: 0;
  -webkit-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  transition: all 300ms ease;
}

.reserve-box .inner-box:hover .content .icon:after {
  opacity: 1;
}

.inner-box .icon .fa {
  font-size: 30px;
  color: #116e46;
  padding: 15px 0 0 10px;
}

.reserve-box .inner-box:hover .content .icon {
  color: #fff;
}

.reserve-box .inner-box .content h4 {
  position: relative;
  margin-bottom: 10px;
}

.reserve-box .inner-box .content ul {
  position: relative;
  margin: 0;
  padding: 0;
}

.reserve-box .inner-box .content ul li {
  position: relative;
  margin-bottom: 0px;
}

.reserve-box .inner-box .content ul li a {
  position: relative;
  color: #fff;
  font-size: 90%;
}

.reservation-booking-form {
  position: relative;
  padding: 25px 25px 10px;
  border: 1px dashed #414141;
}

.reservation-booking-form .image-column {
  position: relative;
}

.reservation-booking-form .image-column .inner-column {
  position: relative;
}

.reservation-booking-form .image-column .image {
  position: relative;
}

.reservation-booking-form .image-column .image img {
  position: relative;
  width: 100%;
  display: block;
}

.reservation-booking-form .form-column {
  position: relative;
}

.reservation-booking-form .form-column .inner-column {
  position: relative;
}

.btn-style-three {
  position: relative;
  display: inline-block;
  line-height: 30px;
  color: #000;
  padding: 12px 40px;
  font-weight: 700;
  overflow: hidden;
  border-radius: 0px;
  overflow: hidden;
  padding: 15px 38px;
  background-color: #fff;
  text-transform: capitalize;
  cursor: pointer;

}

.btn-style-three:before {
  position: absolute;
  content: '';
  left: 100%;
  top: 0px;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 1;
  color: white;
  background-color: #047918;
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
}

.btn-style-three .txt {
  position: relative;
  z-index: 1;
}

.btn-style-three:hover::before {
  left: 0%;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
}

.btn-style-three:hover {
  color: #ffffff;
}

/* popup */
#popup {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background-color: rgba(228, 228, 228, 0.8);
}

#popupDialog {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  min-width: 400px;
  width: fit-content;
  max-width: 90vw;
  max-height: 80vh;
  background-color: white;
  color: black;
  font-family: initial;
  font-size: 1rem;
  overflow-y: auto;
}

#popupDialog::-webkit-scrollbar {
  width: 0px;
}

#popupDialog header {
  position: sticky;
  top: 0;
  background: rgb(221, 221, 221);
  background: linear-gradient(140deg, rgba(221, 221, 221, 1) 0%, rgba(236, 236, 236, 1) 100%);
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid lightgray;
  box-shadow: 0 0 10px lightgrey;
  font-weight: bolder;
}

#popupDialog header h4 {
  font-weight: bold;
  padding: 5px 15px;
}

#popupDialog header #closeBtn {
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  padding: 0 20px;
  border: none;
  font-size: 20px;
  font-family: monospace;
  cursor: pointer;
  background-color: lightgray;
}

#error_ChoiceMore {
  position: sticky;
  top: 48px;
  background: white;
  border-bottom: 1px solid lightgray;
  margin: 0;
  color: red;
  text-align: center;
  box-shadow: 0 0 10px lightgrey;
}

#error_ChoiceMore.hide {
  visibility: hidden;
}

#popupDialog #popupContent {
  padding: 5px 20px 0 20px;
  overflow-y: auto;
}

#popupDialog footer {
  position: sticky;
  bottom: 0;
  width: 100%;
  margin: 0;
}

#popupDialog footer #scrollDownIndicator {
  box-shadow: 0 0 10px lightgrey;
  background: white;
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  border-top: 1px solid lightgray;
  font-size: 13px;
  padding-right: 10px;
}

#popupDialog footer #scrollDownIndicator i {
  animation: scrolldownArrow 2s linear infinite;
}

@keyframes scrolldownArrow {
  0% {
    transform: translateY(5px);
  }

  50% {
    transform: translateY(15px);
  }

  100% {
    transform: translateY(5px);
  }
}

#popupDialog footer #checkoutBtn {
  font-size: 20px;
  display: flex;
  justify-content: space-around;
  padding: 5px 10px;
  background: #f08b18;
  box-shadow: 0 5px 0px #f08b18;
  cursor: pointer;
  transition: 0.5s;
  color: white;
  font-weight: bolder;
}

#popupDialog footer #checkoutBtn:hover {
  background: #c9700a;
}

.tableBorder {
  border: 1px solid #000000;
  width: 100%;
}

.tableBorder th {
  font-weight: 500;
  font-size: 125%;
}

.tableBorder th,
.tableBorder td {
  vertical-align: middle;
  padding: 5px 10px 5px 10px;
  border-bottom: 1px solid #000000;
}

.successMsg {
  border-color: #09723f !important;
  background-color: #12a05c !important;
  color: white !important;
  width: 100%;
  display: block;
}

.errorMsg {
  border-color: #a5065d !important;
  background-color: #af0d31 !important;
  color: white !important;
  width: 100%;
  display: block;
}

.lineHeight30 {
  line-height: 30px;
}

.padding20 {
  padding: 20px;
}

.disScreen {
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: .5;
  filter: Alpha(Opacity=50);
  position: fixed;
  inset: 0;
  z-index: 102;
  background: #fff;
  margin-left: -107px;
  margin-top: -69px;
}

#otp_shopOpenTimes {
  width: 100%;
  margin: 0 0 10px 0;
}

.otp_shopOpenTimesWrapper {
  width: 90%;
}

#otp_shopOpenTimes td.left {
  text-align: left;
}

#otp_shopOpenTimes td {
  padding: 8px;
  text-align: center;
  border-bottom: 1px dashed #fff;
}

.deliveryChargeBox {
  margin-left: 30px;
  width: 45%;
  float: right;
}

fieldset {
  border: 1px solid #fff;
  -moz-border-radius: 15px;
  -webkit-border-radius: 15px;
  border-radius: 15px;
  margin: 10px 0;
  padding: 0.35em 1em 1em;
}

legend {
  padding: 0 5px;
  width: auto;
}


.reserve-box {
  position: relative;
  margin-bottom: 30px;
}

.reserve-box .inner-box {
  position: relative;
  padding: 30px 0px;
}

.reserve-box .inner-box .content {
  position: relative;
  padding-left: 90px;
  padding-right: 15px;
}

.reserve-box .inner-box:before {
  position: absolute;
  content: '';
  left: 30px;
  top: 0px;
  right: 0px;
  bottom: 0px;
  border: 1px dashed var(--primary-color);
  -webkit-transition: all 600ms ease;
  -ms-transition: all 600ms ease;
  -o-transition: all 600ms ease;
  -moz-transition: all 600ms ease;
  transition: all 600ms ease;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.3), rgba(200, 255, 255, 0.3));
}

.reserve-box .inner-box:hover::before {
  border-style: solid;
}

.reserve-box .inner-box .content .icon {
  position: absolute;
  left: 0px;
  top: 6px;
  width: 60px;
  height: 60px;
  text-align: center;
  line-height: 63px;
  font-size: 26px;
  display: inline-block;
  -webkit-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  transition: all 300ms ease;
  background-color: var(--primary-color);
  color: var(--accent-color);
}

.reserve-box .inner-box .content .icon:after {
  position: absolute;
  content: '';
  left: 0px;
  top: 0px;
  width: 60px;
  height: 60px;
  opacity: 0;
  -webkit-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  transition: all 300ms ease;
  /* background: url(../images/icons/cap-2.png) no-repeat; */
}

.reserve-box .inner-box:hover .content .icon:after {
  opacity: 1;
}

.inner-box .icon .fa {
  font-size: 30px;
  color: #116e46;
  padding: 10px 0 0 0;
}

.reserve-box .inner-box:hover .content .icon {
  color: #fff;
}

.reserve-box .inner-box .content h4 {
  position: relative;
  margin-bottom: 10px;
}

.reserve-box .inner-box .content ul {
  position: relative;
  margin: 0;
  padding: 0;
}

.reserve-box .inner-box .content ul li {
  position: relative;
  margin-bottom: 0px;
}

.reserve-box .inner-box .content ul li a {
  position: relative;
  color: #fff;
  font-size: 90%;
}

.reservation-booking-form {
  position: relative;
  padding: 25px 25px 10px;
  border: 1px dashed #fff;
}

.reservation-booking-form .image-column {
  position: relative;
}

.reservation-booking-form .image-column .inner-column {
  position: relative;
}

.reservation-booking-form .image-column .image {
  position: relative;
}

.reservation-booking-form .image-column .image img {
  position: relative;
  width: 100%;
  display: block;
}

.reservation-booking-form .form-column {
  position: relative;
}

.reservation-booking-form .form-column .inner-column {
  position: relative;
}

.default-form .form-group input[type="text"],
.default-form .form-group input[type="email"],
.default-form .form-group input[type="tel"],
.default-form .form-group input[type="url"],
.default-form .form-group input[type="file"],
.default-form .form-group textarea,
.default-form .form-group select {
  position: relative;
  display: block;
  width: 100%;
  line-height: 20px;
  color: #555555;
  font-weight: 400;
  padding: 14px 24px;
  background-color: #ffffff;
  border: 1px dashed var(--primary-color);
  -webkit-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  transition: all 300ms ease;
}

.btn-style-three {
  position: relative;
  display: inline-block;
  line-height: 30px;
  color: #000;
  padding: 12px 40px;
  font-weight: 700;
  overflow: hidden;
  border-radius: 0px;
  overflow: hidden;
  padding: 15px 38px;
  background-color: #fff;
  text-transform: capitalize;
  cursor: pointer;

}

.btn-style-three:before {
  position: absolute;
  content: '';
  left: 100%;
  top: 0px;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 1;
  color: white;
  background-color: #047918;
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
}

.btn-style-three .txt {
  position: relative;
  z-index: 1;
}

.btn-style-three:hover::before {
  left: 0%;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
}

.btn-style-three:hover {
  color: #ffffff;
}

.buttons-lower {
  width: 100%;
  height: 45px;
  border-width: 1px;
  border-style: solid;
  border-color: #f0f0f0 #e9e9e9 #e9e9e9;
}

.buttons-lower button:not(:last-child) {
  /* border-right: none; */
  border-right: 1px solid #f0f0f0;
}

.buttons-lower button {
  display: block;
  width: 50%;
  height: 43px;
  border: none;
  color: #f74258;
  background: linear-gradient(180deg, rgba(85, 71, 71, 0.7), rgba(68, 1, 1, 0.7));
  font-size: 16px;
  transition: all 0.2s ease;
  cursor: pointer;
  float: left;
}

.buttons-lower button:hover {
  background-color: #f74258;
  color: white;
}

.mbottom0 {
  padding: 9px !important;
  color: #000 !important;
}

.number {
  padding: 9px !important;
  color: #000 !important;
}

@media (min-width: 768px) {

  .checkoutSteps .allow .step-title .number,
  .checkoutSteps .allow .step-title .title {
    background-color: transparent;
    cursor: pointer;
    border-right: 0;
    font-weight: bold;
    padding-right: 0;
    width: auto;
    padding-top: 0;
    padding-bottom: 0;
    text-align: center;
  }
}

@media (max-width: 767px) {

  .headerTop,
  .WelcomeMsg {
    display: none;
  }
}


.inputs {
  position: relative;
  margin: 0 0 8px;
  text-align: left;
}

.returning-wrapper .inputs label {
  width: 100%;
  display: block;
  text-align: left;
  color: #415556;
  margin-left: 0;
}

.navbar-list {
  display: flex;
  align-items: center;
  justify-content: space-between;
}


@media only screen and (max-width: 600px) {

  .nav-tabs .tab-item {
    font-size: 16px !important;
    padding: 8px 15px !important;
  }

  .nav-tabs2 .tab-item2 {
    font-size: 13px !important;
    padding: 6px 12px !important;
  }

  .service-box {
    max-width: 260px !important;
  }
}



.dropdown-menu {
  margin: 0;
  padding: 0;
}

nav .dropdown-menu li a {
  padding: 8px;
  font-size: 12px;
}

nav .dropdown-menu li a:hover {
  border-radius: 5px;
}


@media (max-width: 768px) {
  .brand-name {
    display: none;
  }

  .brand-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .nav-item {
    padding: 0 30px;
  }
}

a {
  text-decoration: none !important;
}

.card-title {
  font-size: 18px;
  font-weight: bold;
}

.wrapper {
  display: flex;
  justify-content: center;
}

/**************SVG****************/

path.one {
  transition: 0.4s;
  transform: translateX(-60%);
}

path.two {
  transition: 0.5s;
  transform: translateX(-30%);
}

/* SVG animations */

@keyframes color_anim {
  0% {
    fill: white;
  }

  50% {
    fill: #FBC638;
  }

  100% {
    fill: white;
  }
}

.dropdown-menu-left {
  right: auto;
  left: 0;
}


.gallery>.card {
  height: 550px !important;
  display: flex !important;
  align-items: stretch !important;
}

#Container {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
}

.gallery-new>.card {
  background-color: #ffffff70;
  /* box-shadow: rgba(17, 17, 26, 0.05) 0px 1px 0px, rgba(17, 17, 26, 0.1) 0px 0px 8px; */
  /* border-radius: 6px; */
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  border: 0;
  min-height: 560px;
}

.gallery-new>.card:hover {
  background-color: #fff;
  box-shadow: rgba(0, 0, 0, 0.2) 0px 60px 40px -7px;
  transition: all 0.3s ease-in;
}


.linkblock-container .block {
  background-color: cadetblue;
  display: flex;
  justify-content: center;
  align-items: start;
  padding: 40px 10px;
  gap: 20px;
  min-height: 200px;
}

.linkblock-container .block img {
  width: 55px;
}

.linkblock-container .block h3 {
  font-weight: 700;
  /*font-family: "Plus Jakarta Sans", sans-serif !important;*/
  font-family: "Quicksand", sans-serif !important;
}

.linkblock-container .block-number {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  display: flex;
  justify-content: center;
  align-items: center;
}

.linkblock-container .block-number h1 {
  font-size: 40px;
  /*font-family: "Plus Jakarta Sans", sans-serif !important;*/
  font-family: "Quicksand", sans-serif !important;
  font-weight: 800;
  color: #fff;
  padding: 10px;
}

.linkblock-container .block a {
  padding-bottom: 5px;
  border-bottom: 1px solid #d8d8d8;
  font-weight: 500;
  font-size: 14px;
  color: #000000;
}

.benefit {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.benefit li {
  display: flex;
  align-items: start;
  gap: 10px;
}

.benefit li img {
  width: 23px;
  height: 23px;
}

.limited-text3 {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.limited-text2 {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.card-style-one {
  background-color: #ffffffc5;
}

.swal-title-small {
  font-size: 16px !important;
  padding-bottom: 20px;
}

.convention-container h1 {
  font-size: 40px;
  font-family: var(--title-font);
  font-weight: 800;
  letter-spacing: 1px;
  color: #bf168a;
}

.team-card {
  background-color: var(--accent-color);
  text-align: center;
  transition: all 0.4s ease-out !important;
  border-radius: 0;
}

.team-card .image-container {
  width: 100%;
}

.team-card:hover {
  box-shadow: rgba(17, 12, 46, 0.15) 0px 48px 100px 0px;
  transition: all 0.4s ease-in !important;
  background-color: var(--primary-light);
}

.team-card:hover img {
  transform: scale(1.01);
  transition: all 0.4s ease-in !important;
}

.team-card img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  padding: 5px;
  border: 3px solid var(--primary-color);
  object-fit: cover;
  object-position: center;
  transition: all 0.4s ease-out !important;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
}

.team-card h3 a {
  font-weight: 900;
  font-size: 24px;
}

.team-card .card-body .link {
  font-size: 14px;
  margin-top: 10px;
  border-radius: 50px;
  padding: 5px 8px;
  border: 1px solid #eaeaea;
}

.team-card .card-body a {
  color: var(--font-color);
}

.team-card .card-body .designation {
  color: white;
  background-color: var(--primary-color);
  padding: 5px 12px;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1px;
}

.team-card-home {
  width: 300px;
  height: 380px;
  background-color: var(--primary-color);
  margin: 0 auto;
  position: relative;
  transition: all 0.2s ease-in;
}

.team-card-home:hover {
  background-color: var(--secondary-color);
  transition: all 0.2s ease-out;
}

.team-card-home:hover img {
  transform: scale(1.05);
  transition: all 0.3s ease-in;
}

.team-card-home h5 {
  font-family: var(--title-font);
  color: var(--accent-color);
  padding: 10px;
}


.team-card-home .img-container {
  position: relative;
  width: 300px;
  height: 380px;
}

.team-card-home .img-container img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  margin-left: -40px;
  margin-top: 10px;
  overflow: hidden;
  transition: all 0.3s ease-out;
}

.team-card-home .img-container .designation-badge {
  position: absolute;
  top: 10px;
  right: 40px;
  background-color: var(--accent-color);
  color: var(--secondary-color);
  padding: 5px 12px;
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
  font-size: 12px;
  letter-spacing: 1px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}



.gallery figure {
  cursor: pointer;
}

.progressbar {
  display: inline-block;
  width: 132px;
  margin-right: 0px;
}

.circle canvas {
  vertical-align: middle;
  border-radius: 50%;
  background-color: white;
  display: flex;
  justify-content: center;
  align-items: center;
}

.circle {
  display: flex;
  justify-content: center;
  align-items: center;
}

.circle div {
  color: black;
  position: absolute;
  width: 100%;
  text-align: center;
  line-height: 40px;
  font-size: 40px;
  transform: translate(10px, 10px);
  font-weight: bold;
}


.header {
  position: sticky;
  background-color: #ffffff;
  left: 0;
  top: 0;
  border-bottom: 2px solid var(--logo-color);
  z-index: 10;
  transition: padding 0.3s ease-in-out;
}

.header .menu a {
  color: black;
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header .logo img {
  vertical-align: middle;
}

.header .menu .head {
  display: none;
}

.header .menu ul {
  list-style: none;
  margin-bottom: 0;
}

.header .menu>ul>li {
  display: inline-block;
}

.header .menu>ul>li:not(:last-child) {
  margin-right: 25px;
}

.header .menu .dropdown {
  position: relative;
}

.header .menu a {
  text-decoration: none;
  font-size: 16px;
  color: #000;
  line-height: 1.5;
  display: block;
  transition: all 0.3s ease-in;
}

.header .menu>ul>li>a {
  padding: 20px 0;
}

.header .menu>ul>.dropdown>a {
  padding-right: 10px;
}

.header .menu i {
  font-size: 10px;
  pointer-events: none;
  user-select: none;
  position: absolute;
  color: #000;
  top: calc(50% - 5px);
}

.header .menu>ul>li>i {
  right: 0;
}

.header .menu .sub-menu {
  position: absolute;
  display: block;
  top: 100%;
  left: 0;
  min-width: 250px;
  padding: 5px 0;
  background: #ffffffed;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  z-index: 1;
  transform-origin: top;
  transform: scaleY(0);
  visibility: hidden;
  opacity: 0;
}

.header .menu .sub-menu-right {
  left: 100%;
  top: 0;
}

.header .menu .sub-menu-left {
  top: 0;
  left: auto;
  right: 100%;
}

.header .menu li:hover>.sub-menu {
  opacity: 1;
  transform: none;
  visibility: visible;
  transition: all 0.5s ease;
}

.header .menu .sub-menu a {
  padding: 3px 15px;
  font-size: 14px;
}

.header .menu .sub-menu .dropdown>a {
  padding-right: 34px;
}

.header .menu .sub-menu span {
  /* background-image: linear-gradient(hsl(0, 0%, 0%), hsl(0, 0%, 100%)); */
  background-image: linear-gradient(var(--primary-color), hsl(0, 0%, 100%));
  background-size: 0 1px;
  background-repeat: no-repeat;
  background-position: 0 100%;
  transition: background-size 0.5s ease;
}

.header .menu .sub-menu li:hover>a>span {
  background-size: 100% 1px;
}

.header .menu .sub-menu i {
  transform: rotate(-90deg);
  right: 24px;
}

.header-right {
  display: none;
}

.header-right>* {
  margin-left: 25px;
}

.header-right .icon-btn {
  background-color: transparent;
  border: none;
  cursor: pointer;
  color: hsl(0, 0%, 100%);
  font-size: 16px;

}

.header-right .open-menu-btn {
  display: none;
}

.logo-Right {
  /*margin: 10px 20px 0 10px;*/
  margin-bottom: 0;
  padding-left: 10px;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 2px;
  float: right;
  line-height: 45px;
  font-family: var(--default-font);
  transition: all 0.4s ease-in;
}

.header.scrolled .logo-Right {
  transition: all 0.4s ease-out;
  font-size: 18px;
}

.header.scrolled {
  padding: 0;
}

.logo a {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.logo img {
  padding: 5px;
  width: 160px;
  transition: all 0.3s ease-in;
}

.header.scrolled .logo img {
  padding: 8px;
  width: 160px;
  transition: all 0.3s ease-out;
}

.header.scrolled .menu>ul>li>a {
  padding: 18px 0;
}

.header.scrolled .menu>ul>.dropdown>a {
  padding-right: 10px;
}

.header.scrolled .menu a {
  font-size: 14px;
  line-height: 1.2;
  transition: all 0.3s ease-out;
}

@media(max-width:991px) {
  .header {
    padding: 12px 0;
  }

  .header .container {
    padding-left: 0.5rem;
  }

  .header-right {
    display: flex;
  }

  .menu-brand-name {
    display: inline-block;
    /* border: 1px solid #cdcdcd; */
    padding: 6px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    background-color: #28a745;
    color: white;
  }

  .header .menu {
    position: fixed;
    right: 0;
    top: 0;
    width: 320px;
    height: 100%;
    /*background-color: #F5FFFF;*/
    background: #ffffffed;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
    padding: 15px 30px 30px;
    overflow-y: auto;
    transform: translateX(100%);
    box-shadow: rgba(0, 0, 0, 0.2) 0px 20px 30px;
    z-index: 50;
  }

  .header .menu.open {
    transform: none;
    transition: all 0.5s ease;
  }

  .header .menu .head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 25px;
  }

  .header .menu .close-menu-btn {
    height: 35px;
    width: 35px;
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    cursor: pointer;
    border: none;
  }

  .header .menu .close-menu-btn::before,
  .header .menu .close-menu-btn::after {
    content: '';
    position: absolute;
    width: 80%;
    height: 2px;
    background-color: var(--primary-color);
  }

  .header .menu .close-menu-btn::before {
    transform: rotate(45deg);
  }

  .header .menu .close-menu-btn::after {
    transform: rotate(-45deg);
  }

  .header .menu>ul>li {
    display: block;

  }

  .header .menu>ul>li:not(:last-child) {
    margin-right: 0;
  }

  .header .menu li {
    border-bottom: 1px solid #ececec;
  }

  .header .menu li:first-child {
    /* border-top: 1px solid #ececec; */
  }

  .header .menu li:last-child {
    border-top: 0px solid;
    border-bottom: 0px solid;
    /* margin-top: 15px; */
  }

  .header .menu>ul>li>a {
    padding: 12px 0;
  }

  .header .menu>ul>.dropdown>a {
    padding-right: 34px;
  }

  .header .menu i {
    height: 34px;
    width: 34px;
    border: 1px solid var(--primary-color);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    pointer-events: auto;
    cursor: pointer;
    top: 7px;
    border-radius: 50%;
  }

  .header .menu .dropdown.active>i {
    background-color: hsla(0, 0%, 100%, 0.25);
    transform: rotate(180deg);
  }

  .header .menu .sub-menu {
    position: static;
    opacity: 1;
    transform: none;
    visibility: visible;
    padding: 0;
    transition: none;
    box-shadow: none;
    width: 100%;
    display: none;
  }

  .header .menu .dropdown.active>.sub-menu {
    display: block;
  }

  .header .menu .sub-menu li:last-child {
    border: none;
  }

  .header .menu .sub-menu a {
    padding: 12px 0 12px 15px;
  }

  .header .menu .sub-menu .sub-menu a {
    padding-left: 30px;
  }

  .header .menu .sub-menu .sub-menu .sub-menu a {
    padding-left: 45px;
  }

  .header .menu .sub-menu span {
    background-image: none;
  }

  .header .menu .sub-menu i {
    transform: none;
    right: 0;
  }

  .header-right .open-menu-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    width: 44px;
    cursor: pointer;
    position: relative;
    background-color: transparent;
    border: none;
  }

  .header-right .open-menu-btn .line {
    height: 2px;
    width: 30px;
    background-color: var(--primary-color);
    position: absolute;
  }

  .header-right .open-menu-btn .line-1 {
    transform: translateY(-8px);
  }

  .header-right .open-menu-btn .line-3 {
    transform: translateY(8px);
  }

}


.carousel-indicators-numbers li {
  text-indent: 0 !important;
  width: 30px;
  height: 30px;
  border: none;
  border-radius: 50% !important;
  /* Ensures circular indicators */
  line-height: 30px;
  color: #fff;
  background-color: white;
  transition: all 0.25s ease;
  display: flex;
  justify-content: center;
  align-items: center;
}

.carousel-indicators-numbers li.active,
.carousel-indicators-numbers li:hover {
  /*background-color: #fff;*/
  /*background-image: linear-gradient(120deg, #84fab0 0%, #8fd3f4 100%);*/
  background-image: linear-gradient(135deg, #fdfcfb 0%, #e2d1c3 100%);
}


.carousel-indicators-numbers li span {
  text-align: center;
  font-weight: bold;
  color: black;
}

.service-box {
  position: relative;
  background-color: #fff;
  text-align: center;
  transition: 0.5s;
  flex-grow: 1;
  /*height: 100%;*/
  border: 1px solid #f1f1f1;
  max-width: 100%;
  margin: 0 auto;
  border-top-left-radius: 50%;
  border-top-right-radius: 50%;
  overflow: hidden;
}

.service-box img {
  width: 100%;
  /*height: auto;*/
  height: 280px;
  object-fit: cover;
  object-position: center;
}

.chief-guest img {
  height: 600px;
}

.service-box2 {
  position: relative;
  text-align: center;
  transition: 0.5s;
  flex-grow: 1;
  max-width: 100%;
  margin: 0 auto;
  border-top-left-radius: 50%;
  border-top-right-radius: 50%;
  overflow: hidden;
  transition: all 0.3s ease-out;
}

.service-box2:hover img {
  translate: scale(1.05);
  transition: all 0.3s ease-in;
}

.service-box2:hover h4 {
  background-color: #6d8000bd;
}

.service-box2 img {
  width: 100%;
  height: auto;
  transition: transform 0.3s ease-in;
}

.service-box2:hover img {
  transform: scale(1.08);
  transition: transform 0.3s ease-out;
}

.service-box2 h4 img {
  width: 40px;
  border: 2px solid white;
  padding: 2px;
}

.service-box2 h4 {
  display: flex;
  gap: 10px;
  align-items: center;
  background-color: #008000bd;
  padding: 10px;
  border-radius: 50px;
  width: 85%;
  position: absolute;
  bottom: 5px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  transition: all 0.3s ease-in;
  text-align: left;
}

.service-box2 h4:hover {
  background-color: #6d8000bd;
  transition: all 0.3s ease-out;
}

.service-box2 a {
  font-size: 16px;
  line-height: 18px;
  color: white;
  font-weight: 800;
}

.service-box h4 {
  font-size: 16px;
  line-height: 18px;
  color: white;
  font-weight: 800;
}

.service-box2 a:hover {
  color: white;
}


.service-box3 h4 {
  font-size: 14px;
  line-height: 15px;
  font-weight: 500;
  text-align: center;
  color: white;
}

.service-box a {
  position: absolute;
  bottom: 0px;
  left: 0px;
  padding: 8px;
  background-color: #fbc50b;
  font-size: 18px;
  line-height: 20px;
  width: 100%;
  color: #fff;
}

.feature-box {
  padding: 10px;
  border-radius: 50px;
  background-image: url('/assets/images/color-bg.jpg');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  color: white;
  border-radius: 100px;
  border-top-left-radius: 0;
  max-height: 80px;
  transition: all 0.2s ease-out;
}

.feature-box:hover .icon-box {
  background-color: black;
  transition: all 0.2s ease-in;
}

.feature-box:hover {
  transition: all 0.2s ease-in;
  border-bottom: 5px solid #fbc50b;
}

.feature-box .icon-box {
  background-color: #fbc50b;
  width: 65px;
  height: 65px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  box-sizing: border-box;
  flex-shrink: 0;
}

.feature-box .icon-box img {
  width: 70%;
  height: 70%;
  object-fit: contain;
}

.icon {
  position: relative;
  width: 110px;
  height: 110px;
  line-height: 110px;
  text-align: center;
  margin: 0 auto;
  background-color: #e8f9f3;
  font-size: 50px;
  border-radius: 50%;
  margin-bottom: 20px;
  transition: 0.5s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.text {
  font-size: 14px;
  line-height: 22px;
  font-weight: 400;
  color: #707070;
  margin: 15px 0;
}

.service-box:hover {
  box-shadow: rgba(0, 0, 0, 0.2) 0px 60px 40px -7px;
}

.service-box:hover .icon {
  transform: scale(1.1);
}

.link {
  text-decoration: none;
  color: #276221;
  font-size: 20px;
  font-weight: 600;
}

.link:hover {
  color: #276221;
}

.mobile-list-item {
  list-style-type: square !important;
}

.mobile-list-item li {
  border: 0 !important;
}

.mobile-list-item li a:hover {
  color: #0056b3;
}

.fieldset {
  border: 1px #cecece solid;
  font-size: 0.75rem;
  border-radius: 0;
}

legend {
  color: #4a4d96;
  width: auto !important;
  font-size: 1.3em !important;
  margin-left: 10px;
  font-weight: 600;
  margin-bottom: 0 !important;
}

.fieldset input,
.fieldset select {
  /* reset the field */
  outline: none;
  border: none;
  background: transparent;
  width: 100%;
  padding: 0 10px 10px 10px;
  font-size: 1rem;
}

.fieldset:focus-within {
  border-color: #1e40af;
}

#registerForm .input:focus {
  border-color: #1e40af !important;
}





#filter-buttons {
  background-color: aliceblue;
  padding: 20px 0;
}

#filter-buttons button {
  border-radius: 3px;
  background: #fff;
  border-color: transparent;
}

#filter-buttons button:hover {
  /* background: #ddd; */
  color: #009146;
}

#filter-buttons button.active {
  color: #fff;
  background: #009146;
}

#filterable-cards .card2 {
  background-color: transparent !important;
  border: 0;
  /* width: 15rem;
  border: 2px solid transparent; */
}

#filterable-cards .card2.hide {
  display: none;
}

@media (max-width: 600px) {
  #filterable-cards {
    justify-content: center;
  }

  #filterable-cards .card2 {
    /* width: calc(100% / 2 - 10px); */
  }

  .logo a {
    gap: 5px;
  }

  .logo-Right {
    font-size: 18px;
    padding-left: 5px;
    line-height: 30px;
    letter-spacing: 1px;
  }

  .chief-guest img {
    height: 280px;
  }

  .convention-container h1 {
    font-size: 30px;
    font-weight: 600;
  }

  .linkblock-container .block-number h1 {
    font-size: 30px;
  }

  .header .menu i {
    color: var(--accent-color);
    background-color: var(--primary-color);
  }

  .header .menu .dropdown.active>i {
    color: var(--accent-color);
    background-color: var(--primary-color);
  }
}

/* Tab item  */

.nav-tabs {
  position: relative;
  background-color: transparent;
  color: #000000;
  padding: 0;
  margin: 50px 0 0;
  list-style: none;
  display: flex;
  max-width: fit-content;
  z-index: 1;
  /* overflow: hidden; */
  border: 0;
}

.nav-tabs .tab-item {
  font-weight: bold;
  font-size: 20px;
  /* width: 80px; */
  padding: 20px 40px;
  text-align: center;
  /* border-right: 1px solid #1d868d; */
  cursor: pointer;
  transition: 0.5s;
}

.nav-tabs .tab-item:nth-last-child(1) {
  border-right: none;
}

.nav-tabs .tab-item.active {
  color: #fff;
  background-color: #009146;
}

.nav-tabs .bg-active {
  position: absolute;
  left: 0;
  /* width: 80px; */
  padding: 20px;
  background-color: #eee;
  height: 100%;
  z-index: -1;
  transition: 0.5s;
}

.content-tabs {
  border-radius: 10px;
  border-top-left-radius: 0;
  min-height: 300px;
  /* background-color: #eee; */
  box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 0px 1px;
  color: #333;
  /* padding:30px; */
  text-align: justify;
}

.content-tabs .tab {
  display: none;
}

.content-tabs .tab.active {
  display: block;
  animation: showcontent 0.5s ease-in-out 1;
}

@keyframes showcontent {
  from {
    opacity: 0;
    transform: translateY(100px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}


#payment-table td {
  padding: 5px !important;
}

.carousel-indicators {
  bottom: -8px !important;
}



@keyframes showcontent2 {
  from {
    opacity: 0;
    transform: translateY(100px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.modal-backdrop {
  z-index: 1 !important;
}

/*==================Member Profile==================*/
.nav-tabs .nav-link.active {
  /* background-color: var(--primary-color); */
  background-color: transparent;
  color: var(--primary-color);
  border-radius: 0.5rem 0.5rem 0 0;
  font-weight: 900;
  /* border-bottom: 2px solid var(--primary-color); */
}

.nav-tabs .nav-link {
  font-weight: 600;
  font-size: 20px;
  text-align: left;
  color: gray;
  /* border: 1px solid #0dcaf0; */
  border-bottom: none;
  margin-right: 5px;
  border: 0;
}

.nav-link.completed {
  background-color: #28a745 !important;
  color: white;
}

#card {
  display: none;
}

#formTabs .nav-link {
  pointer-events: none;
  cursor: pointer;
}


/* Gallery Slider  */


.swiper {
  width: 100%;
  padding-top: 50px;
  padding-bottom: 50px;
}

.swiper-slide {
  background-position: center;
  background-size: cover;
  width: 300px;
  height: 300px;
  overflow: hidden;
}

.swiper-slide img {
  display: block;
  width: 100%;
  height: 500px;
  object-fit: cover;
  /* border-radius: 50px; */
}


.spin-icon-container {
  top: 100px;
  right: 80px;
}

.spin-icon {
  width: 220px;
  height: 220px;
  animation: spin 20s linear infinite;
}

.spin-icon-wrapper {
  width: 220px;
  height: 220px;
  position: relative;
}

.inner-circle {
  width: 100px;
  height: 100px;
}

@keyframes spin {
  100% {
    transform: rotate(360deg);
  }
}


@media (max-width: 600px) {

  .spin-icon-container {
    top: 110px;
    right: 30px;
  }

  .spin-icon {
    width: 180px;
    height: 180px;
  }

  .spin-icon-wrapper {
    width: 180px;
    height: 180px;
  }
}

.swal-title-small {
  font-size: 16px !important;
  padding-bottom: 20px;
}


.whatsapp-group{
  display: flex;
  justify-content: space-between;
  max-width: 300px;
  margin: 0 auto;
  align-items: center;
  padding: 5px;
  box-shadow: rgba(0, 0, 0, 0.45) 0px 25px 20px -20px;
  background-color: var(--secondary-color);
  transition: all 0.3s ease-out;
}
.whatsapp-group img{
  width: 30px;
}
.whatsapp-group span{
  margin-left: 8px;
  font-size: 16px;
  color: white;
  font-weight: 600;
}
.whatsapp-group-box{
  transition: all 0.3s ease-out;
}
.whatsapp-group:hover .whatsapp-group-box{
  transition: all 0.3s ease-in;
  transform: scale(1.25);
}

.chat-icon img{
  /* position: fixed;
  bottom: 20px;
  right: 109px;
  background: #0078FF;
  color: white;
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  font-size: 28px;
  z-index: 1000;
  transition: all 0.3s ease; */
  position: fixed;
  bottom: 52px;
  right: 20px;
  width: 50px;
  cursor: pointer;
  z-index: 1000;
  transition: all 0.3s ease;
}

.chat-box {
  position: fixed;
  bottom: 100px;
  right: 20px;
  width: 360px;
  max-width: 90%;
  background: white;
  border-radius: 10px;
  box-shadow: rgba(0, 0, 0, 0.1) -4px 9px 25px -6px;
  border: 1px solid #d8dae0;
  display: none;
  flex-direction: column;
  overflow: hidden;
  z-index: 99;
}

.chat-header {
  background: #ffffff;
  border-bottom: 1px solid #f2f3f6;
  color: var(--primary-color);
  padding: 15px;
  text-align: center;
  font-size: 18px;
  font-weight: 800;
  cursor: pointer;
}
.chat-header i {
  background: #f2f3f6;
  color: rgb(114, 114, 114);
  padding: 5px;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  cursor: pointer;
  border-radius: 8px;
}

.chat-messages {
  padding: 10px;
  height: 350px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.chat-input {
  display: flex;
  padding: 10px;
  border-top: 1px solid #ddd;
}

.chat-input input {
  flex: 1;
  padding: 10px;
  border: none;
  outline: none;
  font-size: 16px;
}

.chat-input button {
  background: var(--primary-color);
  color: white;
  border: none;
  padding: 10px;
  cursor: pointer;
  font-size: 18px;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 8px;
}

.chat-messages p {
  padding: 10px;
  border-radius: 10px;
}

.bot-message {
  align-self: flex-start;
  background: #f3f3f3;
  color: black;
  font-size: 14px;
  margin-bottom: 0;
}

.user-message{
  margin-bottom: 0;
}

/*donate part starts*/

.mercy-donate {
max-width: 620px;
margin: 50px auto;
padding: 40px 30px;
background: white;
border-radius: 16px;
box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
}
.mercy-donate .form-label {
font-weight: 600;
color: #000;
font-size: 20px;

}
.mercy-donate .form-select,
.mercy-donate .form-control {
border: 1px solid #d3d0d0;
padding: 12px 16px;
cursor: pointer;
}
.mercy-donate .form-select:focus,
.mercy-donate .form-control:focus {
border-color: #c9c2c2 !important;
box-shadow: none !important;
}
.mercy-donate .btn-donate {
background-color: #28a745;
border: none;
font-weight: bold;
font-size: 1.1rem;
padding: 14px;
border-radius: 8px;
transition: all 0.3s;
}
.mercy-donate .btn-donate:hover {
background-color: #1e7c3a;
transform: translateY(-2px);
}
.mercy-donate-option {
padding: 10px 16px;
}
@media (max-width: 576px) {
.mercy-donate {
    padding: 25px 20px;
    margin: 20px;
}
}


.admission-row {
border: 1px solid #dee2e6;
border-radius: 0.25rem;
overflow: hidden;
}
.admission-row .col-md-6 {
padding: 5px;
text-align: center;
vertical-align: middle;
display: flex;
align-items: center;
justify-content: center;
}
.admission-row .border-end-md {
border-right: 1px solid #dee2e6;
}
.admission-row p {
margin: 0;
padding: 0;
}
.admission-row img {
height: 50px;
max-width: 100%;
margin: 0;
}
@media (max-width: 767px) {
.admission-row .col-md-4 {
    border-right: none !important;
    border-bottom: 1px solid #dee2e6;
}
.admission-row .col-md-4:last-child {
    border-bottom: none;
}
.admission-row .col-md-4 {
    padding: 3px;
    font-size: 14px;
}
.admission-row .fs-5 {
    font-size: 16px !important;
}
}
@media (max-width: 576px) {
.admission-row .col-md-4 {
    padding: 2px;
    font-size: 12px;
}
.admission-row .fs-5 {
    font-size: 14px !important;
}
}
/*donate part starts*/

/*docs form submission part start*/

.mercy-docs {
/*background-color: #e9f7fd;*/
background-color: #F9FAFB;
border-left: 5px solid #22bcbd;
border-radius: 10px;
padding: 30px;
max-width: 900px;
margin: 40px auto;
/*box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);*/
box-shadow: rgba(0, 0, 0, 0.02) 0px 1px 3px 0px, rgba(27, 31, 35, 0.15) 0px 0px 0px 1px;
}
.mercy-docs h2 {
color: #000;
font-weight: 700;
margin-bottom: 15px;
position: relative;
}
.mercy-docs h2::after {
content: '';
position: absolute;
bottom: -8px;
left: 0;
width: 80px;
height: 3px;
background-color: #22bcbd;
}
.mercy-docs p {
color: #444;
font-size: 1.05rem;
line-height: 1.6;
}
.mercy-docs .btn-submit {
background-color: #22bcbd;
border: none;
font-weight: 600;
padding: 10px 20px;
border-radius: 5px;
transition: all 0.3s;
}

.pdf-bmc{
height: 28px;
max-width: 100%;
margin: 0;
}
.mercy-docs .btn-submit:hover {
background-color: #209e9f;
box-shadow: 0 4px 10px rgba(30, 124, 58, 0.3);
}
.mercy-docs .btn-submit i {
margin-right: 8px;
}
@media (max-width: 576px) {
.mercy-docs {
    padding: 20px;
    margin: 20px;
}
.mercy-docs h2 {
    font-size: 1.6rem;
}
.mercy-docs p {
    font-size: 0.95rem;
}
}


/*docs form submission part ends*/
