:root {
  --primary-color: #1d252c;
  --primary-color-highlight: #233d14;
  --bs-body-font-family: "Montserrat", sans-serif;
}

/* START: General Styles */
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  overflow-x: hidden;
}

body.modal-open {
  padding-right: 0 !important;
}

a {
  color: var(--primary-color);
}

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

.text-muted-custom {
  color: #adb1b8;
}

.border-light {
  color: #adb1b8;
}

.hero__content-header {
  font-size: 70px;
  line-height: 1;
}
/* END: General Styles */

/* START: Header */
.header {
  z-index: 2;
  background-color: transparent;
}
/* END: Header */

/* START: Navbar */
.navbar {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 4;
  height: fit-content;
  padding: 0;
}

.navbar-dark .navbar-toggler {
  border-color: transparent;
}

.nav-link {
  padding: 15px 0;
}

.header-nav-item:hover {
  background-color: #252f38;
}

.dropdown-nav__container {
  height: fit-content;
  padding: 0 1rem;
}

.navlink-container {
  padding-top: 80px;
}
/* END: Navbar */

/* START: Hero */
.hero {
  position: relative;
  height: 100vh;
  background-color: var(--primary-color);
  overflow: hidden;
}

.hero__video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translateX(-50%) translateY(-50%);
}

.hero__overlay {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background-color: var(--primary-color);
  opacity: 0.5;
  z-index: 1;
}

.hero__content {
  z-index: 1;
}

.hero__scroll-btn {
  position: absolute;
  bottom: 10%;
  z-index: 1;
  left: 50%;
  transform: translateX(-50%);
  color: var(--bs-light);
}

.hero__scroll-btn:hover {
  color: var(--bs-light);
  opacity: 0.9;
}
/* END: Hero */

/* START: Feature Sections */
.feature__thumbnail {
  height: 240px;
  object-fit: cover;
}

.steps__content {
  background-color: #f7f8f9;
}

.steps__content-width {
  max-width: 456px;
  margin: 0 auto;
}

.steps__content-span {
  color: var(--primary-color);
  opacity: 0.8;
}
/* END: Feature Sections */

/* START: Form */
.get-notified {
  background-color: #e2e6ed;
}

.btn-dark.disabled,
.btn-dark:disabled {
  color: #fff;
  background-color: #252f38;
  border-color: #252f38;
}

.btn.disabled,
.btn:disabled,
fieldset:disabled .btn {
  opacity: 1;
}
/* END: Form */

/* START: Footer */
.footer {
  background-color: var(--primary-color);
}

.footer-container {
  border-top: 1px solid #252f38;
}

.nav-link:focus,
.nav-link:hover {
  color: #adb1b8;
}
/* END: Footer */

/* START: Media Query */
@media (min-width: 544px) {
  .feature__thumbnail {
    height: 100%;
    max-height: 400px;
    min-height: 400px;
  }
}

@media (min-width: 992px) {
  .hero__content-header {
    font-size: 100px;
  }

  .dropdown-nav__closeBtn {
    right: 48px;
    top: 18px;
  }
}
/* END: Media Query */
