
 .myform select {
    width: 300px;
    height: 40px;
    margin-left: 20px;
    text-align: center;
    border: 1px solid green;
    border-radius: 40px;
    color: green;
    font-size: 18px;
}
.myform label {
    color: green;
    padding: 10px;
    text-align: center;
    margin-right: 50px;
    font-weight: bold;
    font-size: 18px;
}
option:hover {
    background-color: #c0c0c0; /* اختر اللون الذي تريده */
    color: #000; /* لون النص داخل الخيار */
}


.hiden{
    visibility: hidden;
}


.welcom{
    margin: 10px auto;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
}

.welcom::before{
    content: "";
    position: absolute;
    width: 148%;
    height: 81vh;
    min-width: 100%;
    background-color: #c0c0c021;
    transform: rotate(-17deg);
    z-index: -1;

}
@media (max-width: 768px) {
    .welcom {
        flex-direction: column;
      
    }
  }
  @media (min-width: 978px) {
    .welcom {
      
    }
  }
.welcom img{
    height: 300px;
    width: 300px;
}
.welcom .first{
    height: 300px;
    width: 300px;  
}

.home{
   background-color: #f7f7fd; 
}

.main{
    height: 300px;
    max-width: 99%;
    margin: 0 auto;
background-image: url("/image/aden.jpg");
background-size:cover;
background-repeat: no-repeat;
padding-top: 200px;


}

.cardcontanar{
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 6px;
    justify-content: center;
    align-items: center;
    padding: 10px;
    max-width: 100%;
    margin: 30px auto 0;

}

.navbefor{
    position: relative;

}
.navbefor::before{
   content: "";
    position: absolute;
    bottom: -2px;
    width: 83%;
    height: 7px;
    background-color: burlywood;
    border-radius: 5px;
    right: 8px;
}

.searchbox{
    width: 98% ;
    background-color: #0000004a; 
    padding: 10px; border-radius: 10px ;
    margin: 0 auto;
}
.searchbox select{
    background-color:#ffc6008a;

    font-weight: bold;
}
    
.lin{
    display: flex;
    background-color: #0000004a;
    padding:  10px;
    border-radius: 10px;
    justify-content: center;
    align-items: center;
    margin:10px auto ;
    width: 90%;


}

@media (min-width: 768px) {
    .lin {
      width: 75%;
    }
  }

.lin .lin-a{
    width: 49%;
    text-align: center;
   padding: 5px 0;
    border-radius:10px ;
    font-weight: bold;
    text-decoration: none;
}

.lin .lin-b{
    background-color:#ffc6008a;
}



#myRange::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background: #4CAF50;
    cursor: pointer;
  }
  
  #myRange::-webkit-slider-runnable-track {
    width: 100%;
    height: 8.4px;
    cursor: pointer;
    background: #ddd;
    border-radius: 1.3px;
  }