@import url(https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap);
/* CSS Document */
/* 
*
*
[Table of contents]
*
*
*

  color / $white
  font / @import 
  general / html
  dropdown / .dropdown-custom.btn
  navbar / .navbar
  slider home / .jumbomain
  breadcumb / .breadcumb
  home / .subheading
  home / modal
  slickteam / .slickteam
  pricing / .pricelist
  testimony / .wraper-testimony
  footer / footer
  portofolio / AppContainer
  contact / .form-side
  service / #service
  blog / #blog
  media all / @media only screen and (max-width: 1199px)
  shop / #shop

*/
/*color*/
/*font*/
/*general*/
body {
  font-family: "Poppins", "Segoe UI", "Ubuntu", "Droid Sans", sans-serif;
  font-weight: 300;
  font-size: 15px;
  letter-spacing: 0.3px;
  color: #fff;
  background: #111;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

#mainpreloader .preloader {
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  z-index: 10000;
  animation-duration: 1.6s;
  animation-fill-mode: both;
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  25% {
    opacity: 1;
  }
  75% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
#mainpreloader .fadeOut {
  animation-name: fadeOut;
}

.mainpreloader {
  position: relative;
  animation: rotate 1s infinite linear;
  border: 3px solid rgba(255, 255, 255, 0.1);
  width: 40px;
  height: 40px;
  margin-right: -24px;
  border-radius: 999px;
}

/* styles.css */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.hidden {
  opacity: 0;
  transform: translateY(20px);
}

.fade-in {
  opacity: 1;
  transform: translateY(0);
  animation: fadeIn 1s forwards;
}

.fade-in {
  opacity: 0; /* Start with elements hidden */
  animation: fadeIn 1s forwards; /* Animate over 1 second and forwards to keep the final state */
}

.mainpreloader span {
  position: absolute;
  width: 40px;
  height: 40px;
  border: 3px solid transparent;
  border-top: 3px solid #c8b16f;
  top: -3px;
  left: -3px;
  border-radius: 999px;
}
@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
#routerhang {
  transform: unset !important;
  transform-origin: unset !important;
  width: 100%;
  height: 100%;
}

.br {
  display: block;
  white-space: pre-wrap;
}

section {
  padding: 50px 0;
}

.wraper {
  padding: 0;
  display: block;
  width: 100%;
}
.wraper .wraperitem {
  width: 100%;
  height: 100%;
}

.m-2-hor {
  padding: 0 7%;
  max-width: 1500px;
  margin: 0 auto !important;
}

.m-10-hor {
  display: flex;
  justify-content: space-between;
  padding-left: 10%;
  padding-right: 10%;
  max-width: 1500px;
  margin: 0 auto;
}

.white {
  color: #111;
  background: #fff;
}

.black_more {
  background: #0f0f0f;
}

.color {
  color: #c8b16f;
}

.btn {
  position: relative;
  overflow: hidden;
  font-size: 11pt;
  color: #fff;
  background: none;
  border: 2px solid #c8b16f;
  border-radius: 0;
  padding: 10px 44px;
  transition-delay: 0s;
  z-index: 0;
}
.btn span {
  color: #fff;
  position: relative;
  z-index: 1;
}
.btn::before {
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: absolute;
  background-image: linear-gradient(to left, #c8b16f, #c7ab5a);
  opacity: 0;
  z-index: 1;
  transition: all 0.3s ease;
}
.btn:hover::before {
  opacity: 1;
  transition: all 0.3s ease;
}
.btn:hover .shine {
  animation: sheen 0.6s alternate;
}

.shine {
  content: "";
  position: absolute !important;
  top: 0;
  right: 0;
  bottom: 0;
  left: -50px;
  background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.2) 5%, transparent);
  transform: rotateZ(60deg) translate(-1em, 5.5em);
}
@keyframes sheen {
  0% {
    opacity: 1;
    transform: rotateZ(60deg) translate(0, 6em);
  }
  90% {
    opacity: 1;
    transform: rotateZ(60deg) translate(0, -12em);
  }
  100% {
    opacity: 0;
    transform: rotateZ(60deg) translate(0, -12em);
  }
}
.text-gradient {
  -webkit-background-clip: text !important;
  -moz-background-clip: text !important;
  background-clip: text !important;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  background: linear-gradient(to bottom, #c8b16f, #c7ab5a);
}

/* dropdown */
.dropdown-custom.btn {
  border: 0px;
  position: relative;
  top: -1px;
  overflow: unset !important;
  font-weight: 500;
  padding: 0 20px;
  background: none !important;
}
.dropdown-custom.btn::before {
  content: "";
  position: absolute;
  top: -10px;
  left: 19px;
  width: max-content;
  height: auto;
  padding: 30px 40px;
  background: 0;
}
.dropdown-custom.btn::after {
  margin-left: 10px !important;
}
.dropdown-custom.btn:focus {
  box-shadow: none !important;
}
.dropdown-custom.btn:hover {
  color: #c8b16f;
}

.dropdown-toggle::after {
  position: relative;
  top: 1px;
}

.item-dropdown {
  width: max-content;
  padding: 0;
  position: absolute;
  background: #1b1b1b;
  border-radius: 0px;
  inset: 40px auto auto 19px;
  padding: 5px 0;
  animation: smoothDrop 0.2s ease;
  -webkit-animation: smoothDrop 0.2s ease;
  z-index: 1;
}
.item-dropdown .dropdown {
  position: relative;
  text-align: center;
}
.item-dropdown .dropdown a {
  color: rgba(255, 255, 255, 0.8);
  text-transform: none;
  font-weight: 400;
  letter-spacing: 0.6px;
  display: block;
  font-size: 0.78rem !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 12px 20px 12px 20px;
  min-width: 210px;
  width: 100%;
  text-align: left;
}
.item-dropdown .dropdown a:hover {
  color: #c8b16f;
  background: 0;
}
.item-dropdown .dropdown a:last-child {
  border-bottom: none;
}

.imgslickz {
  width: 850px;
  height: 500px;
  object-fit: cover;
}

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

/*navbar*/
.navbar {
  padding: 20px 0;
  position: absolute;
  top: 15px;
  left: 0;
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  background: rgba(0, 0, 0, 0);
  z-index: 999;
}
.navbar .w-100-nav {
  margin: 0;
  width: 100%;
  justify-content: space-between;
  align-items: center;
}
.navbar a {
  position: relative;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.6px;
  padding: 4px 20px;
  text-decoration: none !important;
  color: #fff;
  outline: none;
  transition: all 0.3s ease;
}
.navbar a:hover {
  color: #c8b16f;
  transition: all 0.3s ease;
}
.navbar a.active {
  color: #c8b16f !important;
  transition: all 0.3s ease;
}
.navbar a.active:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 0;
  left: 0;
  top: 0;
  background: 0;
  cursor: default;
}
.navbar .navbar-title {
  margin-right: auto;
  font-size: 150%;
  padding: 12px 20px;
}
.navbar .navbar-item {
  position: relative;
  display: inline-block;
  cursor: default;
  vertical-align: middle;
}
.navbar .logo .navbar-item {
  position: relative;
  top: 0px;
  left: 0px;
  padding: 0;
  width: 200px;
  border-bottom: none;
}
.navbar .logo .navbar-item a {
  padding: 0;
}
.navbar .logo .navbar-item a img {
  width: 100%;
  height: auto;
}
.navbar .nav-icon {
  display: none;
}
@media only screen and (max-width: 1199px) {
  .navbar .m-2-hor {
    padding: 0px 2%;
  }
  .navbar .menu {
    padding: 15px 0 10px;
  }
  .navbar.navbar {
    background: #1b1b1b;
    position: relative;
  }
  .navbar .w-100-nav {
    display: block;
  }
  .navbar .navbar-item {
    display: block;
    padding: 15px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  }
  .navbar .nav-icon {
    position: absolute;
    top: 33px;
    right: 25px;
    display: block;
    width: 20px;
    height: 10px;
    padding-top: 13px;
    line-height: 0;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
    z-index: 9999;
  }
  .navbar .bg-nav-icon {
    width: 32px;
    height: 24px;
    background: rgba(255, 255, 255, 0);
    border-radius: 2px;
    -moz-border-radius: 2px;
    -webkit-border-radius: 2px;
  }
  .navbar #nav-icon span, .navbar .nav-icon span {
    display: none;
    position: absolute;
    top: 5px;
    left: -40px;
    font-size: 0.62rem;
    font-weight: 600;
    text-transform: uppercase;
  }
  .navbar .menu-line {
    position: absolute;
    width: 100%;
    height: 2px;
    top: 0px;
    background-color: #fff;
  }
  .navbar .menu-line1 {
    position: absolute;
    width: 100%;
    height: 2px;
    top: 5px;
    background-color: #fff;
  }
  .navbar .menu-line2 {
    position: absolute;
    width: 100%;
    height: 2px;
    top: 10px;
    background-color: #fff;
  }
  .navbar.sticky {
    position: absolute !important;
  }
}
.navbar.sticky {
  position: fixed;
  top: 0;
  width: 100%;
  background: #1b1b1b;
  animation: smoothScroll 0.6s forwards;
  -webkit-animation: smoothScroll 0.6s forwards;
}
@keyframes smoothScroll {
  0% {
    transform: translateY(-300px);
    -webkit-transform: translateY(-300px);
  }
  100% {
    transform: translateY(0px);
    -webkit-transform: translateY(0px);
  }
}
@keyframes smoothDrop {
  0% {
    opacity: 0;
    transform: translateY(10px);
    -webkit-transform: translateY(10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0px);
    -webkit-transform: translateY(0px);
  }
}

