* {
  font-family: "Montserrat", sans-serif;
  padding: 0px;
  margin: 0px;
}
/* header styling start here */
header {
  background-color: white;
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  width: 100vw;
  align-items: center;
  border-bottom: 4px solid rgba(128, 128, 128, 0.2);
  padding: 15px 40px;
  background-color: white;
  z-index: 100;
}

#header_heading {
  display: flex;
  font-size: 35;
  cursor: pointer;
}
#shopbold {
  font-weight: 800;
}
#clothing_heading {
  display: flex;
  flex-wrap: wrap;
  font-weight: 600;
  justify-content: space-evenly;
}
#clothing_heading div {
  padding-left: 30px;
}
#clothing_heading div:hover {
 cursor: pointer;
}
#searchbar {
  background-color: rgba(128, 128, 128, 0.156);
  width: 300px;
  padding: 5px;
}
#searchbar:hover{
  cursor: pointer;
}
#searchbar input {
  border: none;
  background-color: transparent;
  width: 90%;
  padding-left: 10px;
}
#searchbar input:hover{
  cursor: pointer;
}
#cart {
  position: relative;
  padding: 10px;
  margin-right:50px;
}
#cart i:hover{
  cursor: pointer;
}
#cartvalue {
  position: absolute;
  text-align: center;
  left: 20px;
  top: -10px;
  height: 18px;
  width: 18px;
  font-size: 12px;
  color: white;
  background-color: #009688;
  border-radius: 50%;
}
/* header styling end here */
/* homepage start here */
.main {
  margin-top: 100px;
  margin-bottom: 100px;
}
#slider {
  padding: 0px 120px;
}
.main > h2 {
  margin-top: 50px;
  margin-left: 130px;
  font-weight: 600;
  font-size: 1.6em;
}
.cards {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 20px;
}
.card {
  width: 200px;
  height: auto;
  cursor: pointer;
  background-color: rgb(255, 255, 255);
  box-shadow: rgba(0, 0, 0, 0.3) 0px 2px 10px;
  margin: 10px 10px;
}
.card:hover {
  box-shadow: rgba(0, 0, 0, 0.6) 0px 2px 10px;
}
.image {
  width: 100%;
}
.name {
  padding: 10px;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.5px;
  color: rgb(27, 25, 25);
}
.brand {
  padding-left: 10px;
  font-size: 12px;
  color: rgb(110, 110, 110);
  font-weight: bold;
}
.ruppes {
  padding: 10px;
  font-size: 15px;
  letter-spacing: 2px;
  color: rgb(0, 150, 136);
  font-weight: bold;
}
/* homepage end here */

