/* Videos */

.videos {
  position: relative;
  margin: 3rem 0 0;
  padding: 0 3rem;
}

h2 {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: lighter;
  text-transform: uppercase;
  color: white;
  margin-bottom: 3rem;
}

.youtube {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 3rem;
  /* margin-bottom: 7rem; */
  overflow-x: auto;
  flex-wrap: nowrap;
}

.youtube iframe {
  border-radius: var(--border-radius);
  flex: 0 0 auto;
}

.youtube::-webkit-scrollbar {
  display: none;
}

/* Footer */

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.main-footer {
  margin-top: auto;
}

