

/* pricing plan css */
   #pricing{
    margin-top: 3%;
    margin-bottom: 4%;
   }


   #pricing .price{
    width: 100%;
    margin: auto;
    overflow: hidden;
   }

     .price{
      display: grid;
      grid-template-columns: auto auto auto auto;
      grid-gap: 25px;
     }

     .price>div{
      text-align: center;
      background-color: #fff;
      filter: drop-shadow(2px 3px 2px);
      border: 1px solid #333;
      border-radius: 17px 17px;
     }
     .plan-heading{
      padding: 7px;
      background-color: #901;
      color: #fff;
      transform: skewY(0deg);
      border-top-left-radius: 17px;
      border-top-right-radius: 17px;
     }
     .rate{
      font-size: 14px;
      color: #333;
     }
    .plan-detail h4:nth-child(even){
      color: rgb(158, 157, 157);
      text-align: center;     
      border-bottom: 1px solid rgb(207, 204, 204);
    }
    .plan-btn{
      width: 50%;
      font-size: 14px;
      font-weight: bold;
    }
    .plan-btn:hover{
      background-color: #901;
      transition: .8s;
      color: #fff;
    }

        button{
      background-color: #fff;
      cursor: pointer;
      color: rgb(83, 83, 83);
      border-radius: 30px;
      padding: 15px;
      border: 2px solid coral;
      font-weight: bold;
      width: 30%;
      margin-bottom: 25px;
     }
  .content {
      padding: 40px;
  }

.jumbotron {
    position: relative;
}
.jumbotron .after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
    color: #000;
}
.jumbotron:hover .after {
    display: block;
    background: rgba(0, 0, 0, .6);
}
   /* end of pricing plan css */

   

       /* media queries */
    @media (max-width: 768px){

      #pricing .price{
        display: block;
        width: 95%;
       margin-left: auto;
       margin-right: auto;
     
      }

        .plan-heading{
      padding: 3px;
      background-color: #901;
      color: #fff;
       transform: skewY(0deg);
     }

  }