/* Font Montserrat, Roboto, Roboto Condensed */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500;1,600;1,700&family=Roboto+Condensed&display=swap');

/* Font Awesome */
@import url('all.min.css');

@font-face {
    font-family: 'Inter';
    src: url('../Fonts/inter-bold/Inter-Bold.eot');
    src: url('../Fonts/inter-bold/Inter-Bold.eot?#iefix') format('embedded-opentype'),
        url('../Fonts/inter-bold/Inter-Bold.woff2') format('woff2'),
        url('../Fonts/inter-bold/Inter-Bold.woff') format('woff'),
        url('../Fonts/inter-bold/Inter-Bold.ttf') format('truetype'),
        url('../Fonts/inter-bold/Inter-Bold.svg#Inter-Bold') format('svg');
    font-style: normal;
    font-display: swap;
    font-weight: 700;
}

/* Start - Site Common */
main h1,main h2,main h3,main h4,main h5,main h6 {
    color: #003E63;
}
main h1 {
    font-size: 36px;
    line-height: 48px;
}
main h2 {
    font-size: 32px;
    line-height: 42px;
}
main h3 {
    font-size: 29px;
    line-height: 38px;
}
main h4 {
    font-size: 28px;
    line-height: 32px;
}
main h5 {
    font-size: 24px;
    line-height: 28px;
}
main h6 {
    font-size: 20px;
    line-height: 24px;
}
main p, main li {
    color: #383838;
}
main a {
    transition: all 0.3s ease-in-out 0s;
}
main hr {
    color: #D5D5D5;
    margin: 40px 0;
    opacity: 1;
}
main p, main ul:not([class]) {
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    line-height: 20px;
}
main ul:not([class]) {
    padding-left: 32px;
}
main ul:not([class]):last-child {
    margin-bottom: 0;
}
@media screen and (max-width: 991.98px) {
    main h1 {
        font-size: 32px;
        line-height: 40px;
    }
    main h2 {
        font-size: 30px;
        line-height: 36px;
    }
    main h3 {
        font-size: 28px;
        line-height: 32px;
    }
    main h4 {
        font-size: 26px;
        line-height: 30px;
    }
    main h5 {
        font-size: 22px;
        line-height: 26px;
    }
    main h6 {
        font-size: 18px;
        line-height: 24px;
    }
    main hr {
        margin: 30px 0;
    }
}
@media screen and (max-width: 767.98px) {
    main h1 {
        font-size: 30px;
        line-height: 36px;
    }
    main h2 {
        font-size: 28px;
        line-height: 32px;
    }
    main h3 {
        font-size: 26px;
        line-height: 30px;
    }
    main h4 {
        font-size: 24px;
        line-height: 28px;
    }
    main h5 {
        font-size: 20px;
        line-height: 24px;
    }
    main h6 {
        font-size: 16px;
        line-height: 24px;
    }
    main hr {
        margin: 26px 0;
    }
}

/* Font Family */
.interval-font {
    font-family: 'IntervalSansProBlack', sans-serif;
}
.inter-font {
    font-family: 'Inter', sans-serif
}
.montserrat-font {
    font-family: 'Montserrat', sans-serif;
}
.roboto-font {
    font-family: 'Roboto', sans-serif;
}
.roboto-condensed-font {
    font-family: 'Roboto Condensed', sans-serif;
}
.interval-font-400 {
    font-family: IntervalSansProRegular, sans-serif;
}
.interval-font-600 {
    font-family: IntervalSansProSemiBold, sans-serif;
}

/* Text colors */
.text-yellow {
    color: #FFC729;
}
.text-blue {
    color: #003E63;
}
.text-grey {
    color: #383838;
}

/* Background colors */
.bg-yellow {
    background-color: #FFC729;
}
.bg-dark-blue {
    background-color: #003E63;
}
.bg-dark-black {
    background-color: rgb(255,255,255);
    border-radius: 10px;
    position: relative;
    z-index: 0;
    overflow: hidden;
}
.bg-dark-black:before {
    content: '';
    background: #003E63;
    border-radius: 10px;
    position: absolute;
    top: -34px;
    left: -130px;
    width: 150%;
    height: 50%;
    transform: rotate(175deg);
    z-index: -1;
    pointer-events: none;
}
.bg-light-blue {
    background-color: #4486BE;
}
.bg-light-grey {
    background-color: rgba(68, 134, 190, .05);
}
.border-grey {
    border-color: #D5D5D5 !important;
}
.bg-cover {
    background-size: cover;
}
.form-control:focus {
    border-color: #2c5b87;
    box-shadow: none;
}

