/* General Styles */
@font-face {
  font-family: "Semplicita Pro";
  src: url("./SemplicitaPro.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
}
body,
html {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

.container {
  display: flex;
  flex-direction: column;
  position: relative;
  min-height: 100vh;
  overflow: hidden;
}

/* Background Styles */
.bg {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.bg::before {
  content: ""; /* Required for pseudo-elements */
  position: absolute; /* Position relative to the parent */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5); /* Overlay color (semi-transparent black) */
  z-index: 1; /* Ensure it appears above the background */
}

.bg video,
.bg img {
  position: relative;
  z-index: 0; /* Place under the overlay */
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.fade-in {
  animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Hero Styles */
.hero {
  position: absolute;
  bottom: 20px;
  width: 90%;
  left: 50%;
  transform: translateX(-50%);
  color: white;
  z-index: 90;
}

.hero-text {
  text-align: left;
  margin-bottom: 80px;
  width: 40%;
}

#heroText1 {
  font-size: 102px;
  font-family: "Playfair", serif;
  margin: 0px;
  font-weight: 500;
}
#heroText2 {
  font-size: 18px;
  font-weight: 400;
  font-family: "Figtree", sans-serif;
}

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

.dots {
  display: flex;
  flex-direction: column;
}

.dot {
  width: 2px;
  height: 20px;
  background: rgba(255, 255, 255, 0.2);
  cursor: pointer;
}

.dot.active {
  background: white;
}

.play-pause {
  width: 55px;
  height: 60px;
  cursor: pointer;
  object-fit: contain;
}

/* story section */
.story-container {
  position: relative; /* Ensure proper stacking for the overlay */
  z-index: 10; /* Place behind the content */
  overflow: hidden;
}

.story-container::before {
  content: "";
  position: absolute;
  top: 30%;
  left: 0;
  width: 50%;
  height: 100%;
  background: url("../storybg2.png") no-repeat;
  background-size: contain; /* Ensure image fits the specified dimensions */
  opacity: 0.7; /* Adjust this value for the desired transparency */
  z-index: -1; /* Ensure the overlay is behind the content */
}
.storybgimg {
  position: absolute;
  right: -100px;
  top: 50px;
  opacity: 0.6;
  width: 500px;
  height: 100%;
  object-fit: contain;
}
.story {
  width: 50%;
  text-align: center;
  margin-inline: auto;
  margin-top: 100px;
}

.title {
  color: rgba(84, 48, 48, 1);
  font-size: 70px;
  font-family: "Playfair", serif;
  margin: 0px;
  font-weight: 500;
}

.story-sub-title {
  color: rgba(24, 24, 24, 1);
  width: 60%;
  margin-inline: auto;
  font-size: 26px;
  font-family: "Playfair", serif;
  margin-block: 20px;
  font-weight: 500;
}

.story-desc {
  color: rgba(24, 24, 24, 0.7);
  font-size: 18px;
  font-weight: 400;
  font-family: "Figtree", sans-serif;
  margin-bottom: 50px;
}
.read-more {
  color: rgba(24, 24, 24, 1);
  font-size: 18px;
  font-weight: 400;
  font-family: "Figtree", sans-serif;
}
.readmore-btn {
  display: block;
  width: max-content;
  margin-inline: auto;
  position: relative;
}
.readmore-btn img {
  cursor: pointer;
  width: 37px;
  height: 37px;
  margin-bottom: 30px;
}

/* package */

.package {
  position: relative;
  width: 100%;

  background-color: rgba(242, 238, 226, 0.9); /* Background color */
  padding-bottom: 30px;
  box-sizing: border-box;
}

.package::before {
  content: "";
  position: absolute;
  top: 60px; /* Adjust according to padding */
  right: 80px;
  width: 120px;
  height: 400px;
  background: url("../packagrbg.png") no-repeat;
  background-size: contain; /* Ensure image fits the specified dimensions */
  opacity: 0.2; /* Control transparency of the image */
  z-index: 0; /* Place behind the content */
}

.package > * {
  position: relative;
  z-index: 1; /* Ensure content is above the image */
}

.package-title {
  padding-top: 100px;
  text-align: center;
}

.package-sub-title {
  color: rgba(24, 24, 24, 1);

  font-size: 26px;
  font-family: "Playfair", serif;
  margin-block: 20px;
  font-weight: 500;
}

.package-imgs {
  display: flex;
  gap: 16px;
  height: 500px;
  width: 85%;
  margin-inline: auto;
  margin-block: 50px;
}

.package-image-item {
  flex: 1;
  position: relative;
  overflow: hidden;
  transition: flex 0.5s ease, transform 0.3s ease; /* Smooth transition for flex and any transform */
  cursor: pointer;
}

.package-image-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease; /* Smooth zoom effect for the image */
}

.overlay-text {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 300px;
  background: linear-gradient(to top, rgba(0, 0, 0, 1), rgba(0, 0, 0, 0));
  color: white;
  text-align: center;
  padding-bottom: 30px;
  opacity: 1;
  transition: opacity 0.3s ease; /* Smooth fade-in for the text overlay */
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-end;
}

.overlay-text img {
  cursor: pointer;
  width: 37px;
  height: 37px;
  margin-right: 30px;
  opacity: 0; /* Initially hide the image */
  transition: opacity 0.3s ease; /* Smooth transition for visibility */
}

.overlay-text .overlay-desc {
  margin-block: 0px;
  margin-left: 30px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.overlay-desc p {
  margin: 0px;
  font-family: "Playfair", serif;
  font-weight: 500;
}

/* Select the first <p> inside .overlay-desc */
.overlay-text .overlay-desc p:first-of-type {
  /* Your styles for the first <p> */
  font-size: 26px;
}

/* Select the second <p> inside .overlay-desc */
.overlay-text .overlay-desc p:nth-of-type(2) {
  /* Your styles for the second <p> */
  font-size: 18px;
  margin-top: 5px;
  opacity: 0;
  text-align :left;
  transition : opacity 0.3s ease-in-out;
}

/* Desktop Hover Styles */
@media (min-width: 768px) {
  .package-image-item:hover {
    flex: 2;
  }

  .package-image-item:not(:hover) {
    flex: 1;
  }

  .package-image-item:hover .overlay-text img {
    opacity: 1;
  }

  .package-image-item:hover .overlay-text .overlay-desc p:nth-of-type(2) {
    opacity: 1;
  }
}

/* Mobile In-View Styles */
@media (max-width: 767px) {
  .package-image-item.in-view {
    flex: 2;
  }

  .package-image-item:not(.in-view) {
    flex: 1;
  }

  .package-image-item.in-view .overlay-text img {
    opacity: 1;
  }

  .package-image-item.in-view .overlay-text .overlay-desc p:nth-of-type(2) {
    opacity: 1;
  }
}

/* exp slider */

.landing-Sliders a {
  text-decoration: none;
}

.experience {
  position: relative;
  width: 100%;

  background-color: white; /* Background color */
  /*padding-bottom: 30px;*/
  box-sizing: border-box;
}

.experience::before {
  content: "";
  position: absolute;
  top: -50px; /* Adjust according to padding */
  left: 100px;
  width: 180px;
  height: 180px;
  background: url("../expbg.png") no-repeat;
  background-size: contain; /* Ensure image fits the specified dimensions */
  opacity: 0.2; /* Control transparency of the image */
  z-index: 0; /* Place behind the content */
  transform: rotate(-10deg);
}

.experience > * {
  position: relative;
  z-index: 1; /* Ensure content is above the image */
}
.exp-slider {
  width: 85%;
  margin-inline: auto;
}
.exp-content {
  text-align: center;
  margin-top: 100px;
}

.exp-title {
  font-size: 26px;
  font-family: "Figtree", sans-serif;
  margin: 0px;
  font-weight: 500;
  color: rgba(159, 159, 159, 1);
}

.exp-sub-title {
  color: rgba(84, 48, 48, 1);

  font-size: 70px;
  font-family: "Playfair", serif;
  margin-block: 10px;
  font-weight: 500;
}

.card {
  background: none;
  overflow: hidden;
  transition: transform 0.3s ease, background-color 0.3s ease,
    box-shadow 0.3s ease; /* Smooth transition for all effects */
}

.card:hover {
  background-color: rgba(
    246,
    244,
    236,
    1
  ); /* Changes the background color on hover */
  transform: scale(1.01); /* Slightly scales up the card */
  box-shadow: 0px 0px 10px 10px rgba(116, 129, 179, 0.17); /* Adds a subtle shadow */
}

.card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}
.card-content {
  padding: 12px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 50%;
}

.card-title {
  font-size: 16px;
  margin: 0;
  padding-top: 5px;
  font-weight: 400;
  font-family: "Figtree", sans-serif;
  color: rgba(23, 23, 24, 0.5);
}

.card-sub {
  width: 100%;
  font-size: 22px;
  margin: 0;
  padding-block: 10px;
  font-weight: 400;
  font-family: "Figtree", sans-serif;
  color: rgba(24, 24, 24, 1);
}

.card-stats {
  display: flex;
  justify-content: flex-start;
  gap: 8px;
  margin-top: 8px;
}
.stat {
  background: white;
  border: 1px solid rgba(0, 0, 0, 0.15);

  padding: 5px 10px;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  color: rgba(23, 23, 24, 0.5);
}

.stat img {
  width: 10px;
  height: 10px;
  object-fit: contain;
}

.price {
  font-size: 18px;
  font-weight: 400;
  font-family: "Figtree", sans-serif;
  color: rgba(24, 24, 24, 1);
  padding-block: 10px;
}
.price span {
  font-size: 16px;
}

.price p {
  margin: 0;
}

/* interbationel packages */

.int-package {
  position: relative;
  width: 100%;

  background-color: white; /* Background color */
  padding-bottom: 30px;
  box-sizing: border-box;
}

.int-package::before {
  content: "";
  position: absolute;
  top: -65px;
  left: -10px;
  width: 450px;
  height: 450px;
  background: url("../discoverbg.png") no-repeat;
  background-size: contain;
  opacity: 0.8;
}

.int-package > * {
  position: relative;
  z-index: 1; /* Ensure content is above the image */
}

.int-content {
  width: 76%;
  margin-inline: auto;
  margin-top: 100px;
  margin-bottom: 20px;
  text-align: center;
}

.int-title {
  font-size: 26px;
  font-family: "Figtree", sans-serif;
  margin: 0px;
  font-weight: 500;
  color: rgba(24, 24, 24, 1);
}

.int-sub-title {
  color: rgba(84, 48, 48, 1);

  font-size: 70px;
  font-family: "Playfair", serif;
  margin-block: 10px;
  font-weight: 500;
}

/* Styling individual cards */
.int-card {
  border-bottom: 1px solid rgba(0, 0, 0, 1); /* Light border */
  position: relative;
  display: inline-block;
  overflow: hidden;
  text-align: center; /* Center content */
  padding-bottom: 15px;
  background: none;
  transition: transform 0.3s ease, background-color 0.3s ease,
    box-shadow 0.3s ease, opacity 0.3s ease; /* Smooth transition for all effects */
}

.int-card p {
  font-size: 22px;
  font-family: "Figtree", sans-serif;
  margin-block: 25px;
  font-weight: 400;
  color: rgba(24, 24, 24, 1);
}

.int-img-wrapper {
  position: relative;
}

.int-img {
  display: block;
  width: 100%;

  height: 430px;

  object-fit: cover;
}

.int-overlay {
  box-sizing: border-box;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 1), rgba(0, 0, 0, 0));

  text-align: left;
  padding: 20px 15px;
}

