:root {
  --primary-color: #0a1118;
  --primary-color-highlight: #233D54;
  --bs-body-bg: #FBF0F6;
  --bs-body-font-family: 'Montserrat', sans-serif;
}

html {
  scroll-behavior: smooth;
}

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

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

@media (min-width: 544px) {
  .steps {
    padding-top: 80px;
    padding-bottom: 80px;
  }
  .steps__section-thumbnail {
    height: auto;
  }
}

@media (min-width: 1200px) {
  .container-custom {
    width: 1140px;
  }
}

@media (min-width: 1400px) {
  .container-custom {
    width: 1340px;
  }
}

@media (min-width: 1600px) {
  .container-custom {
    width: 1520px;
  }
}

.container-custom {
  width: 100%;
  padding: 0 1rem;
  margin: 0 auto;
}

#body #discover {
  margin-left: 4%;
}

#body .header {
  z-index: 2;
}

#body .header .switch {
  background: #343D5B;
  border-radius: 1000px;
  border: none;
  position: relative;
  cursor: pointer;
  display: flex;
  outline: none;
}

#body .header .switch::after {
  content: "";
  display: block;
  width: 30px;
  height: 30px;
  position: absolute;
  background: #F1F1F1;
  top: 0;
  left: 0;
  right: unset;
  border-radius: 100px;
  transition: .3s ease all;
  box-shadow: 0px 0px 2px 2px rgba(0, 0, 0, 0.2);
}

#body .header .switch.active {
  background-color: orange;
  color: #000;
}

#body .header .switch.active::after {
  right: 0;
  left: unset;
}

#body .header .switch .span {
  width: 30px;
  height: 30px;
  line-height: 30px;
  display: block;
  background: none;
  color: #fff;
}

#body #navbar {
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background-color: #fff7e7;
  z-index: 4;
}

#body #navbar .dropdown-nav__container {
  height: 100vh;
  padding: 0 1rem;
}

#body #navbar .dropdown-nav__closeNavBtn {
  position: absolute;
  top: 20px;
  right: 16px;
  background-color: rgba(255, 255, 255, 0.6);
}

#body .hero {
  position: relative;
  height: 100vh;
  background-color: var(--primary-color);
  overflow: hidden;
  /* 
        * CUSTOM CONTAINER
        */
}

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

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

#body .hero .container-custom {
  width: 100%;
  padding: 0 1rem;
  margin: 0 auto;
  z-index: 1;
}

#body .hero .container-custom .hero__content-width {
  max-width: 540px;
}

#body .hero .hero__scroll-btn {
  position: absolute;
  left: 50%;
  bottom: 30px;
  transform: translateX(-50%);
  z-index: 1;
  color: var(--bs-light);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
}

#body .hero .hero__scroll-btn .bi {
  transition-delay: 1.1s;
  animation: bounce 1s infinite alternate;
}

#body .hero .hero__scroll-btn:hover {
  color: var(--bs-light);
  opacity: 0.8;
}

#body .steps {
  padding-top: 40px;
  padding-bottom: 40px;
}

#body .footer .border-highlight {
  border-top: 1px solid var(--primary-color-highlight);
}

.steps__section-thumbnail {
  height: auto;
  object-fit: cover;
  margin: 0 auto;
}

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

.steps--background {
  background-color: #FEF8F9;
}

#section3 {
  background-color: rgba(255, 195, 98, 0.219);
}

@keyframes bounce {
  from {
    transform: translateY(3px);
  }
  to {
    transform: translateY(-10px);
  }
}

body.dark {
  background-color: var(--primary-color);
  color: white;
}

body.dark a {
  color: white;
}

body.dark #section2 {
  background-color: #18222c;
}

body.dark #section3 {
  background-color: #18222c;
}

body.dark #section3 h3 {
  color: white;
}

body.dark #section3 p {
  color: white;
}
