body{
    margin: 0;
    padding: 0;
    font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
}

/* navbar */

#nav-container{
    background-color: rgb(240,241,247); 
   box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px; 
   /* width: 100%; */
   height: 70px;
   position: fixed;
   top: 0;
   left: 0;
   bottom: 0;
   right: 0;
}

#home-nav >a:hover{
 color: blue;
}

#upper-nav{
   display: flex;
   justify-content: space-between;
   /* background-color: blueviolet; */
}
#logo-img{
   width: 50%;
   margin: 27px 0 0 15px;
       
}

.home-anchor-image{
 width: 15%;
 margin: 27px 0 0 15px;
} 




#logo-img img{
   width: 25%;
   margin-top: -15px;
}

#home-nav{
  margin: 20px 35px 0 0;
  color: black;
}

#home-nav a{
  text-decoration: double;
   color: black;
}




/* navbar end */



 /* form styling strt */


#form-container{
    width: 70%;
    margin: 3% 11% 0 17%;
    display: grid;
    grid-template-columns: repeat(2,1fr);
    margin-bottom: 9%;
   
}
h2{
 margin-left: 17%;
 margin-top: 7%;
}

#form-left input[type="text"],
input[type="number"]{
    border: 1px solid black;
    border-radius: 0;
    width: 90%;
    font-size: 12px;
    padding: 7px;
    margin-bottom: 13px;
    text-decoration: italic;
}

#form-right input[type="text"],
input[type="number"]{
    border: 1px solid black;
    border-radius: 0;
    width: 90%;
    font-size: 12px;
    padding: 7px;
    margin-bottom: 13px;
}

#form-left input[type="checkbox"]{
    width: 8%;
    border-radius: none;
    margin: 0 0 3% -2%;
}

select {
    display: block;
    width: 95%;
    padding: 7px;
    border: 1px solid #000000;
    box-sizing: border-box;
    margin-bottom: 15px;
}

 #Phone{
    width: 40%;
}

#button{
    width: 15%;
    background-color: rgb(255, 255, 255);
    padding: 5px;
    border: 1px solid rgb(0, 0, 0);
    border-radius: 11px;
    color: rgb(76, 76, 76);
    cursor: pointer;
}
#button:hover{
   background-color: rgb(65,68,103);
   color: aliceblue;
}

#save{
    width: 45%;
    padding: 6px;
    background-color: rgb(65,68,103);
    color: aliceblue;
    border-radius: 11px;
    border: 1px solid black;
    margin-left: 8px;
    margin-top: 5px;
    cursor: pointer;

}
input[type="submit"]:hover{
  transition:  0.ms;
  background-color: black;
}

/* form styling end */


/* footer strt */
#footer{
    margin-top: 16%;
   }


.footer-up {
    margin-left: -.5%;
    width: 100%;
    margin-top: -6%;
    background-color: #545871;
    padding: 0 1.3%;
    /* height: 80px; */
    /* border: 1px solid red; */
  }
  .footer-down {
    /* border: 1px solid red; */
    width: 100%;
    padding:  1.3%;
    margin-left: -.5%;
    margin-top: -1%;
    background-color: whitesmoke;
    /* padding: 10px; */
  }
 
  .footerInput{
    height: 20px;
    background-color: black;
  
  }
  .right > h5 {
    display: inline;
    color: white;
  }
  .right > #email {
    width: 250px;
    padding: 5px;
    border: 0;
  }
  
  .card:hover{
    cursor:auto;
  }
  button {
    padding: 5px;
    border: 0;
    color: #545871;
    /* font-weight: bold; */
    /* background-color: red; */
  }
  button:hover {
    color: white;
    background-color: #2e2c38;
    cursor: pointer;
  }
 
  .deals-2 {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    /* margin-top:27px ; */
  }

  .deals-2 > p {
    color: white;
    font-size: 12px;
    font-weight: bold;
  }

  .deals-2 > span {
    color: white;
  } 
  span > i {
    margin-right: 5px;
    font-size: 20px;
  }



  .footer-down > p {
    font-size: 12px;
  }
  .policy {
    margin-bottom: 5px;
  }
  .policy > a {
    color: black;
    font-size: 12px;
  }
  .footer-images > img {
    width: 75px;
  }
  .footer-images {
    text-align: center;
    margin: 20px 0;
  }
  #foot-img-last {
    text-align: center;
  }
  
  #footer input {
    border-radius: 0;
    /* height: ; */
    /* background-color: black; */
    margin-right: -5.5%;
  }
  
  #footer button {
    padding: 10px;
    font-weight: bold;
    margin-left: 0;
    height: 3.65em;
  }


/* footer end */


/* small screen media queries */
@media screen  and (min-width: 340px) and (max-width: 768px) {
 
  .h2{
    margin-top: 80px;
  }

  #form-left input[type="text"],
  input[type="number"]{
  
      width: 75%;
     
  }

  #button{
    width: 30%;
    background-color: rgb(255, 255, 255);
    padding: 5px;
    border: 1px solid rgb(0, 0, 0);
    border-radius: 11px;
    color: rgb(76, 76, 76);
    cursor: pointer;
}




}



/* medium screens */
@media screen  and (min-width: 769px) and (max-width: 1024px) {
  .h2{
    margin-top: 90px;
  }
  #form-left input[type="text"],
  input[type="number"]{
  
      width: 75%;
     
  }



}