.int-overlay-text {
  margin-bottom: 20px;
  transition: opacity 0.3s ease;
  font-size: 20px;
  font-family: "Figtree", sans-serif;
  font-weight: 500;
  color: white;
  opacity: 0;
}

/* Desktop Hover Styles */
@media (min-width: 768px) {
  .int-card:hover {
    background-color: rgba(
      246,
      244,
      236,
      1
    ); /* Changes the background color on hover */
    transform: scale(1.01); /* Slightly scales up the card */
    box-shadow: 0px 0px 5px 5px rgba(116, 129, 179, 0.17); /* Adds a subtle shadow */
  }
  
  .int-card:hover .int-overlay-text {
    opacity: 1;
  }
}

/* Mobile In-View Styles */
@media (max-width: 767px) {
  .int-card {
    background-color: rgba(
      246,
      244,
      236,
      1
    ); /* Changes the background color on hover */
    transform: scale(1.01); /* Slightly scales up the card */
    box-shadow: 0px 0px 5px 5px rgba(116, 129, 179, 0.17); /* Adds a subtle shadow */
  }
  
  .int-card  .int-overlay-text {
    opacity: 1;
  }
}

.int-img-wrapper:hover .int-overlay-text {
  opacity: 1;
}

.int-card a {
  text-decoration: none;
}
.int-arrow {
  display: flex;
  justify-content: center;
}