/* disable click active */
.navbar-item {
  pointer-events: auto;
}

.navbar-item a.active {
  pointer-events: none;
}

/* CSS */
.donate-button {
  align-items: center;
  background-color: #c7ab5a;
  border: 2px solid #111;
  border-radius: 8px;
  box-sizing: border-box;
  color: #ffffff;
  cursor: pointer;
  display: flex;
  font-family: Inter, sans-serif;
  font-size: 15px;
  height: 45px;
  justify-content: center;
  line-height: 24px;
  max-width: 100%;
  padding: 0 25px;
  margin-left: 15px;
  position: relative;
  text-align: center;
  text-decoration: none;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
}

.donate-button:after {
  background-color: #111;
  border-radius: 8px;
  content: "";
  display: block;
  height: 46px;
  left: 0;
  width: 100%;
  position: absolute;
  top: -2px;
  transform: translate(4px, 4px);
  transition: transform 0.2s ease-out;
  z-index: -1;
}

.donate-button:hover:after {
  transform: translate(0, 0);
}

.donate-button:active {
  background-color: #f2cd5d;
  outline: 0;
}

.donate-button:hover {
  outline: 0;
}

/* Campaign description & Donors */
.campaign-info-wrap {
  width: 100%;
  position: relative;
  padding: 3em;
  display: flex;
  background: #111; /* Adjusted for dark mode */
  color: #fff; /* Text color for dark mode */
}

.campaign-story-sec {
  width: 50%;
  margin: 4em 2em 2em 11em;
  max-width: 960px;
}

.campaign-story-sec h3 {
  margin: 0em 0 0em -0.5em;
  font-weight: bold;
  font-size: 3em;
  border-bottom: 1px solid #fff; /* Adjusted for dark mode */
  width: 100%;
}

.green-shade {
  background: #1e1e1e; /* Adjusted for dark mode */
  margin: 0 0 3em -1.5em;
  padding-top: 0;
  height: 200px;
  width: 100%;
}

.wrap {
  padding: 1em 2em;
}

.wrap h5 {
  font-weight: bold;
  font-size: 1.5em;
  margin: 1em 0 1.5em 0;
  color: #c8b16f; /* Use your theme color */
}

.wrap p {
  font-size: 1.2em;
  color: #bbb; /* Adjusted for readability */
}

.campaign-story h4 {
  font-weight: bold;
  font-size: 1.8em;
  margin: 1em 0;
  text-decoration: underline;
  color: #fff; /* Text color for dark mode */
}

.campaign-story p {
  font-size: 1.3em;
  margin: 1em 0;
  color: #bbb; /* Adjusted for readability */
}

.campaign-story img {
  width: 80%;
  height: auto;
}

.stripe-payment-form {
  background-color: #f4f4f4; /* Example background color */
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  max-width: 400px;
  margin: 20px auto;
}

.stripe-payment-form form {
  display: flex;
  flex-direction: column;
}

.stripe-payment-form .StripeElement {
  margin-bottom: 20px;
  padding: 15px;
  border: 1px solid #ddd;
  border-radius: 4px;
  background-color: white;
}

.stripe-payment-form button {
  background-color: #007bff; /* Example button color */
  color: white;
  padding: 10px 15px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 16px;
}

.stripe-payment-form button:hover {
  background-color: #0056b3;
}

/* CSS */
.contact-button {
  align-items: center;
  background-color: #272727;
  border: 2px solid #111;
  border-radius: 8px;
  box-sizing: border-box;
  color: #ffffff;
  cursor: pointer;
  display: flex;
  font-family: Inter, sans-serif;
  font-size: 15px;
  height: 45px;
  justify-content: center;
  line-height: 24px;
  min-width: 120px;
  position: relative;
  text-align: center;
  text-decoration: none;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
}

.contact-button:after {
  background-color: #111;
  border-radius: 8px;
  content: "";
  display: block;
  height: 46px;
  left: 0;
  width: 100%;
  position: absolute;
  top: -2px;
  transform: translate(4px, 4px);
  transition: transform 0.2s ease-out;
  z-index: -1;
}

.contact-button:hover:after {
  transform: translate(0, 0);
}

.contact-button:active {
  background-color: #454545;
  outline: 0;
}

.contact-button:hover {
  outline: 0;
}

/* slider */
.jumbomain {
  position: relative;
  padding: 0;
  margin: 0;
}

.slider-wrapper {
  position: relative;
  height: 100vh;
  overflow: hidden;
}
.slider-wrapper .previousButton, .slider-wrapper .nextButton {
  opacity: 0;
  text-decoration: none;
  transition: all 0.3s ease;
}
.slider-wrapper:hover .previousButton, .slider-wrapper:hover .nextButton {
  opacity: 1;
  transition: all 0.3s ease;
}

.slide {
  background-size: cover !important;
}

.slide::before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.1);
  bottom: 0;
  left: 0;
}

.previousButton, .nextButton {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  cursor: pointer;
  text-align: center;
}
.previousButton svg, .nextButton svg {
  display: none;
}

.previousButton::before, .nextButton::before {
  content: "\f054";
  font-family: FontAwesome;
  font-size: 1.3rem;
  font-style: normal;
  font-weight: normal;
  color: #fff;
  opacity: 0.8;
}

.previousButton:hover, .nextButton:hover {
  opacity: 1;
}

.previousButton {
  left: 0;
  transform: rotate(180deg) translateY(calc(50% + 0px));
}

.previousButton {
  left: 4%;
}

.nextButton {
  right: 4%;
}

.slider-content {
  text-align: left;
}

