@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');


* {
    box-sizing: border-box;
  }

  
         /* About Section */

         .about-text .about_heading {
            color: #CB5499;
            font-size: 55px;
            font-weight: 700;
        }
    
        .about_subheading {
            color: #2E2E2E;
            font-size: 18px;
            font-weight: 600;
        }
    
        .about_para {
            color: #2E2E2E;
            font-size: 16px;
            font-weight: 500;
        }

  .container{
    margin:0px auto;
  }


  
  /* Responsive columns */
  @media screen and (max-width: 700px) {
    
   .container{
    width: 100%;
  }

    .column {
      width: 100%;
      display: block;
      margin-bottom: 20px;
    }
  }
  
  /* Style the counter cards */
  .card {
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
    padding: 5px;
    text-align: center;
    background-color: #fff;
    border-radius:10px;
    cursor:pointer;
    height: 300px;
  }
  .card .profile{
     border-radius:10px;
     transition: 0.2s;
  }
  .card:hover .profile{
    transform:scale(1.4);
    border-top-right-radius:50px;
    border-top-left-radius:50px;
  }
  
  .card .content{
    width:100%;
    height:100%;
    position:relative;
    overflow:hidden;
  }
  .card .content .back{
    position:absolute;
    width:100%;
    height:100%;
    background-color: #f1f1f1e6;
    transition:1s;
    
    z-index:1;
    padding:10px;
  }
  
  .from-left{
    top:0;
    left:-100%;
  }
  .card:hover .content .from-left {
     left:0%;
  }
  
  .from-bottom{
    top:100%;
    left:0;
  }
  .card:hover .content .from-bottom {
     top:0%;
  }
  
  .from-right{
    top:0%;
    right:-100%;
  }
  .card:hover .content .from-right {
     right:0;
  }
  
  .card .content .back h3{
    font-size:15px;
    letter-spacing:2px;
  }
  .card .content .back .tem-img{
    border-radius:10%;
  }
  
  .card .content .back .des{
    font-size:13px;
    padding:20px 0px;
  }
  .card .content .back .social-icon{
    list-style:none;
    margin:0px;
    padding:0px;
  }
  .card .content .back .social-icon li{
    display:inline-block;
  }

  .image_header .mobile_view_product {
    display: none;
}

.back h2 {
    font-size: 180%;
    color: black;
}

@media screen and (min-width:700px) and (max-width:941px) {
    .card {
        height: 245px;
    }

    .back h2 {
        font-size: 180%;
    }
}


  @media screen and (max-width:500px) {
    .image_header .laptop_view_product {
        display: none;
    }
    .image_header .mobile_view_product {
        display: block;
    }

    .card {
        height: 220px;
    }

    .column {
        height: 0;
    }

    .about-text .about_heading {
        font-size: 220% !important;
    }

    .about-text .about_subheading {
        font-size: 100%;
    }
    
    .about-text .about_para{
        font-size: 80% !important;
        text-align: justify;
    }

    .about-text .heading_line img{
        width: 30% !important;
    }

  }

  
  