* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: "Montserrat", sans-serif;
    
  }

  body{background-color: #353535;
    color: #fff;}
  .demo{
    margin: auto;
  }

  
  header {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 30px 0%;
    background-color: #252525;
  }

  .btn {
    margin-left: 20px;
    padding: 9px 25px;
    background-color: rgba(244, 238, 224,1);
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease 0s;
  }
  
  .btn:hover {
    background-color: rgba(244, 238, 224,.8);
  }
  
  

  .logo{
    width: 8%;
    margin-right: 1%;
    
   
  }
  
  .navLinks {
    list-style: none;
    display: flex;
  }
  
  .navLinks a,
  .contactButton,
  .shopNowButton,
  .mobileNavLinks a {
    
    font-weight: 500;
    color: #545e7b;
    text-decoration: none;
  }
  
  .navLinks li {
    padding: 0px 20px;
  }
  
  .navLinks li a {
    transition: all 0.3s ease 0s;
  }
  
  .navLinks li a:hover {
    color: #f79d83;
  }
  
  .contactButton {
    margin-left: 20px;
    padding: 9px 25px;
    background-color: rgba(247, 157, 131, 1);
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease 0s;
  }
  
  .contactButton:hover {
    background-color: rgba(247, 157, 131, .8);
  }
  
  /* Mobile Nav */
  
  .menu {
    display: none;
  }
  
  .overlay {
    height: 100%;
    width: 0;
    position: fixed;
    left: 0;
    top: 0;
    background-color: #fff;
    overflow-x: hidden;
    transition: all 0.5s ease 0s;
  }
  
  .overlay--active {
    width: 100%;
  }
  
  .mobileNavLinks {
    display: flex;
    height: 100%;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  
  .overlay a {
    padding: 15px;
    font-size: 36px;
    display: block;
    transition: all 0.3s ease 0s;
  }
  
  .overlay a:hover,
  .overlay a:focus {
    color: #f79d83;
  }
  .overlay .close {
    position: absolute;
    top: 20px;
    right: 45px;
    font-size: 60px;
    color: #edf0f1;
    cursor: pointer;
  }
  
  .homePageMain {
    
    height: 75vh;
    background-image: url("assets/background.jpg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.slogan{
    color: #4F4557;
    padding: 50px;
}

  .shopNowButton {
    margin-left: 70px;
    padding: 9px 25px;
    background-color: rgba(247, 157, 131, 1);
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease 0s;
  }

  .shopNowButton:hover {
    background-color: rgba(247, 157, 131, .9);
  }

  .h1Shop{
    color: #fff;
    padding: 50px;
}

.flag{
  width: 4%;
 float: right;
}
.flagtxt{
  width: 60%;
}
.vid{
  
  margin: auto;
}
  /* product boxes */
  
  .box {

    background-color: #555555;
    color: #fff;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    padding: 10px;
    width: 85%;
    margin: auto;
    transition: transform 0.2s ease-in-out;
    margin-bottom: 20px;
  }

  .box:hover{
    transform: scale(1.02);

  }

  .box h3 { 
    padding: 10px;
  }

  .box p{
    padding-left: 20px;
  }

  .productPic{
    width: 90%;
    display: block;
    margin: 0 auto;
  }

   .addToCartBtn {
    text-align: center;
    padding: 9px 25px;
    background-color: rgba(247, 157, 131, 1);
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease 0s;
    float: left;
    margin-left: 45%;
  }
   .moreInfo {
    width: 30px;
    height: 30px;
    border: none;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    margin-top: 2px;
    float: right;
    
  }
   
  .hidden {
   
    display: none;
    
  }

  #product1InfoP iframe {
    display: none;
  }
  

  .product2{
    clear: both;
  }
  
  form {
    padding-left: 10%;
    display: flex;
    flex-direction: column;
    align-items: left;
    justify-content: center;
    margin-top: 30px;
}
 label {
    font-weight: bold;
    margin-top: 10px;
}
 input, textarea {
    width: 25%;
    padding: 10px;
    margin-top: 5px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}
 
.formSubmitBtn {
  width: 10%;
  padding: 9px 25px;
  background-color: rgba(247, 157, 131, 1);
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease 0s;
}

.error{
      color: red;
}

.gallery {
  display: flex;
  flex-wrap: wrap;
  border: 10px solid #fff;
  width: calc(100% - 50px);
  margin: 60px auto 0;
}

.gallery a {
  display: block;
  text-decoration: none;
  width: 25%;
  overflow: hidden;
  outline: none;
}

.gallery a img {
  height: 100%;
  transform: scale(1,1);
  transition: all 300ms ease;
}

.gallery a img:hover {
  transform: scale(1.1,1.1);
}



.bg {
  width: 100%;
  margin: 1%;
  height: 350px;
  background-size: cover;
  transform: scale(1,1);
  transition: all 300ms ease;
}

.bg:hover {
  transform: scale(1.1,1.1);
}

/*@media(max-width: 991px) {

.gallery a {
  width: 50%;
}

}

@media(max-width: 767px) {

.gallery a {
  width: 100%;
}

.bg {
  height: 300px;
}

}

*/
        

  @media screen and (min-width: 600px) {
    .overlay a {
      font-size: 20px;
    }
    .overlay .close {
      font-size: 40px;
      top: 15px;
      right: 35px;
    }
      .gallery a {
  width: 25%;
}
    
  }

  
  
  @media only screen and (max-width: 800px) {
    .navLinks,
    .contactButton {
      display: none;
    }
    .menu {
      display: initial;
    }
    

    .box{
      width: 90%;
      margin: 5%;
    }
    main .h1Shop{
      font-size: x-large;
      padding: 19.5px;   
  }
  input, textarea {
    width: 90%;
  }
  .formSubmitBtn {
    width: 30%;
  }
  
  form{
    padding-left: 5%;
  }
      .gallery a {
  width: 100%;
}

.bg {
  height: 300px;
}
.box h3{
  font-size: small;
}
.vid{
  width: 80%;
}
#demo{
  font-size: large;
}
.flag{
  width:10%;
}
.logo{
  width: 20%;
  
 
}
}