/* Basic CSS Boilerplate */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  font-family: Arial, sans-serif;
  background-color: #fff;
  height: 100%;
  width: 100%;
}

#main{
  height: 100%;
  width: 100%;
  background-color: beige;
  position: relative;
  padding: 0.1px;
}

#nav{
  height: 12vh;
  width: 100%;
  /* background-color: red; */
  margin-top: 40px;
  border-top: 2px solid black;
  border-bottom: 2px solid black;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

#nav h2{
  /* background-color: yellow; */
  font-size: 25px;
  font-weight: 500;
  height: 100%;
  width: 20%;
  display: flex;
  align-items: center;
  justify-content: center;
  border-right: 2px solid black;

}

#nav h1{
  /* background-color: yellow; */
  height: 100%;
  width: 16%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: monument;
  font-size: 40px;
  font-weight: 800;
  letter-spacing: -2px;
  position: relative;
    /* border-right: 2px solid black; */
}


#nav h1::after{
  content: "©";
  font-family: gilroy;
  font-weight: 400;
  font-size: 22px;
  position: absolute;
  top: 25%;
  right: -2%;
}

#nav h1::before{
  content: "Model Managment";
  font-family: gilroy;
  font-weight: 300;
  color: #666;
  font-size: 15px;
  letter-spacing: 1px;
  position: absolute;
  bottom: 16%;
  right: 12%;
}


#nav h2:nth-last-child(1){
  width: 10%;
}


#nav h2:nth-last-child(2){
  width: 25%;
}

#center{
  height: 90%;
  width: 100%;
  /* background-color: red; */
  padding: 4vw;
  position: relative;
}

#content{
  height: 100%;
  width: 100%;
  background-color: blueviolet;
  position: relative;
}

#content video {
  height: 100%;
  width: 100%;
  object-fit: cover;
  
}


#overlay{
  height: 52%;
  width: 100%;
  position: absolute;
  /* background-color: red; */
  bottom: 0;
  padding: 3vw;
  color: white;
}


#over1 {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

#over1 h1{
  
  font-size: 3.7vw;
  letter-spacing: -2;
  font-family: momentum;
}

#over1 h2{
  font-size: 1vw;
  padding: 2vw 2.4vw;
  /* background-color: blue; */
  border-radius: 50%;
  border: 2px solid white ;
}


#over2 {
  border-top: solid 1px white;
  margin-top: 2vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2vw 0;
}


#over2 h5 {
  font-size: 1.5vw;
  font-weight: 200;
}


#over2 h5 i{
  font-size: 50px;
  font-weight: 200;
}

#scroll{
  height: 40vh;
  width: 100%;
  /* background-color: red; */
  padding: 1vw;
  white-space: nowrap;
  overflow-x: hidden;
  overflow-y: hidden;
}


#container{
  height: 100%;
  width: 110%;
  display: inline-block;
  padding: 2vw;
  /* background-color: blue; */
  animation-name: anime ;
  animation-duration: 10s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}


#scroll img{
  margin: 0.9vw;
  /* display: none; */
  height: 100%;
  width: 15%;
  border-radius: 50%;
  object-fit: cover;
  object-position: top;
}

@keyframes anime{
  from{
    transform: translate(0);
  }
  to{
    transform: translate(-100%);
  }
}


#alpha{
  height: 7vw;
  width: 100%;
  /* background-color: red; */
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2vw;
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
}

#alpha h5{
  text-transform: uppercase;
  font-size: 1.7vw;
  font-weight: 200;
  font-style: italic;
  border-bottom: 2px solid black;
  letter-spacing: 2px;
}


#alpha h6{
  text-transform: uppercase;
  font-size: 1vw;
  font-weight: 200;
  font-style: italic;
padding: 0.1vw ;
  letter-spacing: 2px;
  border-radius: 50%;
  border: 1px solid #00000000;

}


#alpha h6:hover{
border: 1px solid #000;
transition: all ease 0.2s ;
cursor: pointer;
}


#page2 {
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2vw 5vw;
}

#page2_part1 {
  height: 100%;
  width: 50%;
  background-image: url(https://images.unsplash.com/photo-1660118248632-103511f9b337?w=3840&auto=format&fit=crop&q=100);
  background-size: cover;
  background-position: top;
}

#page2_part2 {
  height: 100%;
  width: 45%;
  display: flex;
  flex-direction: column;
}

#page2_part2 img {
  height: 70%;
  width: 100%;
  object-fit: cover;
}

#text_content {
  height: 30%;
  width: 100%;
  display: flex;
  align-items: center;
  /* flex-direction: column; stack h1 and p vertically */
  justify-content: center;
  gap: 0.5rem; /* spacing between h1 and p */
}

#text_content h1 {
  font-size: 1.8rem;
  font-weight: bold;
  margin-right: 30px;
}

#text_content p {
  font-size: 1rem;
  line-height: 1.5;
}


/* this is day 05 */
#page3{
  height: 100%;
  width: 100%;
  position: relative;
}

#page3>h1{
  padding: 2vw 3vw ;
  font-family: momument;
  font-size: 3vw;
  font-weight: 900;
  text-align: center;
}

.elem{
  margin-top: 15px;
  height: 12vh ;
  width: 100%;
  /* background-color: red; */
  border-top: 2px solid black;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}


.elem:nth-last-child(1){
  border-bottom: 2px solid black;
}

.elem h5{
  width: 6%;
  text-transform: uppercase;
  font-size: 1.5vw;
  font-weight: 400;
  padding: 1vw 2vw;
}

.elem .elem_part2{
  width: 40%;
  /* background-color: red; */
}

.elem .elem_part2 h1{
  font-size:  2.5vw;
  font-weight: 500;
 
} 


.elem .elem_part2 h6{
font-size: 1vw;
text-transform: uppercase;
font-weight: 400;

}

.elem img{
  margin-top: 15px;
  position: absolute;
  height: 100px;
  width: 100px;
  border-radius: 50%;
  left: 12%;
  opacity: 0;
  transition: all ease .5s;
}


.elem:hover img {
  opacity: 1;
  left: 24%;
}


#marque{

  /* height: 15vh; */
  width: 100;
  /* background-color: red; */
  padding: .5vw;

  white-space: nowrap;
  overflow-x: hidden;
  overflow-y: hidden;
  border-top: 2px solid black;
  border-bottom: 2px solid black;
}

#marque h1{
  display: inline-block;
text-transform: uppercase;
font-size: 4vw;
font-weight: 900;
/* background-color: blue; */
-webkit-text-stroke: 2px black;
color: transparent;
font-family: monument;
  margin-right: 16px;
animation-name: move;
animation-iteration-count: infinite;
animation-duration: 4s;
animation-timing-function: linear;
}


@keyframes move {
  from{
    transform: translateX(0);
  }
  
  to{
    transform: translateX(calc(100% - 20px));
  }
  
}
#footer{
  height: 100%;
  width: 100%;
}