.slider-content .inner {
  padding: 0 12%;
  box-sizing: border-box;
  position: absolute;
  width: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.slider-content .inner button {
  font-weight: 500;
  position: relative;
  overflow: hidden;
  font-size: 11pt;
  letter-spacing: 1px;
  color: #fff;
  border: 2px solid #c8b16f;
  background: none;
  border-radius: 0;
  padding: 0 44px;
  height: 45px;
  transition-delay: 0s;
  z-index: 0;
}
.slider-content .inner button span {
  position: relative;
  z-index: 1;
}
.slider-content .inner button::before {
  content: "";
  width: 180%;
  height: 180%;
  top: -100%;
  left: -100%;
  position: absolute;
  background-image: linear-gradient(to left, #c8b16f, #c7ab5a);
  opacity: 0;
  z-index: 1;
  transition: all 0.3s ease;
}
.slider-content .inner button:hover::before {
  top: 0;
  left: 0;
  opacity: 1;
  transition: all 0.3s ease;
}
.slider-content .inner button:hover .shine {
  animation: sheen 0.6s alternate;
}

.slider-content .inner h1 {
  font-weight: 600;
  max-width: 840px;
  color: #fff;
  font-size: 53px;
}

.slider-content .inner p {
  color: #fff;
  font-size: 40px;
  line-height: 1.3;
  max-width: 640px;
  margin-bottom: 30px;
}

.slider-content section {
  position: absolute;
  bottom: 20px;
  left: 20px;
}

.slider-content section span {
  color: #fff;
}

.slider-content section span {
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px;
  display: inline-block;
  text-align: left;
  line-height: 1.4;
  vertical-align: middle;
  margin-left: 10px;
}

.slider-content section img {
  width: 40px;
  height: 40px;
  border: solid 2px rgba(255, 255, 255, 0.5);
  border-radius: 100%;
  vertical-align: middle;
}

.slider-content section span strong {
  color: #fff;
  font-size: 14px;
  display: block;
}

@media (max-height: 500px) {
  .slider-wrapper, .slide {
    height: calc(100vh - 75px);
  }
}
@media (max-width: 640px) {
  .slider-wrapper, .slide {
    height: calc(100vh - 75px);
  }
}
@media (max-height: 600px) {
  .slider-content .inner h1 {
    font-size: 32px;
  }
}
@media (max-width: 640px) {
  .slider-content .inner h1 {
    font-size: 32px;
  }
  .slider-content .inner p {
    font-size: 21px;
  }
}
.slide h1 {
  transition: all 0.3s ease;
  transform: translateY(-20px);
  opacity: 0;
}

.slide button {
  transition: all 0.3s ease;
  transform: translateY(20px);
  opacity: 0;
}

.slide p {
  transition: all 0.3s ease;
  transform: translateY(20px);
  opacity: 0;
}

.slide section * {
  transition: all 0.3s ease;
}

.slide section img {
  transform: translateX(-10px);
  opacity: 0;
}

.slide section span {
  transform: translateY(-10px);
  opacity: 0;
}

.slide section span strong {
  transform: translateY(10px);
  opacity: 0;
}

.slide.animateIn.previous h1,
.slide.current h1,
.slide.animateIn.next h1,
.slide.animateIn.previous button,
.slide.current button,
.slide.animateIn.next button,
.slide.animateIn.previous p,
.slide.current p,
.slide.animateIn.next p,
.slide.animateIn.previous section *,
.slide.current section *,
.slide.animateIn.next section * {
  transform: translateY(0);
  transition-delay: 0.9s;
  opacity: 1;
}

.slide.animateIn.previous p,
.slide.animateIn.next p {
  transition-delay: 1.1s;
}

.slide.animateIn.previous button,
.slide.animateIn.next button {
  transition-delay: 1.3s;
}

.slide.animateIn.previous section img,
.slide.animateIn.next section img {
  transition-delay: 1.3s;
}

.slide.animateIn.previous section span,
.slide.animateIn.next section span {
  transition-delay: 1.4s;
}

.slide.animateIn.previous section span strong,
.slide.animateIn.next section span strong {
  transition-delay: 1.5s;
}

.slide.animateOut h1 {
  transition-delay: 0.3s;
}

.slide.animateOut p {
  transition-delay: 0.2s;
}

.slide.animateOut section span {
  transition-delay: 0.1s;
}

.slide.animateOut section span strong {
  transition-delay: 0s;
}

/* breadcumb */
.breadcumb {
  border-radius: 0;
  margin: 0;
  padding: 0 0;
  background-size: cover;
  width: 100%;
  position: relative;
}
.breadcumb::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: linear-gradient(to bottom, #111, rgba(0, 0, 0, 0.1));
  opacity: 0.5;
}
.breadcumb .mainbreadcumb {
  padding: 320px 0 30px;
}
.breadcumb .mainbreadcumb h1 {
  margin-bottom: 0;
  line-height: 1;
}
.breadcumb .mainbreadcumb .list {
  position: relative;
  bottom: -20px;
  display: flex;
  justify-content: right;
  font-size: 0.86rem;
  font-weight: 400;
  letter-spacing: 4px;
}
.breadcumb .mainbreadcumb .list .dash {
  padding: 0 10px;
}
.breadcumb .mainbreadcumb .list .link {
  color: #fff;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: 1px;
  margin: 0;
  padding: 0;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
}
.breadcumb .mainbreadcumb .list .link:hover {
  color: #c8b16f;
  transition: all 0.3s ease;
}
.breadcumb .homebread {
  width: 100%;
  padding: 180px 0 140px;
}
.breadcumb .homebread .heading {
  line-height: 1.3;
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 15px;
}
.breadcumb .homebread .subheading {
  font-size: 2.1rem;
  margin-bottom: 0;
}
.breadcumb .homebread .content {
  max-width: 500px;
  margin-bottom: 0;
  margin-bottom: 30px;
}
.breadcumb.h-vh {
  height: 100vh;
  display: flex;
  align-items: center;
}

.darken-overlay::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3); /* Adjust 0.3 to set the darkness level */
  pointer-events: none; /* So that the overlay does not interfere with interactions */
  z-index: 1;
}

/* home */
.subheading {
  font-size: 1.3rem;
  margin-bottom: 15px;
}

.heading {
  font-size: 2.3rem;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 15px;
  letter-spacing: 1px;
}

.content {
  margin: 0;
}

.content a {
  text-decoration: none;
  color: inherit;
}

.content .socialicon i {
  color: inherit;
}

.col-feature {
  display: block;
}
.col-feature .sub-color {
  color: #c8b16f;
  font-size: 1.6rem;
  font-weight: 700;
}
.col-feature .heading {
  font-size: 1.1rem;
  font-weight: 500;
  margin: 5px 0;
}
.col-feature .content {
  font-size: 1rem;
}

.border-radius {
  border-radius: 0px;
  box-shadow: 0 10px 12px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  transition: all 0.3s ease;
}
.border-radius:hover {
  box-shadow: none;
  transition: all 0.3s ease;
}

/* icon scroll */
.icon-scroll-wraper {
  position: absolute;
  width: 100%;
  bottom: 5vh;
  left: 0;
}

.icon-scroll {
  position: relative;
  margin: 0 auto;
}

.icon-scroll:before {
  position: absolute;
}

.icon-scroll {
  width: 26px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.3);
  z-index: 1;
  border-radius: 25px;
  height: 38px;
}

.icon-scroll:before {
  content: "";
  width: 3px;
  height: 6px;
  background: rgba(255, 255, 255, 0.6);
  left: 12px;
  top: 8px;
  border-radius: 4px;
  animation-duration: 1.5s;
  animation-iteration-count: infinite;
  animation-name: scroll;
}
@keyframes scroll {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translateY(20px);
  }
}
.features {
  position: relative;
  width: 100%;
  height: 100%;
  padding: 60px;
  overflow: hidden;
}
.features .bg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.features .bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 0;
}
.features .bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.features .content {
  position: relative;
  text-align: center;
}
.features .content .heading {
  color: #c8b16f;
  font-weight: 500;
  font-size: 1.2rem;
  margin-bottom: 10px;
}
.features .content .con-text {
  font-size: 0.9rem;
}
.features .content .link {
  width: max-content;
  font-weight: 500;
  position: relative;
  overflow: hidden;
  font-size: 11pt;
  letter-spacing: 1px;
  color: #fff;
  border: 2px solid #c8b16f;
  background: none;
  border-radius: 0;
  padding: 0 44px;
  height: 45px;
  line-height: 40px;
  margin: 20px auto 0;
  cursor: pointer;
  transition: all 0.3s ease;
}
.features .content .link:hover {
  background: #c8b16f;
  border: 2px solid rgba(0, 0, 0, 0);
  transition: all 0.3s ease;
}
.features .content .link:hover .shine {
  animation: sheen 0.6s alternate;
}

