/*
// #Pricing Tables
// --------------------------------------------------
*/
.pricing_table .tc_content {margin-top: 90px;  list-style:none;}
.pricing-table .tc_table_col.caption_column .tc_header {font-size:27px; padding:16px 0; color:#444; font-weight:700; text-align: center;}
.pricing-table.pricing-table__style2 .tc_table_col.caption_column .tc_header {font-size:27px; padding:103px 0; color:#444; font-weight:700;}
.pricing-table.pricing-table__style3 .tc_table_col.caption_column .tc_header {font-size:27px; padding:73px 0; color:#444; font-weight:700;}
.pricing-table.pricing-table__style4 .tc_table_col.caption_column .tc_header {font-size:27px; padding:47px 0; color:#444; font-weight:700;}
.pricing_table .tc_table_col.caption_column .tc_content li {padding: 0.6em; text-align:left; text-indent:30px; background:#f2f5fb;border-bottom: 1px solid #dbdbdb;}
.text-center {
  text-align: center !important;
}
:root {
  --mxpt-primary-color: #5044EB;
  --text-color: #636D78;
  --headings-color: #1F1F1F;
  --primary-light: rgba(59, 56, 235, 0.1);
  --border-color: #EEEEEE;
  --white-color: #ffffff;
  --light-color: #F6F6F6;
  --light-bg: #FBFAFA;
  --gray-color: #737373;
  --gray-100: #F2F1F9;
  --gray-200: #9097A9;
  --light-stroke: #ECEFF2;
  --black-color: #000000;
  --black-light: #242B3D;
  --light-white: #F7F7F7;
  --transition-base: all 0.3s;
}
.pricing_table.rounded-corners .pricing-box, .pricing_table.rounded-corners .pricing-box .pricing-box-content,.pricing_table.rounded-corners .pricing-box .pricing-box-content .template-btn {
  border-radius: 30px; }
.pricing-box {
  padding: 70px 40px 40px;
  background-color: var(--gray-100);
  -webkit-transition: var(--transition-base);
  -o-transition: var(--transition-base);
  transition: var(--transition-base);
  padding: 50px 32px 32px;
}

.pricing-box h3 {
  font-size: 36px;
}

.pricing-box .package-icon {
  width: 120px;
  height: 120px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border: 10px solid var(--gray-100);
}
.pricing-box .package-icons {
  width: 120px;
  height: 120px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.pricing-box .package-icon img{
  width: 100px;
  height: 100px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-radius: 50% !important;
}


.pricing-box .pricing-box-content {
  padding: 60px 40px 40px;
  background-color: var(--white-color);
  margin-top: -60px;
}

.pricing-box .pricing-box-content .pricing-title span {
  margin-left: -6px;
  color: var(--text-color);
  font-size: 16px;
}
.pricing-box .pricing-box-content .tc_intro {
    font-size: 18px;
    padding: 0px 20px 20px 20px;
}
.pricing-box .pricing-box-content .pricing-features ul {
    display: flex;
    flex-direction: column;
    list-style: none; 
    padding-left: 0rem;
    margin-bottom: 2rem;
}
.pricing-box .pricing-box-content .pricing-features ul li {
    font-size: 16px;
    font-weight: 400;
    margin: 8px 0px;
    position: relative;
    padding-left: 25px;
    text-transform: capitalize;
    text-align: left;
}

.pricing-box .pricing-box-content .pricing-features ul li::after {
    position: absolute;
    content: "\f00c";
    font-family: "font awesome 6 free";
    font-size: 14px;
    font-weight: 600;
    top: 2px;
    left: 0;
}
.pricing-box .pricing-box-content .pricing-features li+li {
  margin-top: 10px;
}

.pricing-box .pricing-box-content .template-btn {
  border-radius: 30px;
}

.pricing-box .pricing-box-content .template-btn::after {
  border-radius: 30px;
}

.highlight .pricing-box, .pricing-box:hover {
  background-color: var(--mxpt-primary-color);
}

.highlight .pricing-box h3, .pricing-box:hover h3,
.highlight .pricing-box .subtitle, .pricing-box:hover .subtitle {
  color: var(--white-color);
}

 .highlight .pricing-box .package-icon, .pricing-box:hover .package-icon {
  border-color: var(--mxpt-primary-color);
}
.pricing-box h2, .pricing-box .h2 {
font-size: 54px;
line-height: 64px;
font-weight: 700;
color: var(--headings-color);
}
.pricing-box .secondary-btn {
  padding: 19px 36px;
  margin-top: 20px;
  font-size: 14px;
  font-weight: bold;
  text-transform: uppercase;
  position: relative;
  display: inline-block;
  z-index: 1;
  border-radius: 12px;
  overflow: hidden;
  -webkit-transition: var(--transition-base);
  -o-transition: var(--transition-base);
  transition: var(--transition-base);
  color: var(--mxpt-primary-color);
  background-color: var(--primary-light);
}

.pricing-box .secondary-btn::before {
  content: '';
  position: absolute;
  left: -80px;
  top: -136%;
  width: 170%;
  height: 136%;
  background-color: var(--mxpt-primary-color);
  z-index: -1;
  border-radius: 50%;
  -webkit-transition: var(--transition-base);
  -o-transition: var(--transition-base);
  transition: var(--transition-base);
}

.pricing-box .secondary-btn:hover {
  color: var(--white-color);
}

.pricing-box .secondary-btn:hover::before {
  top: -10px;
}

