@import url("https://fonts.googleapis.com/css2?family=Spartan:wght@100;200;300;400;500;600;700;800;900&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family:sans-serif;
}

h1 {
  font-size: 50px;
  line-height: 64px;
  counter-reset: #222;
  font-family:sans-serif;
}

h2 {
  font-size: 46px;
  line-height: 54px;
  color: #222;
}

h4 {
  font-size: 20px;
  color: #222;
}

h6 {
  font-weight: 700px;
  font-size: 12px;

}

p {
  font-size: 16px;
  color: #465b52;
  margin: 15px 0 20px 0;
}

.section-p1 {
  padding: 40px 80px;
}

.section-m1 {
  margin: 40px 0;
}

button.normal {
  font-size: 14px;
  font-weight: 600;
  padding: 15px 30px;
  color: #000;
  background-color: #fff;
  border-radius: 4px;
  cursor: pointer;
  border: none;
  outline: none;
  transition: 0.2s;
}

button.white {
  font-size: 13px;
  font-weight: 600;
  padding: 11px 18px;
  color: #fff;
  background-color: transparent;
  border-radius: 4px;
  cursor: pointer;
  border: 1px solid #fff;
  outline: none;
  transition: 0.2s;
}

body {
  width: 100%;
} 

.floating-container:hover .element-container .float-element:nth-child(1) {
  animation: come-in 0.4s forwards 0.2s;
}

.floating-container:hover .element-container .float-element:nth-child(2) {
  animation: come-in 0.4s forwards 0.4s;
}

.floating-container:hover .element-container .float-element:nth-child(3) {
  animation: come-in 0.4s forwards 0.6s;
}


/* Top Nav */

#top-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 80px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.06);
  height: 30px;
}

#top-nav p {
  color: red;
  font-size: 15px;
  font-weight: bold;
}

#social-top-nav {
  display: flex;
  align-items: center;
  justify-content: center;
}

#top-nav li {
  list-style: none;
  padding: 0 20px;
}

#top-nav li a {
  text-decoration: none;
  color: black;
}

/*Header Start */

#header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 80px;
  background-color: black;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.06);
  z-index: 999;
  position: sticky;
  top: 0;
  left: 0;
  height: 80px;
}

.logo {
  width: 60px;
  height: 60px;
}

#navbar {
  display: flex;
  align-items: center;
  justify-content: center;
}

#navbar li {
  list-style: none;
  padding: 0 20px;
  position: relative;
}

#navbar li a {
  text-decoration: none;
  font-size: 16px;
  font-weight: bold;
  text-transform: uppercase;
  color: #ffffff;
  transition: 0.3s;
}

#navbar li a.active,
#navbar li a:hover {
  color: #37a4ec;
}

#navbar li a.active::after,
#navbar li a:hover::after {
  content: "";
  width: 30%;
  height: 2px;
  background-color: #37a4ec;
  position: absolute;
  bottom: -4px;
  left: 20px;
}

#mobile {
  display: none;
  align-items: center;
}

#close {
  display: none;
}

/*Home Page */

#hero {
  background-image: url("bia.jpg");
  height: 90vh;
  width: 100%;
  padding-left: 200px;
  background-size: cover;
  background-position: top 25% right 0;
  padding: 50px 80px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

#hero h2 {
  margin-top: 50px;
  margin-bottom: 50px;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 80px;
}

#hero h1 {
  margin-bottom: 50px;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 50px;
  color: #37a4ec;
}

#hero p {
  margin-bottom: 50px;
}

#hero span {
  color: red;
}

#hero button {
  margin-top: -120px;
}

#hero h4 {
  font-weight: bold;
  text-transform: uppercase;
}

#hero button { 
  background-image: url("button.jpg"); 
  background-color: transparent; 
  color: red; 
  border: 0; 
  padding: 14px 80px 14px 65px;
  margin-left: -30px;
  background-repeat: no-repeat; 
  cursor: pointer; 
  font-weight: 700; 
  font-size: 15px; }

/*Feature */

#feature {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

#feature .fe-box {
  width: 180px;
  text-align: center;
  padding: 25px 15px;
  box-shadow: 20px 20px 34px rgba(0, 0, 0, 0.03);
  border: 1px solid #cce7d0;
  border-radius: 4px;
  margin: 15px 0;
}