/*slickteam*/
.slickteam {
  width: 100%;
  position: relative;
  padding: 30px 0 0;
}
.slickteam .slick-prev {
  opacity: 0;
  left: -30px;
  z-index: 1;
  transition: all 0.3s ease;
}
.slickteam .slick-prev::before {
  content: "\f053" !important;
  font-family: FontAwesome !important;
  font-style: normal;
  font-weight: normal;
  color: #fff;
}
.slickteam .slick-next {
  right: -30px;
  opacity: 0;
  transition: all 0.3s ease;
}
.slickteam .slick-next::before {
  content: "\f054" !important;
  font-family: FontAwesome !important;
  font-style: normal;
  font-weight: normal;
  color: #fff;
}
.slickteam .slick-slide {
  position: relative;
}
.slickteam .slick-slide div {
  margin: 0 5px;
  position: relative;
}
.slickteam .slick-slide div div {
  margin: 0 5px;
}
.slickteam .slick-slide div div .itm {
  margin: 0;
  position: relative;
  height: 100%;
  outline: none;
  overflow: hidden;
}
.slickteam .slick-slide div div .itm .bg {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
}
.slickteam .slick-slide div div .itm .bg:after {
  content: "";
  display: block;
  padding-bottom: 100%;
}
.slickteam .slick-slide div div .itm .bg img {
  width: 100%;
  height: auto;
  object-fit: cover;
}
.slickteam .slick-slide div div .desc {
  position: absolute;
  bottom: 15px;
  left: 15px;
  text-align: left;
}
.slickteam .slick-slide div div .desc .name {
  font-weight: 500;
  font-size: 1.3rem;
  letter-spacing: 1px;
}
.slickteam .slick-slide div div .desc .title {
  font-weight: 400;
  font-size: 0.9rem;
  line-height: 1.5;
  transition: all 0.3s ease;
}
.slickteam .slick-slide div div .icon {
  width: 100%;
  position: absolute;
  text-align: right;
  right: 15px;
  bottom: -30px;
  transition: all 0.3s ease;
}
.slickteam .slick-slide div div .icon span {
  width: 100%;
  height: auto;
  color: inherit;
  padding: 10px;
}
.slickteam .slick-slide div div .icon span i {
  transition: all 0.3s ease;
}
.slickteam .slick-slide div div .icon span:hover i {
  transform: scale(1.3);
}
.slickteam .slick-slide div div:hover {
  cursor: pointer;
}
.slickteam .slick-slide div div:hover .bg:before {
  opacity: 0.8;
  background: linear-gradient(to top, #000, rgba(0, 0, 0, 0.8));
  transition: all 0.3s ease;
}
.slickteam .slick-slide div div:hover .icon {
  bottom: 15px;
  transition: all 0.3s ease;
}
.slickteam .slick-slide div div:hover .title {
  line-height: 0.9;
  transition: all 0.3s ease;
}
.slickteam .slick-slide div div:hover .hover-text {
  opacity: 1;
}
.slickteam .slick-slide div div .hover-text {
  font-family: "Montserrat", sans-serif;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: rgba(0, 0, 0, 0.6);
  color: #fff;
  padding: 10px;
  border-radius: 5px;
  opacity: 0;
  z-index: 2;
  transition: opacity 0.3s ease;
}
.slickteam .slick-slide.slick-col {
  display: block;
  overflow: hidden;
}
.slickteam .slick-slide.slick-col div .itm .bg img {
  min-height: 300px !important;
}
.slickteam:hover .slick-prev, .slickteam:hover .slick-next {
  opacity: 1;
  transition: all 0.3s ease;
}

.slick-slide {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2); /* Adjust the opacity (0.5) to make it darker or lighter */
  z-index: 1; /* Ensure this is above the image but below the text */
}

/* modal */
.container {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100vw;
  height: 100vh;
  top: 0;
  left: 0;
  z-index: 999;
}

.popup {
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  width: 100vw;
  height: 100vh;
  bottom: 0;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  right: 0;
  z-index: 999;
  overflow: hiden;
  transition: 0.64s ease-in-out;
  opacity: 1;
  visibility: visible;
}
.popup-inner {
  position: relative;
  bottom: -100vw;
  right: -100vh;
  display: flex;
  align-items: center;
  max-width: 800px;
  max-height: 600px;
  width: 60%;
  height: 80%;
  background-color: #000000;
  transform: rotate(32deg);
  transition: 0.64s ease-in-out;
}
.popup__photo {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.popup__photo img {
  width: 100%;
  height: 100%;
}
.popup__text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 60%;
  height: 100%;
  padding: 4rem;
}
.popup__text h1 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 2rem;
  text-transform: uppercase;
  color: #ffffff;
}
.popup__text p {
  font-size: 0.875rem;
  color: #ffffff;
  line-height: 1.5;
}
.popup .popup-inner {
  bottom: 0;
  right: 0;
  transform: rotate(0);
}
.popup__close {
  position: absolute;
  right: -1rem;
  top: -1rem;
  width: 3rem;
  height: 3rem;
  font-size: 0.875rem;
  font-weight: 300;
  border-radius: 100%;
  background-color: #0A0A0A;
  z-index: 4;
  color: #fff;
  line-height: 3rem;
  text-align: center;
  cursor: pointer;
  text-decoration: none;
}