/* tree monks */

.tree-monks {
  position: relative;
  width: 100%;

  background-color: white; /* Background color */
  padding-bottom: 30px;
  box-sizing: border-box;
}

.tree-monks::before {
    content: "";
    position: absolute;
    top: -130px;
    right: 0px;
    width: 400px;
    height: 280px;
    background: url(../monkbg.png) no-repeat;
    background-size: contain;
    opacity: 0.5;
    z-index: 0;
}

.tree-monks > * {
  position: relative;
  z-index: 1; /* Ensure content is above the image */
}

.monk-content {
  width: 85%;
  margin-inline: auto;
  margin-top: 0px;
  margin-bottom: 50px;
  text-align: center;
}

.monk-card {
  position: relative; /* Ensure proper positioning for the overlay */
  background-color: rgba(248, 248, 248, 1); /* Base background color */
  border-radius: 20px;
  display: flex;
  /*justify-content: space-between;*/

  margin-block: 50px;
  overflow: hidden; /* Prevent pseudo-element overflow */
}

.monk-card::before {
  content: "";
  position: absolute;
  top: 35%;
  left: 25%;
  width: 100%;
  height: 100%;
  background-image: url("../ring.png");
  background-repeat: no-repeat;
  background-position: left;
  background-size: 300px;
  opacity: 1; /* Adjust for the desired transparency */
  z-index: 0; /* Place it behind the content */
  border-radius: 20px; /* Match the card's border radius */
}