#feature .fe-box:hover {
  box-shadow: 10px 10px 54px rgba(70, 62, 221, 0.1);
}

#feature .fe-box h6 {
  display: inline-block;
  padding: 9px 8px 6px 8px;
  line-height: 1;
  border-radius: 4px;
  color: black;
  background-color: rgb(253, 102, 102);
}

#feature .fe-box img {
  width: 100%;
  margin-bottom: 10px;
}

#feature .fe-box:nth-child(2) h6 {
  background-color: #2acacf;
}

#feature .fe-box:nth-child(3) h6 {
  background-color: #f3ea6b;
}

#feature .fe-box:nth-child(4) h6 {
  background-color: #ed80f7;
}

#feature .fe-box:nth-child(5) h6 {
  background-color: #e8a0f7;
}

#feature .fe-box:nth-child(6) h6 {
  background-color: #9bdb66;
}

/*Feature */ 

#product1 {
  text-align: center;
}

#product1 .pro-container {
  display: flex;
  justify-content: space-between;
  padding-top: 20px;
  flex-wrap: wrap;
}

#product1 .pro {
  width: 23%;
  min-width: 250px;
  padding: 10px 12px;
  border: 1px solid #cce7d0;
  border-radius: 25px;
  cursor: pointer;
  box-shadow: 20px 20px 30px rgba(0, 0, 0, 0.02);
  margin: 15px 0;
  transition: 0.2s ease;
  position: relative;
}

#product1 .pr:hover {
  box-shadow: 20px 20px 30px rgba(0, 0, 0, 0.06);
}

#product1 .pro .discount {
  position: absolute;
  z-index: 1;
  text-align: center;
  margin-left: 20px;
  margin-top: 10px;
  color: white;
  background: red;
  border-radius: 4px;
}

#product1 .pro .discount strong {
  font-size: 70%;
}

#product1 .pro img {
  position: relative;
  z-index: 0;
  width: 100%;
  border-radius: 20px;
}

#product1 .pro .des {
  text-align: start;
  padding: 10px 0;
}

#product1 .pro .des span {
  color: #606063;
  font-size: 12px;
}

#product1 .pro .des h5 {
  padding-top: 7px;
  color: #1a1a1a;
  font-size: 14px;
}

#product1 .pro .des i {
  font-size: 12px;
  color: rgb(243, 181, 25);
}

#product1 .pro .des h4 {
  padding-top: 7px;
  font-size: 15px;
  font-weight: 700;
}

#new-price {
  color: #088178;
}

#old-price {
  color: red;
  text-decoration: line-through;
}

#product1 .pro .cart {
  width: 40px;
  height: 40px;
  line-height: 40px;
  border-radius: 50px;
  background-color: #e8f6ea;
  font-weight: 500;
  color: #088178;
  border: 1px solid #cce7d0;
  position: absolute;
  bottom: 20px;
  right: 10px;
}

#banner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  align-items: center;
  background-image: url("img/sm-banner/banner.png");
  width: 100%;
  height: 40vh;
  background-size: cover;
  background-position: center;
}

#banner h4 {
  color: white;
  font-size: 16px;
}

#banner h2 {
  color: white;
  font-size: 30px;
  padding: 10px 0;
}

#banner h2 span {
  color: black;
}

#banner button:hover {
  background: #088178;
  color: #fff;
}

#sm-banner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

#sm-banner .banner-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  top: 0;
  align-items: start;
  min-width: 400px;
  height: 45vh;
  background-size: cover;
  background-position: center;
  padding: 30px;
  border-radius: 15px;
}

#sm-banner .banner-box a {
  text-decoration: none;
  color: #fff;
}

#sm-banner .banner-box1 {
  background-image: url("img/sm-banner/sm_banner4.jpg");
  color: #000;
}

#sm-banner .banner-box2 {
  background-image: url("img/sm-banner/sm_banner2.jpg");
}

#sm-banner .banner-box3 {
  background-image: url("img/sm-banner/sm_banner6.jpg");
}

#sm-banner .banner-box4 {
  background-image: url("img/sm-banner/class.jpg");
}

#sm-banner h4 {
  color: #fff;
  font-size: 20px;
  font-weight: 300;
}

#sm-banner h2 {
  font-style: italic;
  font-weight: bold;
  color: #9bf5f0;
  font-size: 32px;
  text-transform: uppercase;
  font-weight: 800;
}