/* Shadow */
.shadow-lg {
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, .175) !important;
}

/* Buttons */
.btn {
    border-radius: 4px;
    font-weight: 500;
    text-shadow: none;
}
.btn.btn-md {
    font-size: 14px;
    line-height: 17px;
    padding: 5px 12px;
}
.btn-blue {
    background: -moz-linear-gradient(top,  #175988 0%, #11476F 100%);
    background: -webkit-linear-gradient(top,  #175988 0%,#11476F 100%);
    background: linear-gradient(to bottom,  #175988 0%,#11476F 100%);
    color: #FFFFFF;
}
.btn-blue:focus,
.btn-blue:hover {
    background: -moz-linear-gradient(top,  #11476F 0%, #175988 100%);
    background: -webkit-linear-gradient(top,  #11476F 0%,#175988 100%);
    background: linear-gradient(to bottom,  #11476F 0%,#175988 100%);
    color: #FFFFFF;
}
.btn-white {
    background: -moz-linear-gradient(top,  #FFFFFF 0%, #E2E2E2 100%);
    background: -webkit-linear-gradient(top,  #FFFFFF 0%,#E2E2E2 100%);
    background: linear-gradient(to bottom,  #FFFFFF 0%,#E2E2E2 100%);
    color: #255989;
}
.btn-white:focus,
.btn-white:hover {
    background: -moz-linear-gradient(top,  #E2E2E2 0%, #FFFFFF 100%);
    background: -webkit-linear-gradient(top,  #E2E2E2 0%,#FFFFFF 100%);
    background: linear-gradient(to bottom,  #E2E2E2 0%,#FFFFFF 100%);
    color: #255989;
}
.btn-yellow {
    background: #FFC729;
    color: #003E63;
}
.btn-yellow:focus,
.btn-yellow:hover {
    background: #EBB623;
    color: #003E63;
}
.btn-dark-blue {
    background: #003E63;
    color: #FFFFFF;
}
.btn-dark-blue:focus,
.btn-dark-blue:hover {
    background: #255989;
    color: #FFFFFF;
}
.btn.btn-yellow:first-child:active,
:not(.btn-check)+.btn.btn-yellow:active, .btn-yellow:active {
    color: #003E63;
    background-color: #EBB623;
    border-color: #EBB623;
}
.btn.btn-dark-blue:first-child:active,
:not(.btn-check)+.btn.btn-dark-blue:active, .btn-dark-blue:active {
    color: #FFFFFF;
    background-color: #255989;
    border-color: #255989;
}
button:focus {
    outline: none;
    box-shadow: none !important;
}

/* Spacing */
.gap-2 {
    gap: 0.5rem;
}

/* Title Line */
.title-line {
    position: relative;
    padding-bottom: 26px;
}
.title-line::before {
    background-color: #FFC729;
    content: '';
    position: absolute;
    bottom: 8px;
    left: 0;
    height: 5px;
    width: 124px;
}
.title-line.text-center::before {
    margin: 0 auto;
    right: 0;
}

/* Lining */
.blue-line, .yellow-line {
    position: relative;
    padding-bottom: 50px;
}
.blue-line::before, .yellow-line::before {
    content: '';
    height: 5px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}
.blue-line::before {
    background-color: #4486BE;
    bottom: 14px;
    width: 200px;
}
.yellow-line::before {
    background-color: #FFC729;
    bottom: 25px;
    width: 130px;
}
.text-left::before {
    left: 0;
    transform: inherit;
}

/* View Link */
.view-link {
    font-size: 13px;
}
.view-link:not(:hover) {
    color: #FFFFFF;
}
.view-link:hover {
    color: #FFC729
}

/* End - Site Common */

/* Start - Header Sticky */
.header-sticky {
    background-color: #FFFFFF;
    box-shadow: 0px 5px 15px 3px rgba(149, 149, 149, .5);
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    transition: all 0.5s;
    width: 100%;
    z-index: 999;
}
.header-sticky img {
    max-width: 140px;
    transition: all 0.5s;
}
@media screen and (min-width: 992px) {
    .header-sticky nav {
        height: 80px;
    }
}
@media screen and (max-width: 991.98px) {
    .header-sticky .menu-wrap {
        height: calc(100vh - 73px);
    }
}
/* End - Header Sticky */


/* Start - vehicleSelector */
#vehicleSelector ul:not([class]) {
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
}
#vehicleSelector li {
    color: inherit;
}
/* End - vehicleSelector */


/* Start - Get Started */
.get-started-content p {
    font-size: inherit;
    line-height: inherit;
}
.get-started-content .step-text {
    font-size: 16px;
    line-height: 1;
}
/* End - Get Started */


/* Start - Slider Section */
.hero-banner:not(.slick-initialized) > div,
.testimonial-slide:not(.slick-initialized) > div {
    display: none;
}
.hero-banner:not(.slick-initialized) > div:first-child,
.testimonial-slide:not(.slick-initialized) > div:first-child {
    display: block;
}
/* End - Slider Section */


/* Start - Select Your Plan*/
.product-select-plan {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    padding: 40px 0;
}
.product-select-plan .subscription-heading p {
    font-size: 22px;
    line-height: 20px;
}
.plan-box {
    max-width: 1027px;
}
.product-select-box {
    box-shadow: 0px 23px 36px rgba(0, 0, 0, .32);
    padding: 35px 25px 32px;
}
.best-badge {
    background-image: url('../images/best-value-badge.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: right;
    font-size: 11px;
    font-weight: 900;
    line-height: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 101px;
    min-height: 33px;
    margin: 0;
    padding-right: 10px;
    position: absolute;
    left: 0;
    top: 12px;
}
.product-select-box.bigger-box .best-badge {
    top: 15px;
    min-width: 127px;
}
.product-select-plan h6 {
    font-weight: normal;
    font-size: 20px;
}
.display-1 {
    font-size: 3.75rem;
    line-height: 1;
}
.product-price {
    margin-top: 29px;
    margin-bottom: 40px;
}
.product-select-box.bigger-box {
    padding-top: 55px;
    padding-bottom: 45px;
}
.product-select-box.bigger-box .product-price {
    margin-top: 21px;
}
@media screen and (min-width: 992px){
    .product-select-box.bigger-box {
        margin-top: -13px;
    }
}
@media screen and (max-width: 991.98px) {
    .product-select-plan {
        padding: 50px 0;
    }
}
@media screen and (min-width: 768px) {
    .product-select-plan .notes p {
        margin-bottom: 6px;
    }
}
@media screen and (max-width: 767.98px) {
    .product-select-plan {
        padding: 33px 0 12px;
    }
    .product-select-box {
        padding: 30px;
    }
    .best-badge {
        min-height: 30px;
    }
    .product-price {
        margin-top: 27px;
        margin-bottom: 31px;
    }
    .display-1 {
        font-size: 48px;
        line-height: 58px;
    }
    .product-select-plan h6 {
        font-size: 16px;
        line-height: 28px;
    }
}
/* End - Select Your Plan */


/* Start - manufacturers service items */
.service-wrap .service-title {
    color: #383838;
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    line-height: 20px;
}
.service-main-heading {
    padding: 50px 0 15px;
}
.service-main-heading .title-line::before {
    bottom: 15px;
    left: 3px;
    width: 134px;
}
.service-wrap .service-icon {
    min-height: 70px;
    max-width: 100px;
    width: 100%;
}
.service-wrap ~ .service-wrap {
    margin-top: 40px;
}
.service-wrap .bg-dark-blue .service-heading, 
.service-wrap .bg-dark-blue .service-heading a {
    color: #fff;
}
.service-wrap .service-heading {
    max-width: 270px;
    margin-top: 14px;
    margin-bottom: 0;
    position: relative;
}
.service-wrap .service-heading:before {
    content: '';
    background-color: #FFC729;
    position: absolute;
    bottom: -19px;
    left: 50%;
    transform: translateX(-50%);
    height: 5px;
    width: 134px;
}
.service-wrap .service-info ul {
    list-style-type: none;
    margin-bottom: 0;
    padding: 0;
}
.service-wrap .service-lhs {
    max-width: 336px;
    width: 100%;
}
.service-wrap .service-rhs {
    padding: 29px 30px 28px 54px;
    max-width: calc(100% - 336px);
    width: 100%;
}
.service-wrap .service-info p:last-child {
    margin-bottom: 0;
}
@media screen and (min-width: 992px) {
    .service-wrap .service-title {
        width: 162px;
    }
    .service-info {
        display: inline-block;
        width: calc(100% - 162px);
    }
    .contact-justanswer {
        border-left: 1px solid #eee;
        max-width: 360px;
    }
    .banner-box-inner {
        height: 100%;
    }
    .banner-border-lr {
        border-left: 2px solid #fff;
        border-right: 2px solid #fff;
    }
    .select-plan-vehicle {
        align-items: flex-end;
        height: 100%;
        width: calc(100% - 740px);
    }
    .select-plan-item {
        width: auto;
    }
    .select-plan-label {
        width: 10rem;
    }
}
@media screen and (max-width: 991.98px) {
    .service-info p {
        font-size: 14px;
        line-height: 20px;
    }
    .service-wrap .service-lhs {
        max-width: 260px;
    }
    .service-wrap .service-rhs {
        padding: 28px;
        max-width: calc(100% - 260px);
    }
    .service-wrap .service-title {
        margin-bottom: 6px;
    }
    .service-wrap .service-title br {
        display: none;
    }
}

@media screen and (min-width: 768px) {
    .service-wrap .service-info ul {
        display: flex;
        flex-wrap: wrap;
    }
    .service-wrap .service-info ul li {
        word-break: break-word;
        width: 50%;
    }
    .service-wrap .service-info ul li:not(:nth-child(2n)) {
        padding-right: 12px;
    }
}
@media screen and (max-width: 767.98px) {
    .service-wrap .service-lhs, .service-wrap .service-rhs {
        max-width: 100%;
    }
    .service-wrap .service-rhs {
        padding: 20px;
    }
    .service-wrap ~ .service-wrap {
        margin-top: 20px;
    }
    .service-wrap .service-heading {
        font-size: 22px;
        line-height: 26px;
        max-width: 100%;
    }
}
/* End - Select Your Plan */


/* Start - Repair info section */
.repair-icon {
    min-height: 50px;
}
/* End - Repair info section */


/* Start - Demo Page - Autorepair */
.vehicle-section .vehicle-details {
    padding: 30px 25px 31px 35px;
}
.vehicle-section .title-line {
    max-width: 390px;
    margin-bottom: 20px;
    padding-bottom: 21px;
}
.vehicle-section .vehicle-details > img {
    width: 100%;
    max-width: 226px;
    margin-bottom: 13px;
}
.vehicle-section .vehicle-details > h3 {
    font-size: 28px;
    line-height: 32px;
    margin-bottom: 21px;
}
.vehicle-login-details .vehicle-login-info-list strong {
    font-size: 14px;
    line-height: 18px;
}
.vehicle-details .vehicle-login-details .vehicle-login-deta-list:not(:last-child) {
    margin-bottom: 16px;
}
.vehicle-section .vehicle-details .vehicle-login-deta-list strong {
    width: 100%;
    max-width: 500px;
    display: inline-block;
}
.vehicle-section .vehicle-details .vehicle-login-details {
    font-size: 14px;
    line-height: 20px;
    max-width: 195px;
    width: 100%;
}
.deta-title-details {
    max-width: 425px;
}
.autorepair-service {
    margin-bottom: 36px;
}
.autorepair-service-box .repair-box {
    box-shadow: 0 23px 36px 1px rgba(0, 0, 0, 0.10);
}
.autorepair-service-box .repair-box:hover {
    text-decoration: none;
}
.autorepair-service-box .repair-box:hover div {
    color: #4486BE;
}
.autorepair-service-box .repair-title {
    font-size: 14px;
    color: #003E63;
}
.article-inside-service {
    margin-bottom: 33px;
}
.article-inside-service .inside-service-info {
    margin-top: 20px;
}
@media screen and (max-width: 991.98px) {
    .vehicle-section .vehicle-details {
        padding: 15px;
    }
    .vehicle-section .title-line {
        font-size: 27px;
        line-height: 33px;
        max-width: 100%;
    }
}
@media screen and (max-width: 767.98px) {
    .deta-title-details {
        max-width: 100%;
    }
    .vehicle-section .title-line:before {
        bottom: 0;
    }
    .vehicle-section .vehicle-details {
        padding: 20px;
    }
    .vehicle-section .vehicle-details > h3 {
        font-size: 23px;
        line-height: 27px;
    }
    .article-inside-service .inside-service-info {
        margin-top: 12px;
    }
    .autorepair-service-box .repair-title {
        font-size: 12px;
    }
    .vehicle-section .vehicle-details .vehicle-login-details {
        max-width: 100%;
    }
    .vehicle-section .vehicle-details .vehicle-login-deta-list strong {
        max-width: 140px;
    }
}
/* End - Demo Page - Autorepair */


/* Start - Aboutus Page */
.content-wrap h2 {
    margin-bottom: 16px;
}
.imagebox {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 30px;
}
.imagebox .imagebox-left {
    width: 200px;
}
.imagebox .imagebox-right {
    width: calc(100% - 200px);
    padding-left: 30px;
}
.imagebox p:last-child {
    margin-bottom: 0;
}
.imagebox-right ul:not([class]) {
    padding-left: 15px;
}
.custom-btn {
    font-size: 14px;
    line-height: 1;
    padding-left: 12px;
    padding-right: 12px;    
}
.description.blue-line::before {
    bottom: 0;
    width: 134px;
    height: 5px;
}
.join-free {
    font-size: 14px;
    line-height: 17px;
    font-weight: 700;
    padding-left: 12px;
    padding-right: 12px;
}
.sidebar-wrap #testimonials {
    padding: 11px 4px 0 10px;
}
.better-value {
    font-size: 14px;
    line-height: 20px;
    padding-bottom: 27px;
}
.offer-badge {
    max-width: 190px;
    margin: 0 auto;
    text-align: center;
    font-size: 14px;
    line-height: 11px;
    padding: 15px 0;
    font-weight: 900;
}
.sidebar-wrap .better-value h6, 
.affiliate-programe .description {
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 24px;
}
.sidebar-wrap .better-value h6 {
    padding: 0 20px 26px;
    margin-bottom: 0;
}
.sidebar-wrap .better-value h6::before {
    bottom: 0;
    width: 134px;
    height: 6px;
    left: 50%;
    transform: translateX(-50%);
}
.sidebar-wrap .subscribe-btn {
    font-size: 14px;
    line-height: 1;
    margin: 28px 0 17px;
    padding-left: 12px;
    padding-right: 12px;
}
.affiliate-programe {
    background-image: url('../images/affiliate-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: repeat;
    padding: 43px 30px 26px;
}
.affiliate-programe .description {
    padding-bottom: 22px;
    margin-top: 0;
    margin-bottom: 46px;
}
.affiliate-programe .title {
    color: #4486BE;
    text-align: center;
    font-size: 14px;
    line-height: 17px;
    margin-bottom: 3px;
}
@media screen and (min-width: 992px) {
    .content-block {
        flex: 0 0 calc(100% - 390px);
        max-width: calc(100% - 390px);
    }
    .sidebar-block {
        flex: 0 0 390px;
        max-width: 390px;
    }
}
@media screen and (max-width: 991.98px) {
    .content-block {
        margin-bottom: 50px;
    }
}
@media screen and (max-width: 767.98px) {
    .imagebox .imagebox-left {
        width: 100%;
        margin-bottom: 20px;
    }
    .imagebox-left img {
        display: block;
        margin: 0 auto;
        width: 100%;
    }
    .imagebox .imagebox-right {
        width: 100%;
        padding-left: 0;
    }
    .sidebar-wrap .better-value h6, .affiliate-programe .description {
        font-size: 18px;
        line-height: 22px;
    }
}
/* End - Aboutus Page */


/* Testimonial Slider and page */
.testimonial {
    padding-bottom: 61px;
}
.testimonial-slide {
    background-color: #003E63;
    background-image: url('../images/testimonial-bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: repeat;
    border-radius: 12px;
    padding: 30px 0 28px;
}
.testimonial .yellow-line::before {
    bottom: -21px;
    width: 134px;
}
.testimonial .testimonial-content {
    max-width: 860px;
    margin-top: 22px;
}
.testimonial .testimonial-content p {
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    margin-bottom: 24px;
}
.testimonial .testimonial-content p:last-child {
    margin-bottom: 0;
}
.testimonial .designation {
    padding-bottom: 0;
}
.testimonial-slide.slick-slider {
    position: relative;
    display: block;
    box-sizing: border-box;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
        touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}
.testimonial-slide .slick-list {
    position: relative;
    display: block;
    overflow: hidden;
    margin: 0;
    padding: 0;
}
.testimonial-slide .slick-list,
.testimonial-slide .slick-track {
    display: flex;
    align-items: center;
}
.testimonial-slide .slick-track:before,
.testimonial-slide .slick-track:after {
    display: none;
}
.slick-dots {
    display: flex;
    font-size: 14px;
    line-height: 20px;
    list-style: none;
    position: absolute;
    bottom: -51px;
    left: 50%;
    transform: translateX(-50%);
    padding: 0;
}
.slick-dots li button {
    font-size: 0;
    background: #C3C3C3;
    border: none;
    height: 8px;
    width: 8px;
    border-radius: 50%;
    padding: 0;
    margin: 0 4px;
}
.slick-dots li button:hover,
.slick-dots li.slick-active button {
    background-color: #4486BE;
}
.testimonial-list-wrap .testimonial-content {
    max-width: 100%;
}
.testimonial-list-wrap .yellow-line::before {
    left: 0;
    transform: none;
}
.testimonial-list-item + .testimonial-list-item {
    border-top: 1px solid #ddd;
}
@media screen and (max-width: 767.98px) {
    .testimonial .yellow-line::before, .sidebar-wrap .better-value h6::before {
        width: 125px;
    }
    .testimonial .testimonial-content {
        margin-top: 12px;
    }
    .testimonial-slide {
        padding: 20px 0;
    }
    .testimonial-slide h4 {
        font-size: 24px;
        line-height: 29px;
    }
    .testimonial .yellow-line.designation {
        padding-bottom: 12px;
        margin-bottom: 10px;
    }
    .testimonial .yellow-line::before, 
    .sidebar-wrap .better-value h6::before {
        width: 100px;
        height: 4px;
        bottom: 0;
    }
    .testimonial .blurb, 
    .testimonial .greets {
        max-width: 278px;
        font-size: 14px;
        line-height: 22px;
    }
    .testimonial .testimonial-content p {
        font-size: 14px;
        line-height: 21px;
        margin-bottom: 23px;
        max-width: 100%;
    }
}
/* End - Testimonial Slider and page */


/* Start - Contact Us Page */
.static-menu {
    margin-bottom: 36px;
}
.static-menu ul:not([class]) {
    color: #003E63;
    display: flex;
    flex-wrap: wrap;
    font-weight: bold;
    padding: 0;
    list-style-type: none;
}
.static-menu ul li:not(:last-child) {
    padding-right: 38px;
    position: relative;
}
.static-menu ul li:not(:last-child):before {
    background: #003E63;
    content: '';
    position: absolute;
    right: 19px;
    top: 50%;
    transform: translateY(-50%);
    height: 13px;
    width: 1px;
}
div.ja-gadget-virtual-assistant-inline.cleanslate .th-chat-window-inline .modal {
    width: 100% !important;
}
.ja-gadget-virtual-assistant-inline + img[width="1"] {
    display: block;
}
.text-small {
    color: #828282;
    font-size: 12px;
}
@media screen and (min-width: 992px) {
    .contact-justanswer {
        border-left: 1px solid #eee;
        max-width: 360px;
    }
}
@media screen and (max-width: 767.98px) {
    .static-menu {
        margin-bottom: 26px;
    }
}
/* End - Contact Us Page */


/* Start - Estimate guide css*/
@media screen and (min-width: 768px) and (max-width: 991.98px) {
    .content-wrap h2 {
        line-height: 32px;
    }
}
/* End - Estimate guide css */


/* Start - FAQ Page in Accordion */
.accordion-item {
    color: #212529;
    background-color: #fff;
    border: 1px solid #dee2e6;
}
.accordion-header {
    margin-bottom: 0;
}
.accordion-body {
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    line-height: 20px;
    padding: 16px 20px;
}
.accordion-item:not(:first-of-type) {
    border-top: 0;
}
.accordion-button {
    background-color: #fff;
    border: 0;
    border-radius: 0;
    color: #212529;
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 20px;
    line-height: 1.4;
    box-shadow: none;
    color: #383838;
    position: relative;
    display: flex;
    align-items: center;
    padding: 16px 20px;
    text-align: left;
    overflow-anchor: none;
    transition: color 0.15s ease-in-out,background-color 0.15s ease-in-out,border-color 0.15s ease-in-out,box-shadow 0.15s ease-in-out,border-radius 0.15s ease;
    width: 100%;
}
.accordion-button::after {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    margin-left: auto;
    content: "";
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23212529'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-size: 20px;
    transition: transform 0.2s ease-in-out;
}
.accordion-button:not(.collapsed) {
    background-color: #003E63;
    color: #fff;
}
.accordion-button:not(.collapsed)::after {
    background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQAgMAAABinRfyAAAAAXNSR0IB2cksfwAAAAlwSFlzAAALEwAACxMBAJqcGAAAAAlQTFRFAAAA////////c3ilYwAAAAN0Uk5TADDghToQVQAAAC1JREFUeJxjYMACREBIkoEhhYHNgXECA+MENgcgByjAIJkCJNgmAAlGB2w6GQCk6AQlieBq4gAAAABJRU5ErkJggg==);
    transform: rotate(-180deg);
}
@media screen and (max-width: 767.98px) {
    .accordion-header .accordion-button {
        font-size: 18px;
        line-height: 1.2;
    }
}
/* End - FAQ Page in Accordion */


/* Start - Sample Repair Table css */
.round-yellow-circle {
    font-size: 22px;
    font-weight: 500;
    line-height: 44px;
    height: 44px;
    width: 44px;
}
.round-yellow-circle:after {
    border: 1px solid #FFC729;
    border-radius: 50%;
    content: "";
    display: block;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    height: 52px;
    width: 52px;
}
.table td[align=LEFT] {
    text-align: left;
}
.table td[align=LEFT]:first-child {
    color: #333;
}
.table th, .table td {
    padding: 0.75rem;
}
@media screen and (max-width: 991.98px){
    .table thead tr th:nth-child(1), table.table:not(.top-table) tr:first-child td:nth-child(1) {
        width: 30%;
    }
    .table thead tr th:nth-child(2), table.table:not(.top-table) tr:first-child td:nth-child(2) {
        width: 22%;
    }
}
@media screen and (max-width: 767.98px) {
    .table {
        min-width: 575px;
    }
}
/* End - Sample Repair Table css */


/* Start - Affiliates Page css */
.inside-service .service-main-heading {
    max-width: 1100px;
    width: 100%;
}
.inside-service .service-main-heading .title-line::before {
    bottom: 2px;
    left: 4px;
    width: 135px;
}
.inside-service .inside-service-info {
    margin-top: 26px;
}
/* End - Affiliates Page css */


/* Start - Modules Overview css */
.video-wrap {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%; /* 16:9 */
}
.video-wrap iframe{
  position: absolute;
  width: 100%;
  height: 100%;  
}
.modules-text-wrap {
    margin-top: 50px;
}
.modules-text-wrap hr {
    margin: 30px 0 20px;
}
ul.modules-links {
    padding: 0;
}
ul.modules-links:last-child {
    margin: 0;
}
ul.modules-links li {
    list-style: none;
    position: relative;
    padding-left: 27px;
}
ul.modules-links li:before {
    content: "";
    background-image: url("../images/smallplayicon.png");
    width: 20px;
    height: 20px;
    position: absolute;
    top: 1px;
    left: 0;
}
ul.modules-links li + li {
    margin-top: 10px;
}
ul.modules-links li a:hover {
    text-decoration: none;
}
@media screen and (max-width: 767.98px) {
    .modules-text-wrap {
        margin-top: 30px;
    }
    .modules-text-wrap hr {
        margin: 20px 0 20px;
    }
}
/* End - Modules Overview css */