/*@charset "utf-8";
/*..............embedded fonts..............*/
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');
/*..............embedded fonts..............*/

/*..............custom fonts..............*/



/*..............common styles..............*/
body {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #000;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: normal;
    margin: 0 0 25px;
    padding: 0;
    color: #000;
    font-family: 'Poppins', sans-serif;
    /* line-height: 1; */
}

h1 {
    font-size: 60px;
}

h2 {
    font-size: 48px;
}

h3 {
    font-size: 36px;
}

h4 {
    font-size: 30px;
}

h5 {
    font-size: 24px;
}

h6 {
    font-size: 22px;
}

p {
    margin: 0 0 25px;
    line-height: 1.6;
    font-size: 22px;
}

img {
    max-width: 100%;
}

a,
img {
    border: 0;
    text-decoration: none;
    outline: none;
}

li{
    list-style: none;
}
a,
a:link,
a:visited,
a:focus,
a:hover {
    color: #000;
    outline: none;
    text-decoration: none;
    transition: all 0.3s ease 0s;
}

a:hover {
    text-decoration: none;
    color: #D12D77;
}

input,
textarea,
select {
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
    outline: none;
    border: 1px solid #707070 !important;
}
textarea{
    height: 273px !important;
}
::placeholder{
    color: #707070 !important;
    font-size: 18px;
}
input[type="submit"] {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    transition: all 0.3s ease 0s;
    outline: none;
}

select {
    appearance: none;
    -webkit-appearance: none;
    height: 65px !important;
    padding-right: 40px !important;
    background-image: url(../images/select-arw.png);
    background-repeat: no-repeat;
    background-position: 96% center;
    font-size: 18px !important;
    color: #707070 !important;
    margin-top: 10px !important;
}

/* --- for placeholder color --- */
/*
.form-control::-moz-placeholder{color:#505873;opacity:1;}
.form-control:-ms-input-placeholder{color:#505873;}
.form-control::-webkit-input-placeholder{color:#505873;}
*/
/* --- for placeholder color --- */

/* --- only use for wordpress (Image alignment) --- */
.alignleft,
.alignnone {
    float: left;
    margin: 0 15px 10px 0;
}

.alignright {
    float: right;
    margin: 0 0 10px 15px;
}

.aligncenter {
    margin: 10px auto;
    display: block;
}

/* --- only use for wordpress (Image alignment) --- */

/* --- Button Styles --- */
.btn {
    -webkit-transition: all 0.8s ease;
    -moz-transition: all 0.8s ease;
    -ms-transition: all 0.8s ease;
    -o-transition: all 0.8s ease;
    /* border: 1px solid #D12D77; */
    letter-spacing: 1px;
    font-family: 'Poppins', sans-serif;
    display: inline-block;
    vertical-align: top;
    background: #D12D77;
    color: #fff !important;
    padding: 20px 40px;
    font-size: 20px;
    line-height: 1;
    /* text-transform: uppercase; */
    border-radius: 40px;
    -webkit-border-radius: 40px;
    -moz-border-radius: 40px;
    -ms-border-radius: 40px;
    -o-border-radius: 40px;
}

.btn:hover {
    border: 1px solid #000;
    background: #ffffff !important;
    color: #000 !important;
    -webkit-transition: all 0.8s ease;
    -moz-transition: all 0.8s ease;
    -ms-transition: all 0.8s ease;
    -o-transition: all 0.8s ease;
}

.btn.btn-transfrnt {
    background: transparent;
    color: #000 !important;
    border: 1px solid #000;
}

.btn.btn-transfrnt:hover {
    background: #000 !important;
    color: #fff !important;
}

.btn.btn-white {
    background-color: #fff !important;
    color: #000 !important;
    border-color: #fff !important;
}

.btn.btn-white:hover {
    background-color: #000 !important;
    color: #fff !important;
    border-color: #fff !important;
}

/* --- Button Styles --- */

/*row with equal height column*/
.row-eq-height {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
}

/*row with equal height column*/

/* --- checkbox and radio button Styles --- */

.builder_radiobox ul li label {
    font-weight: normal;
}

.builder_radiobox ul li input[type="radio"] {
    opacity: 0;
}

.builder_radiobox ul li input[type="radio"]:empty~label {
    position: relative;
    float: left;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    padding: 0 0 0 22px;
}

.builder_radiobox ul li input[type="radio"]:empty~label:before {
    position: absolute;
    display: block;
    top: 2px;
    bottom: 0;
    left: 0;
    content: "";
    width: 16px;
    height: 16px;
    background: url(../images/radiobutton.png) left top no-repeat;
}

.builder_radiobox ul li input[type="radio"]:checked~label:before {
    background: url(../images/radiobutton.png) left bottom no-repeat;
}

/* --- checkbox and radio button Styles --- */

.common-padd {
    padding-top: 90px;
    padding-bottom: 90px;
}

.common-padd-small {
    padding-top: 50px;
    padding-bottom: 50px;
}

.common-padd-lt-rt {
    padding-left: 85px;
    padding-right: 85px;
}

.common-padd-big {
    padding-top: 120px;
    padding-bottom: 120px;
}

.form-control {
    height: 50px;
    padding: 12px 15px;
}

.form-control {
    height: 65px;
    padding: 12px 15px;
    margin-top: 10px !important;
    font-size: 18px;
    color: #000 !important;
}

img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: center center;
}
/*..............common styles..............*/