/* pricing */
.pricelist {
  display: block;
  border: 8px solid rgba(255, 255, 255, 0.1);
  padding: 20px 10px;
  margin: 30px auto 20px;
  text-align: center;
  transition: all 0.3s ease;
}
.pricelist .heading {
  font-size: 1.75rem;
  font-weight: 500;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 15px 0 30px;
}
.pricelist .bigprice {
  font-size: 3.6rem;
  font-weight: 700;
  line-height: 1;
  padding: 10px 0 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.pricelist .bigprice small {
  font-size: 0.8rem;
  font-weight: 400;
  opacity: 0.8;
}
.pricelist .list {
  list-style: none;
  padding: 0px;
  text-align: left;
}
.pricelist .list li {
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.pricelist .list li i {
  position: relative;
  top: -2px;
  font-size: 0.8rem;
  padding-right: 2px;
}
.pricelist:hover {
  border: 8px solid #c8b16f;
  transition: all 0.3s ease;
}

/* banner */
.banner {
  background: #c8b16f;
}

.banner__content {
  padding: 16px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  max-width: 700px;
}

.banner__text {
  font-family: "Quicksand", sans-serif;
}

.banner__close {
  background: none;
  border: none;
  cursor: pointer;
}

.banner__text,
.banner__close > span {
  color: #ffffff;
}

/*testimony*/
.wraper-testimony {
  background-size: cover;
  overflow: hidden;
  width: 100%;
  position: relative;
  padding: 110px 0;
}
.wraper-testimony::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: linear-gradient(to left, #c8b16f, #c7ab5a);
  opacity: 0.95;
}

.testimony {
  width: 100%;
}
.testimony .slick-prev {
  opacity: 0;
  left: -30px;
  z-index: 1;
  transition: all 0.3s ease;
}
.testimony .slick-prev::before {
  content: "\f053" !important;
  font-family: FontAwesome !important;
  font-style: normal;
  font-weight: normal;
  color: #fff;
}
.testimony .slick-next {
  right: -30px;
  opacity: 0;
  transition: all 0.3s ease;
}
.testimony .slick-next::before {
  content: "\f054" !important;
  font-family: FontAwesome !important;
  font-style: normal;
  font-weight: normal;
  color: #fff;
}
.testimony .slick-slide {
  position: relative;
}
.testimony .slick-slide div {
  margin: 0 5px;
}
.testimony:hover .slick-prev, .testimony:hover .slick-next {
  opacity: 1;
  transition: all 0.3s ease;
}
.testimony .blockquote {
  font-size: 0.98rem;
  text-align: left;
  margin: 15px 30px 30px;
  display: flex;
}
.testimony .blockquote .fa {
  font-size: 1.3rem;
  display: inline-block;
  margin: 5px 15px 0 0;
  color: #fff;
  height: max-content;
}
.testimony .blockquote p {
  line-height: 1.8;
  display: inline-block;
}
.testimony .blockquote .bytesti {
  font-size: 0.9rem;
  font-weight: 400;
}
.testimony .slick-dots {
  bottom: -40px;
}
.testimony .slick-dots li.slick-active button::before {
  opacity: 0.75;
  color: #fff;
}
.testimony .slick-dots li button::before {
  color: #fff;
}

/* footer */
footer {
  position: relative;
  padding: 75px 0 0;
  padding-right: 0px !important;
  padding-left: 0px !important;
  overflow: hidden;
}
footer .bg-footer {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0.3;
}
footer .bg-footer img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
footer .footer-col {
  padding-right: 15px;
  padding-left: 15px;
  margin: 15px 0;
}
footer .footer-col .heading {
  font-weight: 500;
  font-size: 1.1rem;
  margin-bottom: 10px;
}
footer .footer-col .content {
  line-height: 1.6;
  letter-spacing: 0.6px;
  margin-bottom: 10px;
}
footer .footer-col .content .link {
  font-size: 0.96rem;
  width: max-content;
  letter-spacing: 0;
  padding: 0 0 5px;
  margin-bottom: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
  border-bottom: 1px solid rgba(200, 177, 111, 0.8);
}
footer .footer-col .content .link:hover {
  opacity: 0.6;
  transition: all 0.3s ease;
}
footer .footer-col .content .socialicon {
  position: relative;
  overflow: hidden;
  display: inline-flex; /* Change to inline-flex for centering */
  align-items: center; /* Center vertically */
  justify-content: center; /* Center horizontally */
  padding: 10px 14px;
  background: #000; /* Replace $black with actual color */
  margin-right: 10px;
  text-align: center;
  border-radius: 4px;
  cursor: pointer;
  border: 1px solid rgba(200, 177, 111, 0.8);
  transition: all 0.3s ease;
}
footer .footer-col .content .socialicon i {
  font-size: 1rem;
}
footer .footer-col .content .socialicon:hover {
  background: #c8b16f;
  transition: all 0.3s ease;
}
footer .footer-col .content .socialicon:hover .shine {
  z-index: 1;
  animation: sheen 2s alternate;
}
footer .footer-col .link-call-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  text-align: center;
}
footer .footer-col .link-call {
  font-weight: 300;
  display: inline-block;
  color: #c8b16f;
  font-size: 0.8rem;
  width: max-content;
  letter-spacing: 1px;
  padding: 0 0 5px;
  cursor: pointer;
}
footer .footer-col .link-call-ex {
  transition: all 0.3s ease;
}
footer .footer-col .link-call-ex:hover {
  opacity: 0.6;
  transition: all 0.3s ease;
}
@media (max-width: 576px) {
  footer .footer-col .link-call {
    width: 100%;
    text-align: center;
    padding: 5px 0;
  }
  footer .footer-col .link-call-container {
    flex-direction: column;
  }
}

.subfooter {
  width: 100%;
  margin-top: 90px;
  padding: 30px 15px;
  background: rgba(0, 0, 0, 0.6);
}
.subfooter .content {
  font-size: 0.8rem;
  opacity: 1;
  letter-spacing: 0.3px;
  margin: 0;
  color: #eee;
}
.subfooter .content-right {
  text-align: right;
  font-size: 0.9rem;
  opacity: 0.8;
  letter-spacing: 0.3px;
  margin: 0;
}
.subfooter .content-right i {
  padding: 0 5px;
}
@media only screen and (max-width: 768px) {
  .subfooter .content-right {
    text-align: left;
    margin-top: 5px;
  }
}

.insta-feed {
  display: flex;
  margin: 0 auto;
  padding: 0;
  border: 0;
  max-width: 600px;
  overflow: hidden;
  margin-top: 20px;
  margin-bottom: 20px;
  justify-content: center;
}
@media only screen and (max-width: 768px) {
  .insta-feed {
    max-width: 350px;
  }
}

.instagram-media {
  display: block;
  margin: 0 auto;
  padding: 0;
  border: 0;
  min-height: 500px;
  overflow: hidden;
}
@media only screen and (max-width: 768px) {
  .instagram-media {
    min-height: 300px;
    min-width: 300px;
  }
}

.instagram-link {
  display: block;
  margin: 0 auto;
  padding: 10px 10px;
  max-width: 400px;
  border: 2px solid #c7ab5a;
  border-radius: 5px;
  background-color: #272727;
  margin-top: 20px;
  margin-bottom: 20px;
  transition: all 0.3s ease;
  color: #c7ab5a;
  text-decoration: none;
  font-size: 18px;
  font-weight: bold;
}
.instagram-link:hover {
  color: #fff;
  background-color: #c7ab5a;
  transition: all 0.3s ease;
}

.embed-container {
  border: 3px solid #c7ab5a;
  border-radius: 5px;
  padding: 20px;
  background-color: #272727;
  margin: 20px 0;
}

.features img {
  width: 80%;
  height: auto;
  object-fit: cover;
}

.features .content {
  padding: 20px;
}

.features .link {
  display: inline-block;
  margin-top: 5px;
  color: #c7ab5a;
  text-decoration: none;
  font-weight: bold;
  border-bottom: 2px solid #c7ab5a;
}

.features .link:hover {
  color: #fff;
  background-color: #c7ab5a;
  transition: all 0.3s ease;
}

.features .link .shine {
  display: none;
}

.footer-col .contact-info .info-item {
  display: flex;
  align-items: center;
  margin: 5px 0;
  font-size: 14px;
}

.footer-col .contact-info .info-item i {
  margin-right: 10px;
  color: #c8b16f;
}

.footer-col .content .link a {
  color: #c8b16f;
  text-decoration: none;
}

.footer-col .content .link a:hover {
  text-decoration: underline;
}

.footer-col .socialicon {
  width: 40px;
  height: 40px;
  background: #444;
  color: #fff;
  transition: background 0.3s ease;
}

.footer-col .socialicon:hover {
  background: #c8b16f;
}

.subfooter {
  background: #222;
  padding: 10px 0;
  color: #fff;
  text-align: center;
  font-size: 14px;
}

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

/** portofolio **/
.AppContainer {
  color: #fff;
  position: relative;
  z-index: 99;
  height: 100%;
  width: 100%;
  background: none;
}
.AppContainer .gallery-container {
  justify-content: center;
  flex-wrap: wrap;
}
.AppContainer .gallery-container .react-photo-gallery--gallery {
  color: #fff;
}

.lightbox-portal {
  position: relative;
  z-index: 999;
}
.lightbox-portal h4 {
  font-weight: 700;
}

.btnLright {
  color: #fff;
  font-size: 21px !important;
  right: 10px !important;
}

.btnLleft {
  color: #fff;
  font-size: 21px !important;
  left: 10px !important;
}

.closeL {
  font-size: 21px !important;
  position: absolute;
  top: 10px;
  right: 10px;
}

.MainGimg {
  transform: scale(1);
  transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.MainGimg .overlayCap {
  font-size: 1.5rem;
  width: 100%;
  bottom: 15px;
  padding-left: 20px;
  font-weight: 600;
  left: 0;
  z-index: 1;
}
.MainGimg:before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, left bottom, from(transparent), to(rgba(0, 0, 0, 0.5)));
  bottom: 0;
  left: 0;
  z-index: 1;
}
.MainGimg:hover {
  transform: scale(1.01);
  box-shadow: 0 10px 12px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  transition: all 0.3s ease;
  z-index: 2;
}
.MainGimg .overlayDesc {
  position: absolute;
  bottom: 50px;
  left: 0;
  width: 100%;
  padding: 10px 20px;
  z-index: 1;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.8rem;
}

