@import url("//fonts.googleapis.com/css2?family=Adamina:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&display=swap");

*{
  --primary-color: #84a3c0;
  --primary-color-2: #3d70a0;
  --secondary-color: #b32138;
  border-width: 0;
  border-style: solid;
  border-color: rgba(0, 0, 0, 0);
  box-sizing: border-box;
}

body{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  background-color: #f5f5f5;
  font-family: 'Merienda', cursive;
  color: #333333;
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6{
  margin-top: 0;
  margin-bottom: 15px;
  font-weight: 600;
  color: var(--secondary-color);
}
.bg-secondary{
  width: 100%;
  height: auto;
  background-color: var(--secondary-color);
}
.bg-primary{
  width: 100%;
  height: auto;
  background-color: var(--primary-color);
}
.blue-text{
  color: var(--primary-color-2);
  font-weight: bold;
}

header{
  background-color: #ffffff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  padding: 20px 40px;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1000;
}

.nav-links{
  display: flex;
  gap: 20px;
}

.nav-links a{
  font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
  color: var(--primary-color-2);
  text-decoration: none;
}

.nav-links a:hover{
  color: var(--secondary-color);
  border-bottom: 2px solid var(--secondary-color);
  transition: color 0.3s ease;
}

.nav-links a::before{
  content: '';
  display: block;
  width: 0;
  height: 2px;
  background: var(--secondary-color);
  transition: width .3s;
}

.nav-links a.active{
  font-weight: bold;
  border-bottom: 2px solid var(--secondary-color);
}

/* .hero-section{
  width: 100%;
  padding: 2rem;
  display: flex;
  position: relative;
  min-height: 70svh;
  min-height: calc(70dvh - 150px);
  align-items: center;
  justify-content: center;
  background-image: url(/assets/home_screen.jpg);
  background-color: var(--primary-color);
  background-size: cover;
  background-position: center top;
  background-attachment: fixed;
  background-blend-mode: multiply;
} */

h1{
  letter-spacing: -.01em;
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Tt Tunnels, Arial, sans-serif;
  font-size: 9rem;
  font-weight: 900;
  line-height: 7.3rem;
}

a:hover{
  color: var(--secondary-color);
  text-decoration: none;
  border-bottom: 2px solid var(--secondary-color);
  transition: color 0.3s ease;
}

.hero-screen{
  display: flex;
  position: relative;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  height: calc(60vh - 150px);
  max-height: calc(70vh - 50px);
  background: url("/assets/background.mp4");
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
  background-color: #000000b7;
  background-blend-mode: darken;
}

.hero-video {
  inset: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero-overlay {
  height: 100%;
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.721);
  z-index: 2;
}

.hero-heading {
  margin-top: 200px;
  letter-spacing: 0;
  max-width: 900px;
}

.hero-content {
  max-width: 70%;
  position: absolute;
  z-index: 3;
  text-align: center;
  color: #ffffff;
  object-fit: contain;
}

.hero-content h1 {
  font-size: clamp(2rem, 4vw, 4rem);
}

.hero-content p {
  font-size: clamp(1.25rem, 1vw, 1.25rem);
  line-height: 1.5;
  word-spacing: 5px;
  margin-bottom: 2rem;
  font-family: 'Poppins', 'Times New Roman', Times, serif;
}

.blue-screen {
  color: #ffffff;
  display: inline;
  mix-blend-mode: screen;
}

.spacer__1 {
  width: 100%;
  height: 1rem;
}

.spacer__2 {
  width: 100%;
  height: 2rem;
}

section .container{
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 20px;
  margin-top: 100px auto;
}

.about-us-section{
  display: flex;
}

.about-us-section .image-grid{
  flex: 1;
  max-height: 200px;
}

.about-us-section .image-grid::-webkit-scrollbar{
  display: none;
}

.about-us-section img{
  max-width: 400px;
  height: auto;
  border-radius: 8px;
}

.about h1{}

.about p{
  line-height: 1.8;
  word-spacing: 5px;
  font-family: 'Times New Roman', Times, serif;
}

.main-content{
  min-height: 100dvb;
  max-width: 100%;
  margin: 0 auto;
  padding: 20px 20px;
}


.CTA{
  background: #fff;
  color: #000000b7;
  font-weight: 500;
  text-align: center;
  padding: 40px 20px;
}


.CTA h3{
  color: #fff;
  font-size: 26px;
  text-align: center;
  line-height: 1.2em;
  word-wrap: break-word;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-family: 'Merienda', cursive;
}

.avatar {
    height: 42px;
    width: 42px;
    margin: 0;
    vertical-align: unset;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
}

.Iv2Hbb {
    height: 100%;
    width: 100%;
    overflow: hidden;
    direction: ltr;
}

@media only screen and (width <= 750px) {
  .hero-screen{
    height: 100vh !important;
  } 
  .hero-video {
    height: 100%;
  }
  .hero-overlay {
    height: 100%;
    background: rgba(0, 0, 0, 0.79);
  }
  .hero-content {
    height: 100%;
    display: flex;
    margin-top: 100px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .hero-content h1 {
    font-size: clamp(1rem, 4vw, 4rem);
  }
  .hero-content p {
    font-size: clamp(.8rem, .5vw, 1rem);
    line-height: 1.2;
    word-spacing: 0;
    margin-bottom: 10rem;
  }

}

@media (prefers-reduced-motion: reduce) {
  .hero-video {
    display: none;
    border: 2px solid red;
  }

  .hero {
    background: url("fallback.jpg") center / cover no-repeat;
  }
}