/*for header css*/
.main-header {
    padding: 20px 0px 20px 0px;
    z-index: 999;
    left: 0;
    right: 0;
    top: 0;
    position: fixed;
}
.main-header .hdr-rt{
    display: flex;
    align-items: center;
}
.header-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}
.main-header .user-sec ul{
    margin-bottom: 0px;
}
.call-portal {
    padding: 0 0 18px;
    margin-right: -20px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.call-portal a.call-link {
    color: #D12D77;
    font-weight: 900;
    font-style: italic;
    margin-right: 10px;
}

.call-portal a.call-link svg {
    color: #686868;
}

.call-portal a.portal-btn {
    background: #D12D77;
    color: #fff;
    padding: 9px;
    line-height: 1;
    display: block;
    font-size: 14px;
}

.main-menu {}

.main-menu ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.main-menu ul li {
    list-style: none;
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 400;
    text-transform: capitalize;
}

.main-menu ul li:not(:last-child) {
    margin-right: 40px;
    position: relative;
}

.main-menu ul li a {
    display: block;
    color: #fff;
    padding: 8px 0;
    position: relative;
}

.main-menu ul li a:hover,
.main-menu ul li.current-menu-item a {
    color: #f7a3c9;
}


.main-menu ul li.talk-btn a {
    background: #D12D77;
    color: #fff !important;
    padding: 14px 35px !important;
    line-height: 1;
    font-size: 16px;
    text-transform: uppercase;
    border-radius: 30px;
}

.main-menu ul li a,
.main-menu ul li {
    display: block;
    color: #fff;
    padding: 8px 0;
    position: relative;
    font-size: 20px;
}

.nav_btn {
    color: #fff;
    font-size: 22px;
    text-align: right;
    display: none;
}

.nav_close {
    display: none;
    color: #fff;
}


.main-header.fixed {
    background: #3B75F7;
    padding: 15px 0px 15px 0px;
    left: 0;
    position: fixed;
    top: 0;
    width: 100%;
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.4);
    transition: all 0.5s;
    -ms-transition: all 0.5s;
    -webkit-transition: all 0.5s;
    animation: slide-down 0.7s;
    -ms-animation: slide-down 0.7s;
    -webkit-animation: slide-down 0.7s;
}

@keyframes slide-down {

    0% {
        transform: translateY(-100%);
        -moz-transform: translateY(-100%);
        -webkit-transform: translateY(-100%);
        -o-transform: translateY(-100%);
        -ms-transform: translateY(-100%);
    }

    100% {
        transform: translateY(0);
        -moz-transform: translateY(0);
        -webkit-transform: translateY(0);
        -o-transform: translateY(0);
        -ms-transform: translateY(0);
    }
}

/*for header css*/
header.main-header.no-banner {
    position: relative;
    background-color: #3B75F7;
    padding: 20px 0px 20px 0px;
}

header.main-header.no-banner.fixed {
    position: fixed;
}


.home-banner{
    width: 100%;
    background-color: #3B75F7;
    padding-top: 200px;
   
}
.inner-banner{
    position: relative;
    width: 100%;
    background-color: #3B75F7;
    padding-top: 0px;
    padding-bottom: 100px;
}
.inner-banner::before{
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    background-image: url('../images/inner-bg.png');
    background-repeat: no-repeat;
    background-size: 78%;
    background-position: 50% 76%;
}
.inner-banner .banner-text h1{
    color: #fff;
    font-weight: bold;
    line-height: 91px;
    margin-bottom: 0px;
    text-transform: uppercase;
    max-width: 100%;
    padding-top: 160px;
}
.inner-banner p{
    font-size: 39px;
    color: #fff;
}
.main-header .logo{
    width: 180px;
}
.home-banner:after{
    position: absolute;
    content:'';
    width: 100%;
    height: 60px;
    background-color: #fff;
    bottom: 0px;
}
.banner-text h1{
    color: #fff;
    font-weight: bold;
    line-height: 75px;
    text-transform: uppercase;
    max-width: 600px;
}
.banner-text p{
    font-size: 28px;
    color: #fff;
    /* line-height: 79px; */
}
.home-banner .banner-img{
    position: relative;
    max-width: 550px;
    /* margin-top: 110px; */
    z-index: 1;
    margin-left: auto;
}
.banner-img figure{
    border-radius: 60px 0px 60px 60px;
    overflow: hidden;
}
.banner-text {
    padding-top: 20px;
    padding-bottom: 40px;
}
.home-banner .banner-img::before{
    position: absolute;
    content: '';
    width: 113px;
    height: 200px;
    background-image: url('../images/banner-bf.png');
    background-repeat: no-repeat;
    left: -53px;
    bottom: 60px;
    background-size: contain;
    z-index: -1;
}
.home-banner .banner-img::after{
    position: absolute;
    content: '';
    width: 141px;
    height: 200px;
    background-image: url('../images/banner-af.png');
    background-repeat: no-repeat;
    right: -103px;
    top: 160px;
    background-size: contain;
}
.center-main{
    position: relative;
}
.full-border::after{
    position: absolute;
    content: '';
    left: 0;
    bottom: 50px;
    width: 100%;
    height: 1px;
    border-bottom: 1px dashed #8A8989;
}
.center-main p{
    font-size: 26px;
}
.page-heading h2{
    text-transform: uppercase;
    color: #2A2A2A;
    line-height: 55px;
}
.page-heading h2 span{
    font-weight: bold;
}
/* services css  */
.our-services{
    overflow: hidden;
}
.our-services .service-img figure{
    position: relative;
    border-radius: 30px;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    -ms-border-radius: 30px;
    -o-border-radius: 30px;
    /* background-color: #ccc; */
}
.our-services .service-img figure img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 30px;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    -ms-border-radius: 30px;
    -o-border-radius: 30px;
}
.our-services .service-img figure:hover::after {
    transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transition: .5s;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    -ms-transition: .5s;
    -o-transition: .5s;
}
.our-services .service-img figure::after{
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    background-color: #3B75F7;
    left: 0;
    border-radius: 30px;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    -ms-border-radius: 30px;
    -o-border-radius: 30px;
    transform: rotate(8deg);
    z-index: -1;
    -webkit-transform: rotate(8deg);
    -moz-transform: rotate(8deg);
    -ms-transform: rotate(8deg);
    -o-transform: rotate(8deg);
    transition: .5s;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    -ms-transition: .5s;
    -o-transition: .5s;
}
.service-text h3{
    text-transform: uppercase;
    color: #000000;
    /* overflow: hidden; */
    /* height: 35px; */
    /* margin-bottom: 0px; */
    /* text-overflow: ellipsis; */
    /* -webkit-line-clamp: 1; */
    /* -webkit-box-orient: vertical; */
    /* display: -webkit-box; */
    /* max-width: 100%; */
}
.service-text h3 span{
    font-weight: bold;
}
.services-div .service-text{
   padding-left: 112px;
}
.service-text p{
    overflow: hidden;
    /* height: 175px; */
    margin-bottom: 0px;
    text-overflow: ellipsis;
    /* -webkit-line-clamp: 5; */
    -webkit-box-orient: vertical;
    display: -webkit-box;
    max-width: 100%;
}
.services-div .row:nth-child(even){flex-direction: row-reverse;}
.services-div .row:nth-child(even) .service-text{padding-left: 0; padding-right: 112px;}

.our-services .services-div .row:nth-child(1){
    padding-top:100px;
}
.our-services .services-div .row{
    padding-top: 150px;
}

