/* Base settings for the entire site */
:root {
    --baseFont: sans-serif;
    --bs-primary-rgb: 3, 173, 249;
    --primaryLight: #46C6FF;
    --primaryColor: #03ADF9;
    --white: #fff;
    --black: #000;
    --dark: #141B39;
    --lightText: #4a4a68;
    --borderColor: #D1D5DC;
    --lightBg: #F6F8FB;
    --lightBg2: #eee;
    --yellowColor: #f7c047;
    
    /* Typography */
    --baseFontSize: 16px;
    --baseLineHeight: 1.2;
    /* Removed custom font weights */
}

/* Base elements */
body {
    font-family: var(--baseFont);
    font-size: var(--baseFontSize);
    color: var(--lightText);
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
}

ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
}

/* Typography classes */
/* Removed all font-related classes */

/* Removed all text color classes */
.bgPrimary {
    background-color: var(--primaryColor) !important;
}
.bgPrimaryGradient {
    background: linear-gradient(211deg,rgba(3,173,249,.65) 46%,rgba(3,173,249,1) 100%) !important;
}
.bgLight {
    background-color: var(--lightBg) !important;
}
.bgLight2 {
    background-color: var(--lightBg2) !important;
}
.bgDark {
    background-color: var(--dark) !important;
}
/* Removed all text size elements */

signature {
	font-family: var(--baseFont);
}
.form-control:focus, .form-control:focus-visible {
	border-color: var(--primaryColor) !important;
    box-shadow: none;
}

.logo {
	width: 200px;
	display: block;
}

.btn {
    padding: 10px 20px;
    font-weight: normal;
    border: 2px solid transparent;
}
.btnPrimary {
    --bs-btn-active-color: var(--primaryColor);
    --bs-btn-active-bg: var(--white);
    --bs-btn-active-border-color: var(--primaryColor);
    background-color: var(--primaryColor);
    border-color: var(--primaryColor);
    color: var(--white);
}
.btnPrimary:hover {
    background-color: var(--white);
    border-color: var(--primaryColor);
    color: var(--primaryColor);
}
.btnPrimaryOutline {
    --bs-btn-active-color: var(--white);
    --bs-btn-active-bg: var(--primaryColor);
    --bs-btn-active-border-color: var(--primaryColor);
	border-color: var(--primaryColor);
	color: var(--primaryColor);
	background-color: var(--white);
}
.btnPrimaryOutline:hover {
	border-color: var(--primaryColor);
	color: var(--white);
	background-color: var(--primaryColor);
}

.btnOutline {
    border-color: var(--borderColor);
    background-color: var(--white);
}
.btnOutline:hover {
    border-color: var(--borderColor);
    opacity: 0.6;
}
.btn.smBtn {
    font-size: var(--baseFontSize);
}

.btn.lgBtn {
	padding: 13px 29px;
	font-weight: normal;
}

.btn.iconBtn {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	column-gap: 8px;
}
.headerSearhForm .form-control {
	font-size: var(--baseFontSize);
	padding: 10px 15px;
	border: 2px solid var(--borderColor);
}