#sm-banner span {
  color: rgb(33, 143, 233);
  text-align: center;
  align-items: center;
  font-size: 28px;
  font-weight: 500;
  font-weight: bold;
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #000;
  margin-bottom: 15px;
}

#sm-banner .banner-box:hover button {
  background-color: #4de4da;
  border: 1px solid #4de4da;
}

#newsletter {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
  background-image: url("img/sm-banner/signup_banner.png");
  background-repeat: no-repeat;
  background-position: 20% 30%;
  background-color: #041e42;
}

.form {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

#newsletter h4 {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
}

#newsletter p {
  font-size: 14px;
  font-weight: 600;
  color: #2dc1ee;
}

#newsletter p span{
  color: rgb(253, 62, 49);
}

#newsletter .form {
  display: flex;
  width: 40%;
}

#newsletter input {
  height: 3.125rem;
  padding: 0 1.25em;
  font-size: 14px;
  width: 100%;
  border: 1px solid transparent;
  border-radius: 4px;
  outline: none;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

#newsletter button {
  background-color: #088178;
  color: #fff;
  white-space: nowrap;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

footer .col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-top: -15px;
  margin-bottom: 20px;
}

footer .col .logo-cover img {
  margin-bottom: 30px;
  width: 100px;
  height: 100px;
  border-radius: 30px;
}

footer .col .logo-cover .footer-logo {
  padding-left: 10px;
}

footer h4 {
  font-size: 14px;
  padding-bottom: 20px;
}

footer p {
  font-size: 13px;
  margin: 0 0 8px 0;
}

footer a {
  font-size: 13px;
  text-decoration: none;
  color: #222;
  margin-bottom: 10px;
}

footer .textwidget .follow {
  margin-top: 20px;
}

footer .textwidget .follow i{
  color: #465b52;
  padding-right: 4px;
  cursor: pointer;
}

footer .copyright {
  width: 100%;
  text-align: center;
}







/* Shoes Page */

#shoes-header {
  background-image: url("img/banner/b1.jpg");
  width: 100%;
  height: 30vh;
  background-size: cover;
  display: flex;
  justify-content: center;
  text-align: center;
  flex-direction: column;
  padding: 14px;
}

#shoes-header h2,
#shoes-header p {
  color: #fff;
}

#shoes-header span {
  color: red;
}

#pagination {
  text-align: center;
}

#pagination a {
  text-decoration: none;
  background-color: #088178;
  padding: 15px 20px;
  border-radius: 4px;
  color: #fff;
  font-weight: 600;
}

#pagination a i {
  font-size: 16px;
  font-weight: 600;
}






/* Search Size */
#search {
  display: flex;
  align-items: center;
  justify-content: center;
}

#search input {
  margin-top: 50px;
  padding-left: 20px;
  width: 250px;
  height: 50px;
  border: 2px solid #000;
  border-radius: 5px;
}














/* Single Product */
#prodetails {
  display: flex;
  margin-top: 20px;
}

#prodetails .single-pro-image {
  width: 30%;
  margin-right: 50px;
}

#prodetails .single-pro-image img {
  border-radius: 5px;
}

.small-img-group {
  display: flex;
  justify-content: space-between;
}

.small-img-col {
  flex-basis: 32%;
  cursor: pointer;
}



#prodetails .submit-cart{
  border: 1px solid #000;
  border-radius: 10px;
  width: 50%;
  padding-top: 30px;
  padding: 30px;
}

#prodetails .submit-cart .sing-pro-details img {
  width: 100%;
}

#prodetails .submit-cart .sing-pro-details h4 {
  display: flex;
  justify-content: center;
  padding: 40px 0 20px 0;
}

#prodetails .submit-cart .sing-pro-details h2 {
  display: flex;
  justify-content: center;
  font-size: 25px;
}

#prodetails .submit-cart .sing-pro-details .choice-container {
  margin-left: 250px;
  display: block;
  justify-items: center;
}

#prodetails .submit-cart .sing-pro-details .choice-container select {
  border-radius: 8%;
  margin: 10px 10px;
  padding: 5px 0px;
  font-size: 16px;
  height: 47px;
}

#prodetails .submit-cart .sing-pro-details .choice-container input {
  border-radius: 8%;
  margin: 10px 60px;
  width: 70px;
  height: 47px;
  padding-left: 10px;
  font-size: 16px;
}