/** contact **/
.form-side {
  padding: 30px 40px;
  background: #111;
  border-radius: 4px;
}

.text-side {
  padding: 15px 0;
  margin-top: 15px;
}
.text-side .address {
  padding-top: 0px;
  line-height: 1.6;
}
.text-side .address .heading {
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 1px;
}
.text-side .address .list {
  position: relative;
  max-width: 320px;
  display: block;
  padding: 5px 0 15px;
  padding-left: 40px;
}
.text-side .address .list i {
  position: absolute;
  top: 5px;
  left: 5px;
  font-size: 1.3rem;
  display: inline-block;
}
.text-side .address .list a {
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
}
.text-side .address .list a:hover {
  color: #c8b16f;
  transition: all 0.3s ease;
}

.formcontact {
  display: block;
  width: 100%;
}
.formcontact label {
  display: block;
  width: 100%;
  margin-bottom: 5px;
}
.formcontact input {
  width: 100%;
  font-size: 0.9rem;
  width: 100%;
  padding: 8px 10px;
  border: 1px solid #ebebeb;
  margin-bottom: 15px;
}
.formcontact textarea {
  font-size: 0.9rem;
  width: 100%;
  padding: 8px 10px;
  border: 1px solid #ebebeb;
  margin-bottom: 15px;
}
.formcontact .msg-error {
  font-size: 0.87rem;
  opacity: 0.8;
  padding: 5px 0;
}
.formcontact button {
  position: relative;
  overflow: hidden;
  font-size: 11pt;
  color: #fff;
  background: none;
  border: 2px solid #c8b16f;
  border-radius: 0;
  padding: 8px 50px;
  margin-top: 15px;
  transition-delay: 0s;
  z-index: 0;
}
.formcontact button span {
  color: #fff;
  position: relative;
  z-index: 3;
}
.formcontact button::before {
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: absolute;
  background-image: linear-gradient(to left, #c8b16f, #c7ab5a);
  opacity: 0;
  z-index: 1;
  transition: all 0.3s ease;
}
.formcontact button:hover::before {
  opacity: 1;
  transition: all 0.3s ease;
}
.formcontact button:hover .shine {
  animation: sheen 1s alternate;
}

#success.show, #failed.show {
  display: block !important;
}
#success.hide, #failed.hide {
  display: none;
}

#buttonsent.show {
  pointer-events: none;
}

#service, #events {
  display: block;
  position: relative;
}
#service .left, #events .left {
  display: block;
  position: relative;
}
#service .left .mainimg, #events .left .mainimg {
  width: 100%;
  height: auto;
  position: relative;
  margin-bottom: 15px;
}
#service .left .mainimg img, #events .left .mainimg img {
  width: 100%;
  height: auto;
  object-fit: cover;
}
#service .left .content .title, #events .left .content .title {
  font-size: 1.7rem;
  font-weight: 500;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  padding: 15px 0;
}
#service .left .content .desc, #events .left .content .desc {
  letter-spacing: 0.3px;
}
#service .left .content .desc blockquote, #events .left .content .desc blockquote {
  font-size: 95%;
  padding: 25px;
  margin: 1.8rem 0 1.5rem;
  font-style: italic;
  background: #333;
  border-left: 4px solid #c8b16f;
}
#service .right .services-list, #events .right .services-list {
  padding: 0;
  margin: 0;
  list-style: none;
}
#service .right .services-list li, #events .right .services-list li {
  position: relative;
}
#service .right .services-list li a, #events .right .services-list li a {
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.6px;
  display: block;
  padding: 14px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: #333;
  transition: all 0.3s ease;
  cursor: pointer;
  color: #fff;
  text-decoration: none;
}
#service .right .services-list li a:hover, #events .right .services-list li a:hover {
  background: #555;
  transition: all 0.3s ease;
}
#service .right .services-list li a.active, #events .right .services-list li a.active {
  background: #555;
}
#service .bannerservice, #events .bannerservice {
  position: relative;
  padding: 50px 20px;
  margin-top: 30px;
  text-align: center;
}
#service .bannerservice .imgbg, #events .bannerservice .imgbg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
#service .bannerservice .imgbg img, #events .bannerservice .imgbg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#service .bannerservice .contb, #events .bannerservice .contb {
  position: relative;
  z-index: 2;
}
#service .bannerservice .contb .headingb, #events .bannerservice .contb .headingb {
  font-size: 1.7rem;
  font-weight: 500;
}
#service .bannerservice .contb .descb, #events .bannerservice .contb .descb {
  font-size: 1rem;
}
#service .bannerservice .contb .btn, #events .bannerservice .contb .btn {
  padding: 10px 20px;
  text-align: center;
  margin-top: 20px;
}
#service .bannerservice:before, #events .bannerservice:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
}

#events .recent-post li {
  list-style-type: none;
  border: 2px solid #c7ab5a; /* Add a light border */
  margin-bottom: 20px;
  background-color: #111;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Add a subtle shadow */
  transition: box-shadow 0.3s ease-in-out; /* Smooth transition for hover effect */
  display: flex;
  align-items: center;
  justify-content: center;
}
#events .recent-post li:hover {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2); /* Darker shadow on hover */
}
#events .recent-post .img {
  width: 100%; /* Ensure the image covers the width of the box */
  overflow: hidden; /* Hide parts of the image that don't fit */
}
#events .recent-post .img img {
  width: 100%; /* Make images stretch to cover the width */
  height: auto; /* Adjust height automatically */
  transition: transform 0.3s ease-in-out; /* Smooth transition for image transform */
}
#events .recent-post .img:hover img {
  transform: scale(1.05); /* Slightly zoom in on hover */
}
#events .recent-post .contblog {
  padding: 15px; /* Add padding around the content for spacing */
}
#events .recent-post .title {
  margin-top: 0; /* Remove any default margin from the top of titles */
  font-size: 25px; /* Specify font size for consistency */
}
#events .recent-post .datetime, #events .recent-post .descblog {
  margin-top: 10px; /* Add some space above date/time and description */
}
#events .buttonEvent {
  margin-top: 15px; /* Add some space above the button */
}
#events h3 {
  width: max-content;
  font-size: 1.6rem;
  margin-bottom: 30px;
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(200, 177, 111, 0.6);
  text-align: center;
}

#newevents .recent-post {
  list-style: none;
  color: #fff;
  padding: 5px;
  margin: 0 0 45px;
}
#newevents .recent-post a.recent {
  color: #fff;
  text-decoration: none;
  display: flex;
  margin-top: 15px;
  margin-bottom: 15px;
}
#newevents .recent-post a.recent .img {
  width: 50%;
  height: 20%;
  overflow: hidden;
  margin: 10px;
  border: 3px solid #c8b16f;
}
#newevents .recent-post a.recent .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#newevents .recent-post a.recent .contblog {
  padding: 9px;
  width: 70%;
  text-align: center;
}
#newevents .recent-post a.recent .contblog .title {
  font-size: 1.1rem;
  font-weight: 500;
  text-decoration: underline;
}
#newevents .recent-post a.recent .contblog .datetime {
  font-size: 0.9rem;
  opacity: 0.8;
  color: #c8b16f;
  margin-top: 5px;
  margin-bottom: 5px;
}
#newevents .recent-post a.recent .contblog .descblog {
  font-size: 0.9rem;
}
@media (min-width: 768px) {
  #newevents .recent-post a.recent .contblog {
    padding-top: 50px;
  }
}
@media (max-width: 768px) {
  #newevents .recent-post a.recent {
    flex-direction: column;
  }
  #newevents .recent-post a.recent .img {
    width: 80%;
    height: auto;
    margin: 0 auto;
    margin-bottom: 10px;
    order: -1;
    display: flex;
    justify-content: center;
  }
  #newevents .recent-post a.recent .img img {
    max-width: 100%;
    height: auto;
  }
  #newevents .recent-post a.recent .contblog {
    width: 100%;
  }
}
@media (max-width: 768px) and (min-width: 768px) {
  #newevents .recent-post a.recent .contblog {
    padding-top: 50px;
  }
}

