.p-section{
  width: 100%;
  padding : 120px 0;
}
.p-section * {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

.p-container{
  margin: auto;
  width: 100%;
  max-width: 1440px;
  padding: 0 80px;
}
.main-heading {
max-width: 950px;
font-family: 'Circular Std';
font-style: normal;
font-weight: 700;
font-size: 48px;
line-height: 110%;
color: #272727;
  margin: auto;
  text-align: center;
  margin-bottom: 48px;
}
.heading-row{
display:flex;
align-items:center;
gap:8px;
  justify-content: space-between;
  margin-bottom: 8px;
  flex-wrap: wrap;
}

.heading-tag{

font-family: 'Circular Std';
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 108%;
    align-items: center;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: #D60073;
    border: 2px solid pink;
    background: white;
    border-radius: 30px;
    padding: 6px 12px;

}
.p-blocks-wrapper{
  display: flex;
  gap: 12px;
}

.p-block{
  border-radius: 24px;
  padding: 36px;
  border : 1px solid #ECECEC;
}


.p-block.has-tag{
background:#fefbfc;
border:1px solid #D60073;
}

.p-block:nth-child(even) .p-block-heading,
.p-block:nth-child(even) .p-subheading,
.p-block:nth-child(even) .p-price,
.p-block:nth-child(even) .p-description,
.p-block:nth-child(even) .p-single-point
}

.p-block:nth-child(even) .divider-line{
background:white;
}

.p-block-heading-wrapper{
  display: flex;
  gap: 10px;
  align-items: center;
/*   margin-bottom: 8px; */
}

.p-block-heading{
font-family: 'Circular Std';
font-style: normal;
font-weight: 900;
font-size: 32px;
line-height: 110%;
text-transform: uppercase;
color: #272727;
}
.p-subheading{
font-family: 'Circular Std';
font-style: normal;
font-weight: 500;
font-size: 22px;
line-height: 120%;
color: #272727;
  margin-bottom: 26px;
}

.p-price{
  display: block;
  margin-bottom: 8px;

font-family: 'Circular Std';
font-style: normal;
font-weight: 450;
font-size: 36px;
line-height: 120%;
color: #272727;
}
.divider-line{
width: 100%;
  height: 1px !important;
  background : #000000;
  margin-bottom: 16px;
}
.p-description{
font-family: 'Circular Std';
font-style: normal;
font-weight: 450;
font-size: 16px;
line-height: 140%;
color: rgba(39, 39, 39, 0.7);
  margin-bottom: 40px;
}

.p-block-outer-wrapper{
  display: flex;
  flex-direction: column;
  gap: 40px;
  justify-content: space-between;
  height: 100%;
}

.p-block-points{
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.p-single-point{
  display: flex;
  gap: 12px;
}

.p-single-point > svg {
  flex-shrink: 0;
  display : block;
  margin-top: 5px;
}
.p-single-point > p {
font-family: 'Circular Std';
font-style: normal;
font-weight: 450;
font-size: 18px;
line-height: 120%;
color: #272727;
}

.p-block-button{
  text-decoration: none;
  display: flex;
  gap: 8px;
  justify-content: center;
  align-items: center;
font-family: 'Circular Std';
font-style: normal;
font-weight: 450;
font-size: 18px;
line-height: 27px;
text-align: center;
color: #FFFFFF;
  width: 100%;
  background: #D60073;
  padding: 12px 24px;
  border-radius: 99px;
  transition: all ease 0.3s;
}
.p-block-button:hover{
  background: #071e49;
}
.p-block-button > svg {
  transition: all ease 0.3s;
}

.p-block-button:hover > svg {
  transform : translateX(10px);
}
@media (max-width: 1024px) {
  .p-blocks-wrapper{
    flex-wrap: wrap
  }
}
@media (max-width: 767px){
  .p-section{
    padding: 60px 0px;
  }
  .p-container{
    padding : 0 16px;
  }
  .main-heading{
    font-size: 32px;
    max-width: unset;
    margin: auto auto 36px;
  }
  .p-blocks-wrapper{
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .p-block-heading-wrapper > svg {
    width: 23px;
  }
  .p-block-heading{
    font-size: 24px;
  }
  .p-block{
    padding: 24px;
  }
  .p-subheading{
    font-size: 20px;
    margin-bottom: 24px;
  }
  .p-price{
    font-size: 32px;
  }
  .p-description{
    margin-bottom: 24px;
  }
  
}