/* our-approach css start */
.our-approach{
    width: 100%;
    height: auto;
    background-color: #FEF5F9;
    border-top-right-radius: 100px;
    border-bottom-left-radius: 100px;
}
.our-approach .our-approch-list-inner ul{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    padding-left: 0px;
}
.our-approach .our-approch-list-inner ul li{
    max-width: 45%;
}
.our-approach .approach-main .approach-item .icons{
    width: 99px;
    height: 99px;
    background-color: #fff;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.our-approach .approach-main .approach-item{
    display: flex;
    gap: 32px;
    padding-top: 75px;
}
.approach-item .content p{
    overflow: hidden;
    /* height: 137px; */
    margin-bottom: 0px;
    text-overflow: ellipsis;
    /* -webkit-line-clamp: 4; */
    -webkit-box-orient: vertical;
    display: -webkit-box;
    max-width: 100%;
}
.our-approach .approach-main .approach-item .icons img{
    width: 45px;
}
.our-approach .approach-main .approach-item .content h4{
    font-weight: bold;
    margin-bottom: 10px;
    overflow: hidden;
    line-height: 40px;
    /* height: 34px;
    margin-bottom: 10px;
    text-overflow: ellipsis;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    max-width: 100%; */
}
/* brands css start  */
.brands{
    width: 100%;
    height: auto;
    background-image: url('../images/brand.png');
    background-size: 100%;
    background-position: 100% 38%;
    background-repeat: no-repeat;
}
.brands .brand-div span{
    font-size: 100px;
    background: #121FCF;
    background: linear-gradient(to right, #D12D77 -75%, #0059C5 25%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: bold;
}
.brands .brand-div .count-text{
    font-size: 60px;
    background: #121FCF;
    background: linear-gradient(to right, #D12D77 0%, #0059C5 30%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: bold;
    margin-top: -40px;
}
.brands .brand-div h2{
    font-size: 100px;
    font-weight: bold;
    background: #121FCF;
    background: linear-gradient(to right, #D12D77 35%, #0059C5 99%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline;
}
.brands #brand-slider{
    margin-top: 191px;
    padding-left: 20px !important;
    padding-right: 20px !important;
}
.brands #brand-slider .owl-stage{
    display: flex;
}
.brands #brand-slider .owl-stage-outer .owl-stage .owl-item:last-child{
    margin-right: 0px !important;
}
.brands #brand-slider .owl-item{
    /* width: 195px;
    height: 171px; */
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    box-shadow: 0 0 5px 2px #ccc;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    padding: 30px 30px;
}
.brands #brand-slider .item img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.brands .owl-carousel .owl-stage-outer{
    padding: 10px 8px;
    padding-right: 0px;
}
.owl-carousel .owl-nav .owl-next{
    font-size: 30px;
    color: #777777;
    background-color: transparent;
    position: absolute;
    right: 0px;
    top: 82px;
}
.owl-carousel .owl-nav .owl-prev{
    font-size: 30px;
    color: #777777;
    background-color: transparent;
    position: absolute;
    left: 0px;
    top: 82px;
}
.owl-carousel .owl-nav .owl-next:hover{
    background-color: transparent;
    color: #777777;
}
.owl-carousel .owl-nav .owl-prev:hover{
    background-color: transparent;
    color: #777777;
}
.owl-nav .owl-prev, .owl-next{
    width: 15px;
}
.brands .container .row .col-lg-6:nth-child(1) .brand-div{
    padding-right: 115px;
    position: relative;
}
.brands .container .row .col-lg-6:nth-child(2) .brand-div{
    padding-left: 129px;
}
.brands .container .row .col-lg-6:nth-child(1) .brand-div::after{
    position: absolute;
    content: '';
    height: 406px;
    width: 1px;
    background-color: #C2C2C2;
    top: 0;
    right: 0;
}
/* .brands .brand-div p{
    overflow: hidden;
    height: 140px;
    margin-bottom: 0px;
    text-overflow: ellipsis;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    max-width: 100%;
} */
/* your sales css start  */
.your-sales{
    width: 100%;
    height: auto;
    background-color: #3B75F7;
    border-top-right-radius: 100px;
    border-bottom-left-radius: 100px;
}
.your-sales .form-div{
    margin-top: 59px;
}
.your-sales .page-heading h2 {
    line-height: 60px;
}
.your-sales .page-heading p{
    color: #fff;
    font-size: 30px;
}
.footer{
    width: 100%;
    height: auto;
    background-image: url('../images/brand.png');
    background-repeat: no-repeat;
    background-size: 100%;
    background-position: top center;
}
.footer .footer-logo{
    width: 300px;
}
.footer .address ul li span{
    display: block;
    width: 40px;
    height: 40px;
    /* background-color: #ccc; */
    flex-shrink: 0;
}
.footer .address ul li span img{
    width: 39px;
}
.footer .address ul li{
    display: flex;
    align-items: start;
    gap: 30px;
    margin-top: 30px;
    font-size: 22px;
}
/* .copy-right{
    width: 100%;
    height: auto;
    background-color: #3B75F7;
    padding: 32px;
}
.policy-div{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.policy-div ul {
    display: flex;
    gap: 50px;
    padding-left: 0px;
}
.policy-div ul p{
    margin-bottom: 0px;
}
.copy-right ul{
    margin-bottom: 0px;
}
.copy-right ul li{
    position: relative;
}
.copy-right ul li:nth-child(1)::after{
    position: absolute;
    content: '';
    width: 2px;
    height: 30px;
    background-color: #fff;
    right: -23px;
}
.copy-right ul li a{
    color:#fff;
    font-size: 22px;
}
.copy-right ul li a:hover{
    color: #f7a3c9;
}
.copy-right .policy-div p{
    color: #fff;
    margin-bottom: 0px;
} */


