@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap');
* {
    padding: 0;
    margin: 0;
}

.header {
    display: flex;
    margin: 20px 20px 20px 20px;
}
.asrar h3{
    margin-left: 10px;
    color: rgb(98, 98, 112);
    margin-top: 25px;
    
    
}
.header .ready p{
    font-size: 10px;
    
    margin-left: 10px;
    
}
@media (min-width: 768px) {
    .asrar h3{
        font-size: calc(1vw + 1.4rem);
    }
}
@media (max-width: 468px) {
    .asrar h3{
        font-size: 16px;
    }
    .phone{
      visibility: hidden;
    }
}
/* .newyear{
  margin-left: 5%;
  
}
.newyear img{
  border-radius: 10px;
  
} */
.phone{
    position: absolute;
    right: 10px;
    color: rgb(32, 106, 175);

}
@media (max-width: 768px) {
    .phone{
        display: none;
    }
}
@media (max-width: 768px) {
    
    
  .phone{
      display: flex;
      position: absolute;
      top: 110px;
      width: 95%;
      margin: auto;
      
  }
  .phone p{
      margin: auto;
  }   
}
/* pop up window coding start*/
.popup .overlay{
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1;
    display: none;
  }
  .popup .content{
    position: absolute;
    top: 30%;
    left: 50%;
    transform: translate(-50%,-50%) scale(0);
    /* background-color: white; */
    width: 60%;
    height: 60%;
    z-index: 4;
    text-align: center;
    padding: 20px;
    box-sizing: border-box;
  }
  .popup .close-btn {
    cursor: pointer;
    position: absolute;
    right: 20px;
    top: 20px;
    width: 30px;
    height: 30px;
    background: #222;
    color: #fff;
    font-size: 25px;
    font-weight: 600;
    line-height: 30px;
    text-align: center;
    border-radius: 50%;
  }
  .popup.active .overlay {
    display: block;
  }
  .popup.active .content {
    transition:all 1s ease-in-out;
    transform: translate(-50%,-50%) scale(1);
  }
  /*pop up window coding end*/

