* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family:'Gilroy';
  color: #fff;
}
html, body {
  height: 100%;
  width: 100%;
}
#main{
  height: 100%;
  width: 100%;
  background-color: #000;
}
#nav{
  height: 100px;
  width: 100%;
  /* background-color: red; */
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 50px;
 
}
#nav-part2{
  display: flex;
  /* background-color: blue; */
  width: 60%;
  align-items: center;
  justify-content: space-between;
}
#nav h1{
  font-size: 22px;
  text-transform: capitalize;
  display: flex;
  align-items: center;
}
/* Add this CSS */
/* Add this CSS */
#nav h1 img {
  filter: brightness(0) invert(1);
  margin-right: 5px;
}


#nav h5{
  font-size: 15px;
  font-weight: 600;

  text-transform: capitalize;

}
/* Add this CSS at the end of your existing CSS */
#nav>img {
  filter: brightness(0) invert(1);
  margin-right: 5px;
}

#nav img{
  height: 30px;

}
.line{
  width: 70px;
  height: 2px;
  background-color: red;
}
#content{
  height:calc(100% - 100px);
  width: 100%;
  /* background-color: lightskyblue; */
  position: relative;
  display: flex;
  z-index: 99;
  justify-content: space-between;

}
#left{
  width: 36%;
  height: 100%;
  /* background-color: red; */
  padding: 90px 80px;
  
}
#left h1{
  font-size: 50px;
  line-height: 50px;
  font-weight: 700;
  margin-bottom: 50px;
}
#left h1 span{
  color: red;
  font-weight: 500;
}
#left p{
  margin-bottom: 50px;
  font-size: 18px;
  width: 70%;
  line-height: 24px;
}
#left button{
  background-color: red;
  padding: 15px 32px;
  border-radius: 50px;
  font-size: 19px;
  display: flex;
  align-items: center;
  font-weight: 700;
}
#left button img{
  filter: brightness(0) invert(1);
  margin-right:10px ;
}
#right{
  width: 38%;
  height: 100%;
  padding: 240px 70px;
  /* background-color: red; */
}
#center{
  width: 26%;
  height: 100%;
  /* background-color: red; */
  padding-top:40px ;
}
#center-bg{
  /* background-color: blue; */
  background-image: url(coke\ cola.jpg);
  background-size: cover;
  background-position: 30% 50%;
  filter: blur(2px);
  /* z-index: 99; */
  height: 90%;
  width: 100%;
  border-top-left-radius: 1000px;
  border-top-right-radius: 1000px;
}
#content>img{
  height: 105%;
  
  width: 28%;
  object-fit: cover;
  /* z-index: 99; */
  position: absolute;
  left: 50%;
  bottom: -3%;
  transform: translate(-50%,0);
}
#right-elem{
  /* background-color: red; */
  width: 350px;
}
#elem1{
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  opacity: 0.6;
  /* background-color: blue; */
  border-bottom: 1px solid #fff;
}
#elem1 h1{
 font-size: 24px;
 font-weight: 600;

}
#right-elem #elem1 img{
  font-size: 24px;
  filter: brightness(0) invert(1);
}
#elem2 h1{
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 15px;
  padding-top:15px ;
 }
 #elem2 p{
  font-size: 12px;
  width: 80%;
  opacity: 0.6;
 }