/* common css ******************************************************************************/
:root {
    --white: #fff;
    --black: #000;
}
.white {
    color: var(--white);
}
.black {
    color: var(--black);
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
}
*::before, *::after {
    box-sizing: border-box;
}

@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap');

@font-face {
    font-family: 'Codec Pro';
    src: url('../fonts/CodecPro-ExtraBold.eot');
    src: url('../fonts/CodecPro-ExtraBold.eot?#iefix') format('embedded-opentype'),
        url('../fonts/CodecPro-ExtraBold.woff2') format('woff2'),
        url('../fonts/CodecPro-ExtraBold.woff') format('woff'),
        url('../fonts/CodecPro-ExtraBold.ttf') format('truetype'),
        url('../fonts/CodecPro-ExtraBold.svg#CodecPro-ExtraBold') format('svg');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Codec Pro';
    src: url('../fonts/CodecPro-Regular.eot');
    src: url('../fonts/CodecPro-Regular.eot?#iefix') format('embedded-opentype'),
        url('../fonts/CodecPro-Regular.woff2') format('woff2'),
        url('../fonts/CodecPro-Regular.woff') format('woff'),
        url('../fonts/CodecPro-Regular.ttf') format('truetype'),
        url('../fonts/CodecPro-Regular.svg#CodecPro-Regular') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Codec Pro';
    src: url('../fonts/CodecPro-Bold.eot');
    src: url('../fonts/CodecPro-Bold.eot?#iefix') format('embedded-opentype'),
        url('../fonts/CodecPro-Bold.woff2') format('woff2'),
        url('../fonts/CodecPro-Bold.woff') format('woff'),
        url('../fonts/CodecPro-Bold.ttf') format('truetype'),
        url('../fonts/CodecPro-Bold.svg#CodecPro-Bold') format('svg');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'DM-Sans';
    src: url('../fonts/DMSans-Regular.eot');
    src: url('../fonts/DMSans-Regular.eot?#iefix') format('embedded-opentype'),
        url('../fonts/DMSans-Regular.woff2') format('woff2'),
        url('../fonts/DMSans-Regular.woff') format('woff'),
        url('../fonts/DMSans-Regular.ttf') format('truetype'),
        url('../fonts/DMSans-Regular.svg#DMSans-Regular') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}



body {
    background: var(--white);
    color: var(--black);
    font-family: "DM-Sans", sans-serif;
    font-weight: 400;
}
h1, h2, h3, h4, h5, h6 {
    margin: 0;
    padding: 0;
    margin-bottom: 15px;
    line-height: 1.2;
    color: var(--black);
    font-family: 'Codec Pro', sans-serif;
    font-weight: bold;
}
h1:last-child, h2:last-child, h3:last-child, h4:last-child, h5:last-child, h6:last-child {
    margin-bottom: 0;
}
h1 {
    font-size: 60px;
    line-height: 70px;
}
h2 {
    font-size: 35px;
    line-height: 49px;
}
h5{
    font-size: 24px;
    line-height: 30px;
    font-family: 'Codec Pro';
    font-weight: 500;
}
h6{
    font-size: 20px;
    line-height: 25px;
    font-family: "DM-Sans", sans-serif;
    font-weight: 700;
}
p {
    margin: 0;
    padding: 0;
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 15px;
    color: #666666;
}
p:last-child {
    margin-bottom: 0;
}
.small {
    font-size: 16px;
}
ul, ol {
    list-style-type: none;
    margin: 0;
    padding: 0;
}
a {
    text-decoration: none;
    text-transform: capitalize;
    display: inline-block;
    line-height: 1.2;
    color: inherit;
    font-family: "DM-Sans", sans-serif;
}
a:hover{
    color: #FF0000;
}
span {
    display: inline-block;
}
.section{
    padding: 100px 0;
    overflow: hidden;
}
.mobile-show {
    display: none;
}
.mobile-hide {
    display: block;
}
img, video {
    max-width: 100%;
    display: block;
}
.btn-check:focus+.btn, .btn:focus {
    outline: 0;
    box-shadow: none;
}

