
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

html, body {
  width: 100%;
  height: 100%;
  overflow-x: hidden;
}

header {
  z-index: 999;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 12vh;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 60px;
}

header.scrolled {
  background-color: #ffffff;
  z-index: 999;
}

header .brand img {
  width: 150px;
  margin-top: 10px;
}

header .navigation {
  position: relative;
  display: flex;
  align-items: center;
}

header .navigation .navigation-items a {
  position: relative;
  color: #000000;
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  margin-left: 30px;
  transition: 0.3s ease;
  z-index: 10000;
}

header .navigation .navigation-items a:hover {
  font-weight: 700;
  color: #ff7b00;
  font-size: larger;
}

/* Hover underline */
header .navigation .navigation-items a::before {
  content: "";
  position: absolute;
  background-color: #ffffff;
  width: 0;
  height: 3px;
  bottom: 0;
  left: 0;
  transition: 0.3s ease;
}

header .navigation .navigation-items a:hover::before {
  width: 100%;
}

.home {
  position: absolute;
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  flex-direction: column;
  background: #ffffff;
}

.home .content {
  z-index: 888;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  margin-left: 3%;
  margin-top: 30%;
  color: #262725;
  width: 60%;
}

.home .content p1 {
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 600;
  text-transform: uppercase;
  line-height: 1.2;
  margin-top: 6%;
  margin-left: 5%;
  padding-top: 7%;
}

.home img {
  z-index: 0;
  position: absolute;
  width: 100%;
  height: 100vh;
  object-fit: cover;
  border-color: #b2d103;
  display: flex;
}

.home .smh {
  display: none;
}

/* ============ Mobile ============ */
@media (max-width: 600px) {
  header {
    padding: 10px 20px;
            background-color: rgba(0,0,0,0.15);
height: 8vh;
margin-top: 3%;

}
  .home {
    position:absolute;
    width:100%;
    height: 100vh;
display: flex;
justify-content: center;
flex-direction: column;
background: #ffffff;
margin-top: 0%;
margin-left: 0%;}

   header .brand img{
    width: 80px;
box-shadow: #000000;
margin-left: 15%;
  }

 .home .content{
  width: 80%;
  margin-top: -45%;
  display: flex;
  justify-content: left;
flex-direction: column; 
justify-content: left;
align-items: start;
    margin-left: 3%;


}

  .home .content p1 {
    font-size: 2.5em;
line-height: 100%;
    display: flex;
    color: #ffffff;
    width: 50%;
  padding-top: 80%;
  margin-left: 3%;
}
  
      header .navigation {
position: relative;
  display: flex;
  

}

header .navigation .navigation-items {
  position: relative;
  color: rgb(236, 5, 5);
  font-size: 10px;
  font-weight: 300;
  text-decoration: none;
  transition: 0.5 ease;
top: 0;
}
header .navigation .navigation-items a {
    position: relative;
    color: #000000;  /* Note: There seems to be an extra character "O" after this */
    font-size: 1.1em;
    font-weight: 700;
    text-decoration: none;
    margin-left: 10px;
    transition: 00.7s ease;
    z-index: 10000;
}
header .navigation .navigation-items a:hover {
font-weight: 500;
    color: #ff7b00;
 font-size: larger;
}

header .navigation .navigation .navigation-item a:before {
  content: "";
  position: absolute;
  background-color: rgb(255, 255, 255);
  width: 100%;
  height: 3px;
  bottom: 0;
  left: 0%;
  transition: 0.5 ease;
}
header .navigation .navigation .navigation.item a:hover:before {
  width: 100%;
  font-weight: 100;
}
.home img{
visibility: collapse;
}
.home .smh{
  visibility: visible;
   z-index: 000;
   padding-left: 30%;
   overflow: visible;
width: 100%;
height: 100vh;
    position: absolute;
   width: 100%;
    object-fit: cover;
border-image: 0%;
    display: flex;

}
}
@media (min-width: 1400px) {
  header {
    padding: 20px 100px;
  }

  header .brand img {
    width: 120px;
  }

  .home .content {
    margin-left: 8%;
    margin-top: 20%;
    width: 50%;
  }

  .home .content p1 {
    font-size: clamp(3rem, 4vw, 5rem);
    margin-top: 15%;
    margin-left: -5%;
  }

  .home img {
    object-position: center;
  }

  header .navigation .navigation-items a {
    font-size: 1.2rem;
    margin-left: 40px;
  }
}
