
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
   @font-face {
     font-family: 'Requiem', serif;
    src: url('fonts/Requiem-Regular.woff2') format('woff2'),
         url('fonts/Requiem-Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

body {
    font-family: 'Requiem', serif;
      background-color: black
    ;
   
}
 
   

    ::-webkit-scrollbar{
        width: 15px; 
    }
    ::-webkit-scrollbar-track{
       background-color: rgb(0, 0, 0);
    }
    ::-webkit-scrollbar-thumb{
        background-color: rgba(255, 255, 255, 0.637);
        border-radius: 10px;
    }  
    
}

    html{
  overflow-x: hidden;

    }
.head{
    position: fixed;
    height: 15%;
  background-color:  rgba(24, 15, 0, 0.416);    
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding-right: 40px;
    left: 0 ;
    right:0 ;
    top:  0;
    z-index: 5;
   
   

}

@media all and (max-width:760px) {
    .head{
     display:none;
    }
   
 
 }

 
.left-head>img{
    
  height: 110px;
 
}


.left-head{
    
    padding-left: 30px;
  
}
.right-head ul{
   display: flex;
   align-items: center;
   list-style-type: none;
   gap: 30px;
}
 .right-head li{
 border-radius: 5px;
 padding: 7px;
 transition: all 0.5s ease-in-out;
 
 }
 .right-head li:hover{
   background-color: rgba(255, 255, 255, 0.208);
  transform: scale(1.1);
 }

.right-head li>a{
color: white;
text-decoration: none;
}
 
/*menu for phone*/

.forup{
    display: flex;
    justify-content: space-between; 
    align-items: center;
    height: 13%;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 5;
    padding: 6px;
     background-color:  rgba(24, 15, 0, 0.416);
    
}
.forupleft>img{
    height: 80px;
    padding: 2px;
}
.forup{
   visibility: collapse;
}

@media all and (max-width:760px) {
   .forup{
     visibility: visible;
   }
    
}
.menu-phone ul{
 display: none;
}
.menu-phone img{
    background-color: rgb(150, 105, 25);
    border-radius: 2px;
}
.menu-phone ul{
    text-align: center;
    padding: 8px;
    padding-top: 30px;
  
}

.menu-phone li{
     margin-top: 8px;
    list-style-type: none;
    font-size: 18px;
    font-weight: 600;
    padding-bottom: 24px;
   
}
.menu-phone a:hover{
    color:rgb(183, 183, 241);
    transform: scale(0.9);
}
.menu-phone a{
    text-decoration: none;
    color: white;
    transition: all 0.5s;
}


#removemenu{
    position: absolute;
    top: -9;
    right: 20px;
    
    cursor: pointer;

}






     footer{
      
        height: auto;
  
        
    }
    
    .form-list{
        display: flex;
       align-items: center;
       gap: 10px;
      
    }
    .down-last{
        display: flex;
        flex-direction: column;
        align-items: center;
        
      }
        
     .connect-us{
        color: white;
        display: flex;
        align-items: center;
        gap: 6px;
        
     }
     
    .form-list li{
        list-style-type: none;
        aspect-ratio: 1;
    }
    .address-loc p{
        color: white;
        display: flex;
        align-items: center;
        gap: 6px;
        font-style: italic;
        padding: 8px;
        
        
    }
    
        .map{
            display: flex;
            justify-content: space-around;
            align-items: center;
            flex-wrap: wrap;

        }
        .map2{
            display: flex;
            justify-content: space-around;
            align-items: center;

        }

       .map0{
            width: auto;
            border-right: solid 2px whitesmoke;
            padding: 8px;
        }
     
    .map iframe{
         margin: 20px;
        width: min(390px, 80%);
        outline: none;
        aspect-ratio: 1;
        border-radius: 8px;
    }

.post{
    background-color: black;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 160vh;
    width: 100%;
}


.contact h2 {
    font-size: 40px;
    color: white;
    text-align: center;
    margin-bottom: 10px;
}
 
.contact form {
    width: 500px;
    text-align: center;
}

form .input-box {
    width: 100%;
    display: flex;
    text-align: center;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
  
}

.input-box{
    width: 100%;
}
.field .item{
 width: 90%;
}

.field{
    width: 100%;
}

@media all and (max-width:850px) { 
.contact form {
    width: 400px;
}
}

@media all and (max-width:600px) { 
.contact form {
    width: 400px;
}
}

@media all and (max-width:400px) { 
.contact form {
    width: 300px;
}
}

.field .item{
    padding: 18px;
    background-color: transparent;
    border: 2px solid rgb(150, 105, 25);
    outline: none;
    border-radius: 6px;
    font-size: 12px;
    color:white;
    margin: 12px 0 ;
   
}

select.item{
    width: 90%;
    padding: 18px;
    background-color: transparent;
    border: 2px solid rgb(255, 255, 255);
    border-radius: 6px;
    color: #ededed;
    outline: none;
}

select.item option{
    color: #000;
}

.field.error .item{
    border-color: red;
}

.field .item::placeholder{
    color: rgb(255, 255, 255);
}

.field .error-txt{
    font-size: 14.5px;
    color: red;
    text-align: left;
    margin:  -5px 0 10px;
    display: none;
}
form .textarea-field .item {
    resize: none;
}

.field.error .error-txt{
  display: block;
}
form .textarea-field .error-txt {
  margin-top: -10px;  
}

form button {
    padding: 12px 32px;
    background: rgb(150, 105, 25);
    border: none;
    outline: none;
    border-radius: 6px;
    box-shadow: 0 0 2px rgb(150, 105,25);
    font-size: 16px;
    color: #ffffff;
    letter-spacing: 1px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 20px;
    transition: all 0.5s;

}

form button:hover{
    box-shadow: none;
}

  .finish{
        background-color: rgba(0, 0, 0, 0.489);
        box-shadow: 0 0 20px black;
        border-radius: 5px;
        width: 400px;
        padding-left: 12px;
    }
   