.searchTrigger {
    cursor: pointer;
}
.searchCloseTrigger {
    --iconPosition: 20px;
    cursor: pointer;
    position: absolute;
    right: var(--iconPosition);
    top: var(--iconPosition);
    color: var(--white);
}
.headerSection {
	position: sticky;
	top: 0;
	z-index: 99;
	border-bottom: 1px solid var(--dark);
}
.bannerSection {
	padding: 60px 0;
	background-color: var(--black);
	color: var(--white);
	background-image: linear-gradient(#141B39B2,#141B39B2),url(../images/lady-thumbs-up.webp);
    background-size: cover;
}
.bannerContent {
	padding-right: 100px;
}
.aboveTitle {
	font-weight: normal;
	line-height: 20px;
	/* letter spacing normalized */
	/* text transformation removed */
	margin-bottom: 10px;
}

.checkList {
    --iconSize: 18px;
    --sSpace: calc(var(--iconSize) + 8px);
    --iconImg: url('../images/primary-check.svg');
    --iconTopPosition: 2px;
    --fz: var(--baseFontSize);
    --liGap: 15px;
    --lh: 1.3;
}

.checkList.lgCheckList {
    --lh: 1.5;
    --iconSize: 22px;
    --liGap: 20px;
}

/* .checkList.smCheckList merged with base .checkList */
.checkList > li {
    position: relative;
    padding-left: var(--sSpace);
    font-size: var(--fz);
    line-height: var(--lh);
}
.checkList > li + li {
    margin-top: var(--liGap);
}
.checkList > li::before {
    content: "";
    position: absolute;
    left: 0;
    top: var(--iconTopPosition);
    width: var(--iconSize);
    height: var(--iconSize);
    background-image: var(--iconImg);
    background-size: contain;
}

.stepCol {
    --cSize: 150px;
    --space: 10px;
    --br: 50%;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.stepNumber {
	display: block;
	color: var(--primaryLight);
	font-weight: normal;
	/* text transformation removed */
	font-size: var(--baseFontSize);
}
.stepCircle {
    width: var(--cSize);
    height: var(--cSize);
    padding: var(--space);
    border-radius: 50%;
    background-color: green;
    color: var(--white);
}
.stepCircle.sc2 {
    background-color: orange;
}
.stepCircle.sc3 {
    background-color: #EF1818;
}
.circleText {
	width: 100%;
	height: 100%;
	padding: var(--space);
	border-radius: 50%;
	border: 2px solid var(--white);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	font-size: var(--baseFontSize);
	line-height: 1.2;
	font-weight: normal;
	text-align: center;
}

.circleText br {
	display: block;
	content: "";
	margin-top: 5px;
	margin-bottom: 5px;
	height: 0;
}

.circleText strong {
	display: block;
	white-space: nowrap;
}

.bannerFormCol {
    width: 415px;
    --br: 25px;
}
.formCardHeader {
    background-color: var(--primaryColor);
    color: var(--white);
    border-radius: var(--br) var(--br) 0 0;
    padding: 20px;
}
.formTitle {
	font-weight: normal;
	font-size: var(--baseFontSize);
}
.formCardBody {
    background-color: var(--white);
    color: var(--dark);
    padding: 24px 32px;
    border-radius: 0 0 var(--br) var(--br);
    box-shadow: 0 0 20px 0 #99999933;
}
.formStyle .form-control {
	border-color: var(--borderColor);
	height: 48px;
	border-radius: 5px;
	padding: 10px;
	font-size: var(--baseFontSize);
	border-width: 2px;
}
.orRow {
    position: relative;
    text-align: center;
}
.orRow > span {
    background-color: var(--white);
    position: relative;
    z-index: 2;
    display: inline-block;
    padding: 0 20px;
    font-weight: normal;
    font-size: 14px;
    color: rgb(140, 146, 156);
}
.orRow::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    border-top: 1px solid rgba(0,0,0,0.1);
}
.trustedSection {
    padding: 48px 0;
}
.smSubTitle {
    font-weight: normal;
    /* letter spacing normalized */
}

.logoImgCol > img {
	max-width: 150px;
	max-height: 70px;
}
.stickyFooter {
	position: fixed;
	left: 0;
	right: 0;
	bottom: 0;
	background: var(--white);
	border-top: 1px solid #333;
	padding: 10px 0;
	z-index: 99;
    text-align: center;
}
.stickyFooterSpace {
    height: 105px;
}
.sectionSpace {
    padding: 100px 0;
}
.titleBtmSpace {
    margin-bottom: 60px;
}

.reviewsCard {
	background-color: var(--white);
	line-height: 1.28;
	padding: 20px;
	border-radius: 9px;
	box-shadow: 0 3px 7px #BBBBBB33;
	display: flex;
	flex-direction: column;
	row-gap: 15px;
}
.reviewsCard p {
    margin-bottom: 10px;
}
.reviewUserImg {
    --size: 40px;
	width: var(--size);
	height: var(--size);
	border-radius: 50%;
    object-fit: cover;
}
.rUserInfo {
    display: flex;
    flex-wrap: wrap;
    column-gap: 10px;
}

/* Social media section styling */
.socialCol {
    display: flex;
    align-items: center;
}

.socialCol p {
    margin-bottom: 0;
    margin-right: 2px;
}

.socialCol ul {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.cardStyle1 {
	padding: 72px 32px 40px;
	border-radius: 24px;
	box-shadow: 0 4px 8px #BBBBBB33;
	background-color: var(--white);
	display: flex;
	flex-direction: column;
	row-gap: 30px;
    height: 100%;
}
.planNumber {
	display: block;
	font-size: var(--baseFontSize);
	font-weight: normal;
	line-height: 1.4;
	color: #667085;
}
.cs1ContentCol {
	display: flex;
	flex-direction: column;
	row-gap: 12px;
}
.cs1Title {
	font-size: 32px;
	line-height: 1.125;
	font-weight: normal;
}
.cs1Title.maxWdTitle {
	max-width: 280px;
}
.cs1ContentCol > p {
	margin-bottom: 0;
	font-size: 18px;
	line-height: 1.7;
}

.listingCard {
	display: flex;
	flex-direction: column;
	row-gap: 15px;
}
.listingCardImg {
	border: 1px solid rgba(0,0,0,0.05);
	width: 100%;
	margin: 0 auto;
	max-width: 500px;
}
/* All text elements standardized to 20px */
.listingCardContent > a > span + span {
    margin-top: 4px;
}
.listingCardContent > a {
    color: var(--primaryColor);
}

.listingBtmCol {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	column-gap: 14px;
	margin-top: 20px;
}
.listingFieldPrice {
	line-height: 1;
	display: block;
    text-align: right;
    color: var(--dark);
}
.priceData {
	font-size: var(--baseFontSize);
	font-weight: normal;
}
.priceData sup {
	font-size: var(--baseFontSize);
	font-weight: normal;
	margin-right: 4px;
}
.pricePeriod {
	display: block;
	font-size: var(--baseFontSize);
}
.signatureLg {
    font-size: var(--baseFontSize);
}

.contantColStyle.startSpace {
	padding-left: 50px;
}
.contentColBody {
    padding-right: 60px;
    padding-top: 20px;
}
/* .imgColStyle {
	max-width: 530px;
	margin: 0 auto;
} */
.imgBorderRadius {
    border-radius: 24px;
}

.cardStyle2 {
	display: flex;
	flex-direction: column;
	row-gap: 24px;
}
.cs2IconCol > svg {
    width: auto;
    height: 48px;
    color: var(--primaryColor);
}
.cs2Title {
	font-size: var(--baseFontSize);
	line-height: 1.33;
	font-weight: normal;
}
.cs2ContentCol {
    display: flex;
    flex-direction: column;
    row-gap: 12px;
}
.cs2ContentCol p {
    font-size: 15px;
}

.containerLg {
    margin-left: auto;
    margin-right: auto;
    max-width: 1920px;
    overflow: hidden;
}
.fullImg {
    width: 100%;
    height: auto;
}
.contentWrap {
	max-width: 510px;
	margin: 0 auto;
	padding: 20px 15px;
    display: flex;
    flex-direction: column;
    row-gap: 25px;
}
.contentWrap > * {
    margin: 0;
}
.contentWrap p {
	line-height: 1.4;
}
.contentWrap.lgWrapWd {
	max-width: 600px;
}
.freeTrialBadge {
	width: 140px;
	height: auto;
	position: absolute;
	right: 0;
	top: 20px;
	transform: translateX(50%);
}
.cwBtnCol {
	padding-top: 10px;
}
/*  */

.videoInnerCol {
    max-width: 1080px;
    margin: 0 auto;
}
.prLinks>ul {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.prLinks > ul > li > a {
	font-size: var(--baseFontSize);
	color: var(--primaryColor);
	line-height: 1.2;
	display: inline-block;
}
.sectionMdSpace {
    padding: 60px 0;
}
.faqSection {
    border-top: 1px solid var(--borderColor);
}
.faqSection h3.lgTitle {
    padding-bottom: 24px;
}
.faqSection .accordion-button {
    color: var(--dark);
    font-size: var(--baseFontSize);
    font-weight: normal;
    line-height: 1.5;
    padding: 28px 45px 28px 0;
    box-shadow: none;
    border: 0;
    border-radius: 0;
    background-color: transparent;
    border-top: 1px solid var(--borderColor);
}
.faqSection .accordion-button::after {
    right: 0;
    position: absolute;
    top: 35px;
    height: 14px;
    width: 22px;
    background-image: url(../images/angle-down.svg);
    background-repeat: no-repeat;
    background-size: contain;
}
.faqSection .accordion-item:last-child {
    border-bottom: 1px solid var(--borderColor);
}
.accordion-body {
    padding: 0 0 22px;
}
.accordion-body p {
    line-height: 24px;
    letter-spacing: -0.36px;
    margin: 0;
    font-weight: 400;
    padding: 0;
}
.faqSection .accordion-item {
    background-color: transparent;
    border: 0;
    border-radius: 0;
}
.footerColTop {
    padding: 24px 0;
}
.socialCol {
    display: flex;
    align-items: center;
    gap: 10px;
}
.socialCol h4 {
    margin: 0;
}
.socialCol ul {
    display: flex;
    gap: 10px;
    align-items: center;
}
.socialCol.socialRt ul {
	gap: 5px;
}
.socialCol ul a {
    font-weight: normal;
    transition: color 300ms ease-in-out 0s;
}
.socialCol ul a svg {
	display: block;
	height: auto;
	width: 24px;
}
.socialCol.socialRt ul a svg {
	width: 28px;
}
.footerInner {
    padding: 30px 0px;
}
.footerLinks>h3 {
    font-size: 17px;
}
.footerLinks>ul {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.footerLinks>ul>li>a {
    font-size: var(--baseFontSize);
    text-decoration: underline;
    font-weight: normal;
}
.footerLinks>ul>li>a:hover {
    color: #6e6d6d;
}
.footerBottom {
    padding: 20px 0;
}
.footerText {
    font-size: 13px;
}
.footerBottom>ul {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding-top: 5px;
}
.footerBottom>ul>li {
    max-width: 36px;
}
.footerBottom>ul>li>svg {
    width: 100%;
    display: block;
}
.footerSection {
    background-color: var(--lightBg2);
    padding: 30px 0;
}

/*  */
.pricingSection {
    background-color: var(--dark);
    color: var(--white);
    background-image: linear-gradient(rgba(20,27,57,.7),rgba(20,27,57,.7)),url(https://www.parkingmadeeasy.com.au/sites/all/themes/zen/new-images/hero-img-banner-membership.webp);
    background-size: cover;
}
.pricing-card {
    cursor: pointer;
    transition: 0.3s;
    border: 0px solid transparent;
    border-radius: 15px;
}
.pricing-card.active {
    border-color: #0d6efd;
    box-shadow: 0 0 20px rgba(13, 110, 253, 0.2);
}

.pricing-card .cardTop {
    background-color: var(--primaryColor);
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    min-height: 82px;
    padding: 20px;
    font-size: var(--baseFontSize);
    color: #fff;
    font-weight: normal;
    padding-left: 73px;
    position: relative;
}
.pricing-card .cardTop:before {
    content: "";
    background-image: url('../images/checkicon.svg');
    background-repeat: no-repeat;
    background-position: center;
    background-color: #ffffff;
    border-radius: 100%;
    border: 1px solid #b4b4b4;
    width: 25px;
    height: 25px;
    position: absolute;
    cursor: pointer;
    transition: all 250ms ease;
    top: 22px;
    left: 20px;
}
.pricingSelect input:checked + .pricing-card .cardTop:before {
    background-color: #141B39;
    padding: 3px 1px 0px 2px;
    box-shadow: inset 0 0 0 0px #141B39;
}
.pricingSelect input:checked + .pricing-card:before {
    content: "";
    position: absolute;
    inset: -3px;
    border: 1px solid #f7c047;
    padding: 2px 3px;
    border-radius: 15px;
    pointer-events: none;
}
.pricing-card .cardBody {
    padding: 20px;
}
.listStyle li {
    position: relative;
    padding-left: 32px;
    font-size: var(--baseFontSize);
    font-weight: normal;
    color: var(--dark);
    margin: 15px 0;
}
.listStyle li span {
    border-bottom: 1px dashed currentColor;
}
.listStyle li::before {
    content: "";
    position: absolute;
    background-image: url('../images/check.svg');
    width: 22px;
    height: 22px;
    left: 0;
    top: 0;
}  
.listStyle li.crossIcon::before {
    background-image: url('../images/crossicon.svg');
} 
.listTooltip {
    --bs-tooltip-max-width: 150px;
    font-size: 14px;
    font-weight: normal;
}
.limitedOfferTxt {
    display: block;
    font-size: var(--baseFontSize);
    font-weight: normal;
    color: var(--dark);
    padding-top: 10px;
}
.pricing-card .cardBody .pricingCol {
    text-align: center;
    font-size: var(--baseFontSize);
    color: var(--dark);
    font-weight: normal;
    margin-top: 10px;
    padding-top: 0px;
    line-height: 1.2;
}
.pricing-card .cardBody .pricingCol sup {
    font-size: var(--baseFontSize);
    top: -1.5em;
}
.pricing-card .cardBody .warningBadge {
    background-color: var(--yellowColor);
    font-weight: normal;
    padding: 0;
    border-radius: 9999px;
    display: inline-block;
    text-align: center;
    margin: 10px auto;
    font-size: var(--baseFontSize);
    color: var(--dark);
    padding: 0px 5px;
}
.pricing-card .cardBody .salePrice {
    font-size: var(--baseFontSize);
    color: var(--primaryColor);
    font-weight: normal;
    position: relative;
    display: block;
}
.pricing-card .cardBody .salePrice:before {
    content: '';
    background-color: var(--primaryColor);
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    transform: translate(0,-50%);
    height: 2px;
}
.pricing-card .cardBody .limitedOffer {
    font-size: var(--baseFontSize);
    font-weight: normal;
    color: var(--dark);
    padding: 10px 0;
    display: block;
}
.pricing-card .cardBody ul {
    margin-top: 40px;
}
.pricingInfo {
    font-size: var(--baseFontSize);
    font-weight: normal;
}
.pricingAnchor {
    font-size: var(--baseFontSize);
    margin: 16px 0;
    font-weight: normal;
}
.pricingAnchor a {
    text-decoration: underline;
    color: var(--primaryColor);
}
.paymentCard {
    border-radius: 25px;
    border: 0;
}
.paymentCard .cardTop {
    background: var(--primaryColor);
    padding: 25px;
    border-top-left-radius: 25px;
    border-top-right-radius: 25px;
}
.paymentCard .cardTop h3 {
    color: #FFFFFF;
    font-weight: normal;
    font-size: var(--baseFontSize);
    margin: 0;
}
.paymentCard .cardBody {
    padding: 24px 32px;
}
.paypalLogo {
    background-color: #ffc439;
    padding: 11px 4px;
    border-radius: 5px;
}
.paypalLogo img {
    max-width: 75px;
}
.orCol {
    margin: 20px 0 30px 0;
    font-size: var(--baseFontSize);
    position: relative;
}
.orCol::before {
    content: '';
    background-color: #ddd9d9;
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    transform: translate(0,-50%);
    height: 2px;
    z-index: 1;
}
.orCol span {
    padding: 0 15px;
    background-color: #fff;
    position: relative;
    z-index: 2;
}
.paymentFormBox {
    padding: 15px;
    border-radius: 4px;
    border: 1px solid #e6e6e6;
}
.paymentFormBox label.form-label {
    font-size: var(--baseFontSize);
    color: #30313d;
    margin-bottom: 4px;
}
.paymentConditionList li {
    color: #585858;
    font-size: var(--baseFontSize);
    font-weight: normal;
}
.paymentConditionList li {
    margin: 18px 0;
}
.paymentCardInfo {
    color: #6d6e78;
    font-size: var(--baseFontSize);
}
.reviewCardBox {
    border-radius: 25px;
    border: 0;
}
.reviewCardBox .cardTop {
    padding: 25px;
    border-top-left-radius: 25px;
    border-top-right-radius: 25px;
}
.reviewCardBox .cardTop h3 {
    color: #000000;
    font-weight: normal;
    font-size: var(--baseFontSize);
    margin: 0;
}
.reviewCardBox .cardTop h3 span {
    color: var(--primaryColor);
}
.reviewCardBox .cardBody {
	padding: 10px 20px 20px;
}
.reviewCardBox .cardBody {
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.reviewCardBox .cardBody .reviewsCard {
    padding: 0;
    box-shadow: none;
}
.reviewCardBox .cardBody .reviewsCard p {
    margin-bottom: 0;
    font-weight: normal;
    font-size: var(--baseFontSize);
    line-height: 1.8;
    color: #000;
}
.reviewCardBox .cardBody .reviewUserCol img.reviewUserImg {
    --size: 30px;
}
.paymentOption {
    position: relative;
}
.paymentOption input {
    padding-right: 160px;
}
.paymentMethod img {
    width: 31px;
}
.paymentMethod , .cvcIcon {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translate(0,-50%);
}
.cvcInput {
    position: relative;
}
.cvcInput input {
    padding-right: 45px;
}
.paymentSecWd {
    max-width: 984px;
}
.headerTopBar  a {
    color: #fff !important;
}
.headerCol .col.d-none.d-xl-block {
    margin: 0;
}
.headerCol form {
    margin-bottom: 0;
}
.socialCol a {
    color: #000 !important;
}
.breadcrumb-item+.breadcrumb-item::before { display: none;}
li.breadcrumb-item {
    padding: 0 !important;
}
.footerLinks>ul>li>a {
    font-size: 16px !important;
}
.footerLinks li {
    padding: 0;
}
.page-type-landing-pages .main-wrapper {
    padding: 0;
}
.bannerFormCol button.btn.btnOutline.iconBtn.smBtn {
    background: #fff;
    color: #000;
}
.trustedSection .row.gy-3.gx-xl-5.justify-content-center.justify-content-lg-end.align-items-center {
    --bs-gutter-x: 2rem;
}
button.accordion-button:hover {
    background: transparent;
}
.faqSection .active .accordion-button::after {
    rotate: 180deg;
}
.bannerContent h1 span {
    font-size: 2.5rem !important;
}
body h2 span strong {
    font-size: 2rem !important;
}
body h3 span strong {
    font-size: 1.75rem !important;
}
body h4 span strong {
    font-size: 1.5rem !important;
}
body h5 span strong {
    font-size: 1.25rem !important;
}
body h6 span strong {
    font-size: 1rem !important;
}
button.btn.btnPrimary.w-100.iconBtn.mb-3:hover {
    color: #fff;
}
button.btn.btnPrimary.w-100.iconBtn.mb-3 {
    background: var(--primaryColor);
}


@media (max-width:1440px) {
    .contentWrap {
        row-gap: 15px;
    }
    /* Content paragraph uses standardized font size */
}

@media (max-width:1399px) {
    .bannerContent {
        padding-right: 20px;
    }
    /* Title styles consolidated */
    .checkList.lgCheckList {
        --iconSize: 20px;
        --liGap: 15px;
    }
    /* Text sizes standardized */
    .stepCol {
        --cSize: 140px;
        --space: 6px;
    }
    /* Form title standardized */

    .logoImgCol > img {
        max-width: 120px;
        max-height: 60px;
    }
    .cardStyle1 {
        padding: 40px 20px;
    }
    /* Card title standardized */

    
}

@media (max-width:1199px) {
    /* Title uses standardized font size */
    .bannerContent {
        padding-right: 10px;
    }
    .formCardBody {
        padding: 20px 20px;
    }
    .formCardHeader {
        padding: 16px;
    }
    .bannerFormCol {
        width: 370px;
        --br: 16px;
    }
    /* Step number text standardized */
    /* Text sizes standardized */
    .stepCol {
        --cSize: 130px;
    }
    .checkList.lgCheckList {
        --iconSize: 18px;
        --fz: var(--baseFontSize);
    }
    .logoImgCol > img {
        max-width: 110px;
        max-height: 50px;
    }
    /* Button styles consolidated */
    /* Card title standardized */
    .cardStyle1 {
        padding: 30px 20px;
        row-gap: 15px;
    }
    .cs1ContentCol {
        row-gap: 10px;
    }
    .cs1ContentCol > p {
        line-height: 1.4;
    }
    .contentColBody {
        padding-right: 20px;
        padding-top: 15px;
    }
    /* Text sizes standardized */

    .contantColStyle.startSpace {
        padding-left: 20px;
    }
    .freeTrialBadge {
        width: 120px;
        transform: translateX(30px);
    }
}
@media (max-width:1024px) {
	.trustedSection .col-auto {
	    flex: 0 0 auto;
	    width: 220px;
	}
}
@media (max-width:991px) {
	.trustedSection .col-auto {
	    flex: 0 0 auto;
	    width: 200px;
	}
    .logo {
        width: 150px;
    }
    .btn {
        padding: 10px 15px;
    }
    .headerSearhForm .form-control {
        padding: 11px 12px;
    }
    .bannerContent {
        padding-right: 0;
    }
    /* Title uses standardized font size */
    /* .lgTitle uses standardized font size */
    .bannerFormCol {
        width: 100%;
        margin: 0 auto;
        max-width: 400px;
    }

    .logoImgCol > img {
        max-width: 100px;
        max-height: 45px;
    }
    .trustedSection {
        padding: 30px 0;
    }
    .formCardBody {
        padding: 24px 30px;
    }
    .sectionSpace {
        padding: 70px 0;
    }
    .titleBtmSpace {
        margin-bottom: 40px;
    }
    .cardStyle1 {
        padding: 30px 20px;
    }
    .cs1Title.maxWdTitle {
        max-width: 100%;
    }

    .contentColBody {
        padding-right: 0;
        padding-top: 10px;
    }
    .contentColBody p {
        line-height: 1.3;
    }
    .contantColStyle.startSpace {
        padding-left: 0;
    }

    /* Card title standardized */
    .cardStyle1 {
        padding: 30px 15px;
        row-gap: 10px;
    }
    .cs1ContentCol {
        row-gap: 6px;
    }
    .cs1ContentCol > p {
        line-height: 1.4;
    }
    .contentWrap.lgWrapWd, .contentWrap {
        max-width: 100%;
    }
    .contentWrap {
        padding: 50px 15px 70px;
    }
    .freeTrialBadge {
        right: 12px;
        bottom: -45px;
        transform: none;
        top: auto;
    }
    .bannerContent .checkList.lgCheckList {
        --iconSize: 22px;
        --fz: var(--baseFontSize);
        letter-spacing: -0.4px;
        --lh: 1.15;
    }
    .stepCol {
        --cSize: 150px;
    }
    /* Step number text standardized */
    /* Text sizes standardized */

}

@media (max-width:767px) {
    .headerIconSize {
        width: 24px;
    }
    .headerSearhForm .form-control {
        padding: 8px 8px;
        max-width: 200px;
        height: 46px;
    }
    .reviewsCard {
        padding: 15px;
    }
    .cardStyle1 {
        padding: 30px 16px;
    }
    /* .lgTitle uses standardized font size */

    .faqSection .accordion-button {
        padding: 20px 40px 20px 0;
    }
    .faqSection .accordion-button::after {
        top: 28px;
        width: 20px;
    }
    .socialCol {
        justify-content: center;
    }
    .socialCol.socialColLt {
        flex-direction: column;
        padding-bottom: 15px;
        row-gap: 15px;
    }
    .footerLinks {
        text-align: center;
        padding: 14px 0;
        border-bottom: 1px dotted #000;
    }
    /* Footer text styles consolidated */

    /* xlTitle letter-spacing in media query removed */
}

@media (max-width:575px) {
    .trustedSection .col-auto {
	    flex: 0 0 auto;
	    width: 150px;
	}
    .headerSearhForm .form-control {
        max-width: 100%;
    }
    .bannerSection {
        padding: 30px 0;
    }
    .cardStyle1 {
        row-gap: 20px;
    }
    .cs1Title.maxWdTitle {
        max-width: 290px;
    }
    /* Card title standardized */
    .cs1ContentCol > p {
        line-height: 1.6;
    }
    .cs1ContentCol {
        row-gap: 10px;
    }
    .planNumber {
        margin-bottom: 10px;
    }
}

@media (max-width:450px) {
    .mbFullWdBtn {
        width: 100%;
    }
    .paymentCard .cardBody,
    .pricing-card .cardBody {
        padding: 20px 15px;
    }

}

@media (max-width:380px) {
    .logo {
        width: 110px;
    }
    .btn {
        padding: 10px 12px;
    }
    .bannerSection {
        padding: 40px 0;
    }
    /* Title styles consolidated */
    /* Text sizes standardized */
    .stepCol {
        --cSize: 140px;
        --space: 4px;
    }
    /* Form title standardized */
    .formCardBody {
        padding: 20px 10px;
    }
    .stickyFooterSpace {
        height: 100px;
    }
    /* Text styles consolidated */
    .footerSection {
        background-color: transparent;
    }
}
