html {
  
}

body {
  font-family: 'Ubuntu', sans-serif;
  scroll-behavior: smooth;
}
section {
  padding: 80px 0;
}
.navbar-brand {
  font-weight: 700;
  font-size: 1.5rem;
}

#nav-logo {
    height: 4rem;
    border-radius: 50%;
}

.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    overflow: hidden;
}

.bg-video {
    position: absolute;
    top: 0;
    left: 0;
    min-width: 100%;
    min-height: 100%;
    object-fit: cover;
    z-index: -1;
}
  
.hero h1 {
  font-size: 4rem;
  font-weight: 700;
  text-align: left;
}

#testimonials img {
  max-height: 250px;
  object-fit: contain;
  width: 100%;
}

footer {
  background: #212529;
  color: white;
  text-align: center;
  padding: 20px 0;
}