#prodetails .submit-cart .sing-pro-details .choice-container .cart-phone-submit {
  border-radius: 8%;
  margin: 10px 30px;
  width: 200px;
  height: 47px;
  padding-left: 10px;
  font-size: 16px;
}

#prodetails .submit-cart .sing-pro-details .choice-container input:focus {
  outline: none;
}

#prodetails .submit-cart .sing-pro-details .choice-container button {
  background: #088178;
  color: #fff;
  height: 47px;
  margin-left: 80px;
}

#prodetails .submit-cart .sing-pro-details span {
  line-height: 25px;
}












/* Warranty Policy */
#Main_policy .policy-container {
  margin-bottom: 50px;
}

#Main_policy .policy-container .policy-des {
  padding-top: 10px;
}

#Main_policy .policy-container .policy-des h2{
  display: flex;
  justify-content: center;
  font-size: 30px;
  margin-top: 10px;
  margin-bottom: 50px;
}

#Main_policy .policy-container .policy-des .number-list-policy {
  margin-top: 50px;
  margin-bottom: 20px;
}

#Main_policy .policy-container .policy-des .policy-des-detail {
  margin-top: 10px;
}

#Main_policy .policy-container .policy-des .policy-des-detail i{
  padding-right: 10px;
}





























/* Pay Policy */

#pay_policy .pay-container {
  margin-bottom: 50px;
}

#pay_policy .pay-container .pay-des {
  padding-top: 10px;
}

#pay_policy .pay-container .pay-des h2 {
  display: flex;
  justify-content: center;
  font-size: 30px;
  margin-bottom: 20px;
}

#pay_policy .pay-container .pay-des .number-list-policy {
  margin-top: 50px;
  margin-bottom: 20px;
  font-size: 20px;
}

#pay_policy .pay-container .pay-des ul{
  margin-bottom: 20px;
}

#pay_policy .pay-container .pay-des ul i {
  margin-right: 10px;
}

#pay_policy .pay-container .pay-des ul li {
  margin-left: 50px;
  margin-top: 20px;
  margin-bottom: 20px;
}

#pay_policy .pay-container .pay-des img{
  width: 300px;
  border-radius: 30px;
  border: #5ef7e2 2px solid;
}














#contact-details{
  display: flex;
  align-items: center;
  justify-content: space-between;
}

#contact-details .details {
  width: 40%;
}

#contact-details .details span {
  font-size: 12px;
}

#contact-details .details h2 {
  font-size: 26px;
  line-height: 35px;
  padding: 20px 0;
}

#contact-details .details h3 {
  font-size: 16px;
  padding-bottom: 15px;
}

#contact-details .details li {
  display: flex;
  list-style: none;
  padding: 10px 0;
}

#contact-details .details li i {
  font-size: 14px;
  padding-right: 22px;
}

#contact-details .details li p {
  margin: 0;
  font-size: 14px;
}

#contact-details .map {
  border-radius: 2px;
  border: #000 1px solid;
  width: 55%;
  height: 400px;
}

#contact-details .map iframe{
  width: 100%;
  height: 100%;
}







#changeSize .changeSize-img {
  width: 100%;
  margin: 20px 20px;
}

#changeSize .changeSize-img h4 {
  margin: 20px 20px;
}










