@font-face {
  font-family: Montserrat;
  src: url("../assets/fonts/Montserrat/Montserrat-ExtraBold.ttf");
}

@font-face {
  font-family: Montserrat-Meduim;
  src: url("../assets/fonts/Montserrat/Montserrat-Medium.ttf");
}

*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

:root {
  --Montserrat: Montserrat;
  --Montserrat-Medium: Montserrat-Meduim;
  --primary: #daa520;
  --light: #fff;
  --dark: #000;
}

html {
  font-size: 16px;
}

body {
  -ms-scroll-chaining: none;
  overscroll-behavior: none;
  overflow-x: hidden;
  font-family: var(--Montserrat-Medium);
  background-color: var(--dark);
}

.pin-spacer {
  height: 200vh; /* For creating scrollable space */
  background: var(--dark); /* Match this with your body background */
}

body::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  border-radius: 10px;
  background-color: #b9b9b9fa;
}

body::-webkit-scrollbar {
  width: 6px;
  background-color: #42b62500;
}

body::-webkit-scrollbar-thumb {
  border-radius: 10px;
  -webkit-box-shadow: inset 0 0 6px rgba(190, 13, 13, 0.2);
  background-color: var(--dark);
}

.loader {
  width: 50px;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 8px solid var(--dark);
  border-right-color: var(--light);
  position: relative;
  -webkit-animation: l24 1s infinite linear;
  animation: l24 1s infinite linear;
}

.loader:before,
.loader:after {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: inherit;
  -webkit-animation: inherit;
  animation: inherit;
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
}
.loader:after {
  -webkit-animation-duration: 4s;
  animation-duration: 4s;
}

@-webkit-keyframes l24 {
  100% {
    -webkit-transform: rotate(1turn);
    transform: rotate(1turn);
  }
}

@keyframes l24 {
  100% {
    -webkit-transform: rotate(1turn);
    transform: rotate(1turn);
  }
}

.yt-loader {
  display: none;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.yt-loader.show {
  display: block;
}

.animate-section {
  position: relative;
  height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  overflow: hidden;
}

.animate-sky {
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  overflow: hidden;
  left: 0;
  z-index: 11;
}

.animate-sky img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.animate-txt {
  position: absolute;
  color: white;
  text-align: center;
  z-index: 12;
  text-shadow: 2px 2px var(--dark);
  font-family: var(--Montserrat-Medium);
  left: 50%;
  font-size: 2.4vw;
  text-wrap: nowrap;
  text-transform: uppercase;
  font-weight: 500;
  top: 8%;
  -webkit-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
}

.animate-txt p {
  margin: 0 !important;
}

.animate-logo {
  position: absolute;
  opacity: 0;
  left: 50%;
  top: 50%;
  width: 300px;
  max-width: 90%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 12;
}

.animate-logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.animate-button {
  position: absolute;
  opacity: 0;
  width: 100%;
  bottom: 0;
  left: 50%;
  -webkit-transform: translate(-50%, 0%);
  -ms-transform: translate(-50%, 0%);
  transform: translate(-50%, 0%);
  text-align: center;
  background: transparent;
  z-index: 9999;
  padding: 0.65rem 1rem;
}

.btn-primary {
  padding: 0.75rem 2rem;
  border-radius: 100px;
  border: none;
  font-weight: 500;
  font-size: 1.15rem;
  /* line-height: 1rem; */
  background-color: var(--dark);
  color: var(--primary);
  font-family: var(--Montserrat);
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  -webkit-animation: pulse-black 2s infinite;
  animation: pulse-black 2s infinite;
}

@-webkit-keyframes pulse-black {
  0% {
    -webkit-transform: scale(0.95);
    transform: scale(0.95);
    -webkit-box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.7);
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.7);
  }

  70% {
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-box-shadow: 0 0 0 10px rgba(0, 0, 0, 0);
    box-shadow: 0 0 0 10px rgba(0, 0, 0, 0);
  }

  100% {
    -webkit-transform: scale(0.95);
    transform: scale(0.95);
    -webkit-box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
  }
}

@keyframes pulse-black {
  0% {
    -webkit-transform: scale(0.95);
    transform: scale(0.95);
    -webkit-box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.7);
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.7);
  }

  70% {
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-box-shadow: 0 0 0 10px rgba(0, 0, 0, 0);
    box-shadow: 0 0 0 10px rgba(0, 0, 0, 0);
  }

  100% {
    -webkit-transform: scale(0.95);
    transform: scale(0.95);
    -webkit-box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
  }
}