.monk-card .monk-card-logo {
  position: absolute;
    width: 100px;
    height: 100px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    object-fit: cover;
}
.monk-card .card-left {
  text-align: left;
  width: 50%;
  background-color: #506e30;
  padding: 50px 80px;
  box-sizing: border-box;
  color: #ffffff;
}

.monk-card .card-left h3 {
  font-size: 40px;
  margin-block: 20px;
  font-family: "Semplicita Pro", Arial, sans-serif;
  font-weight: 600;
}
.monk-card .card-left img {
  width: 70px;
  left: 70px;
}
.card-left .card-left-intro {
  font-family: "Semplicita Pro", Arial, sans-serif;
  font-size: 20px;
}

.card-left .card-left-desc {
  font-family: "Semplicita Pro", Arial, sans-serif;
  font-size: 18px;
  margin-bottom: 30px;
}
.monk-card .card-left a {
  width: 70px;
  left: 70px;
  text-decoration: none;
  color: #ffffff;
  font-family: "Semplicita Pro", Arial, sans-serif;
  padding-block: 25px;
  margin-top: 20px;
  font-weight: 600;
}

.monk-card .monk-right {
  width: 50%;
  display: flex;
  justify-content: end;
  padding: 25px;
  background-color: #f15b26;
  box-sizing: border-box;
}

.gallery-container {
  display: flex;
  height: 400px;
  width: 35vw;
}

.gallery-left {
  width: 70%;
  display: flex;
  flex-direction: column;
}

.gallery-left-top {
  display: flex;
  height: 80%;
}
.gallery-left-top-left {
  margin-right: 8px;
}
.gallery-left-top-left,
.gallery-left-top-right {
  width: 50%;
  display: flex;
  flex-direction: column;
}

.mb-2 {
  margin-bottom: 8px;
}

.mt-4 {
  margin-top: 16px;
}