.common-btn {
    background-color: #087BBA;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px 32px;
    max-width: 290px;
    width: 100%;
    transition: all .5s ease;
    font-weight: 600;
    font-size: 18px;
    line-height: 20px;
    border-radius: 10px;
}
.common-btn img{
    margin-left: 15px;
    max-width: 20px;
    width: 100%;
}
.btn:hover {
    color: var(--white);
    opacity: .8;
}
.section-overlay{
    background: linear-gradient(0deg, rgba(33,34,43,1) 0%, rgba(33,34,43,0) 100%);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
}
.section-heading{
    text-align: center;
    margin-bottom: 50px;
}
.section-heading p {
    max-width: 800px;
    width: 100%;
    margin: 0 auto;
}
input.form-control {
    border-color: #D9D9D9;
    padding: 17px 26px;
    border-radius: 10px;
    color: #21222B;
}
.form-control:focus,
.form-check-input:focus{
    box-shadow: none;
    border-color:#D9D9D9;
}
.form-label{
    font-family: "DM-Sans", sans-serif;
    font-weight: 600;
}

input.form-control::-webkit-input-placeholder {
    color:#929292;
}

input.form-control::-moz-placeholder {
    color:#929292;
}

input.form-control::-ms-placeholder {
    color:#929292;
}

input.form-control::placeholder {
    color:#929292;
}

/* width */
::-webkit-scrollbar {
    width: 12px;
  }
  
  /* Track */
  ::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px grey; 
    border-radius: 10px;
  }
   
  /* Handle */
  ::-webkit-scrollbar-thumb {
    background: #959595; 
    border-radius: 10px;
  }
  

/* header css start ******************************************************************************/
@keyframes smoothScroll {
    0% {
        transform: translateY(-60px);
        opacity: 0;
    }
    100% {
        transform: translateY(0px);
        opacity: 1;
    }
}
.header {
    padding: 10px 0;
    position: relative;
    z-index: 1;
    background-color: var(--white);
}
.navbar {
    padding: 0;
}
.header .navbar-brand {
    padding: 0;
    margin: 0;
}
.header.show {
    background-color: var(--white);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    animation: smoothScroll 1s forwards;
    z-index: 1000;
}
.header .logo img {
    max-width: 280px;
    width: 100%;
}
.navbar-toggler {
    padding: 0;
}
.navbar-toggler:focus {
    box-shadow: none;
}
.navbar-toggler-icon{
    width: 40px;
}
.header .navbar-expand-lg .navbar-nav .nav-link {
    color: #21222B;
    font-size: 18px;
    padding-right: 15px;
    padding-left: 15px;
}
.header .navbar-expand-lg .navbar-nav .nav-link:hover{
    color: #FF0000;
}
.header .navbar-nav{
    max-width: 850px;
    width: 100%;
    justify-content: center;
}
.header .header-btn {
    width: 35%;
    display: flex;
    justify-content: flex-end;
}
.header .header-btn .common-btn {
    max-width: 265px;
}

/* Header menu   */

#primary-menu {
    display: flex;
}
#primary-menu .menu-item a{
    color: #21222B;
    font-size: 18px;
    padding-right: 15px;
    padding-left: 15px;
    position: relative;
}

/* #primary-menu .menu-item a::after {
    display: inline-block;
    margin-left: .255em;
    vertical-align: .255em;
    content: "";
    border-top: .3em solid;
    border-right: .3em solid transparent;
    border-bottom: 0;
    border-left: .3em solid transparent;
} */
#primary-menu .menu-item:has(.sub-menu) > a::after {
    display: inline-block;
    margin-left: .255em;
    vertical-align: .255em;
    content: "";
    border-top: .3em solid;
    border-right: .3em solid transparent;
    border-bottom: 0;
    border-left: .3em solid transparent;
}

#primary-menu .menu-item a:hover{
    color: #FF0000;
}


