.custom-pricing-section{
max-width: 1200px;
  margin: auto;
  padding: 60px 20px;
}
.custom-pricing-section-container{
display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 10px;
}
.custom-pricing-left-col{
  text-align: center;
border: 1px solid rgba(256,256,256, 0.1);
  background-color: rgba(195, 200, 205, 0.06);
  border-radius: 20px;
  padding: 40px;
}
.section-heading{
font-size: 50px;
  font-weight: 700;
  line-height: 60px;
  color: rgba(255, 255, 255, 1);
  margin:0;
  margin-top: 20px;
  margin-bottom: 100px;
}

.section-subheading{
font-size: 18px;
  font-weight 400;
  color: rgba(255, 255, 255, 0.7);
  line-height: 22px;
   margin:0;
}
.section-price-heading{
font-size: 27px;
  font-weight: 700;
  color: rgba(255, 255, 255, 1);
   margin:20px 0;
}

.section-price-heading span{
font-size: 54px;
}
.custom-pricing-left-col a{
background: linear-gradient(0deg, #5AABE1, #5AABE1),
radial-gradient(50% 50% at 50% 50%, rgba(36, 20, 226, 0) 0%, rgba(36, 20, 226, 0.2) 100%);
  border-radius: 42px;
  padding: 15px;
  min-width: 270px;
  font-size: 18px;
  font-weight: 500;
  color: rgba(237, 243, 250, 1);
text-decoration: none;
  display: inline-block;
}
.custom-pricing-right__icon-list{
display: flex;
  flex-direction: column;
  gap: 10px;
}
.custom-pricing-right-item{
  border-radius: 20px;
  background: #B064F0;
  border: 1px solid rgba(256,256,256, 0.1);
  padding: 30px;
}
.custom-pricing-right-item h2{
  margin:0;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
  text-align: left;
font-size: 20px;
  font-weight: 700;
  line-height: 26px;
  color: rgba(255, 255, 255, 1);
}
.custom-pricing-right-item p{
   text-align: left;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
  margin:0;  
}
@media(max-width: 768px){
  .custom-pricing-left-col{
  padding: 40px 20px;
  }
  .custom-pricing-section-container{
  grid-template-columns: 1fr;
  }
  .section-heading{
  font-size: 28px;
    line-height: 34px;
    margin-bottom: 30px;
  }
  .section-subheading{
  font-size: 14px;
    line-height: 17px;
  }
  .section-price-heading{
  font-size: 16px;
  }
    .section-price-heading span{
  font-size: 32px;
  }
  .custom-pricing-right-item h2{
  font-size: 16px;
  }
  .custom-pricing-left-col a{
  min-width: auto;
  } 
}