/* Hide scrollbar for Chrome, Safari and Opera */
::-webkit-scrollbar {
  display: none;
}

html {
  scrollbar-width: none; /* For Firefox */
  -ms-overflow-style: none; /* For Internet Explorer and Edge */
}

body, html {
  margin: 0;
  padding: 0;
  width: auto;
  background-color: #000;
  color: #fff;
}

.notindex{
  background: radial-gradient(ellipse at center, #111 20%, #000 100%);
  background-attachment: fixed;
  height: 100%;
  min-height: 100vh;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow-x: hidden;
}
.video-section {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
}

#background-video {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.navbar {
  background-color: #000;
}

.navbar .nav-link {
  color: #fff;
}

.navbar .nav-link:hover,
.navbar .nav-link:focus,
.navbar .nav-item.active .nav-link {
  color: #00816d;
}

.contact-form-container {
  position: fixed;
  top: 10%;
  right: 0;
  width: 70%;
  height: 80%;
  background-color: #1c1c1c;
  border-radius: 5px;
  overflow: hidden;
}

.contact-info,
.form-overlay {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  padding: 30px;
}

.form-overlay {
  right: -100%;
  background-color: rgba(28, 28, 28, 1);
  transition: right 1s;
}

.contact-info {
  left: 0;
}

label {
  font-weight: bold;
}

form.contact-form {
  background-color: transparent;
}

input[type="text"], 
input[type="email"], 
textarea {
  background-color: #333333;
  border: none;
  color: white;
}

input[type="text"]::placeholder,
input[type="email"]::placeholder,
textarea::placeholder {
  color: #999999;
}

input[type="text"]:focus,
input[type="email"]:focus,
textarea:focus {
  outline: none;
  border-bottom: 2px solid #00816d;
  background-color: #333333;
}

.btn-primary {
  background-color: #00816d;
  border-color: #00816d;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active {
  background-color: #006a5b;
  border-color: #006a5b;
}

.ripple {
  position: absolute;
  height: 10px;
  width: 200%;
  transform: translateX(-50%) scaleX(0);
  transform-origin: center;
  animation: ripple 1s ease-out forwards;
  background-color: rgba(255, 255, 255, 0.5);
  pointer-events: none;
}

@keyframes ripple {
  0% {
      transform: translateX(-50%) scaleX(0);
      opacity: 1;
  }
  100% {
      transform: translateX(-50%) scaleX(1);
      opacity: 0;
  }
}

.ripples-container {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  pointer-events: none;
  overflow: hidden;
}
main {
  background-color: #222;
  display: flex;
  margin: 0%;
  padding: 0%;
}

footer {
  background-color: #000;
}

.content {
  margin-top: 10%;
  margin-bottom: 10%;
}

.content h1,
.content h2 {
  margin-bottom: 20px;
}

h3 {
  font-size: 1.2em;
}

.content ul {
  padding-left: 20px;
}

.text-offset {
  margin-top: 1%;
}

@media (max-width: 992px) {
  .contact-info,
  .form-overlay {
      margin-top: 10%; /* Adjust based on the height of your navbar */
  }
}

@media (max-width: 767px) {
  .contact-form-container {
      width: 100%;
      top: 0;
      height: 100%;
  }

  .top-row {
      margin-top: 20%;
  }
}

@media (max-width: 575px) {
  .contact-form-container {
      width: 100%;
      top: 0;
      height: 100%;
  }
}



/* Block Reveal Effect */

.block-effect {
  --td: 1s;
}

.block-reveal {
  --t: calc(var(--td) + var(--d));
  color: transparent;
  position: relative;
  overflow: hidden;
  animation: revealBlock 0s var(--t) forwards;
  --bc: #fff;
  --d: .5s
}

.block-reveal::after {
  content: '';
  width: 0%;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  background: var(--bc);
  animation: revealingIn var(--td) var(--d) forwards, revealingOut var(--td) var(--t) forwards;
}

@keyframes revealBlock {
  100% {
    color: #fff;
  }
}

@keyframes revealingIn {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}

@keyframes revealingOut {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(100%);
  }
}