#primary-menu .sub-menu {
    display: none; 
    position: absolute;
    z-index: 1000;
    min-width: 10rem;
    padding: .5rem 0;
    margin: 0;
    font-size: 1rem;
    color: #212529;
    text-align: left;
    list-style: none;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid rgba(0,0,0,.15);
    border-radius: .25rem;
}
#primary-menu .sub-menu.show {
    display: block;
}
.sub-menu .menu-item a {
    display: block;
    width: 100%;
    padding: .25rem 1rem;
    clear: both;
    font-weight: 400;
    color: #212529;
    text-align: inherit;
    text-decoration: none;
    white-space: nowrap;
    background-color: transparent;
    border: 0;
    font-size: 16px !important;
}
.sub-menu .menu-item a:hover {
    color: #1e2125 !important;
    background-color: #e9ecef;
}



/* homeBanner css **************************************************/
/* .banner-section {
 overflow: hidden;
    margin-top: -145px;
} */
.banner-section .homeBanner-part {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top;
    padding: 350px 0;
    position: relative;
}
.banner-section .banner-box {
    max-width: 580px;
    width: 100%;
    position: relative;
    margin-bottom: 50px;
}
.banner-section .box1 p{
    color: var(--white);
    margin-bottom: 40px;
}
.banner-section .border-btn {
    border: 3px solid var(--white);
    color: var(--white);
    font-size: 18px;
    line-height: 25px;
    padding: 15px 50px;
    border-radius: 10px;
    transition: all .5s ease;
    margin-right: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.banner-section .border-btn img{
    margin-right: 15px;
}
.banner-section .banner-btn-box .common-btn {
    background-color: #FF0000;
}
.banner-section .box1 img {
    margin: 0 auto 40px;
    max-width: 400px;
    width: 100%;
}
.banner-section .homeBanner-box {
    position: relative;
    z-index: 1;
}
.banner-section .banner-box p {
    max-width: 430px;
    width: 100%;
}
.banner-section .banner-btn-box {
    display: flex;
    flex-wrap: wrap;
}
.banner-box h1, .banner-box p{
    color: var(--white);
}
.banner-box .arrow img {
    position: absolute;
    right: 0;
    bottom: -30px;
}


/* form-section css **************************************************/
.form-section {
    background-color: #F7F7F7;
    padding-bottom: 100px;
}
.form-section .form-check-label br {
    display: none;
}
.form-wrapper {
    background-color: var(--white);
    border-radius: 30px;
    padding: 65px 80px;
    box-shadow: 11px 11px 35px -7px rgb(0, 0, 0,0.10);
    margin-top: -230px;
    position: relative;
    margin-bottom: 80px;
}
.form-section .form-label span {
    color: #FF0000;
}
.form-box .col {
    padding: 0 20px;
}
.form-section .left-text-section h2 {
    font-size: 30px;
    line-height: 40px;
    max-width: 530px;
}
.form-box .form-check-input[type=checkbox] {
    border-radius: 50%;
    border-color: #D9D9D9;
    width: 20px;
    height: 20px;
    /* background-color: rgba(255, 255, 255, 0); */
}

 .form-check-input:checked {
    background: #FF0000;
}
.form-box .form-check-label {
    margin-left: 10px;
    color: #666666;
}
.form-box .form-check-label a {
    text-decoration: underline;
}
.two-col-list-content-section .right-list-section li {
    display: flex;
    margin-bottom: 10px;
    align-items: center;
}
.two-col-list-content-section .right-list-section li img {
    margin-right: 20px;
    max-width: 20px;
    width: 100%;
}
.form-box .common-btn{
    background-color: #FF0000;
}
.form-section .form-input-row{
    margin-bottom: 40px;
}


/* why-choose-us-section css **************************************************/
.why-choose-us-section .card-box {
    border: 1px solid #D9D9D9;
    border-radius: 10px;
    padding: 35px 40px;
    margin-bottom: 20px;
}
.btn-block {
    margin-top: 40px;
}
.btn-block .common-btn {
    margin: 0 auto;
    background-color: #FF0000;
}
.why-choose-us-section .card-box .icon-img {
    margin-bottom: 30px;
    max-width: 80px;
    display: flex;
    width: 100%;
    align-items: center;
}

/* testimonials-section css **************************************************/
.testimonials-section {
    background-color: #087BBA;
}
.testimonials-section .section-heading h2,
.testimonials-section .section-heading p,
.testimonial-review-block h6,
.testimonial-review-block p{
    color: var(--white);
}
.testimonial-block{
    background-color: var(--white);
    border-radius: 20px;
    box-shadow: 0 4px 10px 0 rgb(82, 82, 85, 0.10);
    padding: 24px;
    margin-bottom: 40px;
    position: relative;
}
.testimonial-block::after {
    content: "";
    position: absolute;
    left: 30px;
    bottom: -13px;
    border-top: 15px solid var(--white);
    border-right: 15px solid transparent;
    border-left: 15px solid transparent;
    border-bottom: none;
}
.testimonial-rating-block {
    margin-bottom: 10px;
}
.testimonial-review-block h6 {
    margin-bottom: 5px;
}
.owl-carousel .testimonial-rating-block img {
    width: auto;
}

/* how-does-it-works-section css **************************************************/
.how-does-it-works-card-inner{
    background-color: var(--white);
    border-radius: 10px;
    padding: 70px 30px 40px;
    box-shadow: 7px 7px 16px -6px rgba(0, 0, 0, 0.15);
}
.how-does-it-works-card-block .number-block {
    background-color: #FDD264;
    border-radius: 50%;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    z-index: 1;
    top: -60px;
    left: 30px;
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.10);
}
.how-does-it-works-card-block .number-block h3 {
    font-size: 48px;
}
.how-does-it-works-card-block {
    position: relative;
}
.how-does-it-works-card-block .arrow-block {
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translate(0, -50%);
}
.how-does-it-works-section .section-heading {
    margin-bottom: 110px;
}