@media (max-width: 1150px) {

  .floating-container{
    display: none;
  }

  #hero h2 {
    font-size: 70px;
  }

  #hero p {
    margin-top: 200px;
  }

  #sm-banner .banner-box {
    margin: 10px 10px;
  }

  #feature .fe-box {
    margin: 10px 10px;
  }

  #prodetails {
    display: flex;
    margin-top: 20px;
  }

  #prodetails .single-pro-image {
    width: 30%;
    margin-right: 50px;
  }

  #prodetails .single-pro-image img {
    border-radius: 5px;
  }

  .small-img-group {
    display: flex;
    justify-content: space-between;
  }

  .small-img-col {
    flex-basis: 32%;
    cursor: pointer;
  }



  #prodetails .submit-cart{
    border: 1px solid #000;
    border-radius: 10px;
    width: 50%;
    padding-top: 30px;
    padding: 30px;
  }

  #prodetails .submit-cart .sing-pro-details h4 {
    font-size: 15px;
    display: flex;
    justify-content: center;
    padding: 10px 0 20px 0;
  }

  #prodetails .submit-cart .sing-pro-details h2 {
    display: flex;
    justify-content: center;
    font-size: 15px;
  }

  #prodetails .submit-cart .sing-pro-details .choice-container {
    margin-left: 100px;
    display: block;
    justify-items: center;
  }
  
  #prodetails .submit-cart .sing-pro-details .choice-container select {
    border-radius: 8%;
    margin: 10px 10px;
    padding: 5px 0px;
    font-size: 16px;
    height: 47px;
  }
  
  #prodetails .submit-cart .sing-pro-details .choice-container input {
    border-radius: 8%;
    margin: 10px 10px;
    width: 70px;
    height: 47px;
    padding-left: 10px;
    font-size: 16px;
  }
  
  #prodetails .submit-cart .sing-pro-details .choice-container .cart-phone-submit {
    border-radius: 8%;
    margin: 10px 10px;
    width: 200px;
    height: 47px;
    padding-left: 10px;
    font-size: 16px;
  }
  
  #prodetails .submit-cart .sing-pro-details .choice-container input:focus {
    outline: none;
  }
  
  #prodetails .submit-cart .sing-pro-details .choice-container button {
    background: #088178;
    color: #fff;
    height: 47px;
  }
  
  #prodetails .submit-cart .sing-pro-details span {
    line-height: 25px;
  }
  
}


@media (max-width: 1024px) {
  #prodetails .submit-cart .sing-pro-details .choice-container {
    margin-left: -10px;
  }

  #prodetails .submit-cart .sing-pro-details .choice-container select {
    height: 30px;
    width: 30%;
    font-size: 15px;
  }

  #prodetails .submit-cart .sing-pro-details .choice-container input {
    height: 30px;
    width: 15%;
    padding: 0 0 ;
    font-size: 15px;
    margin-left: 60px;
  }

  #prodetails .submit-cart .sing-pro-details .choice-container .cart-phone-submit {
    height: 30px;
    width: 40%;
    padding: 0 0 ;
    font-size: 15px;
    margin-left: 30px;
  }

  #prodetails .submit-cart .sing-pro-details .choice-container button {
    margin: 10px 0;
    margin-left: 120px;
  }

  #prodetails .submit-cart .sing-pro-details span {
    font-size: 15px;
  }
}



/*  Start Media Query Ipad */

@media (max-width: 800px) {
  .section-p1 {
    padding: 40px 40px;
  }

  #top-nav p {
    margin-top: 23px;
    color: red;
    font-size: 18px;
    font-weight: bold;
  }

  #social-top-nav {
    display: none;
  }

  #navbar {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    position: fixed;
    top: 0;
    right: -300px;
    height: 100vh;
    width: 300px;
    background-color: #000;
    box-shadow: 0 40px 60px rgba(0, 0, 0, 0.1);
    padding: 80px 0 0 10px;
    transition: 0.3s;
  }

  #navbar.active{
    right: 0px;
  }

  #navbar li {
    margin-bottom: 25px;
  }

  #mobile {
    display: flex;
    align-items: center;
  }
  #mobile i {
    color: #fff;
    font-size: 24px;
    padding-left: 20px;
  }

  #close {
    display: initial;
    position: absolute;
    top: 30px;
    left: 30px;
    color: #ccc;
    font-size: 24px;
  }

  #lg-bag {
    display: none;
  }

  #hero {
    height: 50vh;
    padding: 50px 80px;
    background-position: top 30% right 20%;
  }

  #hero h1 {
    font-size: 25px;
    margin-bottom: 0px;
    margin-top: 0px;
  }

  #hero h2 {
    font-size: 35px;
    margin-bottom: 0px;
  }

  #hero p {
    font-size: 12px;
  }

  #hero h4 {
    font-size: 12px;
  }

  #feature {
    justify-content: center;
  }

  #feature .fe-box {
    margin: 15px 15px;
  }

  #product1 .pro-container {
    justify-content: center;
  }

  #product1 .pro {
    margin: 15px;
  }

  #prodetails .submit-cart .sing-pro-details .choice-container {
    margin-left: -10px;
  }

  #prodetails .submit-cart .sing-pro-details .choice-container select {
    margin: 10px 0 ;
    font-size: 12px;
    padding: 0 0;
    height: 20px;
    width: 30%;
  }

  #prodetails .submit-cart .sing-pro-details .choice-container input {
    margin: 10px 0 ;
    font-size: 12px;
    padding: 5px 10px;
    height: 20px;
    width: 20%;
    margin-left: 50px;
  }

  #prodetails .submit-cart .sing-pro-details .choice-container .cart-phone-submit {
    margin: 10px 0 ;
    font-size: 12px;
    padding: 0 0;
    height: 20px;
    width: 50%;
    margin-left: 20px;
  }

  #prodetails .submit-cart .sing-pro-details .choice-container button {
    margin: 10px 0px;
    padding:  0 10px;
    font-size: 8px;
    margin-left: 100px;
  }

  #prodetails .submit-cart .sing-pro-details h4 {
    padding: 0;
    font-size: 10px;
  }

  #prodetails .submit-cart .sing-pro-details h2 {
    font-size: 10px;
    margin-top: -10px;
  }

  #prodetails .submit-cart .sing-pro-details span {
    font-size: 10px;
  }

  #prodetails .submit-cart .sing-pro-details h5 {
    font-size: 10px;
  }

  #banner {
    height: 20vh;
  }

  #sm-banner {
    display: flex;
    justify-content: center;
  }

  #sm-banner .banner-box {
    min-width: 100%;
    height: 20vh;
    margin: 10px ;
  }

  #newsletter .form {
    width: 70%;
  }

  #contact-details {
    display: flex;
    flex-direction: column;
  }

  #contact-details .details {
    width: 100%;
  }

  #contact-details .map {
    width: 100%;
  }

  #changeSize .changeSize-img h4 {
    font-size: 50%;
  }
}


