* {
    box-sizing: border-box;
  }
  
  body {
    width: 100%;
    height: 100vh;
    font-family: Arial, Helvetica, sans-serif;
    background-image: url(IMG-20220430-WA0011.jpg) ;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    overflow:visible;
  }
  .logo{
    width: min(50vw, 200px);
    animation: img 2s alternate-reverse linear;
}
  hr{
    margin-top: -20px;
  }
  .navbar{
    width: 100%;
    margin: 8px;
    top: 0;
    z-index: 1;
    font-family: Arial, Helvetica, sans-serif;
     padding-bottom: 20px;
      padding-top: 20px;
  }
  .menu{
    list-style: none;
    padding: 0;
    display: flex;
    align-items: stretch;
    justify-content: space-around;
    width: 100%;
  
  }
  ul li a{
    text-decoration: none;
    text-transform: uppercase;
    color: whitesmoke;
  }
  ul li a:hover{
    color: red;
  
  }
  .sub-menu{
    display:none;
  }
  ul li:hover .sub-menu{
    display: block;
    position: absolute;
    background: transparent;
    margin-top: 1px;
    margin-left: -40px;
    
  }
  ul li:hover .sub-menu ul{
    display: block;
    margin: 10px;
  }
  ul li:hover .sub-menu ul li{
    width: 150px;
    padding-bottom:15px;
    background: transparent;
    border-radius: 0;
    text-align: left;
    list-style: none;
    text-transform: uppercase;
    color: whitesmoke;
  }
  ul li:hover .sub-menu ul li:hover{
    color: red;
  }
  ul li:hover .sub-menu ul li:last-child{
    border-bottom: none ;
  }
  ul li:hover .sub-menu ul li a{
    text-decoration: none;
  
  }
  #product{
    color: red;
  }
  .header, .gal{
      text-transform: uppercase;
      color: red;
      text-align: center;
      padding-top: 70px;
      animation: head 2s;

  }
  @keyframes head {
      0%{opacity: 0; padding-top: 0;}
      100%{opacity: 1; padding-top: 70px;}
      
  }
  h3{
      text-transform: uppercase;
      color: red;

  }
  p{
      text-transform: capitalize;
      color: whitesmoke;
  }
  /* Float four columns side by side */
  .column {
    float: left;
    width: 50%;
    padding: 1px 40px;


  }
  
  /* Remove extra left and right margins, due to padding */
  .row {
      margin: 0 -5px;
    }
  
  /* Clear floats after the columns */
  .row:after {
    content: "";
    display: table;
    clear: both;
  }
  
  /* Responsive columns */
  @media screen and (max-width: 600px) {
    .column{
      width: 100%;
      display: block;
      margin-bottom: 20px;
    }
  }
  
  /* Style the counter cards */
  .card {
    box-shadow: 8px 4px 8px 0 black;
    padding: 16px;
    text-align: center;
    background-color:transparent;
    color: white;
  }
  #down{
    margin-bottom: 100px;
  }
  .form-container{
    background-color: black;
    width: 330px;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
    position: fixed;
    bottom: -500px;
    right: 0;
    transition: 0.5s;
}
.form-container:hover{
    bottom: 0;
}
#email-icon{
    width: 5px;
    height: 100px;
    float: left;
    font-size: 60px;
}
#form-head-container{
    background-color: red;
    padding: 5px;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
    margin-bottom: 10px;
}

.form-item{
    color: white;
    padding-left: 55px;
    margin-left: 10px;

}
input[type=text],input[type=number],textarea{
    width: 100%;
    padding: 11px;
    border-radius: 4px;
    box-sizing: border-box;
    height:10px;
    border: none;
    border-bottom: 1px solid red;
    background-color: transparent;
    color: whitesmoke;



}input[type=number]::placeholder{
    text-transform: uppercase;
color: rgb(124, 123, 123);
}
input[type=text]::placeholder{
text-transform: uppercase;
color:rgb(124, 123, 123);
}
#subject::placeholder{
    color: rgb(124, 123, 123);
    text-transform:uppercase;
    font-family: Arial, Helvetica, sans-serif;
}
#contact-us-label{
    color: white;
    padding-left: 70px;
}
form{
    color: white;
    padding-left: 80px;;
}
textarea{
width: 200px;
height: 100px;
}

#submit-btn, .res{
    background-color: red;
    border: none;
    color: white;
    padding:  7px 12px;
    margin: 9px;
    cursor: pointer;
    border-radius: 4px;

}
#submit-btn:hover{
    background-color: lime;
    color: black;
}
  footer{

    bottom: 0;
    align-items:stretch ;
    justify-content: space-around;
    text-align: start;
    height: 40px;
    width: 100%;
    color:white;
    font-size: x-small;
    padding-top:1000 px;
    padding-bottom:30px;
}

.a{
    display: inline;
    color: white;
    text-transform: uppercase;
    padding-left: 10px;
    padding-right: 10px;
    padding-bottom:30px;
    text-decoration: underline;
}
.a:hover{
  color: red;
  text-decoration: none;
}
#fi{
    text-decoration: none;
    display: inline;
    color: white;
    text-transform: uppercase;
    padding-bottom:30px;

}
#se{
    right: 0;
    color: white;
    text-transform: uppercase;
    padding-left: 10px;
    padding-right: 15px;
    padding-bottom:30px;
    text-decoration: underline;
}
#se:hover{
  color: red;
  text-decoration: none;
}
@media screen and (max-width:500px) {
  ul li a{
     display: list-item;
     width: 100%;
     font-size: xx-small;

  }
  .menu{
      width: 100%;
  }
  
}