/* innar page css start  */
.innar-page-approach{
    margin-top: -18px;
}
/* .our-approach .row .approach-main:first-child{
    padding-right: 100px;
} */
.innar-page-approach .approach-main .approach-item{
    gap: 32px;
    /* max-width: 660px; */
}
.innar-page-approach .approach-main .approach-item .icons{
    width: 99px;
    height: 99px;
}
.innar-page-approach .approach-main .approach-item .icons img {
    width: 45px;
}
.how-it-work .how-it-work-list{
    display: flex;
    gap: 32px;
    margin-top: 50px;
}
.how-it-work .how-it-work-list .icons{
    width: 99px;
    height: 99px;
    background-color: #3B75F7;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.how-it-work .how-it-work-list .icons p{
    font-size: 53px;
    margin-bottom: 0px;
    color: #fff;
    font-weight: bold;
}
.how-it-work .how-it-work-list .content h4{
    margin-bottom: 10px;
    font-weight: bold;
    /* overflow: hidden;
    height: 35px;
    margin-bottom: 0px;
    text-overflow: ellipsis;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    max-width: 100%; */
}
.how-it-work .how-it-work-list .content p{
    overflow: hidden;
    /* height: 68px; */
    margin-bottom: 0px;
    /* text-overflow: ellipsis; */
    /* -webkit-line-clamp: 2; */
    /* -webkit-box-orient: vertical; */
    display: -webkit-box;
    max-width: 100%;
}
.applicant{
    width: 100%;
    height: auto;
    background-color: #E9F3FF;
    overflow: hidden;
}
.applicant .applicant-text{
    width: 100%;
    height: auto;
    background-color: #fff;
    padding: 80px 30px 80px 30px;
    border-radius: 30px;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    -ms-border-radius: 30px;
    -o-border-radius: 30px;
}
.applicant .applicant-text .page-heading h2 {
    line-height: 50px;
    margin-left: 35px;
}