@media (max-width: 768px) {
  #contact-details .details span {
    font-size: 100%;
  }

  #contact-details .details h2 {
    font-size: 100%;
  }

  #contact-details .details h3 {
    font-size: 100%;
  }
  
  #contact-details .details li p {
    font-size: 100%;
  }
}


/*  Start Media Query Iphone */

@media (max-width: 600px) {
  .section-p1 {
    padding: 20px 20px;
  }

  #top-nav {
    height: 1.5vh;
  }

  #top-nav p {
    margin-top: 20px;
    color: red;
    font-size: 7px;
    font-weight: bold;
  }

  #social-top-nav {
    display: none;
  }

  #header{
    height: 8vh;
    padding: 10px 30px;
  }

  #hero {
    padding: 0 20px;
    background-position: 600px;
  }
  
  #hero h1 {
    font-size: 15px;
    margin-bottom: 0px;
    margin-top: 0px;
  }

  #hero h2 {
    font-size: 25px;
    margin-bottom: 0px;
  }

  #hero p {
    margin-top: 50px;
    margin-bottom: 15px;
    font-size: 12px;
  }

  #hero .address {
    margin-top: 0px;
  }


  #hero h4 {
    margin-top: 30px;
    font-size: 7px;
    text-decoration: none;
  }

  #sm-banner {
    display: flex;
    justify-content: center;
  }

  #sm-banner .banner-box {
    height: 20vh;
  }

  #product1 .pro {
    width: 100%;
  }

  #feature {
    justify-content: space-between;
  }

  #feature .fe-box {
    width: 155px;
    margin: 0 0 15px 0;
  }

  #banner {
    height: 40vh;
  }

  #newsletter {
    padding: 40px 20px;
  }

  #newsletter .newstext h4{
    font-size: 18px;
  }

  #newsletter .newstext p{
    font-size: 12px;
  }

  #newsletter .form {
    width: 100%;
  }

  footer .copyright {
    text-align: start;
  }

  #contact-details .details span {
    font-size: 80%;
  }

  #contact-details .details h2 {
    font-size: 80%;
    line-height: 120%;
  }

  #contact-details .details h3 {
    font-size: 80%;
  }
  
  #contact-details .details li p {
    font-size: 80%;
  }

  #prodetails .submit-cart .sing-pro-details .choice-container {
    margin-left: -20px;
    padding: 0 0;
    margin: 0 0;
  }

  #prodetails .submit-cart .sing-pro-details .choice-container label {
    font-size: 10px;
  }

  #prodetails .submit-cart .sing-pro-details .choice-container select {
    padding: 0 0 ;
    margin: 0 0;
    height: 25px;
    width: 50px;
    font-size: 10px;
  }

  #prodetails .submit-cart .sing-pro-details .choice-container input {
    padding: 0 0 ;
    height: 25px;
    width: 50px;
    font-size: 10px;
    margin-left: 30px;
  }
  
  #prodetails .submit-cart .sing-pro-details .choice-container .cart-phone-submit {
    padding: 0 0 ;
    margin: 0 0;
    height: 25px;
    width: 95px;
    font-size: 10px;
    margin-left: 10px;
  }

  #prodetails .submit-cart .sing-pro-details .choice-container button {
    width: 60px;
    height: 30px;
    font-size: 7px;
    padding: 0 0;
    margin-top: 10px;
  }

  #prodetails .submit-cart .sing-pro-details h4 {
    margin-top: 5px;
    font-size: 10px;
  }
}