.gallery-right {
  width: 30%;
  margin-left: 8px;
  display: flex;
  flex-direction: column;
}

.gallery-image {
  border-radius: 8px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
}

.wide {
  margin-top: 8px;
}
.small {
  height: 45%;
}

.large {
  height: 55%;
}

.small2 {
  height: 35%;
}

.large2 {
  height: 65%;
}

.wide {
  height: 20%;
}

.medium {
  height: 25%;
}

.tall {
  height: calc(75% + 8px);
}

/* effort */
.effort-container {
  position: relative;
  width: 100%;
  padding-top: 100px;
  padding-bottom: 50px;
  margin-top: 20px;
  background-color: rgba(242, 238, 226, 0.9); /* Background color */

  box-sizing: border-box;
}

/* .effort-container::before {
  content: "";
  position: absolute;
  top: 50%;  
  left: 40px;
  width: 200px;
  height: 200px;
  background: url("../effortbg1.png") no-repeat;
  background-size: cover; 
  opacity: 0.6;  
  z-index: 0;  
} */

.effort-container > * {
  position: relative;
  z-index: 1; /* Ensure content is above the image */
}

.effort-content {
  position: relative;
}

.effort-content .effortcontentbg-img {
  position: absolute;
  bottom: -100px;
  right: 5%;
  width: 300px;
  z-index: 1;
  opacity: 0.5;
}

.effort-content .effortbg-img {
  position: absolute;
  bottom: 100px;
  left: 40px;
  width: 200px;
  height: 200px;
  z-index: 1;
  opacity: 0.5;
}

.effort-title {
  text-align: center;
}

.effort-title h3 {
  color: rgba(84, 48, 48, 1);
  font-size: 70px;
  font-family: "Playfair", serif;
  margin: 0px;
  font-weight: 500;
}

.effort-title p {
  color: rgba(24, 24, 24, 1);
  width: 60%;
  margin-inline: auto;
  font-size: 20px;
  font-family: "Figtree", sans-serif;
  margin-block: 20px;
  font-weight: 500;
}

.effort-card {
  width: 65%;
  margin-inline: auto;
  background-color: white;
  border-radius: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  padding: 20px;
  position: relative;
  margin-block: 5px;
}

.effort-card .effortcard-img {
  width: 100%;
  object-fit: cover;
  height: 400px;
  border-radius: 10px; /* Ensure rounded corners */
  display: block; /* Prevent extra spacing below images caused by inline display */
}

.effort-card .effortgrid-img {
  position: absolute;
  top: 0;
  right: 0;
  width: 130px;
  height: 130px;
  border-top-right-radius: 13px;
}

.effort-card-content {
  padding: 20px;
  width :60%;
}
  .effort-img-container{
      width: 40%;
  }
.effort-card-content h4 {
  color: rgba(24, 24, 24, 1);

  font-size: 24px;
  font-family: "Figtree", sans-serif;
  margin-block: 20px;
  font-weight: 500;
}

.effort-card-content p {
  color: rgba(24, 24, 24, 0.7);

  font-size: 18px;
  font-family: "Figtree", sans-serif;
  margin-block: 20px;
  font-weight: 400;
}

/* sts2 */
.sts2-container {
  position: relative; /* Enable layering for the pseudo-element */
  background-color: rgba(
    242,
    238,
    226,
    0.9
  ); /* Base background color with transparency */
  width: 85%;
  margin-inline: auto;
  border-radius: 15px;
  height: 250px;
  z-index: 0; /* Place behind the content */
  margin-block: 70px;
  overflow: hidden; /* Prevent pseudo-element overflow */
}

.sts2-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("../stsbg2.png") no-repeat center;
  background-size: contain; /* Ensure the image fits the dimensions */
  opacity: 0.6; /* Adjust for the desired transparency */
  z-index: -1; /* Place the image behind the content */
  border-radius: 15px; /* Match the container's border radius */
}

.sts2-content {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  gap: 150px;
  width: 100%;
}

.sts2-count {
  display: flex;
  justify-content: center;
  align-items: start;
  gap: 10px;
  color: rgba(84, 48, 48, 1);
  font-family: "Figtree", sans-serif;
}