.buttonEvent {
  position: relative;
  background: #444;
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  border: none;
  letter-spacing: 0.1rem;
  font-size: 1rem;
  padding: 1rem 3rem;
  transition: 0.2s;
}

.buttonEvent:hover {
  letter-spacing: 0.2rem;
  padding: 1.1rem 3.1rem;
  background: #c7ab5a;
  color: #c7ab5a;
  animation: box 3s infinite;
}

.buttonEvent::before {
  content: "";
  position: absolute;
  inset: 2px;
  background: #272822;
}

.buttonEvent span {
  position: relative;
  z-index: 1;
}

.buttonEvent i {
  position: absolute;
  inset: 0;
  display: block;
}

.buttonEvent i::before {
  content: "";
  position: absolute;
  width: 10px;
  height: 2px;
  left: 80%;
  top: -2px;
  border: 2px solid #c7ab5a;
  background: #272822;
  transition: 0.2s;
}

.buttonEvent:hover i::before {
  width: 15px;
  left: 20%;
  animation: move 3s infinite;
}

.buttonEvent i::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 2px;
  left: 20%;
  bottom: -2px;
  border: 2px solid #c7ab5a;
  background: #272822;
  transition: 0.2s;
}

.buttonEvent:hover i::after {
  width: 15px;
  left: 80%;
  animation: move 3s infinite;
}

@keyframes move {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(5px);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes box {
  0% {
    box-shadow: #27272c;
  }
  50% {
    box-shadow: 0 0 25px #c7ab5a;
  }
  100% {
    box-shadow: #27272c;
  }
}
/*** media all ***/
@media only screen and (max-width: 1199px) {
  .item-dropdown {
    position: relative;
    width: max-content;
    inset: unset;
    padding-top: 10px;
    border: 0;
    background: none;
  }
  .item-dropdown .dropdown a {
    padding: 10px 10px 10px 10px;
    width: max-content;
    text-align: left;
    left: 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  }
  .navbar {
    top: 0;
  }
}
@media only screen and (max-width: 1024px) {
  .m-10-hor {
    padding-left: 2%;
    padding-right: 2%;
  }
}
@media only screen and (max-width: 768px) {
  .breadcumb .mainbreadcumb .list {
    justify-content: left;
    text-align: left;
    margin-bottom: 30px;
  }
  .previousButton, .nextButton {
    opacity: 1 !important;
  }
}
.box {
  background-color: transparent;
  border-radius: 3px;
  color: #fff;
  position: relative;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 350px;
  height: 250px;
  transform-style: preserve-3d;
  perspective: 2000px;
  transition: 0.4s;
  text-align: center;
}
.box:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  border-top: 20px solid #fff;
  border-left: 20px solid #fff;
  box-sizing: border-box;
}
.box:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-bottom: 20px solid #fff;
  border-right: 20px solid #fff;
  box-sizing: border-box;
}
.box .fas {
  font-size: 25px;
  height: 50px;
  width: 50px;
  line-height: 50px !important;
  background-color: #fff;
  color: #c8b16f;
}
.box .fa2 {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 1;
}
.box .text {
  position: absolute;
  top: 30px;
  left: -30px;
  width: calc(100% + 60px);
  height: calc(100% - 60px);
  background-color: #c8b16f;
  border-radius: 3px;
  transition: 0.4s;
}
.box .text .fa1 {
  position: absolute;
  top: 0;
  left: 0;
}
.box .text div {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  text-align: center;
  width: 100%;
  padding: 30px 60px;
  line-height: 1.5;
  box-sizing: border-box;
}
.box .text div h3 {
  font-size: 30px;
  margin-bottom: 5px;
}
.box .text div p {
  font-size: 15px;
}
.box:hover {
  transform: translate(-50%, -50%) rotateY(-20deg) skewY(3deg);
}
.box:hover .text {
  transform: rotateY(20deg) skewY(-3deg);
}

.wrap-donorbox_hadith {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  position: relative;
  padding: 1rem 1.5rem;
  overflow: hidden; /* Hide the overflow to clip the image */
  z-index: 0;
}

.wrap-donorbox_hadith::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.6);
  pointer-events: none;
  z-index: 1;
}

.wrap-donorbox_hadith::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: -10%; /* Move the image to the left to hide 50% of it */
  width: 500%; /* Double the width to compensate for the left movement */
  background-image: url(https://m.media-amazon.com/images/I/71nvrnFKJ5L.jpg);
  background-size: contain;
  pointer-events: none;
  z-index: 0;
}

/* Add this CSS to your HomePopup.css file */
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.popup {
  background-color: #272727;
  max-width: 600px;
  width: 75%;
  height: 400px;
  margin: auto;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  position: relative;
  text-align: center;
  display: flex;
  flex-direction: column;
}

#close {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 20px;
  border: none;
  background: none;
  cursor: pointer;
  color: #666;
}

#close:hover {
  color: #fff;
}

.popup h2 {
  color: #fff;
  margin-bottom: 20px;
}

.popup p {
  color: #fff;
  line-height: 1.6;
  margin-bottom: 25px;
}

.popup a:hover {
  background-color: #0056b3; /* Darker shade of blue on hover */
}

@media (max-width: 600px) {
  .popup {
    transform: translate(-5px);
    width: 80%;
    height: 450px;
  }
}
.text-size-medium {
  font-size: 1.5rem;
  position: relative;
  text-decoration: underline;
  font-weight: bold;
  z-index: 2;
}

.text-size-small {
  font-size: 1.4rem;
  position: relative;
  font-weight: 300;
  z-index: 2;
  font-weight: bolder;
  text-align: center;
}

.text-block {
  color: #fff;
  margin-top: 1rem;
  margin-bottom: 1rem;
  font-family: arabic;
  font-weight: bolder;
  text-align: center;
  font-size: 2rem;
  position: relative;
  z-index: 2;
  text-align: center;
}

/* Shop */
.container-shop {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 20px;
  gap: 20px;
  padding: 20px;
  justify-content: center;
  align-items: start;
  max-width: 1200px;
  margin: auto;
}

.card-shop {
  border-radius: 10px;
  padding: 1rem;
  box-shadow: 0px 0px 30px 5px rgb(133, 133, 133);
  background: #bbb;
  max-height: 700px;
}

.product-image img {
  width: 100%;
  height: 350px;
  object-fit: contain;
  object-position: center;
}

.product-info {
  padding: 1rem;
  text-align: center;
}

.addcartButton {
  background-color: #111;
  color: #fff;
  border: none;
  padding: 10px 20px;
  cursor: pointer;
  display: inline-block;
  margin-top: 10px;
  text-decoration: none;
  transition: background-color 0.2s;
}

.addcartButton:hover {
  background-color: #0056b3; /* Darker shade on hover */
}

.buy-btn {
  background-color: #111;
  color: #fff;
  border: none;
  padding: 10px 20px;
  cursor: pointer;
  display: inline-block;
  margin-top: 10px;
  text-decoration: none;
  transition: background-color 0.2s;
}

.buy-btn:hover {
  background-color: #454545;
}

.item-name {
  color: black;
  font-size: 1.2rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 100%;
}

.cart-page {
  padding: 20px;
}