/*  Start Media Query Iphone */

@media (max-width: 480px) {
  .section-p1 {
    padding: 20px 20px;
  }

  #top-nav {
    height: 2.5vh;
  }

  #top-nav p {
    margin-top: 23px;
    color: red;
    font-size: 7px;
    font-weight: bold;
  }

  #social-top-nav {
    display: none;
  }

  #header{
    height: 8vh;
    padding: 10px 30px;
  }

  #hero {
    padding: 0 20px;
    background-position: 380px;
  }
  
  #hero h1 {
    font-size: 15px;
    margin-bottom: 0px;
    margin-top: 0px;
  }

  #hero h2 {
    font-size: 25px;
    margin-bottom: 0px;
  }

  #hero p {
    margin-top: 90px;
    font-size: 10px;
    margin-bottom: 15px;
  }

  #hero .address {
    margin-top: 0px;
  }

  #hero h4 {
    font-size: 7px;
  }

  #sm-banner {
    display: flex;
    justify-content: center;
  }

  #sm-banner .banner-box h4{
    font-size: 15px;
  }

  #sm-banner .banner-box h2{
    font-size: 18px;
  }

  #product1 h2 {
    font-size: 20px;
  }

  #product1 p {
    margin-top: -10px;
    font-size: 10px;
  }

  #prodetails .submit-cart{
    padding: 10px 10px;
  }

  #prodetails .submit-cart .sing-pro-details .choice-container {
    margin-top: -13px;
    margin-bottom: 5px;
  }

  #prodetails .submit-cart .sing-pro-details .choice-container label {
    font-size: 8px;
  }

  #prodetails .submit-cart .sing-pro-details .choice-container select {
    width: 40px;
    height: 15px;
    font-size: 8px;
    padding: 0px 0px;
    margin: 0px 5px;
  }

  #prodetails .submit-cart .sing-pro-details .choice-container input {
    width: 20px;
    height: 15px;
    font-size: 8px;
    padding-left: 0px;
    margin: 0px 5px;;
  }

  #prodetails .submit-cart .sing-pro-details .choice-container .cart-phone-submit {
    width: 35px;
    height: 15px;
    font-size: 8px;
    padding-left: 0px;
    margin: 0px 5px;
  }

  #prodetails .submit-cart .sing-pro-details .choice-container button {
    width: 50px;
    font-size: 8px;
    padding: 20px 10px;
    border-radius: 2px;
    margin-top: 5px;
  }

  #prodetails .submit-cart .sing-pro-details h4 {
    font-size: 9px;
    padding: 0;
  }

  #prodetails .submit-cart .sing-pro-details h2 {
    font-size: 8px;
    margin-top: -10px;
  }

  #prodetails .submit-cart .sing-pro-details span {
    font-size: 7px;
  }

  #banner {
    height: 30vh;
  }

  #banner h4{
    margin-top: 5px;
    font-size: 16px;
  }

  #banner h2{
    margin-top: 0px;
    font-size: 12px;
  }

  #contact-details {
    display: flex;
    flex-direction: column;
  }

  #contact-details .details {
    width: 100%;
  }

  #contact-details .map {
    width: 100%;
  }

  #contact-details .details span {
    font-size: 80%;
  }

  #contact-details .details h2 {
    font-size: 80%;
    line-height: 120%;
  }

  #contact-details .details h3 {
    font-size: 80%;
  }
  
  #contact-details .details li p {
    font-size: 80%;
  }
}

@media only screen and (min-width: 375px) and (max-width: 767px) {
  #hero p {
    margin-top: 50px;
  }
}


