@import url("https://fonts.googleapis.com/css2?family=Cairo:wght@100;200;300;500;700;900&family=IBM+Plex+Sans+Arabic:wght@100;200;300;500;700&display=swap");

/* CSS Codes */
*{
	margin: 0 auto;
    text-align: center;
    font-family: 'Cairo', sans-serif ;
    position: relative;
}

body{
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: fit-content;
  max-width: 100%;

  --MainColor: #000 ;
  --MainColorTrans: #000000de ;
  --SecoundColor: #8e7e40 ;
  --SecoundColorTrans: #8e7e40de ;
  --TextColor: #fff ;
  --WhiteTrans: #ffffffd3 ;
  --SecoundTextColor: #000 ;
}

.mainWeb{
  background-color: var(--TextColor);
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  min-height: fit-content;
}

.MainPlaceForCoding{
  max-width: fit-content;
  height: fit-content;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  margin: 10px 0px;
  flex-direction: row-reverse;
}

.titleLinear{
  width: 400px;
  max-width: 70%;
}


.contactLinear{
  background-color: var(--SecoundColorTrans);
  max-width: 90%;
  width: 800px;
  height: fit-content;
  border-radius: 25px;
  padding: 5px 5px 10px 5px;
}

#msgLinear{
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.editTextLinear{
  padding: 0px;
  width: 90%;
  transition: all 0.5s ease-in-out;
}

.editTextLinear:hover{
  width: 95%;
}

.inputTitleLinear p{
  color: var(--TextColor);
  font-family: 700;
  font-size: 20px;
  font-weight: 300;
  width: 90%;
  text-align: right;
}

input{
  min-width: 90%;
  margin-top: 3px;
  background-color: var(--TextColor);
  border: 0px;
  border-radius: 5px;
  font-size: 20px;
  font-weight: 700;
  transition: all 0.5s ease-in-out;
}

.editTextLinear:hover input{
  box-shadow: #0000003f 15px 5px 15px;
}

.MainPlaceForCoding h1{
  font-size: 65px;
  color: var(--SecoundColor);
  font-family: "IBM Plex Sans Arabic", sans-serif;
  font-weight: 700;
  margin-top: 25px;
}

.MainPlaceForCoding h2{
  font-size: 15px;
  color: var(--SecoundColor);
  font-family: "IBM Plex Sans Arabic", sans-serif;
  font-weight: 500;
  margin-bottom: 25px;
  letter-spacing: 0px;
}

#activeButton{
  margin-top: 10px;
}

#Message{
  min-width: 90%;
  margin-top: 3px;
  background-color: var(--TextColor);
  border: 0px;
  border-radius: 5px;
  font-size: 20px;
  font-weight: 700;
  transition: all 0.5s ease-in-out;
}

.numberANDemail{
  width: 85%;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
}

.numberANDemail input{
  width: 400px;
  max-width: 100%;
}

.numberANDemail .editTextLinear{
  width: 310px;
  max-width: 80%;
}

.numberANDemail .editTextLinear:hover{
  max-width: 80%;
}

@media only screen and (max-width: 1000px){
  .numberANDemail{
    width: 100%;
  }
  
  .numberANDemail .editTextLinear{
    padding: 0px;
    width: 90%;
    transition: all 0.5s ease-in-out;
  }
  
  .numberANDemail .editTextLinear:hover{
    width: 95%;
  }
}


.pageName{
  width: 95%;
  height: 100px;
  background-image: url("background.jpg");
  background-position: center;
  background-size: cover;
  border-radius: 25px;
  margin: 5px;
  margin-bottom: 15px;
}

.pageNameFilter{
  width: 100%;
  height: 100%;
  background-color: var(--WhiteTrans);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "IBM Plex Sans Arabic", sans-serif;
  font-weight: 700;
  font-size: 45px;
}