*{
   margin:0;        padding: 0;         box-sizing: border-box;
}
body{
   height: 7400px;
   font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}
/*                                                                             one                                                                     */
/* start of header */
.header{
 width: 100%;
 height: 50px;
 background-color:brown;
 padding: 0 25px;
 opacity: 0.7;
 z-index: 999;
 position: fixed;
 top: 0;
 left: 0;
}
.search-section {
  float: left;
  margin-top: 10px;
}
.home-icon {
  color: blanchedalmond;
  font-size: 22px;
  float: left;
}
.search-container {
    float: left;
    position: relative;
    background-color:blanchedalmond; 
    border-radius: 25px;
    width: 250px; 
    height: 30px; 
    margin-left: 20px;
    display: flex; 
align-items: center;
    padding-left: 15px;
}
.search-icon {
position: absolute;
color: brown; 
font-size: 25px;
}
.search-input {
width: 100%;
height: 100%;
border: none;
background-color: transparent;
text-align: center;
font-size: 16px;
}
.list-header{
   list-style: none;
   float: right;
   margin-right: 15px;
   margin-top: 15px;
   color: blanchedalmond;
}
.list-header li{
display: inline-block;
margin-left: 20px;
}
.list-header li a {
text-decoration: none;
   position: relative;
   display: inline-block;
   color: blanchedalmond;
   font-size: 16px;
   font-weight: bold;
   padding-bottom: 5px;
}
.list-header li a::after {
    content: '';
    position: absolute;
    width: 0;          
    height: 2px;        
    bottom: 0px;
    left: 0;      
    background-color: blanchedalmond; 
    transition: 0.5s; 
}
.list-header li a:hover::after {
    width: 100%;       
}
.dropdown-header {
  position: relative; 
  display: inline-block;
}
.dropdown-content {
  display: none;     
  position: absolute;
  background-color: blanchedalmond; 
  color: brown;
  width: 150px;
  height: 150px;
  z-index: 19;
  list-style: none;
  padding: 10px 0;
  border-radius: 7px;
  top: 100%; 
  left: 0;
}
.dropdown-content li {
  display: block;   
  margin: 0;       
  text-align: left;
}
.dropdown-content li a {
  padding: 15px 15px;
  font-size: 16px;  
  display: block;
  color: brown;
  position: relative;
  display: block;
}
.dropdown-header:hover .dropdown-content {
  display: block;
}
.dropdown-content li a::after {
    content: "";
    position: absolute;
    left: 10px;      
    bottom: 5px;      
    width: 0;
    height: 2px;      
    background-color: brown; 
    transition: width 0.5s ease;
}
.dropdown-content li a:hover::after {
    width: 80%;       
}
/* end of header */
.home{
   position: relative;
   z-index: 1;
   width: 100%;
   height: 100vh;
   background-image: url(../photo/coffe.jpg);
   background-repeat: no-repeat;
   background-position: center;
   background-size: cover;
   text-align: center;
}
.home-overlay{
   z-index: 2;
   position:absolute;
   width: 100%;
   height: 100%;
   background-color: rgba(0, 0, 0, 0.6);
}
.home-parentes{
   width: 60%;
/* ده hero image */
 position:absolute;
 top: 50%;
 left: 50%;
 transform: translate(-50%,-50%);
}
.home-titel1{
   font-size: 55px;
   color:#ffff ;
   text-transform:uppercase;
}
.home-p1{
   color:rgb(120, 110, 110);
  letter-spacing: 2px; 
  margin: -15px 0px;
  font-size:20px ;
}
.home-btn{
   width: 150px;
   height: 55px;
   border: 0;
   border-radius: 15px;
   cursor: pointer;
   font-size: 18px;
   background-color: brown;
   color: blanchedalmond;
    margin: -10px 0px;
}
.home-btn1{
   margin-right: 5px;
}
.home-btn:hover{
  color: brown;
   background-color:blanchedalmond;
   opacity: 0.3;
}
/*                                                                             TWO                                                                       */
.welcome{
   text-align: center;
   text-transform:capitalize;
   font-size: 40px;
   letter-spacing: 2px; 
   font-weight: bold;
   margin: 80px 0px 10px 0px;
   color: brown;
}
.welcome-line{
   background-color: brown;
   width: 100px;
   height: 4px;
   margin: auto;
   display: block;
}
.container{
   width: 80%;
   margin: auto;
   padding: 80px 0;
   height: 80vh;
}
.website-parent{
   overflow: auto;
}
.website-item{
   float:left;
   width: 30%;
   background-color: rgb(125, 47, 47);
   color:blanchedalmond;
   border: 2px solid black; 
   border-radius: 10px;
    padding: 25px 20px;
    text-align: center;
    position: relative;
}
.website-item2{
   margin: 0px 5%;
}
.website-item p{
   padding: 20px 0px;
   color: rgb(183, 169, 152);
}
.website-item:hover .text-welcome{
   color:white;
   transition: 0.6s ;
}
.website-item i {
    font-size: 30px;
    color: blanchedalmond;
    margin-bottom: 10px;
    display: block;
}
.titel-website{
   font-size: 25px;
   letter-spacing: 2px; 
   font-weight: bold;
   text-transform:capitalize;
}
.website-item:hover .titel-website{
   color:rgb(226, 142, 17);
   transition: 0.6s ; 
}
.website-item a {
    text-decoration: none;
    color: white;
    font-weight: bold;
    display: block;
    margin-top: 15px;
    position: relative;
    z-index: 5;         
    cursor: pointer;
}
.website-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 0;
    background-color: blanchedalmond; 
    transition: 0.6s ; 
    opacity: 0.4; 
}
.website-item:hover::after {
    width: 100%; 
    height: 100%; 
    
}
/*                                                                        THREE                                                                     */
.portfolio-wrapper-featured {
    background-color: blanchedalmond; 
    padding: 80px 0;          
    width: 100%;               
    opacity: 0.9;         
}
.welcome1{
   margin: -15px 0px 10px 0px;
}
.featured-container {
    width: 80%;
    height: 230px;
    margin: 50px auto;
    padding-left: 80px;
}
.featured-grid-item {
    float: left;           
    width: 30%;        
    margin: 1%;            
    position: relative;    
}
.featured-grid-item img {
    width: 100%;
    height: 230px;
    display: block;
}
.overlay-featured {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    color: white;
    text-align: center;
    opacity: 0;
    transition: 0.2s;
    padding-top: 15%; 
}
.featured-grid-item:hover .overlay-featured {
    opacity: 1;
}
.overlay-featured h2 {
    font-size: 25px;
    text-transform: uppercase; 
    letter-spacing: 3px; 
}
.overlay-featured p {
    font-size: 14px;
    margin: 35px 0px 35px 0px;
}
.icons-featured button {
    background-color: white;
    color: black;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 5px; 
    margin: 0 3px;
    cursor: pointer;
    transition: 0.3s;
}
.icons-featured button:hover {
    background-color: black; 
    color: white;
}
/*                                                                                             Four                                                                    */
.container1{
   width: 80%;
   margin:0px 0px 0px 190px ;
   padding: 30px 0px;
   height: 100vh;
}
.website-item1{
   margin: 0px 10%;
} 
.website-item3{
width: 25%;
height: 220px;
text-align: left;
padding: 20px 15px;
overflow: hidden;
}
.website-item3 i{
font-size: 28px;
color: blanchedalmond;
float: left;       
width: 45px;        
margin-top: 5px;     
display: block;
}
.website-item3 .titel-website {
display: block;
font-size: 20px;
margin-left:45px;
line-height: 1.2;
text-align: left;
margin-bottom: 10px;
}
.website-item3 .text-welcome {
margin-top: 10px;
padding-left: 50px; 
font-size: 14px;
color: rgb(183, 169, 152);
line-height: 1.5;
text-align: left; 
} 
/*                                                                                       Five                                                                            */
.choose{
   text-transform:capitalize;
   font-size: 40px;
   letter-spacing: 2px; 
   font-weight: bold;
   margin: 220px 0px 10px 0px;
   color: brown;
}
.choose-line{
   background-color: brown;
   width: 100px;
   height: 4px;
   display: block;
}
.containerr {
    width: 1200px;
    margin: 50px auto;
    overflow: hidden; 
}
.content {
    width: 45%;
    float: left;
    padding-top: 20px;
    padding-left: 0;
    margin-left: 0;
}
.choose-text {
    color: #a0a0a0;
    font-size: 14px;
    line-height: 1.6;
    margin: 60px 0px;
}
.features {
    list-style: none;
    padding: 0;
}
.features li {
    margin-bottom: 20px;
    color: #555;
    font-size: 16px;
}
.features li i {
    color: brown; 
    margin-right: 4px;
    font-size: 18px; 
    font-weight: bold;
    display: inline-block;
}
.image-section {
width: 350px; 
float: right;
text-align: center;
margin-top: 200px;
}
.image-wrapper img {
width: 350px;
border-radius: 10px;
display: block;
}
.dots {
margin-top: 10px;
width: 350px;
text-align: center;
font-weight: bold;
}
.dot {
width: 15px;
height: 15px;
background-color: #bbb;
border-radius: 50%;
display: inline-block;
margin: 0 5px;
cursor: pointer;
transition: 0.4s; 
}
.dot:hover {
background-color:brown;
 
}
.dot.active {
background-color:brown;
}
/*                                                                                          six                                                                           */
.container6 {
position: relative;
margin-top: 100px;
margin-left: -190px;
width: 1521px; 
height: 380px; 
background-image: url(../photo/d95.jpg);
background-attachment: fixed; 
background-position: center;
background-size: cover;
}
.parent6 {
position: absolute;
width: 100%;
height: 100%;
background-color: rgba(0, 0, 0, 0.5);
padding-top: 100px; 
}
.div6 {
float: left; 
width: 15%; 
margin-left: 8%;
text-align: center;
color: blanchedalmond;
margin-top: 20px; 
}
.div6 i {
font-size: 40px;
color: blanchedalmond; 
margin-bottom: 15px;
}
.div6 h3 {
font-size: 30px;
font-weight: bold;
margin: 5px 0;
}
.div6 p {
font-size: 18px;
text-transform: capitalize;
}
/*                                                                                          SEVEN                                                                          */
.table {
text-align: center; 
padding: 50px 0;   
}
.Welcome7{
margin-top: 100px;
}
.div-table {
display: inline-block; 
width: 320px;
background-color:brown;
border: 2px solid black;
border-radius: 12px;
padding: 30px 15px;
margin: 30px;
margin-top: 50px;    
position: relative; 
overflow: hidden;    
transition: 0.3s;
z-index: 1;
}
.cir-table{
    width: 110px;
    height: 110px;
    border-radius: 50%;
    border: 2px solid  black;
    background-color: blanchedalmond;
    display: block;
    margin: auto ;
}
.cir-table h2 {
    margin-top: 10px;
    font-size: 25px;
     color: brown;
}
.p-table {
font-family: sans-serif;
font-size: 14px;
font-weight: bold;
color: blanchedalmond;
margin: 10px 0;
}
.titel-table{
    color: blanchedalmond;
}
.cir-table p{
    color: brown;
}
.bottom-table {
    background: blanchedalmond;
    border: 1px solid black;
    color: brown;
    padding: 10px 30px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    margin-top: 20px;
}
.div-table::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background-color: rgba(255, 235, 205, 0.5); 
    transition: 0.5s ; 
    z-index: -1; 
}
.div-table:hover::before {
    height: 100%; 
}
.div-table:hover .titel-table {
    color: black;   
}
/*                                                                                          EIGHT                                                                          */
.container7{
  background-image: url(../photo/profile\ 3\ .jpg);  
  height: 400px;
}
.parent7{
 background-color: rgba(0, 0, 0, 0.3);   
}
.div7 {
 float: left; 
 width: 30%; 
 margin-left: 8%;
 color: blanchedalmond;
 margin-top: 10px; 
 margin-left: 280px;
}
.div77{
margin-left: 80px;
}
.person-img {
width: 110px;
height: 110px;
border-radius: 50%;
overflow: hidden;
float: left;  
margin-right: 20px;
}
.person-img img {
 width: 100%;
 height: 100%;
 display: block;
}
.person-name {
 font-size: 35px;
 font-weight: bold;
 margin-top: 25px;
 margin-bottom: 10px;
}
.person-job {
 color: brown;
 font-weight: bold;
}
.div7 p {
 margin-top: 30px;
 text-transform: capitalize;
}
/*                                                                                          NINE                                                                         */
.Welcome9{
    margin-top: 150px;
    margin-left: -55px;
}
.welcome-line9 {
 margin-left: 530px    
}
.container-team{
    width: 100%;
    margin: auto;
    margin-top: 50px;
   margin-left: -30px;
}
.parent-team{
overflow: auto;
}
.team-item{
  float: left;  
  width: 30%;
  background-color: rgb(181, 178, 178);
  padding: 18px 12px;
  text-align: center;
  border-radius: 10px;

  position: relative; 
  overflow: hidden; 
}
.team-item2{
 margin: 0px 5%;
}
.team-image{
    width: 90%;
    margin: auto;
    position: relative;
}
.team-image img{
    width: 100%;
    height: 45%;
}
.team-overlay{
    position:absolute;
    top: 0;left: 0;bottom: 0;right: 0;
    background-color: rgba(0, 0, 0, 0.5);
    visibility:hidden;
}
.team-item:hover .team-overlay{
   visibility: visible; 
}
.team-overlay a{
   display: block;
   width: 40px;
   height: 40px;
   background-color:blanchedalmond ; 
   color: brown;
   font-size: 20px;
   margin-left: auto;
}
.team-overlay a i{
 line-height: 40px;   
}
.team-info-titel{
text-transform: capitalize;
padding: 20px 0px;
color: brown;
}
.team-info-p{
color: rgb(182, 74, 74);
text-transform: uppercase;
}
.team-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background-color: rgba(255, 235, 205, 0.3); 
    transition: 0.6s ; 
    z-index: 5; 
}
.team-item:hover::before {
    height: 100%; 
}
.team-item:hover .team-info-titel {
    color: rgb(226, 142, 17);   
}
.team-item:hover .team-info-p {
color:rgb(226, 142, 17);
}
/*                                                                                          TEN                                                                          */
.Welcome10{
    margin-top: 250px;
    margin-left: -65px;
}
.welcome-line10{
     margin-left: 520px;
}
.container-news {
    width: 100%;
    padding: 60px 0; 
    text-align: center; 
}
.parent-news {
   max-width: 100%;
    margin: 0 auto;
    font-size: 0; 
    text-align: left; 
}
.item-news {
    display: inline-block;
    width: 30%;
    padding: 25px;
    border: 3px solid black;
    border-radius: 10px;
    font-size: 16px;
    vertical-align: top;
    text-align: center;
    margin-left: -35px;
    position: relative;
    overflow: hidden;
    background-color: brown;
}
.item-news2{
margin-left: 5%;
margin-right: 7%;
}
.img-news {
    width: 80%;
    height: 250px;
    border-radius: 10px;
    margin-bottom: 20px;
    z-index: 20;
    position: relative;
}
.icon-news {
    margin-bottom: 15px;
}
.icon-news i {
    color: blanchedalmond;
    margin: 0 5px;
}
.item-news-p {
    font-size: 14px;
    color: rgb(180, 168, 148);
    line-height: 1.7;
    margin-bottom: 20px;
}
.item-news:hover p{
    color: black;
   
}
.icon-news-p {
    display: inline-block;
    font-size: 13px;
    color: blanchedalmond;
    margin-right: 15px;
    font-weight: bold;
}
.item-news h2 {
    font-size: 20px;
    color: blanchedalmond;
    margin-bottom: 15px;
    margin-top: 20px;
}
.item-news:hover h2{
color: black;
transition: 0.8s;
}
.item-news a {
    text-decoration: none;
    color: blanchedalmond;
    font-weight: bold;
    position: relative;
    cursor: pointer;
    z-index: 21;
}
.item-news::after {
content: "";
position: absolute;
top: -100%;
left: 0;
width: 100%;
height: 100%;
background-color:  rgba(255, 235, 205, 0.5); 
transition: 0.6s;
z-index: 5;
}
.item-news:hover::after {
top: 0;
}
/*                                                                                          ELEVEN                                                                         */
.end{
  background-color: blanchedalmond;  
  height: 350px;
 position: relative;
margin-top: 100px;
margin-left: -190px;
width: 1521px; 
text-align: center;
}
.end img{
    height: 200px;
    width: 250px;
    border-radius: 10px; 
margin: 20px 0px;
}
.end-botton{
   height: 60px;
    width: 60px;
    border-radius: 30px;
    border: none;
    background-color: rgb(147, 94, 94);
}
.end-botton:hover{
background-color:brown;
}
.end-icon i{
    font-size: 28px;
    color: blanchedalmond;
}
.the-end{
    margin-top: 15px;
    font-size: 16px;
    color: rgb(147, 74, 74);
}