.invert {
  -webkit-filter: invert(1);
  filter: invert(1);
}

.section-video {
  position: relative;
  width: 100%;
  height: 100px;
}

.animate-section.video-animate {
  height: 100%;
  padding: 1.5rem 0 0 0;
}

.animate-section.video-animate::after {
  content: "";
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: url("../assets/images/overlay.jpg") no-repeat center center/cover;
}

.video-container {
  width: 90%;
  height: 90%;
  margin: 1.5rem auto;
}

.video-container video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.animate-section.slider-div {
  height: 260px;
  background: black;
}

.section-title {
  /* width: 80%; */
  margin: 3rem auto auto auto;
  font-size: 1.5rem;
  color: var(--light);
  font-weight: 500;
}

.modal-title {
  font-weight: 400;
  font-size: 1rem;
}

.form-control.custom-control {
  background: transparent;
  color: var(--dark);
  border: none;
  padding: 0.6rem 0.5rem 0.6rem 2.85rem;
}

.form-control.custom-control:focus {
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}

::-webkit-input-placeholder {
  color: var(--dark) !important;
}

::-moz-placeholder {
  color: var(--dark) !important;
}

:-ms-input-placeholder {
  color: var(--dark) !important;
}

::-ms-input-placeholder {
  color: var(--dark) !important;
}

::placeholder {
  color: var(--dark) !important;
}

.button-title {
  font-family: var(--Montserrat-Medium);
  text-shadow: 2px 2px var(--dark);
  font-size: 2.5vw;
  color: var(--light);
  text-transform: uppercase;
  margin: auto auto 1.5rem auto;
}

.modal-title {
  font-size: 1.25rem;
  font-weight: 600;
  text-transform: uppercase;
}

.modal-subtitle {
  margin: 1rem auto;
  font-size: 0.9rem;
  font-weight: 500;
}

.modal-logo img {
  width: 110px;
}

.amount {
  color: var(--dark);
  font-size: 1rem;
  font-weight: 500;
}

.btn-submit {
  padding: 0.55rem 1.5rem;
  border-radius: 100px;
  border: none;
  font-weight: 600;
  font-size: 0.95rem;
  /* line-height: 1rem; */
  background-color: var(--primary);
  color: var(--light);
  font-family: var(--Montserrat-Medium);
}

.animate-section.abbout-animate {
  height: 100%;
}

.about-logo {
  width: 200px;
  margin: auto;
}

.about-title {
  color: var(--primary);
  font-size: 1.5rem;
  font-weight: 600;
  text-align: center;
}

.about-subtitle {
  color: var(--light);
  font-size: 1rem;
  margin: 0.5rem auto 2rem auto;
  text-wrap: balance;
  font-weight: 400;
  text-align: center;
  opacity: 0.7;
}

.about-logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.input-content {
  position: relative;
  border: 1px solid var(--primary);
  border-radius: 46px;
  overflow: hidden;
}

.input-content .input-icon {
  position: absolute;
  height: 100%;
  background-color: #daa5201f;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 40px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.input-content .input-icon i {
  color: var(--primary);
  font-size: 1.1rem;
}

.form-check-input {
  border: 1px solid var(--primary);
}

.form-check-input:checked {
  background-color: var(--primary);
  border-color: var(--primary);
}

footer {
  background-color: var(--dark);
  padding: 1rem 0.5rem;
  color: var(--light);
}

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