.cart-item {
  border-bottom: 1px solid #ccc;
  padding: 10px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.remove-item-btn, .clear-cart-btn, .checkout-btn {
  background-color: #007bff;
  color: white;
  border: none;
  padding: 5px 10px;
  cursor: pointer;
  margin-left: 10px;
  border-radius: 5px;
}

.remove-item-btn:hover, .clear-cart-btn:hover, .checkout-btn:hover {
  background-color: #0056b3;
}

.cart-actions {
  display: flex;
  justify-content: flex-end;
  padding-top: 20px;
}

/* New or updated styles */
.checkout-button-container {
  display: flex;
  justify-content: center; /* Center the checkout button horizontally */
  padding: 20px 0; /* Add some padding above and below the button */
}

.checkout-btn {
  background-color: #28a745; /* Green color for checkout button */
  color: white;
  border: none;
  padding: 10px 20px;
  cursor: pointer;
  font-size: 16px; /* Larger font size for better visibility */
  border-radius: 5px;
  transition: background-color 0.2s; /* Smooth transition for hover effect */
}

.checkout-btn:hover {
  background-color: #218838; /* Darker green on hover for better interaction feedback */
}

/* For medium devices (tablets, 768px and up) */
@media (max-width: 768px) {
  .card-shop {
    flex-basis: calc(50% - 2rem); /* Two items per row */
  }
  .container-shop {
    grid-template-columns: repeat(2, 1fr); /* Adjust to 2 columns for tablets */
  }
}
/* For small devices (phones, 600px and up) */
@media (max-width: 600px) {
  .card-shop {
    flex-basis: 100%; /* Adjust for better fit */
    padding: 1rem;
    margin: 0.5rem;
    height: auto; /* Let the height be content-driven */
  }
  .product-image {
    transform: translate(0, 0.5rem);
    padding-bottom: 10px;
  }
  .product-image .itself {
    transform: translate(0, 0);
  }
  .container-shop {
    grid-template-columns: 1fr; /* Adjust to 1 column for phones */
  }
}
/* Modal Background */
.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 1050;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Modal Content */
.modal-content {
  background-color: #fff;
  padding: 20px;
  border-radius: 8px;
  width: 90%;
  max-width: 500px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Form Styles */
.modal-content form {
  display: flex;
  flex-direction: column;
  grid-gap: 12px;
  gap: 12px;
}

.modal-content form input,
.modal-content form button {
  padding: 10px;
  border-radius: 4px;
  border: 1px solid #ccc;
  font-size: 16px;
}

/* Button Styles */
.modal-content form button {
  background-color: #007bff;
  color: white;
  cursor: pointer;
  transition: background-color 0.2s;
}

.modal-content form button:hover {
  background-color: #0056b3;
}

.modal-content form .cancel-btn {
  background-color: #6c757d;
}

.modal-content form .cancel-btn:hover {
  background-color: #545b62;
}

.cookiesContent {
  width: 420px;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #2e333c;
  color: white;
  text-align: center;
  border-radius: 20px;
  padding: 30px 30px;
}
.cookiesContent button.close {
  width: 30px;
  font-size: 20px;
  color: #c0c5cb;
  align-self: flex-end;
  background-color: transparent;
  border: none;
  margin-bottom: 10px;
}
.cookiesContent img {
  width: 82px;
  margin-bottom: 15px;
}
.cookiesContent p {
  margin-bottom: 40px;
  font-size: 18px;
}
.cookiesContent button.accept {
  background-color: #ed6755;
  border: none;
  border-radius: 5px;
  width: 200px;
  padding: 14px;
  font-size: 16px;
  color: white;
  box-shadow: 0px 6px 18px -5px rgb(237, 103, 85);
}

/* Container for the buttons */
.item-quantity-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100px; /* Adjust based on your layout */
}

/* General button styling */
.item-quantity-controls button {
  background-color: #007bff; /* Primary color */
  border: none;
  color: white;
  padding: 5px 10px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

/* Hover effects */
.item-quantity-controls button:hover {
  background-color: #0056b3; /* A darker shade of the primary color for hover state */
}

/* Section container styling to center the box */
#ticket {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 50vh;
  padding: 20px;
  background-color: #0f0f0f;
}

.ticket {
  width: 90%;
  max-width: 600px;
  padding: 20px;
  margin: auto;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.ticket iframe {
  width: 100%;
  border-radius: 8px;
}

.popupwindow {
  width: 100%;
  max-width: 600px;
  padding-left: 10px;
  padding-right: 10px;
  padding-top: 10px;
  padding-bottom: 5px;
  margin: 15px auto;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.popupwindow iframe {
  width: 100%;
  border-radius: 8px;
}

.donation-section {
  background-color: #1a1a1a;
  padding: 50px 0;
}

.donation-box {
  background-color: #333333;
  padding: 30px;
  border-radius: 4px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
  text-align: center;
  color: #ffffff;
}

.donation-options {
  margin-bottom: 20px;
}

.donation-options button {
  margin: 5px;
  padding: 10px 20px;
  background-color: #555555;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  color: #ffffff;
}

.add-to-cart-btn {
  background-color: #ff6600;
  color: #ffffff;
  padding: 10px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.checkbox input[type=checkbox] {
  margin-right: 5px;
}

.top_container {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100vw;
  height: 75vh;
  top: 0;
  left: 0;
  z-index: 999;
}

.volunteer-container {
  --font-family-primary: "Vollkorn", serif;
  --font-family-secondary: "PT Sans", sans-serif;
  --font-size-title: 32px;
  --line-height-title: 1.4;
  --font-size-caption: 14px;
  --line-height-caption: 1.2;
  --color-text: #000000;
  --color-highlight-primary: #c9b06b;
  --color-highlight-secondary: #ffd47e;
  --border-radius-primary: 32px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 20px;
  box-sizing: border-box;
}
.volunteer-container * {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
@media (min-width: 576px) {
  .volunteer-container {
    --font-size-title: 40px;
  }
}
.volunteer-container .card {
  max-width: 960px;
  background-color: #fff;
  border-radius: var(--border-radius-primary);
  box-shadow: 24px 24px 80px rgba(0, 0, 0, 0.1);
  padding: 20px 20px 28px 20px;
  box-sizing: border-box;
  margin: 20px;
  display: flex;
  flex-direction: column;
}
@media (min-width: 576px) {
  .volunteer-container .card {
    flex-direction: row;
    align-items: center;
    margin: 40px;
    padding: 32px;
  }
}
.volunteer-container .card__image {
  width: 100%;
  max-height: 300px;
  border-radius: var(--border-radius-primary);
  object-fit: cover;
  margin-bottom: 18px;
}
@media (min-width: 576px) {
  .volunteer-container .card__image {
    width: 45%;
    max-height: none;
    min-height: 400px;
    margin-bottom: 0;
  }
}
@media (min-width: 576px) {
  .volunteer-container .card__content {
    width: 55%;
    padding-left: 40px;
  }
}
.volunteer-container .card__date {
  display: block;
  font-family: var(--font-family-secondary);
  font-size: 17px;
  line-height: var(--line-height-caption);
  color: var(--color-text);
  margin-bottom: 6px;
}
@media (min-width: 576px) {
  .volunteer-container .card__date {
    margin-bottom: 8px;
  }
}
.volunteer-container .card__title {
  font-family: var(--font-family-primary);
  font-size: var(--font-size-title);
  line-height: var(--line-height-title);
  color: var(--color-text);
  -webkit-box-decoration-break: clone;
          box-decoration-break: clone;
  background-image: linear-gradient(90deg, var(--color-highlight-primary), var(--color-highlight-secondary));
  background-size: 100% 42%;
  background-repeat: no-repeat;
  background-position: 0 85%;
  padding: 0 4px;
  margin-left: -4px;
}

/*# sourceMappingURL=main.daf629fb.chunk.css.map*/