.applicant .applicant-img{
    margin-right: -350px;
}
.applicant .applicant-img img{
    border-radius: 30px;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    -ms-border-radius: 30px;
    -o-border-radius: 30px;
}
.applicant .applicant-text ul li{
    position: relative;
    margin-top: 25px;
    padding-left: 35px;
    /* font-size: 22px; */
    font-weight: 600;
}
.applicant .applicant-text ul li::before{
    position: absolute;
    content: '';
    width: 20px;
    height: 17px;
    background-image: url(../images/sign.png);
    background-size: 100%;
    left: 0;
    top: 6px;
    background-repeat: no-repeat;

}
.Custom-Crafted .crafted-main{
    margin-top: 100px;
}
.Custom-Crafted .page-heading h2 {
    margin-bottom: 13px;
}
.Custom-Crafted .page-heading p{
    font-size: 30px;
    line-height: 35px;
}
.Custom-Crafted .crafted-item{
    padding: 40px;
    border: 1px solid #707070;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
    /* margin-bottom: 40px; */
    transition: .5s;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    -ms-transition: .5s;
    -o-transition: .5s;
    height: 100%;
}
.crafted-main .row .col-md-6{margin-bottom: 40px;}
.Custom-Crafted .crafted-item:hover{
    box-shadow: 0 0 15px #ccc;
    transition: .5s;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    -ms-transition: .5s;
    -o-transition: .5s;
    transform: translateY(-10px);
    -webkit-transform: translateY(-10px);
    -moz-transform: translateY(-10px);
    -ms-transform: translateY(-10px);
    -o-transform: translateY(-10px);
}
.Custom-Crafted .crafted-item .logo{
    width: 158px;
    height: 158px;
    background-color: #fff;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.Custom-Crafted .crafted-item .content h4{
    margin-top:40px;
    font-weight: bold;
    margin-bottom: 15px;
    overflow: hidden;
    height: 35px;
    text-overflow: ellipsis;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    max-width: 100%;
}
/* s */
.Custom-Crafted .crafted-item .logo img{
    width: 100px;
}
.canadians-searching .gain-access p span{
    text-transform: uppercase;
    font-weight: bold;
    font-size: 40px;
    background: rgb(18, 31, 207);
    background: linear-gradient(to right, rgb(0, 89, 197) 35%, rgb(209, 45, 119) 85%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.canadians-searching{
    width: 100%;
    height: auto;
    background-image: url(../images/brand.png);
    background-size: 100%;
    background-position:center;
    background-repeat: no-repeat;
}
.canadians-searching .gain-access{
    position: relative;
    padding: 50px 20px;
}
.canadians-searching .gain-access::before{
    position: absolute;
    content: '';
    width: 900px;
    height: 4px;
    background: #121FCF;
    background: rgb(18, 31, 207);
    background: linear-gradient(90deg, rgba(0, 89, 197) 0%, rgba(209, 45, 119) 100%);
    left: 0;
    top: 0;
    right:0;
    margin: 0 auto;
}
.canadians-searching .gain-access::after{
    position: absolute;
    content: '';
    width: 900px;
    height: 4px;
    background: #121FCF;
    background: rgb(18, 31, 207);
    background: linear-gradient(90deg, rgba(0, 89, 197) 0%, rgba(209, 45, 119) 100%);
    left: 0;
    bottom: 0;
    right:0;
    margin: 0 auto;
}
.canadians-searching .gain-access h2{
    font-size: 120px;
    font-weight: bold;
    background: rgb(18, 31, 207);
    background: linear-gradient(to right, rgb(0, 89, 197) 35%, rgb(209, 45, 119) 85%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.canadians-searching .gain-access p{
    font-weight: bold;
    font-size: 30px;
}
.partners .partner-logo{
    width: 100%;
    /* height: 115px; */
    margin: 20px 0px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.partners .partner-logo img{
    width: 160px;
}
.form-select{
    background-image: url('../images/down.png') !important;
    background-size: 16px 10px !important;
}
/* contact page css  */
/* .contact-us{
    border-bottom: 1px solid #707070;
} */
.contact-form{
    width: 100%;
    height: auto;
    background-color: #3B75F7;
    padding: 30px 20px;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
}
.contact-us .contact-address h3{
    line-height: 56px;
    text-transform: uppercase;
}
.contact-us .contact-address h3 span{
    font-weight: bold;
}
.contact-us .contact-address{
    /* padding-right: 115px; */
    padding: 0 0 30px 0;
}
.contact-us .contact-address ul{
    margin-left: 0px;
    padding-left: 0px;
    margin-top: 50px;
}
.contact-us .contact-address ul li{
    display: flex;
    gap: 39px;
}
.contact-us .contact-address ul li h5{
    margin-bottom: 7px;
    font-weight: 600;
}
.contact-us .contact-address ul li img{
    width: 60px;
}
.contact-us .contact-address ul li span{
    display: block;
    flex-shrink: 0;
}
.contact-address .cont-img{
    width: 72%;
    margin-left: auto;
}
.dealer-advertising .service-text p{
    height: auto;
    -webkit-line-clamp: inherit;
}

.dealer-advertising .service-text{
    padding-left: 0px;
    padding-right: 112px;
}
.dealer-advertising .services-div .row:nth-child(even) .service-text {
    padding-left: 112px;
    padding-right: 0px;
}
.innar-our-approach .page-heading p{
    max-width: 1206px;
    margin: 0 auto;
}
.book-a-free{
    margin-top: 100px;
}
.years-of-experience{
    position: relative;
}
.years-of-experience::after{
    position: absolute;
    content: '';
    width: 100%;
    height: 1px;
    border-bottom: 1px dashed #8A8989;
    bottom: -30px;
    left: 0;
    right: 0;
}
.years-of-experience .right-img{
    position: relative;
    z-index: -1;
}
.book-a-free .page-heading p{
    font-size:22px;
    max-width: 1030px;
    margin: 0 auto;
}

/*Media Query css*/


@media only screen and (min-width:1700px) {
    .container {
        max-width: 1504px !important;
    }

}

@media only screen and (max-width:1920px) {
    .home-banner:after {
        bottom: -2px;
    }
}

@media only screen and (max-width:1599px) {
    .owl-carousel .owl-nav .owl-prev {
        top: 69px;
    }
    .owl-carousel .owl-nav .owl-next {
        top: 69px;
    }
    .contact-us .contact-address {
        padding-right: 50px;
    }
}

@media only screen and (max-width:1434px) {
    .home-banner .banner-img::after {
        right: -15px;
    }
    .owl-carousel .owl-nav .owl-prev {
        top: 56px;
    }
    .owl-carousel .owl-nav .owl-next {
        top: 56px;
    }
    .brands #brand-slider .owl-item {
        padding: 15px 30px;
    }

/* auto fine lead page css start  */
    .canadians-searching .gain-access h2{
        font-size: 98px;
    }
    .inner-banner::before {
        background-position: 50% 65%;
    }
}

@media only screen and (max-width:1399px) {
    h1{
        font-size: 50px;
    }
    p{
        font-size: 16px;
    }
    a{
        font-size: 18px;
    }
    .btn{
        font-size: 18px;
    }
    .main-header.fixed {
        padding: 10px 0px 10px 0px;
    }
    .main-menu ul li a{
        font-size: 18px;
    }
    .banner-text h1 {
        line-height: 55px;
    }
    .banner-text p {
        font-size: 22px;
    }
    .home-banner .banner-img::after{
        right: -103px;
    }
    .center-main p {
        font-size: 20px;
    }
    .approach-item .content p {
        /* height: 85px; */
    }
    .service-text p {
        /* height: 145px; */
    }
    .footer .address ul li {
        font-size: 18px;
    }
    .copy-right ul li a {
        font-size: 18px;
    }
    .our-services .services-div .row {
        padding-top: 100px;
    }
    .brands #brand-slider .owl-item {
        padding: 25px 30px;
    }
/* auto fine lead page css start  */
    .applicant .applicant-text {
        padding: 40px 20px 20px 30px;
    }
    .canadians-searching .gain-access h2 {
        font-size: 80px;
    }
    .inner-banner .banner-text h1{
        padding-top: 160px;
    }
    .inner-banner::before {
        background-position: 50% 55%;
    }
    .Custom-Crafted .page-heading p {
        font-size: 22px;
        line-height: 30px;
    }
    .how-it-work .how-it-work-list .content p {
        height: 60px;
    }
    .services-div .service-text {
        padding-left: 65px;
    }
    .services-div .row:nth-child(even) .service-text {
        padding-right: 65px;
    }
    .dealer-advertising .services-div .row:nth-child(even) .service-text {
        padding-left: 65px;
    }
    .dealer-advertising .service-text {
        padding-left: 0px;
        padding-right: 65px;
    }
}
@media only screen and (min-width: 992px) {
    .main-menu{
        transform: translateX(0)!important;
    }
}
@media only screen and (max-width:1299px) {
    .inner-banner .banner-text h1 {
        line-height: 53px;
    }
    .btn{
        padding: 15px 35px;
    }
    .home-banner .banner-img::after {
        right: -25px;
    }
    .main-header .logo {
        width: 130px;
    }
    .brands #brand-slider .owl-item {
        padding: 5px 20px;
    }
    .brands #brand-slider .owl-item {
        padding: 15px 20px;
    }
    .our-services .service-img figure{
        /* height: 440px; */
    }
/* auto fine lead page css start  */
.our-approach .our-approch-list-inner ul{
    flex-direction: column;
}
.our-approach .our-approch-list-inner ul li{
    max-width: 100%;
}
    .canadians-searching .gain-access h2 {
        font-size: 60px;
    }
    .canadians-searching .gain-access p {
        font-size: 20px;
    }
    .canadians-searching .gain-access p span {
        font-size: 20px;
    }
    .canadians-searching .gain-access::before{
        width: 500px;
    }
    .canadians-searching .gain-access::after{
        width: 500px;
    }
    .Custom-Crafted .crafted-item .content h4{
        line-height: 1.5;
    }
    .how-it-work .how-it-work-list .content p{
        height: auto;
        -webkit-line-clamp: inherit;
    }
    .applicant .applicant-text ul li {
        margin-top: 15px;
    }
    .Custom-Crafted .crafted-main {
        margin-top: 50px;
    }

    /* contact us page css  */
    .contact-us .contact-address h3 {
        line-height: 40px;
    }
    .contact-us .contact-address {
        padding-right: 20px;
    }
    .your-sales .page-heading p {
        color: #fff;
        font-size: 18px;
    }
    .your-sales .page-heading{
        padding: 0 40px;
    }
    .center-main p {
        font-size: 18px;
    }
}

@media only screen and (max-width: 991px) {
    .nav_btn {
        display: block;
        cursor: pointer;
    }

    .nav_close {
        display: block;
        position: absolute;
        top: 20px;
        right: 30px;
        z-index: 999;
        font-size: 30px;
    }
    .main-header {
        padding: 20px 0px 20px 0px;
    }
    .main-menu {
        position: fixed;
        transform: translateX(320px);
        right: 0;
        top: 0;
        bottom: 0;
        z-index: 999;
        max-width: 320px;
        box-shadow: 4px 0 27px rgba(0, 0, 0, 0.11);
        background-color: #3B75F7;
        padding-top: 28px;
        margin: 0;
        display: block;
        width: 100%;
        padding-left: 10px;
        transition: 250ms ease-in;
    }

    .main-menu ul li {
        width: 100%;
    }

    .main-menu ul li:not(:last-child) {
        margin-right: 0;
    }

    .main-menu ul li a {
        display: block;
        padding: 10px;
    }


    /* my custom css  */
    .main-header .hdr-rt{
        flex-direction: row-reverse;
    }
    .nav_btn {
        margin-left: 20px;
    }
    h1{
        font-size: 35px;
    }
    h2{
        font-size: 32px;
    }
    h3{
        font-size: 28px;
    }
    h4{
        font-size: 24px;
    }
    p {
        font-size: 16px;
    }
    .banner-text h1 {
        line-height: 40px;
    }
    .banner-text p {
        font-size: 16px;
    }
    .home-banner {
        padding-top: 150px;
    }
    .home-banner .banner-img::before {
        left: -24px;
    }
    .center-main p{
        font-size: 18px;
    }
    .our-services .service-img figure::after{
        transform: rotate(3deg);
    }
    .services-div .service-text{
        padding-left: 0px;
        margin-top: 50px;
        /* text-align: center; */
    }
    .service-text p{
        height: auto;
        -webkit-line-clamp: inherit;
    }
    .our-services .services-div .row {
        padding-top: 0px !important;
    }
    .services-div .row:nth-child(even) .service-text{
        padding-right: 0px;
    }
   .copy-right .policy-div{
        display: block;
        text-align: center;
    }
    .copy-right .policy-div ul{
        margin-bottom: 20px !important;
        justify-content: center;
    }
    .our-approach .approach-main .approach-item .icons{
        width: 100px;
        height: 100px;
    }
    .our-approach .approach-main .approach-item .icons img{
        width: 55px;
    }
    .our-approach .approach-main .approach-item {
        gap: 30px;
        padding-top: 35px;
    }
    .brands .container .row .col-lg-6:nth-child(2) .brand-div{
        padding-left: 0px;
    }
    .brands .container .row .col-lg-6:nth-child(1) .brand-div{
        padding-right: 0px;
    }
    .brands .container .row .col-lg-6:nth-child(1) .brand-div::after{
        display: none;
    }
    .brands #brand-slider{
        margin-top: 0px;
    }
    .owl-carousel .owl-nav .owl-prev {
        top: 45px;
    }
    .owl-carousel .owl-nav .owl-next {
        top: 45px;
    }
    .our-approach .approach-main .approach-item .content h4{
        height: auto;
    }
    .our-services .service-img figure{
        margin-top: 30px;
    }
    .brands #brand-slider .item img {
        width: 87px;
    }
    .brands .brand-div h2 {
        text-align: center;
        background: #121FCF;
        background: linear-gradient(to right, #D12D77 35%, #0059C5 65%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }
    .brands .brand-div p{
        /* text-align: center; */
    }
    .your-sales .row.g-3 {
        --bs-gutter-y: 0;
        --bs-gutter-x: 0;
    }
    .your-sales .col-md-6 p {
        margin-bottom: 10px;
    }
    .your-sales .page-heading {
        padding: 0 0px;
    }
/* auto fine lead page css start  */
.inner-banner .banner-text h1 {
    line-height: 40px;
}
    .banner-text{
        padding-top: 0px;
        padding-bottom: 0px;
    }
    .canadians-searching .gain-access h2 {
        font-size: 40px;
    }
    .your-sales .page-heading h2 {
        line-height: 36px;
    }
    .your-sales .page-heading p {
        font-size: 20px;
    }
    .partners .partner-logo img {
        width: 100px;
    }
    .page-heading h2 {
        line-height: 37px;
    }
    .how-it-work .how-it-work-list .icons{
        width: 90px;
        height: 90px;
    }
    .how-it-work .how-it-work-list .icons p {
        font-size: 35px;
    }
    .how-it-work .how-it-work-list .content h4 {
        line-height: 1.5;
    }
    .Custom-Crafted .page-heading p {
        font-size: 18px;
        line-height: 30px;
    }
    .applicant .applicant-img{
        margin-right: 0px;
    }
    .approach-item .content p{
        height: auto;
        -webkit-line-clamp: inherit;
    }
    .contact-us .contact-address {
        padding-right: 0px;
    }
    .contact-us .cont-img{
        margin-bottom: 20px;
        width: 100%;
    }
    .contact-us .contact-address{
        text-align: center;
    }

    .dealer-advertising .service-text{
        padding-right: 0px;
    }
    .dealer-advertising .services-div .row:nth-child(even) .service-text{
        padding-left: 0px;
    }

    .years-of-experience .texxt-left{
        margin-top: 20px;
    }
    .years-of-experience .right-img{
        margin-top: -133px;
    }
    .common-padd {
        padding-top: 35px;
        padding-bottom: 35px;
    }
    .Custom-Crafted .crafted-item .logo{
        width: 110px;
        height: 110px;
    }
    .Custom-Crafted .crafted-item .logo img{
        width: 60%;
        object-fit: contain;
    }
}

@media only screen and (max-width: 767px) {
    .btn {
        padding: 15px 25px;
        font-size: 16px;
    }
    p{
        font-size: 16px;
    }
    .home-banner .banner-text{
        text-align: center;
    }
    .home-banner .banner-text h1{
        font-size: 40px;
        line-height: 40px;
        margin-bottom: 10px;
    }
    .main-header .logo{
        width: 100px;
    }
    .banner-text {
        padding-bottom: 15px;
    }
    .home-banner .banner-img{
        max-width: 265px;
        margin: 0 auto;
    }
    .home-banner .banner-img::before {
        left: -46px;
    }
    .home-banner .banner-img::after {
        top: 35px;
        right: -42px;
    }
    .home-banner .banner-text p{
        font-size: 22px;
        max-width: 250px;
        margin: 0 auto;
    }
    .home-banner .banner-text .btn{
        margin-top: 10px;
    }
    .our-services .service-img{
        width: 90%;
        margin: 0 auto;
    }
    .common-padd {
        padding-top: 30px;
        padding-bottom: 30px;
    }
    .page-heading{text-align: center;}
    .page-heading h2{
        line-height: 36px;
        /* max-width: 215px; */
        /* margin: 0 auto; */
    }
    .our-services .service-text h3 {
        height: 28px;
    }
    .services-div .row:nth-child(even){
        /* flex-direction: column-reverse; */
    }
    .services-div .service-text{
        margin-bottom: 50px;
    }
    .brands .brand-div h2 {
        text-align: center;
        background: #121FCF;
        background: linear-gradient(to right, #D12D77 35%, #0059C5 65%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }
    .our-services .service-text p {
        height: auto;
        -webkit-line-clamp: inherit;
    }
    .our-services .services-div .row:nth-child(2) {
        /* flex-direction: column-reverse; */
    }
    .our-approach{
        border-top-right-radius: 0px;
        border-bottom-left-radius: 0px;
    }
    .our-approach .approach-main .approach-item{
        display: block;
        text-align: center;
        padding-top: 10px;
    }
    .our-approach .approach-main .approach-item .icons{
        margin: 0 auto;
    }
    .approach-item .content p {
        height: auto;
        -webkit-line-clamp: inherit;
    }
    .our-approach .approach-main .approach-item .content h4{
        margin-top: 25px;
        line-height: 30px;
        margin-bottom: 15px;
    }
    .your-sales{
        border-top-right-radius: 0px;
        border-bottom-left-radius: 0px;
    }
    .your-sales .page-heading h2{
        line-height: 36px;
    }
    .your-sales .form-div {
        margin-top:25px;
    }
    .footer .f-logo-div{
        text-align: center;
    }
    .footer .footer-logo{
        margin: 0 auto;
    }
    .footer .address ul{
        padding-left: 0px;
    }
    .footer .address ul li{
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 0 82px;
    }
    .policy-div ul {
        gap: 15px;
    }
    .copy-right ul li:nth-child(1)::after{
        right: -8px;
        top: 5px;
        height: 16px;
    }
    .copy-right ul li a {
        font-size: 16px;
    }
    .center-main::after {
        bottom: 25px;
    }
    .brands .brand-div{
        text-align: center;
    }
    .footer{
        background-image: none;
    }
    .owl-carousel .owl-nav .owl-prev {
        position: inherit;
        font-size: 20px;
    }
    .owl-carousel .owl-nav .owl-next {
        position: inherit;
        font-size: 20px;
    }
    .brands .brand-div p{
        height: auto;
        -webkit-line-clamp: inherit;
    }
/* auto fine lead page css start  */
    .inner-banner{
        padding-bottom: 60px;
    }
    .inner-banner .banner-text h1 {
        padding-top: 100px;
    }
    .how-it-work .how-it-work-list .content p {
        height: auto;
        -webkit-line-clamp: inherit;
    }
    .applicant .page-heading{
        text-align: left;
    }
    .Custom-Crafted .crafted-item .logo {
        width: 100px;
        height: 100px;
    }
    .Custom-Crafted .crafted-item .logo img {
        width: 60px;
    }
    .Custom-Crafted .crafted-main {
        margin-top: 30px;
    }
    .canadians-searching .gain-access p {
        font-size: 16px;
    }
    .canadians-searching .gain-access p span {
        font-size: 16px;
    }
    .canadians-searching .gain-access::after {
        width: 250px;
    }
    .canadians-searching .gain-access::before {
        width: 250px;
    }
    .Custom-Crafted .crafted-item .content p {
        height: auto;
        -webkit-line-clamp: inherit;
    }
    .years-of-experience .right-img{
        width: 40%;
        margin: 0 auto;
    }
    .years-of-experience .row{
        flex-direction: column-reverse;
    }
    .years-of-experience .texxt-left p {
        text-align: center;
        margin-bottom: 12px;
    }
    .dealer-advertising .service-text{
        margin: 15px 0px;
    }
    .years-of-experience::after {
        bottom: 0px;
    }
    .dealer-advertising .services-div .row{
        flex-direction: column-reverse !important;
    }
    .services-div .service-text{
        text-align: center;
    }
    .crafted-main .row .col-md-6{margin-bottom: 15px;}
    .footer .address ul li span {
     
        width: 30px;
        height: 30px;
       
    }
    .footer .address ul li:last-child{margin-top: 0px;}
}

@media only screen and (max-width: 575px) {
    h2 {
        font-size: 22px;
    }
    h3 {
        font-size: 20px;
    }
    h4 {
        font-size: 18px;
    }
    p{
        font-size: 14px;
    }
    a {
        font-size: 14px;
    }
    .main-header.fixed{
        padding: 10px 0px 10px 0px;
    }
    .home-banner .banner-text p {
        font-size: 20px;
    }
    .our-services .service-text h3 {
        height: inherit;
        /* margin-bottom: 6px; */
    }
    .our-services .service-img figure {
        margin-top: 0px;
    }
    .main-header {
        padding: 20px 0px 20px 0px;
    }
    .home-banner {
        padding-top: 90px;
    }
    .banner-text {
        padding-bottom: 20px;
    }
    .services-div .service-text {
        margin-top: 20px;
        margin-bottom: 35px;
    }
    .center-main p {
        font-size: 16px;
    }
    .btn {
        padding: 10px 15px;
        font-size: 14px;
    }
    .our-services .service-text p {
        /* height: 134px; */
        /* -webkit-line-clamp: 6; */
    }
    .form-select{
        background-size: 10px 6px !important;
    }
    .form-control {
        height: 45px;
    }
    select {
        height: 45px !important;
        font-size: 16px !important;
    }
    textarea {
        height: 100px !important;
    }
    .brands{
        background-image: none;
    }
    .brands #brand-slider .owl-item{
        padding: 10px 30px;
    }
    .footer .footer-logo {
        width: 200px;
    }
    .footer .address ul li
    {
        gap: 15px;
        font-size: 14px;
    }
    .approach-item .content p {
        /* height: 90px; */
    }
    /* .brands .brand-div p {
        height: 101px;
        -webkit-line-clamp: 4;
        margin-bottom: 20px;
    } */
    .our-approach .approach-main .approach-item {
        padding-top: 10px;
    }
    .our-approach .approach-main .approach-item .content h4 {
        margin-top: 5px;
    }
    .our-approach .approach-main .approach-item .content h4 {
        margin-bottom: 0px;
    }
    .brands .brand-div h2{
        font-size: 60px;
        margin-bottom: 5px;
        margin-top: 15px;
    
    }
    .brands .brand-div h2 span{
        font-size: 30px;
    }
    .brands .brand-div p {
        /* height: 87px; */
        /* margin-bottom: 15px; */
    }
    .canadians-searching .gain-access {
        position: relative;
        padding: 20px 20px;
    }
    .applicant .applicant-text {
        padding: 40px 20px 20px 30px;
    }
    .brands #brand-slider {
        margin-top: 20px;
    }
    .brands .brand-div span {
        font-size: 60px;
    }
    .brands .brand-div h2{
        background: #121FCF;
        background: linear-gradient(to right, #D12D77 15%, #0059C5 85%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }
    .brands .brand-div .count-text {
        font-size: 35px;
        background: #121FCF;
        background: linear-gradient(to right, #D12D77 40%, #0059C5 60%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        font-weight: bold;
        margin-top: -20px;
    }    
    .our-services .service-img figure {
        height: 400px;
    }
/* auto fine lead page css start  */
    .partners .partner-logo img {
        width: 55px;
    }
    .canadians-searching .gain-access p {
        font-size: 10px;
    }
    .canadians-searching .gain-access p span {
        font-size: 14px;
    }
    .canadians-searching .gain-access h2 {
        font-size: 30px;
    }
    .Custom-Crafted .page-heading p {
        font-size: 14px;
        line-height: 20px;
    }
    .how-it-work .how-it-work-list{
        flex-direction: column;
        align-items: center;
        margin-top: 25px;
        gap: 10px;
    }
    .how-it-work .how-it-work-list .content{
        text-align: center;
    }
    .canadians-searching{
        background-image: none;
    }
    .applicant .applicant-text .page-heading h2 {
        line-height: 28px;
    }
    .applicant .applicant-text ul li {
        font-size: 14px;
    }
    .applicant .applicant-text ul li::before {
        width: 13px;
        height: 10px;
    }
    .applicant .applicant-text ul li {
        padding-left: 20px;
        margin-top: 10px;
    }
    .your-sales .page-heading p {
        font-size: 16px;
    }
    .your-sales .page-heading h2 {
        line-height: 28px;
    }
    .how-it-work .how-it-work-list .content p {
        /* height: 67px; */
    }
    .Custom-Crafted .crafted-item .content h4 {
        height: 30px;
        margin-bottom: 5px;
    }
    .inner-banner .banner-text h1 {
        line-height: 39px;
    }
    .page-heading h2{
        line-height: 28px;
    }
.center-main .center-para .btn{
    margin-top: 0px !important;
}
     /* contact us page css  */
     .contact-us .contact-address h3 {
        line-height: 25px;
    }
    .contact-us .contact-address ul li h5 {
        font-size: 16px;
    }
    .contact-us .contact-address ul li {
        gap: 18px;
    }
    .contact-us .contact-address ul li img {
        width: 40px;
    }
    ::placeholder{
        font-size: 14px !important;
    }
    select {
        font-size: 14px !important;
    }
    header.main-header.no-banner {
        padding: 10px 0px 10px 0px;
    }
    .copy-right ul li a {
        font-size: 14px;
    }
    .inner-banner {
        padding-bottom: 10px;
    }
}

@media only screen and (max-width: 380px) {
    h1{
        font-size: 30px;
    }
    h2 {
        font-size: 24px;
    }
    h3 {
        font-size: 20px;
    }
    h4 {
        font-size: 18px;
    }
    .btn {
        padding: 10px 15px;
        font-size: 14px;
    }
    a {
        font-size: 14px;
    }
    .home-banner {
        padding-top: 100px;
    }
    .home-banner .banner-text h1 {
        font-size: 35px;
        line-height: 37px;
    }
    .home-banner .banner-text p {
        font-size: 16px;
    }
    .main-header.fixed {
        padding: 10px 0px 10px 0px;
    }
    .center-main p {
        font-size: 16px;
    }
    .service-text h3 {
        height: 19px;
        margin-bottom: 10px;
    }
    .service-text p {
        height: 125px;
    }
    .our-approach .approach-main .approach-item .content h4 {
        margin-bottom: 10px;
    }
    /* .brands .brand-div p {
        height: 94px;
        margin-bottom: 15px;
    } */
    .brands .brand-div h2 {
        font-size: 60px;
    }
    .brands .brand-div h2 span{
        font-size: 30px;
    }
    .brands #brand-slider .owl-item {
        padding: 4px 10px;
    }
    .form-control {
        height: 40px;
    }
    select {
        height: 40px !important;
        font-size: 14px !important;
    }
    .form-select {
        background-size: 10px 6px !important;
    }
    textarea {
        height: 100px !important;
    }
    ::placeholder{
        font-size: 16px !important;
    }
    .footer .footer-logo {
        width: 150px;
    }
    .footer .address ul li {
        padding: 0 30px;
        gap: 10px;
    }
    .home-banner .banner-img::before {
        left: -20px;
        width: 35px;
        height: 80px;
    }
    .home-banner .banner-img::after {
        width: 60px;
        height: 20px;
        right: -10px;
    }
    .footer .address ul li {
        font-size: 14px;
    }
    .copy-right ul li a {
        font-size: 14px;
    }
    ::placeholder{
        font-size: 14px !important;
    }
    .our-services .service-img figure {
        height: 300px;
    }
    /* auto fine lead page css start  */
    .applicant .applicant-text ul li{
        padding-left: 0px;
    }
    .applicant .applicant-text ul li::before {
        left: -20px;
    }
    .applicant .applicant-text .page-heading h2{
        margin-left: 0px;
    }
    .Custom-Crafted .crafted-item {
        /* margin-bottom: 15px; */
        padding: 15px;
    }
    .Custom-Crafted .crafted-item .content h4 {
        margin-top: 15px;
    }
    .Custom-Crafted .crafted-item .logo img {
        width: 40px;
    }
    .Custom-Crafted .crafted-item .logo {
        width: 70px;
        height: 70px;
    }
    .inner-banner {
        padding-bottom: 0px;
    }
    .canadians-searching .gain-access {
        padding: 25px 20px;
    }

    /* contact page css  */
    .contact-us .contact-address ul li img {
        width: 24px;
    }
}


/*Media Query css*/



.wpcf7 form.sent .wpcf7-response-output {
    border-color: transparent !important;
    color: #fff !important;
    text-align: center !important;
}

.wpcf7 form.invalid .wpcf7-response-output{
    border-color: transparent !important;
    color: #fff !important;
    text-align: center !important;
}

select:focus option:checked, option:hover {
    background: #1967d2 !important;
    color: #fff !important;
  }

  .contact-us .contact-form p{
    margin-bottom: 0px;
  }
  .wpcf7-not-valid-tip {
    font-size: 14px;
}