/* trusted-logos-section css **************************************************/
.trusted-logo-img img {
    margin: 0 auto 20px;
    max-width: 190px;
    width: 100%;
}
.trusted-logo-card {
    background-color: #F7F7F7;
    text-align: center;
    padding: 30px 50px;
    box-shadow: 7px 7px 10px -4px rgba(0, 0, 0, 0.11);
    border-radius: 20px;
}
.trusted-logo-card .rating-block img {
    margin: 0 auto 15px;
    max-width: 140px;
    width: 100%;
}
.trusted-logo-img {
    min-height: 80px;
}

/* how-does-it-works-section css  **************************************************/
.how-does-it-works-section {
    background-color: #F7F7F7;
}

/* two-column-form-section css **************************************************/
.two-column-form-section{
    background-color: #087BBA;
}
.form-text-box-with-bg-img {
    background-size: cover;
    background-repeat: no-repeat ;
    padding: 200px 110px 170px 175px;
    position: relative;
}
.two-column-form-section .form-text-box .section-heading{
    text-align: left;
    margin-bottom: 0;
}
.two-column-form-section .form-text-box .section-heading h2,
.two-column-form-section .form-text-box .section-heading p{
    color: var(--white);
}
.two-column-form-section .form-text-box .section-heading p {
    max-width: inherit;
}
.two-column-form-section .form-text-box {
    position: relative;
}
.two-column-form-section .col-md-6,
.two-column-form-section .container-fluid {
    padding: 0;
}
.two-column-form-section .row {
    margin: 0;
}
.two-column-form-section .form-box {
    padding: 80px 190px 40px 100px;
}
.two-column-form-section .submit-btn{
    width: auto;
}
.two-column-form-section .form-box .form-label{
    color: var(--white);
}
.two-column-form-section .form-box .form-control{
    border-color: rgba(255, 255, 255, 0.5);
    background-color: transparent;
}
.two-column-form-section .form-control::-webkit-input-placeholder {
    color:#ccc;
}

.two-column-form-section .form-control::-moz-placeholder {
    color:#ccc;
}

.two-column-form-section .form-control::-ms-placeholder {
    color:#ccc;
}