@media (max-width: 380px){
  #prodetails .submit-cart .sing-pro-details .choice-container {
    margin-left: -5px;
  }

  #prodetails .submit-cart .sing-pro-details .choice-container h4 {
    margin: 0 0;
  }

  #prodetails .submit-cart .sing-pro-details .choice-container h2 {
    margin: 10px 10px;
  }

  #prodetails .submit-cart .sing-pro-details .choice-container input {
    margin-left: 30px;
  }

  #prodetails .submit-cart .sing-pro-details .choice-container .cart-phone-submit {
    margin-left: 15px;
  }

  #prodetails .submit-cart .sing-pro-details .choice-container button {
    width: 50px;
    height: 25px;
    padding: 0 0;
    margin-left: 50px;
  }
}

@media (max-width: 414px){

  #prodetails .submit-cart .sing-pro-details .choice-container input {
    margin-left: 30px;
  }

  #prodetails .submit-cart .sing-pro-details .choice-container .cart-phone-submit {
    margin-left: 15px;
    width: 70px;
  }

  #prodetails .submit-cart .sing-pro-details .choice-container button {
    margin: 0 0;
    padding: 0 0;
    margin-left: 50px;
    margin-top: 10px;
  }

  #prodetails .submit-cart .sing-pro-details h4 {
    font-size: 10px;
  }

  #prodetails .submit-cart .sing-pro-details h5 {
    font-size: 10px;
    margin-left: -10px;
  }
}


/*  Start Media Query Iphone potstrait */

@media (max-width: 320px) {
  #top-nav p {
    margin-top: 23px;
    color: red;
    font-size: 4.6px;
    font-weight: bold;
  }

  #header{
    height: 9vh;
    padding: 10px 30px;
  }

  #hero {
    padding: 0 20px;
    background-position: 620px;
  }

  #hero h1 {
    font-size: 10px;
    margin-bottom: 0px;
    margin-top: -25px;
  }

  #hero h2 {
    font-size: 15px;
    margin-bottom: 0px;
  }

  #hero p {
    margin-top: 40px;
    font-size: 7px;
    margin-bottom: 20px;
  }

  #hero .address {
    margin-top: 0px;
  }

  #hero h4 {
    font-size: 7px;
  }

  #prodetails .submit-cart {
    padding: 23px 10px;
  }

  #prodetails .submit-cart .sing-pro-details img {
    width: 100%;
  }

  #prodetails .submit-cart .sing-pro-details .choice-container {
    margin-top: -13px;
    margin-bottom: 23px;
    margin-left: -8px;
  }

  #prodetails .submit-cart .sing-pro-details .choice-container label {
    margin: 0px 0px;
  }

  #prodetails .submit-cart .sing-pro-details .choice-container select {
    width: 30px;
    height: 10px;
    font-size: 6px;
    margin: 0px 0px;
    border: 1px solid #000;
  }

  #prodetails .submit-cart .sing-pro-details .choice-container input {
    width: 20px;
    height: 10px;
    font-size: 6px;
    padding-left: 0px;
    margin: 0px 0px;
    border: 1px solid #000;
    margin-left: 25px;
  }

  #prodetails .submit-cart .sing-pro-details .choice-container .cart-phone-submit {
    width: 45px;
    height: 10px;
    font-size: 6px;
    padding-left: 0px;
    margin: 0px 0px;
    border: 1px solid #000;
    margin-left: 10px;
  }

  #prodetails .submit-cart .sing-pro-details .choice-container button {
    width: 50px;
    height: 25px;
    font-size: 4px;
    line-height: 4px;
    border-radius: 1px;
    padding: 10px 15px;
    margin: 0px 0px;
    margin-left: 40px;
    margin-top: 10px;
    margin-bottom: 10px;
  }

  #prodetails .submit-cart .sing-pro-details h4 {
    font-size: 4px;
    padding: 0;
  }

  #prodetails .submit-cart .sing-pro-details h2 {
    font-size: 6px;
    margin-top: -15px;
  }

  #prodetails .submit-cart .sing-pro-details h5 {
    font-size: 4px;
    margin-left: -50px;
  }

  #prodetails .submit-cart .sing-pro-details img {
    height: ;
  }

  #prodetails .submit-cart .sing-pro-details span {
    font-size: 5px;
    line-height: 5px;
    padding: 0px 0px;
  }

  #sm-banner {
    display: flex;
    justify-content: center;
  }
}