.pc-header p {
  min-height: 35px;
  display: inline-block;
  line-height: 35px;
  padding: 0 20px;
  background: rgba(34,31,60,.07);
  border-radius: 17.5px;
  margin-bottom: 5px;
}
.price-header h2 {
  margin-bottom: 25px;
  color: var(--primary_dark_color);
}
.pc-icon svg{
  fill: var(--primary_dark_color); 
}
.price-list {
  text-align: left;
  margin-bottom: 56px;
}
.price-list ul li {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 20px;
  padding-left: 10px;
  position: relative;
}
.price-list ul li .check-icon svg {
  fill: var(--primary_dark_color); 
}
.price-list ul {
  padding-left: 0px;
}
.pc-outer {
  padding: 50px 55px;
  transition: all .4s ease-out 0s;
  border: 3px solid transparent;
  box-shadow: 0 0 40px 5px rgb(0 0 0 / 5%);
  border-radius: 15px;
  position: relative;
  z-index: 1;
}
.price-amount p {
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 48px;
}
.price-amount p strong {
  font-size: 22px;
  margin-right: 3px;
}
.price-amount p span {
  font-size: 55px;
  font-weight: 600;
  color: var(--tertiary_color);
}
.price-special {
  position: absolute;
  top: -20px;
  min-height: 35px;
  display: inline-block;
  line-height: 35px;
  padding: 0 20px;
  background: var(--light_blue__color);
  border-radius: 17.5px;
  margin-bottom: 5px;
  text-transform: uppercase;
  font-weight: 500;
  z-index: 1;
  color: var(--white_color);
  right: 75px;
}
.pc-outer:hover {
  box-shadow: 0 10px 30px 0 rgb(34 31 60 / 44%);
  transition: all .4s ease-out 0s;
  border: 3px solid #221f3c;
}
.pc-outer.white-bg.higlighted {
  border-color: var(--light_blue__color);
  box-shadow: 0 10px 30px 0 rgb(34 31 60 / 44%);
}
span.price-special {
  display: none;
}
span.price-special.pop-tag-active {
  display: block;
}
.price-list ul li p {
  margin-bottom: 0px;
}

.price-list ul {
  padding-left: 20px;
}
@media(min-width:993px){
  .pc-outer {
    flex-basis: 31.33%;
    margin-right: 3%;
  }
  .pc-outer:nth-child(3n+3) {
    margin-right: 0%;
  }
  .pc-icon {
    padding-top: 3px;
    padding-bottom: 50px;
  }
  .pc-icon svg{
    width: 70px;
    height: 70px;
  }
}

@media(max-width:992px) and (min-width: 768px){
  .pc-outer {
    flex-basis: 48%;
    margin-right: 4%; 
    margin-bottom: 45px;
  }
  .pc-outer:nth-child(2n+2) {
    margin-right: 0%;
  }
  .pc-icon {
    padding-top: 2px;
    padding-bottom: 30px;
  }
  .pc-icon svg{
    width: 50px;
    height: 50px;
    fill: var(--primary_dark_color); 
  }
}
@media only screen and (min-width: 992px) and (max-width: 1200px){
  .pc-outer {
    padding: 50px 20px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px){
  .pc-outer {
    padding: 50px 20px;
  }
}

@media(max-width: 767px){
  .pc-icon {
    padding-top: 2px;
    padding-bottom: 30px;
  }
  .pc-outer {  
    flex-basis: 100%;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 35px;
    padding: 50px 20px;
  }
  .pc-icon svg{
    width: 40px;
    height: 40px;
  }
}