@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;700");

:root {
  --dark-blue: #131A24;
  --yellow: #D9B13B;
  --white: #FFFFFF;
  --dark-red: #24161A;
  --bg: linear-gradient(0deg, rgba(0, 0, 0, .6) 0%, rgba(0, 0, 0, 0) 100%);
}

.yellow {
  color: var(--yellow);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  border: none;
  outline: none;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Montserrat', sans-serif;


}


/* Hero Section */
.home-hero {
  width: 100%;
  height: 100vh;
  background: linear-gradient(0deg, rgb(22, 26, 36) 0%, rgb(0, 0, 0, 0) 100%);
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 5rem;
}



.home-video {
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  position: absolute;
  z-index: -1;
  pointer-events: none;
}

/* Hero Typography */

.home-hero-title {
  font-size: 180px;
  color: #ffffff;
  text-transform: uppercase;
}

.home-hero-mobile {
  display: none;
}

.hero-title-mid {
  display: block;
  margin-left: 200px;
}

.hero-title-end {
  display: flex;
  justify-content: center;
}


.yellow {
  color: var(--yellow) !important;
}

.light {
  font-weight: 300;
}

.button-address {
  background-color: #d9b13b;
  padding: 1rem;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 800;
  color: white;
  height: auto;
  width: auto;
  transition: all ease-in-out 300ms;

}

.button-address:hover {
  background-color: #dead18;
  scale: 1.05;
}



/* Hero Section END */

/* End Contact Section */


/* Large devices (laptops/desktops, 992px and up) */
@media only screen and (max-width: 992px) {

  .home-hero-title {
    font-size: 130px;
    color: #ffffff;
    text-transform: uppercase;
  }


}

/* Small devices (portrait tablets and large phones, 600px and up) */
@media only screen and (max-width: 768px) {

  /* Hero Start */
  .home-hero {
    height: 70vh;
  }

  .home-video {
    height: 70vh;
    width: 100vw;
  }

  .home-hero-title {
    font-size: 105px;
  }



}

/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 600px) {




  /* Hero Start */
  .home-hero {
    height: 70vh;
  }

  .home-video {
    height: 70vh;
    width: 100vw;
  }


  .home-hero-title {
    text-align: center;
    font-size: 70px;
  }

  /* Hero Topography */

  /* Hero Ends */



}



/* End Mobile  */