body,
input {
  font-family: 'Montserrat', sans-serif;
  color: #020202;
  font-size: 17px;
  letter-spacing: 0;
  font-weight: 700;
}

a {
  color: #020202;
  text-decoration: none;
}

h1:not(.text-logo),
h2,
h3,
h4,
h5,
h6,
.text-logo-wrapper {
  font-family: 'Roboto', sans-serif;
  font-size: 2.35em;
  letter-spacing: 0;
  font-weight: 900;
}

body {
  margin: 0;
  padding: 0;
  min-height: 100vh;
  position: relative;
  overflow: hidden; /* no scroll */
}

/* Full-page flex wrapper so main content is centered, socials sit at bottom */
.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Background video */
#background-wrapper {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
}

/* Background video wrapper */
.video-banner {
  position: absolute;
  inset: 0;
  overflow: hidden; /* crop edges / YouTube UI */
  z-index: -1;
}

/* Common iframe setup */
.video-banner iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  border: 0;
}

/* Viewports wider than 16:9 (most desktops / landscape) */
@media (min-aspect-ratio: 16/9) {
  .video-banner iframe {
    /* Slightly oversized to push Youtube UI corners off-screen */
    width: 112.5vw;
    height: 63.3vw; /* 112.5 * 9 / 16 */
  }
}

/* Viewports taller than 16:9 (phones in portrait, tall screens) */
@media (max-aspect-ratio: 16/9) {
  .video-banner iframe {
    /* Slightly oversized to push Youtube UI corners off-screen */
    width: 200vh;        /* ~16/9 * 112.5 */
    height: 112.5vh;
  }
}

.background-overlay {
  position: absolute;
  inset: 0;
  background-color: #ffffff;
  opacity: 0.9;
}

/* Main content area: takes remaining height and centers its children */
.section-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center; /* vertical center */
  align-items: center;     /* horizontal center */
  text-align: center;
  padding: 2rem 1.5rem 1.5rem;
  box-sizing: border-box;
  width: 100%;
}

.logo-wrapper {
  margin-bottom: 1.5rem;
}

.graphic-logo {
  max-height: 220px;
  height: auto;
  width: auto;
}

@media (max-width: 1024px) {
  .graphic-logo {
    max-height: 140px;
  }
}

.cmp-title {
  margin: 0 0 1.5rem;
}

.sect-block {
  margin-top: 20px;
}

.inner {
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: -13px;
  font-size: 14px;
  color: #e51521;
}

.sect-block span {
  font-size: 21px;
  line-height: 1.5em;
}

@media (max-width: 450px) {
  .inner {
    font-size: 12px;
  }

  .sect-block span {
    font-size: 18px;
  }

  .section-body h2 {
    font-size: 2.3em !important;
  }
}

/* Social icons row at bottom */
.social-list {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 1.25rem;
  margin: 0 0 1.2rem; /* small bottom gap */
  padding: 0;
}

.social-child a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.social-list i {
  font-size: 1.4em;
  transition: transform 0.15s ease, color 0.15s ease;
}

.social-list a:hover i {
  color: #e51521;
  transform: translateY(-1px);
}

/* Utility */
.w-100 {
  width: 100%;
}