/* product detail start here */
#main2 {
  box-sizing: border-box;
  font-family: Montserrat, sans-serif;
  font-size: 20px;
  letter-spacing: 1px;
  /* margin-top: 20vh; */
}
.big_img {
  height: 100%;
  width: 40%;
}
.outer {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 15px;
  margin: 30px;
  margin-top: 130px;
}
.main2 {
  display: flex;
  flex-direction: column;
  width: 55%;
  padding-left: 30px;
}
.name_heading {
  font-weight: 400;
  font-size: 44px;
  letter-spacing: -2px;
  margin: 0;
}
.pbrand {
  margin-top: 20px;
  font-weight: 400;
  color: black;
  margin-bottom: 20px;
}
.rs {
  color: rgb(0, 150, 136);
  font-weight: bold;
}
.des {
  margin-top: 20px;
  order: 1;
}
.description {
  order: 2;
  margin-top: 20px;
  font-size: 16px;
  font-weight: 300;
  color: rgb(134, 147, 158);
}
.preview_container {
  display: flex;
  order: 4;
  flex-wrap: wrap;
  justify-content: left;
  margin-top: 0px;
}
.preview {
  order: 3;
  margin-top: 20px;
  font-weight: 400;
  margin-bottom: 20px;
}
.preview_img {
  width: 100px;
  height: 125px;
  cursor: pointer;
  margin: 5px;
  padding: 4px;
  border-radius: 6px;
}
.actives {
  border-width: 2px;
  border-style: solid;
  border-color: #009688;
  border-image: initial;
}
.addcart {
  margin-top: 40px;
  font-size: 16px;
  font-weight: bold;
  color: rgb(255, 255, 255);
  letter-spacing: 2px;
  background-color: rgb(0, 150, 136);
  cursor: pointer;
  box-shadow: rgba(0, 0, 0, 0.5) 0px 2px 10px;
  padding: 10px 20px;
  border-width: initial;
  border-style: none;
  border-color: initial;
  border-image: initial;
  border-radius: 4px;
  width: fit-content;
  order: 10;
  transition: transform 2s;
}
button:active {
  transform: scale(2,2);
}
.hide {
  display: none;
}
#edyodaprojectlogo {
  position: fixed;
  bottom: 40px;
  right: 80px;
  height: 50px;
}
/* product detail end here */
/* checkout page start here */
#checkout_page {
  /* margin-top: 15vh; */
  width: 85vw;
  margin-left: auto;
  margin-right: auto;
}
#checkout_heading {
  margin-top: 18vh;
  font-weight: 400;
  margin-bottom: 5vh;
}
#total_items_text {
  font-size: 22px;
}
#checkout_innerdiv {
  width: 100%;
  display: flex;
  justify-content: space-between;
}
.cartItem {
  width: 500px;
  height: 110px;
  margin-top: 15px;
  padding: 15px;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 5px;
}
.cartItemImg {
  height: 100%;
  width: 85px;
  float: left;
  margin-right: 15px;
}
.cartItemName {
  font-size: 17px;
  font-weight: 500;
}
.cartItemRs {
  margin-top: 10px;
  font-size: 14px;
}
.cartItemQ {
  margin-top: 10px;
  font-size: 14px;
  display: inline-block;
}
#final_C2 {
  width: 500px;
  height: 160px;
  margin-top: 15px;
  padding: 15px;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 5px;
}
#tm {
  font-size: 22px;
  margin-bottom: 20px;
}
#trs {
  font-size: 20px;
  font-weight: 800;
}
#placeOrder {
  margin-top: 20px;
  display: block;
  height: 40px;
  width: 120px;
  color: white;
  background-color: #009688;
  border-radius: 5px;
  border: none;
  transition: transform 2s;
}
/* checkoutpage end here */
/* orderplaced page start here */
#orderplaced_page {
  display: flex;
  flex-direction: column;
  align-items: center;
  /* margin-top: 130px; */
  margin-bottom: 40px;
  flex-wrap: wrap;
  
}
#circle {
  margin: 0 auto;
  background-color: lightgreen;
  color: white;
  height: 200px;
  width: 200px;
  border-radius: 50%;
  animation-name: example;
  animation-duration: 1.3s;
  margin-top: 125px;
}
@keyframes example {
  from {color: lightgreen;}
  to {color:white;}
}

#check {
  padding-left: 55px;
  padding-top: 50px;
}
#orderplaced_page h1 {
  margin-top: 25px;
}
#orderplaced_page p {
  margin-top: 10px;
  font-size: 18px;
}
/* order placed page end here */
/* footer start here */
footer {
  display: flex;
  justify-content: space-between;
  background-color: rgba(0, 0, 0, 0.9);
  color: white;
  padding: 30px 300px;
  font-size: 10px;
  font-weight: 300;
}
footer b {
  font-weight: 700;
}
footer li {
  margin-top: 10px;
  font-weight: 500;
  list-style: none;
}
/* footer end here */
@media screen and (max-width: 480px) {
  header{
    margin: 0;
    padding: 15px;
  }
  #header_heading{
     
  }
 #clothing_heading{
  display: none;
 }
 #searchbar{
  display: none;
 }
 #slider {
  padding: 0px 50px;
}
.main >h2{
  margin: 20px;

}
.main{
  margin-bottom: 0;
}
.cards{
  margin: 10px;
}
.card{
  width:43%
}
footer{
  margin: 0;
  padding: 50px;
}
/* #main2{
  margin-top: 20%;
} */
.outer{
  margin: 0;
  padding: 0;
  margin-top: 100px;
}
.big_img{
  width: 90%;
}
.main2{
   width: 100%;
  }
  .preview_img{
   width: 50px;
   height: 75%;
  }
  #checkout_innerdiv{
      flex-wrap: wrap;  
  }
.cartItem{
  width: 90%;
  /* display: flex; */
}
#circle{
  margin-top: 125px;
}
#orderplaced_page h1 {
  margin-top: 50px;
  margin-left: 20%;
}
#orderplaced_page p{
  margin-top: 100px;
  margin-left: 10%;
  margin-bottom: 50px;
}
#final_C2{
  margin-top: 50px;
  margin-bottom: 50px;
}

}