@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500;700&display=swap');

:root{
  --main: #131110;
  --bg: #f1e1d2;
  --black: #000;
  --white: #fff;
  --box-shadow: 0 .5rem 1rem rgba(0, 0, 0, 0.1);
}

*{
  font-family: 'Roboto', sans-serif;
  margin: 0; padding: 0;
  box-sizing: border-box;
  outline: none; border: none;
  text-decoration: none;
  
  transition: .2s linear;
}

html{
  font-size: 60%;
  overflow-x: hidden;
  scroll-behavior: smooth;
  scroll-padding-top: 4rem;
  font-size: 15px;
  
}

html::-webkit-scrollbar{
  width: 1rem;
}

html::-webkit-scrollbar-track{
  background: transparent;
}

html::-webkit-scrollbar-thumb{
  background: whitesmoke;
  border-radius: 1rem;
}

section{
  padding: 7rem 2%;
}
.btn{
  
border-radius: 50%;
background-color: #cda043;
color:#000;
    
}
.btn2{
  
  background-color: #cda043;
  color:#000;
  margin-top: 20px;
  width: 100px;
  height: 40px;
  font-size: 15px;
 font-weight: 20px;
  line-height: 2;
  margin-left: 130px;
  margin-bottom: 20px;
  padding: 2px;

  }
.btn a{
  color:black;
}
.bg-light{
  color: #cda043;
}
.arabic {
  direction: rtl;
  text-align: right;
  font-size: 20px;
}

/* Styles for English language */
.english {
  direction: ltr;
  text-align: left;
}




/* header */

.header{
	position:absolute;
  
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background-color:transparent;
  
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2rem 9%;
  
}

.header .logo{
 height:100px;
 width:150px;
}



.header .navbar a{
  font-size: 2rem;
  color: #cda043;
  margin: 0 1.6rem;
  text-decoration:none;
  font-size: 20px;
  direction: rtl;
 
}

.header .navbar a:hover{
  color:white;
}

.header .icons div{
  font-size: 1rem;
  margin-left: 1.7rem;
  cursor: pointer;
  color: var(--black);
}

.header .icons div:hover{
  color: var(--main);
}

#menu-btn{
  display: none;
}


.active{
	
	background-color:white;
	border-radius:5px;
	color:#cda043;
	text-decoration:none;
}
.active:hover{
	
	
	border-radius:5px;
	color:#cda043;
	text-decoration:none;
}
.home{
  background-image: url(../img/home.jpg);
  height:100vh;
  background-size: cover;
  background-repeat: no-repeat;
  
  width: 100%;
}

.content{
    padding-top: 100px;
    padding-left: 100px;
    padding-right: 100px;
    
}
.contentp{
padding-top:20px;
padding-bottom: 30px;
font-size: 30px;
color:#cda043;
padding-right: 25px;
  }

.b1{
    height:400px;
    width:500px;
    border-radius: 40%;
   padding-bottom: 50px;
}
.about{
  background-image: url(../img/OIP.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.products{
  background-image: url(../img/b2.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.services{
  background-image: url(../img/OIP.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
@media (max-width: 1023px){

  #menu-btn{
    display: inline-block;
    color:white;
    
  }

  .header .navbar{
    position: absolute;
    top: 99%;
    left: 0; right: 0;
	display: block;
    background: #333333;
    border-top: .1rem solid var(--main);
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
  }
  

  .header .navbar.active{
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }

  .header .navbar a{
    display: block;
    margin: 2rem;
    align-items:center;
    text-align:center;
    font-size: 1.5rem;
  }


}







.products .img-fluid{
  height:250px;
  width:100%;
}
.gallery{
  height:100px;
  width:100px;
  
  border: 5px solid #cda043;
}






@media (max-width: 767px) {
  .home{
    height:auto;
  }
  .content {
    padding-top: 60px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .contentp {
    font-size: 20px;
    order: 2;
  }

  .b1 {
    height: 200px;
    width: 300px;
    order: 1;
    padding-right: 20px;
    padding-top: 20px;
  }
}

/* Media query for medium screens (e.g., tablets) */
@media (min-width: 768px) and (max-width: 991px) {
  .home{
    height:auto;
  }
  .content {
    padding-top: 80px;
  }

  .contentp {
    font-size: 24px;
  }

  .b1 {
    height: 350px;
    width: 450px;
  }
}

/* Media query for large screens (e.g., desktop) */
@media (min-width: 992px) {
  .home{
    height:auto;
  }
  .content {
    padding-top: 100px;
  }

  .contentp {
    font-size: 30px;
  }

  .b1 {
    height: 400px;
    width: 500px;
  }
}