.two-column-form-section .form-control::placeholder {
    color:#ccc;
}
.two-column-form-section .form-input-box {
    margin-bottom: 30px;
    padding: 0;
}
.two-column-form-section .form-input-box .wpcf7-form-control-wrap{
    width: 100%;
    max-width: 100%;
}
.two-column-form-section .form-box .form-check-label,
.two-column-form-section .form-box .form-control{
    color: var(--white);
}
.form-check{
    padding-left: 0.5em;
}

/* bottom-text-btn-section css **************************************************/
.bottom-text-btn-section{
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    background-position: center;
}
.bottom-text-btn-section .container {
    position: relative;
}
.bottom-text-btn-section .section-heading {
    text-align: left;
}
.bottom-text-btn-section .section-heading h2,
.bottom-text-btn-section .section-heading p{
    color: var(--white);
}
.bottom-text-btn-section .contact-link .btn {
    color: var(--white);
    font-weight: bold;
    display: flex;
    align-items: center;
    font-size: 20px;
    justify-content: flex-end;
    line-height: 20px;
    margin-bottom: 30px;
}
.bottom-text-btn-section .common-btn{
    margin-left: auto;
    border-radius: 100px;
}
.bottom-text-btn-section .contact-link img {
    max-width: 40px;
    width: 100%;
    margin-right: 20px;
}
.bottom-text-btn-section .section-heading {
    text-align: left;
    max-width: 430px;
    width: 100%;
}
.bottom-text-btn-section .section-heading p {
    margin: 0;
}

/* warranty-quote-list-section css **************************************************/
.warranty-quote-list-section{
    background-color: #F7F7F7;
}
.warranty-quote-list-wrapper ul {
    border-right: 1px solid rgba(8, 123, 186, 0.30);
}
.warranty-quote-list-wrapper .col-lg-2:last-child ul {
    border-right: 0;
}
.warranty-quote-list-wrapper li a {
    color: #087BBA;
    line-height: 40px;
    font-weight: 500;
    font-size: 20px;
}
.warranty-quote-list-wrapper li a:hover {
    color: #FF0000;
}
.warranty-quote-list-section .section-heading {
    max-width: 700px;
    margin: 0 auto 40px;
    width: 100%;
}

/* about-us-banner css */
.about-us-banner {
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    background-position: right;
    min-height: 450px;
}
.about-us-banner .page-banner-info {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    transform: translate(-50%, -50%);
}

/* overview-info css */
.overview-info{
    background-color: #F7F7F7;
}
.overview-info .sec-head {
    max-width: 800px;
    margin: 0 auto;
    width: 100%;
}
.company-mission .grow img,
.company-vision .grow img {
    height: 350px;
    object-fit: cover;
    width: 100%;
    object-position: top;
}

.team-member-section .card{
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 0 0 15px 15px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    padding-bottom: 15px;
    background-color: var(--white);
    margin-top: 50px;
    margin-bottom: 20px;
}
.team-member-section .cont .link a {
    margin: 0 5px;
    font-size: 20px;
}

.team-member-section .card img{
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 2px solid #ccc;
    margin-top: -45px;
    margin-bottom: 20px;
}

.team-member-section .cont{
    width: 90%;
    height: 0;
    overflow: hidden;
    text-align: center;
    transition: all 0.6s ease;
}

.team-member-section .card:hover > .cont{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    text-align: center;
    height: 250px;
}