.sts2-count .sts2-img {
  width: 40px;
  height: 40px;
  background-color: white;
  border-radius: 10px;
  padding: 15px;
}

.sts2-count p {
  margin: 0px;
}

/* blogs */

.blog-slider {
  width: 85%;
  margin-inline: auto;
}

.blog-Sliders a {
  text-decoration: none;
}

.blog-title {
  color: rgba(84, 48, 48, 1);

  font-size: 70px;
  font-family: "Playfair", serif;
  margin: 0;
  font-weight: 500;
}

.blog-card {
  background: none;
  overflow: hidden;
  background-color: rgba(248, 248, 248, 1);
  transition: box-shadow 0.3s ease, transform 0.3s ease; /* Smooth transition for both shadow and scale */
}

.blog-card:hover {
  box-shadow: 5px 5px 10px 10px rgba(116, 129, 179, 0.17); /* Add the semi-transparent glow effect */
  transform: scale(1.01); /* Slightly enlarge the card on hover */
}

.blog-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.blog-content {
  padding: 12px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 50%;
}

.blog-auther {
  font-size: 20px;
  font-weight: 400;
  font-family: "Figtree", sans-serif;
  color: rgba(24, 24, 24, 1);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.blog-des {
  font-size: 26px;
  font-weight: 400;
  font-family: "Playfair", serif;
  color: rgba(24, 24, 24, 1);
  margin: 0;
  padding-block: 10px;
}

.blog-btn {
  background-color: transparent;
  border: none;
  text-align: start;
  padding: 10px 0px 15px 0px;
  text-decoration: underline;
  font-size: 16px;
  font-weight: 400;
  font-family: "Figtree", sans-serif;
  color: rgba(24, 24, 24, 1);
  cursor: pointer;
}

.btn-container {
  text-align: center;
  padding-bottom: 50px;
}

.view-btn {
  display: inline-flex;
  align-items: center;
  padding: 5px 20px;
  font-size: 18px;
  color: rgb(84, 48, 48);
  border: 2px solid rgb(84, 48, 48);
  border-radius: 5px;
  text-decoration: none;
  background-color: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: "Figtree", sans-serif;
}
.view-btn:hover {
  background-color: rgb(84, 48, 48);
  color: #fff;
}

/* sub */

/*landing slider */

.landing-Sliders {
  padding: 50px 0;
}

.landing-Sliders .slick-slide {
  margin: 0 6px;
}
.landing-Sliders .slick-list {
  margin: 0 -6px;
}
.landing-Sliders .slick-arrow[aria-disabled="true"] {
  opacity: 0.5;
  cursor: not-allowed;
}
.landing-Sliders .slick-dots {
  display: none !important;
}
.landing-Sliders .slick-arrow {
  position: absolute;
  content: "";
  z-index: 9;
  width: 30px;
  height: 30px;
  transform: translate(-50%, -50%);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  text-indent: -9999px;
}
.landing-Sliders .slick-arrow::before {
  content: "";
}
.landing-Sliders .slick-prev {
  top: 40%;
  bottom: inherit;
  left: 0%;
  right: inherit;
  background-size: cover;
  background-image: url("../expPrev.png");
}
.landing-Sliders .slick-next {
  top: 40%;
  bottom: inherit;
  right: -30px;
  left: inherit;
  background-size: cover;
  background-image: url("../expNext.png");
}

/*international slider */

.int-sliders {
  padding: 50px 0;
}

.int-sliders .slick-slide {
  margin: 0 12px;
}
.int-sliders .slick-list {
  margin: 0 -6px;
}
.int-sliders .slick-arrow[aria-disabled="true"] {
  opacity: 0.5;
  cursor: not-allowed;
}
.int-sliders .slick-dots {
  display: none !important;
}
.int-sliders .slick-arrow {
  position: absolute;
  content: "";
  z-index: 9;
  width: 30px;
  height: 30px;
  transform: translate(-50%, -50%);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  text-indent: -9999px;
}
.int-sliders .slick-arrow::before {
  content: "";
}
.int-sliders .slick-prev {
  top: 40%;
  bottom: inherit;
  left: 0%;
  right: inherit;
  background-size: cover;
  background-image: url("../expPrev.png");
}
.int-sliders .slick-next {
  top: 40%;
  bottom: inherit;
  right: -30px;
  left: inherit;
  background-size: cover;
  background-image: url("../expNext.png");
}

/*blog slider */

.blog-Sliders {
  padding: 50px 0;
}

.blog-Sliders .slick-slide {
  margin: 0 6px;
}
.blog-Sliders .slick-list {
  margin: 0 -6px;
}
.blog-Sliders .slick-arrow[aria-disabled="true"] {
  opacity: 0.5;
  cursor: not-allowed;
}
.blog-Sliders .slick-dots {
  display: none !important;
}
.blog-Sliders .slick-arrow {
  position: absolute;
  content: "";
  z-index: 9;
  width: 30px;
  height: 30px;
  transform: translate(-50%, -50%);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  text-indent: -9999px;
}
.blog-Sliders .slick-arrow::before {
  content: "";
}
.blog-Sliders .slick-prev {
  top: -30px;
  bottom: inherit;
  left: 95%;
  right: inherit;
  background-size: cover;
  background-image: url("../expPrev.png");
}
.blog-Sliders .slick-next {
  top: -30px;
  bottom: inherit;
  right: -15px;
  left: inherit;
  background-size: cover;
  background-image: url("../expNext.png");
}

@media only screen and (max-width: 992px) {
  .blog-Sliders .slick-prev {
    left: 90%;
  }
}

@media only screen and (max-width: 767px) {
  .blog-Sliders .slick-prev {
    left: 85%;
  }
}

@media only screen and (max-width: 490px) {
  /* Drawer Styles */

  .navbar {
    height: 75px;
  }

  .logo img {
    width: 75px;
  }
  .drawer {
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100%;
    background: white;
    box-shadow: -2px 0 5px rgba(0, 0, 0, 0.5);
    transition: right 0.3s ease-in-out;
    display: flex;
    flex-direction: column;
    z-index: 1001;
  }

  .blog-Sliders .slick-prev {
    left: 85%;
  }

  .hero-text {
    width: 100%;
  }

  #heroText1 {
    font-size: 60px;
  }

  .story-container::before {
    background-size: cover;
  }

  .story {
    width: 80%;

    margin-top: 60px;
  }

  .package-title {
    padding-top: 60px;
    width: 90%;
    margin-inline: auto;
  }

  .title {
    color: rgba(84, 48, 48, 1);
    font-size: 50px;
  }

  .package::before {
    top: 30px;
    right: 15px;
  }

  .package-imgs {
    width: 90%;
    height: 1000px;
    flex-direction: column;
  }

  .experience {
    padding-bottom: 0px;
  }

  .experience::before {
    top: -20px;
    left: -5px;
    width: 150px;
    height: 150px;
  }

  .exp-slider {
    width: 90%;
  }
  .exp-content {
    margin-top: 80px;
  }
  .exp-sub-title {
    font-size: 50px;
  }

  .card {
    border: 1px solid rgba(0, 0, 0, 0.15);
  }
  .sts1-container {
    height: 400px;
    padding-block: 20px;
  }
  .status1 {
      flex-direction: column;
      justify-content: space-around;
      align-items: start;
      width: 85%;
  }
  .int-content {
    width: 82%;
    margin-bottom: 0px;
    margin-top: 80px;
  }
  .int-package::before {
    left: 0px;
    width: 250px;
    height: 250px;
  }
  .int-img {
    height: 350px;
  }
  .int-sub-title {
    font-size: 50px;
  }

  .tree-monks {
    padding-bottom: 10px;
  }
  .tree-monks::before {
    top: -150px;
    right: 10px;
    width: 250px;
    height: 250px;
  }

  .monk-card {
    padding: 0px;
    flex-direction: column;
  }

  .monk-card::before {
    top: -200px;
  }
  .monk-card .card-left {
    text-align: center;
    width: 100%;
    padding-inline: 30px;
    padding-top: 20px;
  }
  .monk-card .monk-right {
    width: 100%;
  }
  .monk-card .monk-card-logo {
    top: 55%;
  }
  .gallery-container {
    margin-top: 50px;
    width: 80vw;
    height: 300px;
  }
 .control-btns{
     position: static!important;
 }
  .effort-container {
    padding-top: 50px;
  }

  .effort-title h3 {
    font-size: 50px;
  }

  .effort-title p {
    width: 80%;
  }

  .effort-card .effortgrid-img {
    z-index: -1;
  }

  .effort-card {
    width: 80%;

    flex-direction: column;
  }

  .effort-card-content {
    padding-top: 0;
    width: 100%;
  }
  .effort-img-container{
      width: 100%;
  }
  /* .effort-container::before {
    top: 50px;
  } */

  .effort-content .effortbg-img {
    top: 0;
    left: 0;
  }

  .effort-para2 {
    display: none;
  }

  .effort-card .effortcard-img {
    height: 300px;
  }
  .effort-card-content h4 {
    margin-top: 0px;
  }
  .sts2-container {
    height: 300px;
    width: 90%;
    padding-block: 30px;
  }

  .sts2-content {
    flex-direction: column;
    gap: 10px;
    justify-content: space-around;
  }

  .blog-slider {
    width: 90%;
  }

  .blog-title {
    font-size: 50px;
  }

  .blog-card img {
    height: 190px;
  }

  .blog-btn {
    display: none;
  }
  .sub-content p {
    font-size: 20px;
  }
  .sub-content h4 {
      font-size: 40px;
      width: 90%;
      margin-inline: auto;
  }
  .sub {
    height: 300px;
  }
 .sub-form {
      width: 90%;
      margin-inline: auto;
  }

  .sub-form input {
    padding: 4px 15px;
  }

  .sub-form button {
    padding: 6px 16px;
    height: 50px;
  }

  .footer-content {
    width: 90%;
    justify-items: start;
  }
  
  .monk-card .card-left a{
      position: relative;
      left: 0;
  }
  .monk-content{
      width: 90%;
  }
}

