



/* tes  */
.pf-container h1{
    align-items: center;
    justify-content: center;
    font-weight: 100;
    font-size: 3em;
}
.pf{
    width: 80%;  
    height: auto;
    margin: auto;
}
main .pf .row{
    width: 100%;
    margin: 1em 1em;
    display: flex;
    
}

.row {
    display: flex;
    justify-content: space-between;
  }
.row-col{
  width: 80%;
  margin: auto;
  margin-block: 5em;
}
.row-col .text{
  margin: auto;
}
.row-col p{
  text-align: center;
  font-size: 1.5em ;
}
.row-col p.text-sec{
  font-size: 1em;
  
}
.row-col p.text-rd{
  font-size: 1em;
  font-weight: bold;
}
.pf-wrapper {
    width: 25%;
    height: auto;
    margin: 1em;
}

.pf-wrapper img{
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: .2s;
}
.pf-wrapper img:hover{
    transform: scale(1.1);
}

.two-pics {
  justify-content: center;
}
.two-pics .pf-wrapper{
  margin-inline: 2em;
}
.port-wall{
    width: 100%;
    color: rgb(255, 255, 255);
    border-color: rgb(226, 226, 226);
    margin-block: 5em;
}
/* sec  */
.clients h1{
    width: 90%;
    margin-inline: auto;
    font-size: 2.1em;
  }
.clients img{
    transition: .2s;
  }
  .clients img:hover{
    transform: scale(1.1);
  }
  .wrapper {
    width: 200px;
    height: 150px;
    padding-inline: 2em;
    
  }
  .wrapper#softex{
    width: 280px;
  }

  /* animat fade  */

  .pf-container img {
    transition: opacity 0.2s ease-in-out; /* add transition effect */
  }
  
  .pf-container img.fade-out {
    opacity: 0;
  }
  .pf-container img.fade-out:hover {
    opacity: 1;
  }

 .pf-wrapper#blur.active{
    pointer-events: none;
    user-select: none;
    filter: blur(20px);
  } 
  main#blur.active{
    pointer-events: none;
    user-select: none;
    filter: blur(20px);
  } 

  .pf-container #popup{
    position: fixed;
    top: 40%;
    left: 50%;
    width: 100%;
    height: 100%;
    transform: translate(-50%, -50%);
    /* width: 600px; */
    padding: 10em;
    box-shadow: 0 5px 30px rgba(0, 0, 0, .30);
    background: rgba(0, 0, 0, 0.9);
    visibility: hidden;
    opacity: 0;
    transition: .5s;
    z-index: 998;
  }
  .pf-container #popup img{
    position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 30%;
  max-width: 90%; /* add this to prevent the image from exceeding the popup width */
  height: auto;
  }
  #popup.active{
    top: 50%;
    opacity: 1;
    visibility: visible;
  }

  #popup span{
    position: absolute;
    top: 5%;
    right: 10%;
    font-size: 70px;
    font-weight: bolder;
    color: #ffffff;
    cursor: pointer;
    /* z-index: 999; */
  }
 @media screen and (max-width:430px){
    .pf-container #popup img{
      width: 80%;
    }
  }