.services{
    background-image: url(https://carefreemiles.com/wp-content/uploads/2024/12/services.jpg);
}
.services .section-overlay, .pricing-banner .section-overlay{
    background: linear-gradient(360deg, rgb(33, 34, 43) 0%, rgba(33, 34, 43, 0.49) 100%);
}


.faq-section .search {
    width: 50%;
    padding: 15px;
    border-color: var(--grey-E9EFF7);
    box-shadow: 0 3px 20px rgba(0, 0, 0, 0.15);
    background-color: var(--white);
    border: 1px solid var(--grey-E9EFF7);
    border-radius: 10px;
    margin-bottom: 20px;
}
.faq-section.section {
    padding-bottom: 0;
}
.faq-section input:focus-visible {
    outline: 0;
}

/* blog css */
.blog-banner{
    background-image: url(https://carefreemiles.com/wp-content/themes/auto_warranty_expert/assets/images/online-blog.png);
    background-position: left top;
}
.category-tabs {
    display: flex;
    flex-direction: column;
}
.tab-titles {
    display: flex;
    list-style: none;
    margin-bottom: 20px;
}
.tab-titles li {
    padding: 10px 20px;
    cursor: pointer;
    background: #f4f4f4;
    margin-right: 10px;
}
.tab-titles .active {
    background: #087BBA;
    color: #fff;
}
.tab-contents .tab-content {
    display: none;
}
.tab-contents .tab-content.active {
    display: block;
}
.blog-tab-section .post-thumbnail img {
    height: 200px;
    object-fit: cover;
    border-radius: 18px;
    width: 100%;
}
.blog-tab-section .post-item{
    background-color: var(--white);
    border-radius: 18px;
    border: 1px solid #E9EFF7;
    margin-bottom: 20px;
}
.blog-tab-section .post-thumbnail a{
    display: block;
}
.blog-tab-section .case-studies-text {
    padding: 30px;
}
.blog-tab-section .bottom-link-text {
    display: flex;  
    justify-content:space-between;
    align-items: center;
}
.blog-tab-section .bottom-link-text a, .blog-tab-section .bottom-link-text p {
    color: #A4A6A8;
    font-weight: 500;
    font-size: 15px;
}
.blog-tab-section .bottom-link-text a{
    text-decoration: underline;
}
.blog-tab-section.section {
    padding-bottom: 0;
}
.blog-tab-section .case-studies-text p.text-content {
    display: -webkit-box;
    height: 50px;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
.post-inner-section .entry-meta,
.post-inner-section .post-thumbnail {
    margin-bottom: 20px;
}
div#comments {
    display: none;
}
.navigation.post-navigation {
    padding: 0 60px;
}
.post-navigation .nav-links {
    display: flex;
    justify-content: space-between;
}
.post-inner-section .entry-title{
    text-align: left !important;
    text-transform: capitalize;
    font-size: 45px;
    line-height: 50px;
}
.post-inner-section .byline {
    margin-left: 10px;
}
.post-inner-section .nav-title {
    font-weight: 600;
}
.post-navigation .nav-subtitle {
    font-size: 15px;
}
.blog-featured-section.section {
    padding-bottom: 80px;
}
.single-post .post-inner-section .post-thumbnail img{
    height: auto;
    width: 100%;
}


/* pricing css */

.pricing-banner{
    background-image: url(https://carefreemiles.com/wp-content/themes/auto_warranty_expert/assets/images/financial-income-economic-diagram-money-concept.png);
}
.pricing-block-section .accordion-body ul {
    list-style: disc;
    padding-left: 2rem;
}
.accordion-button {
    font-size: 20px;
}
.accordion-button:not(.collapsed)::after{
    background-image: url(https://carefreemiles.com/wp-content/uploads/2024/12/down-arrow.png);
}
.accordion-button:not(.collapsed){
    background-color: #087BBA;
    color: #fff;
}
.accordion-item:not(:first-of-type) {
    border-top: 1px solid rgba(0, 0, 0, .125);
}
.accordion-button:focus{
    box-shadow:none;
}
.pricing-block-section.section{
    background-color: #F7F7F7;
}
.two-column-form-section .wpcf7 form.sent .wpcf7-response-output,
.two-column-form-section .wpcf7 form .wpcf7-response-output{
    color: var(--white);
}
.pricing-form-section.two-column-form-section .form-box {
    padding: 0 100px;
}
.pricing-form-section .section-heading h2{
    color: var(--white);
}

.contact-banner{
    background-image: url(https://carefreemiles.com/wp-content/uploads/2024/12/contact-banner.png);
}



.faq .sec-desc{
    display: none;
}
.faq .sec-title{
    margin-bottom: 0;
}
.accordion-item{
    margin-bottom: 20px;
}



/* footer css **************************************************/
.footer {
    padding: 20px 0;
}
.footer .footer-box-inner p, .footer .footer-box-inner a {
    font-size: 18px;
   line-height: 25px;
   color: #686868;
}