#card{
  width:60%;
  margin:2em auto}
#trans-pic{
  display:block;
  margin:auto;
  width:70%}
/* Products section */

.product-item {
    position: relative;
    padding: var(--size-500) 5em;
    border-radius: var(--size-300);
    width: 25em;
  }
  
  @media (max-width: 50em) {
    .product-item {
      width: 20em;
    }
  }
  
  .product-item img {
    aspect-ratio: 2 / 3;
  }
  
  /* Pricing  */
  @media (min-width: 50em) {
    .pricing .plans {
      display: flex;
      align-items: center;
      justify-content: space-around;
    }
  }
  
  .plan-item {
    padding: var(--size-700);
    border-radius: var(--size-700);
  }
  
  .offer-title {
    font-size: var(--fs-600);
    margin: var(--size-400) -3rem;
    letter-spacing: var(--size-100);
    text-align: center;
    background-color: var(--clr-dark);
  }
  
  .package-list > li {
    padding: var(--size-300);
    font-size: var(--fs-600);
    list-style: none;
  }
  
  .package-list > li::before {
    content: "✓";
    color: rgb(107, 243, 107);
    padding-right: var(--size-200);
    font-weight: var(--fw-bold);
  }
  
  /* footer */
  
.price-package{
	padding: 80px 0px;
	background-color: #ffffff;
  

}
.price-package h2{
	font-size: 30px;
	font-weight: 500;
	color:#000000;
	padding: 0px 0px 20px;
	text-align: center;
}

.price-package .title-p{
 font-size: 15px;
 line-height: 20px;
 color:#222222;
 margin:0;
 text-align: center;
 padding:0 20% 50px;
 font-family: 'Open-sans', sans-serif;
}

.price-package .content{
	-webkit-display: flex;
	display: flex;
  flex-wrap: wrap;
}
.price-package .content .box{
	flex:0 0 33.33%;
	max-width: 30.33%;
	padding: 15px;
  
}
.price-package .content .box .inner{
	background-color: #f0f0f0;
  border-radius: 0 0 3rem 3rem;
}
.price-package .content .box .inner .price-tag{
	padding: 15px;
	font-size: 20px;
	background-color: #c11325;
	color:#ffffff;
	text-align: center;
	font-weight: 700;
}
.price-package .content .box .inner .text{
	padding:20px 15px;
	text-align: center;
}
.price-package .content .box .inner .text h3{
	font-size: 24px;
	color:#222222;
	margin-bottom:1rem;
	padding:0px 0px 5px;
	font-weight: 700;
  text-align: left;
}
.price-package .content .box .inner .text p{
 font-size: 15px;
 font-weight: 500;
 line-height: 20px;
 color:#222222;
 margin:0;
 text-align: Left;
 padding:0 0 5px;
 font-family: 'Open-sans', sans-serif;	
}
.price-package .content .box .inner .text .btn{
    padding: 8px 30px;
    background-color: #c11325;
    color: #ffffff;
    text-decoration: none;
    display: inline-block;
    border: 1px solid transparent;
    cursor: pointer;
    -webkit-transition: all .5s ease;
    transition: all .5s ease;
    margin-top: 10px;
}
.price-package .content .box .inner .text .btn:hover{
	border-color:#222222;
	color:#222222;
	background-color: transparent;
}
.price-package .content .box .inner .img img{
	width: 50%;
  height: 50vh;
  display: block;
  justify-content: center;
  align-items: center;
  margin: .1rem 5rem;
  cursor: pointer;
}
.price-package .content .box .inner .img img:hover{
  transform: scale(1.5);
}

@media (max-width: 560px){
    .content{
        display: flex;
        flex-direction: column;
        justify-content: center;
        
    }
    .price-package .content .box .inner{
        width: 20rem;
    }
  }
  
  @media (max-width: 400px){
   .content{
        display: flex;
        flex-direction: column;
        justify-content: center;
        
    }
    .price-package .content .box .inner{
        width: 18rem;
        align-items: center;
    } 
  }
  @media (max-width: 300px){
    
     .price-package .content .box .inner{
         width: 15rem;
         align-items: center;
     } 
   }
  @media (max-width: 200px){
    
     .price-package .content .box .inner{
         width: 10rem;
         align-items: center;
     } 
   }