@media (min-width: 1024px) and (max-width: 1450px) {
  .blog-Sliders .slick-prev {
    left: 94%;
  }
  .blog-auther {
    flex-direction: column;
    align-items: start;
    gap: 10px;
  }

  .experience::before {
    top: -30px;
    left: 50px;
    width: 180px;
    height: 180px;
  }

  /* .effort-container::before {
    left: 0%;
  } */

  .effort-content .effortbg-img {
    left: 0;
  }

  .effort-card .effortgrid-img {
    width: 130px;
    height: 130px;
  }
  .sub-form {
    width: 40%;
    margin-inline: auto;
  }
}

@media (min-width: 768px) and (max-width: 1024px) {
  .story {
    width: 70%;
  }

  .overlay-text .overlay-desc {
    margin-left: 20px;
  }

  .overlay-text img {
    margin-right: 20px;
  }
  .int-content {
    width: 75%;
  }

  .int-package::before {
    left: 0px;
    width: 300px;
    height: 300px;
    top: 80px;
  }

  .experience::before {
    top: -20px;
    left: -5px;
    width: 180px;
    height: 180px;
  }

  .sub-form {
    width: 70%;
    margin-inline: auto;
  }

  .effort-card .effortgrid-img {
    z-index: -1;
  }

  .effort-card {
    width: 80%;

    flex-direction: column;
  }

  /* .effort-container::before {
    top: 50px;
  } */

  .effort-content .effortbg-img {
    top: 0;
    left: 0;
  }

  .footer-content {
    width: 90%;
    justify-items: start;
  }
}

.stack-cards {
  margin-block: 50px;
}

.stack-cards__item {
  position: sticky;
  top: 100px;
  transform-origin: center top;
}

@media only screen and (max-width: 490px) {
  .stack-cards__item {
    top: 70px;
  }
}
.control-btns{
     position: absolute;
    right: 0px;
    top: 52%;
 }
 .d-none{
     display: none;
 }
 .control-btns .volumn-btn {
     margin-right: 20px;
     height: 60px;
     width: 50px;
 }