/* navbar coding start */
.wrapper{
    background: rgba(0, 0, 0, .6);
    position: absolute;
    width: 100%;
    z-index: 3;
  }
  .wrapper nav{
    
    display: flex;
    
    height: 70px;
    
  }
  nav .content{
    display: flex;
    align-items: center;
    
  }
  
  .content .logo a{
    text-decoration: none;
    color: cyan;
    font-size: 20px;
    font-weight: 600;
    cursor: pointer;
  }
  .content .links li{
    list-style: none;
    line-height: 70px;
    
  }
  .content .links li a,
  .content .links li label{
    text-decoration: none;
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    
    border-radius: 5px;
    transition: all 0.3s ease;
    margin-left: 5px;
    
  }
  .content .links li label{
    display: none;
  }
  .content .links li a:hover,
  .content .links li label:hover{
    background: black;
    box-shadow: 1px 1px 5px cyan;
    
  }
  
  .wrapper .menu-icon{
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    line-height: 70px;
    width: 70px;
    text-align: center;
  }
  .wrapper .menu-icon{
    display: none;
  }
 

  .wrapper input[type="checkbox"]{
    display: none;
  }
  
  /* Dropdown Menu code start */
  .content .links ul{
    position: absolute;
    background-color: rgba(0, 0, 0, .5);
    top: 80px;
    /* z-index: -1; */
    opacity: 0;
    visibility: hidden;
  }
  .content .links li:hover > ul{
    top: 70px;
    opacity: 1;
    visibility: visible;
    transition: all 0.3s ease;
  }
  .content .links ul li a{
    display: block;
    width: 100%;
    line-height: 30px;
    border-radius: 5px;
    
    
  }
  .content .links ul ul{
    position: absolute;
    top: 0;
    background-color: rgba(0, 0, 0, .5);
    right: calc(-100% + 8px);
  }
  .content .links ul li{
    position: relative;
  }
  .content .links ul li:hover ul{
    top: 0;
  }
  
  /* Responsive code start */
  @media screen and (min-width: 768px){
    .wrapper nav{
      max-width: 100%;
      padding: 0 20px;
    }
    nav .content .links{
      margin-left: 80px;
     
    }
    .content .links li a{
      padding: 8px 13px;
      
    }
   
  }
  
  @media screen and (max-width: 768px){
    .wrapper .menu-icon{
      display: block;
    }
    .wrapper #show-menu:checked ~ .menu-icon i::before{
      content: "\f00d";
    }
    nav .content .links{
      display: block;
      position: fixed;
      background: #14181f;
      height: 100%;
      width: 100%;
      top: 230px;
      left: -100%;
      margin-left: 0;
      max-width: 450px;
      overflow-y: auto;
      padding-bottom: 100px;
      transition: all 0.3s ease;
    }
    nav #show-menu:checked ~ .content .links{
      left: 0%;
    }
    .content .links li{
      margin: 15px 20px;
    }
    .content .links li a,
    .content .links li label{
      line-height: 40px;
      font-size: 20px;
      display: block;
      padding: 8px 18px;
      cursor: pointer;
    }
    .content .links li a.desktop-link{
      display: none;
    }
    
  
    /* dropdown responsive code start */
    .content .links ul,
    .content .links ul ul{
      position: static;
      opacity: 1;
      visibility: visible;
      background: none;
      max-height: 0px;
      overflow: hidden;
    }
    .content .links #show-factory:checked ~ ul,
    .content .links #show-products:checked ~ ul,
    .content .links #show-menjeans:checked ~ ul,
    .content .links #show-wj:checked ~ ul,
    .content .links #show-kj:checked ~ ul{
      max-height: 100vh;
    }
    .content .links ul li{
      margin: 7px 20px;
    }
    .content .links ul li a{
      font-size: 18px;
      line-height: 30px;
      border-radius: 5px!important;
    }
  }
  
  @media screen and (max-width: 400px){
    
    .wrapper nav{
      padding: 0 1px;
      
    }
    .content .logo a{
      font-size: 14px;
    }
    
  }
  /* navbar coding end */

  .main{
    position: relative;
    width: 100%;
    margin: auto;
    padding: 20px;
    background-color: rgb(219, 219, 219);
    text-align: center;
    
    
  }

.main .imgage-container{
  width: 50%;
 
  
}
.imgage-container img{
  display: block;
  position: relative;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 30px;
  box-shadow: 10px 10px 30px #7ca5a1;
}
.cad, .sampling, .cutting, .production, .washing, .quality, .finishing{
  display: flex;
  padding: 2%;
  width: 98%;
}
h2{
  text-align:left;
}

.text-container{
  width: 50%;
  margin: auto;
  
  padding: 20px;
}
.text-container p{
  text-align: justify;
}
@media only screen and (max-width: 768px) {
  .cad, .sampling, .cutting, .production, .washing, .quality, .finishing{
    display: grid;
    
  }

  .imgage-container img{
    position: relative;
    width: 80%;
    margin: auto;
  }
 
}
@media only screen and (max-width: 768px) {
  .text-container{
    font-size: calc(1vw + .5rem);
    width: 90%;
  }
  .main .imgage-container{
    width: 90%;
  }
  
}

/*footer start*/
section{
  border: 2px solid gray;
  height: 130px;
  background-color: #333;
}

.footer{
    width: 100%;
    margin: auto;
    background-color: #333;
    height: 130px;
    
    
}
.footer a{
    text-decoration: none;
    color: rgb(42, 152, 255);
    letter-spacing: 1.5px;
    margin: 10px;
    font-size: large;
}
.links{
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}
.copyright{
    margin: auto;
    width: 250px;
    position: relative;
    top: 50px;
    color: white;
    
}
@media only screen and (max-width: 768px) {
  .copyright{
    position: relative;
    top: 25px;
  }
  .footer a{
    font-size: small;
  }
}
@media only screen and (max-width: 400px) {
  .footer a{
    font-size: x-small;
  }
}