.thank-you {
  background-color: #ffd366;
  width: 100%;
  height: 100vh;
  color: white;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.scroll-main-div.show {
  display: block;
  -webkit-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
}

.scroll-main-div {
  display: none;
  -webkit-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
}

.scroll-main {
  position: fixed;
  left: 50%;
  bottom: 2%;
  -webkit-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  z-index: 999;
}

.scroll {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 0.5rem;
  color: white;
}

.scroll-icon {
  /* font-size: 1.15rem; */
  width: 60px;
  /* animation: scroll 2s ease infinite; */
  height: 60px;
  position: relative;
}

.scroll-icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

@-webkit-keyframes scroll {
  0% {
    bottom: 0;
  }
  50% {
    bottom: 10px;
  }
  100% {
    bottom: 0;
  }
}

@keyframes scroll {
  0% {
    bottom: 0;
  }
  50% {
    bottom: 10px;
  }
  100% {
    bottom: 0;
  }
}

.scroll-txt {
  font-size: 1.15rem;
  font-weight: 600;
  color: white;
}

.video {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2.5rem;
}

.video-content {
  width: 25rem;
  max-width: 100%;
  border-radius: 16px;
  overflow: hidden;
  z-index: 1;
  height: 550px;
  position: relative;
}

.video-content:hover .loading-img {
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  -webkit-transform: translate(-50%, -50%) scale(1);
  -ms-transform: translate(-50%, -50%) scale(1);
  transform: translate(-50%, -50%) scale(1);
}

.loading-img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  -webkit-transform: translate(-50%, -50%) scale(0.85);
  -ms-transform: translate(-50%, -50%) scale(0.85);
  transform: translate(-50%, -50%) scale(0.85);
}

.video-content iframe {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.video-content img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.video-carousel .owl-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 1rem auto;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.video-carousel .owl-dots {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 0.5rem;
  margin: 1rem auto 1.5rem auto;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.video-carousel .owl-dots button {
  width: 10px;
  height: 10px;
  border-radius: 100px;
  background-color: white !important;
  -webkit-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
  opacity: 0.3;
}

.video-carousel .owl-dots button.active {
  opacity: 1;
  -webkit-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
}

.video-carousel .owl-item:not(.active.center) .video-content {
  position: relative;
  -webkit-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
  /* -webkit-transform: scale(0.8);
  -ms-transform: scale(0.8);
  transform: scale(0.8); */

  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}

.video-carousel .owl-item:not(.active.center) .video-content::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  inset: 0;
  background-color: #0000004b;
}

.video-carousel .owl-item.active.center .video-content {
  -webkit-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
  position: relative;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}

.animate-section.about-animate {
  height: 100%;
  padding: 3rem 0 3rem 0;
  background-color: var(--light);
}

#mainModal .modal-content {
  position: relative;
  padding: 0rem 3rem;
}

.modal-content .btn-close {
  position: absolute;
  top: 1%;
  right: 1%;
}

.rotate {
  transform: scale(-1, 1);
}

.thankyou-title {
  color: var(--dark);
  font-size: 2rem;
  font-weight: 700;
}

.thankyou-title-2 {
  color: var(--dark);
  font-size: 1.5rem;
}

.thankyou-subtitle {
  color: var(--dark);
  font-size: 1rem;
  font-weight: 500;
}

.mobile-feedback {
  display: none;
  font-size: 0.8rem;
  font-weight: 400;
  margin: 0 0 -0.85rem 0;
  color: rgb(255, 0, 0);
}

/* loader css */

.form-loader {
  display: none;
}

.form-loader-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  width: max-content;
  background-color: #000;
  margin: auto;
  padding: 0.45rem 0.75rem 0.3rem 0.75rem;
  border-radius: 4px;
}

.form-loader-wrapper .loader-txt {
  color: #fff;
  font-size: 0.95rem;
  font-weight: 600;
}

.f-loader {
  width: 25px;
  height: 25px;
  border: 4px solid #fff;
  border-bottom-color: transparent;
  border-radius: 50%;
  display: inline-block;
  box-sizing: border-box;
  animation: rotation 1s linear infinite;
}

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

/* loader css */

@media only screen and (max-width: 767px) {
  .animate-txt {
    font-size: 1.5rem;
    width: 95%;
    text-wrap: pretty;
    text-align: center;
  }

  .video-content {
    height: 450px;
  }

  .button-title {
    font-size: 1.5rem;
    width: 95%;
    text-wrap: pretty;
    text-align: center;
  }
}

@media only screen and (max-width: 567px) {
  .animate-logo {
    max-width: 580px;
  }

  .modal-logo img {
    width: 70px;
  }

  #mainModal .modal-content {
    padding: 0rem 1rem;
  }

  .modal-subtitle {
    margin: 0.5rem auto 0.75rem auto;
    font-size: 0.9rem;
    font-weight: 500;
  }

  .about-title {
    font-size: 1.1rem;
  }

  .btn-primary {
    font-size: 1rem;
  }
}
