/* new css blog*/
.blog-title {
    margin-bottom: 0px;
    padding: 30px 0;
}

.blog-title h1 {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
    text-align: center;
    color: var(--secondary-color);
    font-family: var(--secondary-font);
    margin-bottom: 0px;
}

.blogmain {
    padding-top: 0px;
}

.blog-card {
    border-radius: 15px;
    border: 1px solid var(--black-200);
    overflow: hidden;
    min-height: 100%;
    display: flex;
    flex-direction: column;
    padding: 15px;
}

.blog-imagebx {
    height: 160px;
}

.blog-imagebx img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.blog-content {
    padding: 15px;
}

.blog-card .date-tag span {
    font-size: 11px;
    font-weight: 500;
    color: #8a8d92;
    line-height: 1.3;
    background-color: rgba(0, 0, 0, 0.05);
    border-radius: 30px;
    display: inline-block;
    padding: 2px 10px;
    font-family: var(--secondary-font);
}

.blog-card .date-tag {
    padding-bottom: 15px;
}

.blog-card h3 {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.2;
    color: #42444f;
    font-family: var(--secondary-font);
    margin-bottom: 10px;
}

.blog-card p {
    font-size: 14px;
    font-weight: 500;
    color: #8a8d92;
    line-height: 1.2;
    margin-bottom: 0px;
    font-family: var(--secondary-font);
}

.blog-footer {
    padding: 5px 15px 30px 15px;
    margin-top: auto;
}

.blog-footer .readmore-btn {
    font-size: 13px;
    letter-spacing: 0.05em;
    color: #42444f;
    font-family: var(--primary-font);
    font-weight: 500;
    text-decoration: none;
    padding: 5px 12px;
    border-radius: 50%;
    line-height: 1.2;
    background: #ecfaff;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-transition: all 300ms ease-in-out;
    -moz-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
    border: none;
}

.blog-footer .readmore-btn:hover {
    -webkit-transition: all 300ms ease-in-out;
    -moz-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
    background: #d9f5ff;
}

.blog-page-list .row .rowbox1 {
    margin-bottom: 24px;
}

.custom-pagination-main {
    padding-top: 15px;
    text-align: center;
    padding-bottom: 20px;
}

.custom-pagination-main .pagination-list {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 0px;
    margin: 0px;
    list-style: none;
}

.custom-pagination-main .pagination-list a {
    font-size: 16px;
    font-weight: 500;
    line-height: 1;
    color: #8a8d92;
    letter-spacing: 0.05em;
    background: rgba(66, 68, 79, 0.06);
    width: 35px;
    height: 35px;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 2px;
    text-decoration: none;
    transition: all 300ms ease-in-out;
    -webkit-transition: all 300ms ease-in-out;
    -moz-transition: all 300ms ease-in-out;
}

.custom-pagination-main .pagination-list .active a {
    background-color: #00a4d9;
    color: #fff;
}

.custom-pagination-main .pagination-list a:hover {
    transition: all 300ms ease-in-out;
    -webkit-transition: all 300ms ease-in-out;
    -moz-transition: all 300ms ease-in-out;
    background: rgba(66, 68, 79, 0.1);
    color: #8a8d92;
}

.custom-pagination-main .pagination-list a:hover svg path {
    fill: #8a8d92;
}

.custom-pagination-main .pagination-list .active a svg path {
    fill: #fff;
}

.custom-pagination-main .pagination-list .active a:hover svg path {
    fill: #fff;
}

.custom-pagination-main .pagination-list .active a:hover {
    background-color: #00a4d9;
    color: #fff;
}

/* blog details css  */

.back-pages a {
    font-size: 12px;
    font-weight: 500;
    color: #42444f;
    line-height: 1.1;
    text-decoration: none;
    font-family: var(--secondary-font);
}

.back-pages {
    margin-bottom: 20px;
}

.blog-detail-inner .imagecardbx {
    border-radius: 15px;
    overflow: hidden;
}

.blog-detail-inner .imagecardbx img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.details-blog-comment {
    padding-top: 15px;
}

.blog-detail-inner .imagecardbx img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 479 / 215;
}

.blog-detail-inner .date-tag span {
    font-size: 14px;
    font-weight: 500;
    color: #42444f;
    line-height: 1.3;
    background: rgba(111, 255, 127, 0.3);
    border-radius: 30px;
    display: inline-block;
    padding: 6px 10px;
    font-family: var(--secondary-font);
}

.details-blog-comment .inner-datetag-bx {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

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

.rightcomment-bx .coment-total {
    display: flex;
    align-items: center;
}

.rightcomment-bx .coment-total span {
    line-height: 1;
    font-size: 14px;
    font-weight: 600;
    color: #8a8d92;
    font-family: var(--secondary-font);
}

.rightcomment-bx .coment-total .icon {
    margin-right: 5px;
}

.blog-content-box {
    padding-top: 12px;
}

.blog-content-box h2 {
    font-size: 24px;
    line-height: 1.2;
    font-weight: 600;
    color: #42444f;
    font-family: var(--secondary-font);
    margin-bottom: 15px;
}

.blog-content-box p {
    font-size: 14px;
    line-height: 1.5;
    font-weight: 400;
    color: #000000;
    margin-bottom: 10px;
    font-family: var(--secondary-font);
}

.blog-content-box strong {
    font-weight: bold;
}

.blog-content-box h4 {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.2;
    color: #000000;
    padding-top: 10px;
    margin-bottom: 6px;
    font-family: var(--secondary-font);
}

.printer-gallery-box {
    padding: 0px 0 30px 0;
}

.printer-gallery-box .printer-gallery-inner {
    display: flex;
    align-items: center;
}

.printer-gallery-inner .icon {
    flex: 0 0 40px;
    max-width: 40px;
}

.printer-gallery-inner h3 {
    font-size: 24px;
    font-weight: 500;
    line-height: 1.4;
    color: #42444f;
    font-family: var(--secondary-font);
    margin-bottom: 0px;
}

.printer-gallery-inner .content {
    flex: 0 0 calc(100% - 40px);
    max-width: calc(100% - 40px);
    padding-left: 15px;
}

.subtitle-blog {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.2;
    color: #42444f;
    margin-bottom: 15px;
    font-family: var(--secondary-font);
}

.related-blog-post .blog-card .blog-imagebx {
    height: 165px;
}

.related-blog-post .blog-card .blog-imagebx img {
    height: 100%;
}

.related-blog-post .blog-content {
    padding: 10px 15px;
}

.related-blog-post .blog-footer {
    padding: 0px 15px 20px 15px;
}

.related-blog-post .blog-card .date-tag {
    padding-bottom: 10px;
}

.related-blog-post .blog-card h3 {
    margin-bottom: 0px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.related-blog-post .rowbox1 {
    margin-bottom: 24px;
}

.leave-reply-main .subtitle-blog {
    margin-bottom: 2px;
}

.leave-reply-main h6 {
    font-size: 14px;
    font-weight: 400;
    color: #8a8d92;
    line-height: 1.2;
    font-family: var(--secondary-font);
    margin-bottom: 0px;
}

.leave-form-main {
    padding-top: 20px;
}

.formInnerBox .form-label {
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.05em;
    margin-bottom: 5px;
    font-family: var(--secondary-font);
    letter-spacing: 0.05em;
    color: #494f59;
}

.formInnerBox .form-control {
    min-height: 45px;
    border-color: #dfe6e8;
    border-radius: 6px;
    color: #42444f;
}

.formInnerBox .form-control:focus {
    border-color: #00a4d9;
    box-shadow: none;
    outline: none;
}

.formInnerBox textarea {
    resize: none;
    min-height: 136px;
}

.leave-form-main .formInnerBox {
    margin-bottom: 15px;
}

.leave-form-main .formbtn {
    padding-top: 5px;
}

.post-btn {
    min-height: 45px;
    background-color: #00a4d9;
    color: #fff;
    font-size: 16px;
    line-height: 1.2;
    letter-spacing: 0.05em;
    font-weight: 500;
    font-family: var(--primary-font);
    padding: 10px 25px;
    min-width: 180px;
    border-radius: 8px;
    border: none;
    transition: all 300ms ease-in-out;
    -webkit-transition: all 300ms ease-in-out;
    -moz-transition: all 300ms ease-in-out;
}

.post-btn:hover {
    transition: all 300ms ease-in-out;
    -webkit-transition: all 300ms ease-in-out;
    -moz-transition: all 300ms ease-in-out;
    background-color: #29add8;
}

.leave-reply-main {
    padding-bottom: 50px;
}

.blog-searechbar .form-control {
    min-height: 50px;
    padding-right: 50px;
}

.blog-searechbar {
    position: relative;
}

.blog-searechbar .searchicon {
    position: absolute;
    top: 7px;
    right: 7px;
    width: 36px;
    height: 36px;
    background: rgba(0, 164, 217, 0.08);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
}

.trending-blog-listing .customRow {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.trending-blog-listing .customRow .bx1 {
    flex: 0 0 100px;
    max-width: 100px;
}

.trending-blog-listing .customRow .right-content {
    flex: 0 0 calc(100% - 100px);
    max-width: calc(100% - 100px);
    padding-left: 15px;
}

.trending-blog-listing .imagebx {
    height: 70px;
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
}

.trending-blog-listing .imagebx img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.trending-blog-listing .right-content h3 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.2;
    color: #42444f;
    font-family: var(--secondary-font);
    margin-bottom: 5px;
}

.trending-blog-listing .date-tag span {
    font-size: 11px;
    font-weight: 500;
    color: #8a8d92;
    line-height: 1.3;
    background-color: rgba(0, 0, 0, 0.05);
    border-radius: 30px;
    display: inline-block;
    padding: 2px 10px;
    font-family: var(--secondary-font);
}

.trending-blog-listing .date-tag {
    line-height: 1;
}

.trending-blog-listing {
    padding: 15px 0;
    border-bottom: 1px solid rgba(243, 243, 243, 1);
}

.trending-blog-listing:last-child {
    border-bottom: none;
}

.trending-blog-listing:first-child {
    padding-top: 0px;
}

.trending-post-main {
    padding-top: 34px;
}

.blog-details-right {
    padding-left: 6px;
}

/* footer css update */

.footer-desc .social-list {
    padding-top: 10px;
}

.footer-desc .social-list li a {
    margin-bottom: 0px;
    background-color: #f1f5f6;
}

.footer-link-outer {
    max-width: 80%;
    margin-left: auto;
}

.compare-cta-banner {
    padding-top: 100px;
}

.blog-details-main {
    padding-bottom: 80px;
}

.blog-page-list a {
    text-decoration: none;
}

.blog-content-box h3 {
    font-size: 22px;
    line-height: 1.2;
    font-weight: 600;
    color: #000000;
    font-family: var(--secondary-font);
    margin-bottom: 8px;
}

.blog-content-box ul li,
.blog-content-box ol li {
    font-size: 14px;
    line-height: 1.5;
    font-weight: 400;
    color: #000000;
    font-family: var(--secondary-font);
    margin-bottom: 10px;
}

.blog-content-box ul li:last-child,
.blog-content-box ol li:last-child {
    margin-bottom: 0px;
}

.compareContainer {
    padding-top: 140px;
}

header .navbar-expand-md .navbar-nav .nav-link.active:after {
    width: 100%;
}

.compareContainer .itmth img {
    height: 55px;
    object-fit: contain;
    max-width: 150px;
}

.custom-load-more {
    text-align: center;
    padding-bottom: 60px;
    padding-top: 20px;
}

.load-progressbar {
    max-width: 230px;
    margin: 0 auto;
    padding-bottom: 15px;
}

.load-progressbar p {
    font-size: 14px;
    line-height: 1.2;
    font-weight: 500;
    padding-bottom: 5px;
}

.load-progressbar p span {
    display: inline-block;
    line-height: 1;
}

.progress-pagination .progress {
    height: 6px;
}

.progress-pagination .progress-bar {
    background-color: var(--primary-color);
}

.blog-card {
    transition: all 300ms ease-in-out;
    -webkit-transition: all 300ms ease-in-out;
    -moz-transition: all 300ms ease-in-out;
}

.blog-card:hover {
    box-shadow: rgba(0, 0, 0, 0.1) 0 20px 25px -5px,
        rgba(0, 0, 0, 0.04) 0 10px 10px -5px;
    transform: translateY(-5px);
    transition: all 300ms ease-in-out;
    -webkit-transition: all 300ms ease-in-out;
    -moz-transition: all 300ms ease-in-out;
}

.blog-imagebx {
    height: 160px;
}

.blog-card p {
    font-weight: 400;
}

.blog-card h3 {
    font-size: 20px;
    line-height: 1.3;
}

.pricing-toggle {
    text-align: center;
    padding-bottom: 40px;
}

.inner-pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
}

.custom-price-switch .form-check-input[type="checkbox"] {
    cursor: pointer;
    border-radius: 30px;
    margin-left: 0px;
    margin-top: 0px;
    height: 33px;
    width: 70px;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e");
}

.custom-price-switch.form-check {
    padding-left: 0px;
    line-height: 1;
    min-height: auto;
    margin-bottom: 0px;
}

.custom-price-switch .form-check-input[type="checkbox"]:not(:checked) {
    background-color: #e2e2e2;
    border-color: #e2e2e2;
}

.custom-price-switch .form-check-input:checked[type="checkbox"] {
    background-position: right center;
    background-size: initial;
}

.inner-pricing-toggle p {
    font-size: 16px;
    line-height: 1.2;
    color: var(--secondary-color);
}

.blog-container {
    max-width: 900px;
}

/* new desgin blog page */
img.double-ring-blog {
    position: absolute;
    right: -32px;
    opacity: 0.5;
    bottom: 74px;
}

img.left-ring-steps-blog {
    position: absolute;
    bottom: 30px;
    left: 0;
    opacity: 1;
    max-height: 125px;
}

.blog-top-banner {
    padding-top: 0;
    height: 310px;
    background: radial-gradient(88.86% 387.92% at 14.1% 12.9%,
            #f1f6ff 0%,
            #bcd3ff 100%)
        /* warning: gradient uses a rotation that is not supported by CSS and may not behave as expected */
    ;
    border-radius: 0px 0px 24px 24px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

img.ring-rightblog {
    position: absolute;
    right: 150px;
}

.blog-top-banner .container {
    position: relative;
}

.container-small {
    max-width: 984px;
}

.blog-mainbaner .blog-imagebx {
    height: 300px;
}

.blog-mainbaner .blog-imagebx img {
    height: 100%;
}

.blog-mainbaner .innerRowbx {
    align-items: center;
}

.blog-mainbaner .blog-content,
.blog-mainbaner .blog-footer {
    padding: 0px;
}

.blog-page-list .blog-card .date-tag span {
    padding: 6px 10px;
    color: #42444f;
}

.blog-mainbaner.blog-card h3 {
    font-size: 32px;
    line-height: 1.2;
    margin-bottom: 20px;
    -webkit-line-clamp: 3;
}

.blogup-main {
    margin-top: -80px;
    position: relative;
    z-index: 1;
}

.blog-card {
    background-color: #fff;
}

.blog-card .blog-content {
    padding: 0px;
    padding-top: 10px;
}

.blog-card .blog-footer {
    padding: 0px;
}

.blog-card h3 {
    font-size: 20px;
    color: #42444f;
    line-height: 1.2;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 20px;
}

.blog-card .date-tag .bg-lightGreen {
    background: rgba(111, 255, 127, 0.3);
}

.blog-card .date-tag .bg-lightPink {
    background: rgba(251, 183, 255, 0.3);
}

.blog-card .date-tag .bg-lightbrown {
    background: rgba(255, 197, 161, 0.3);
}

.blog-card .date-tag .bg-lightBlue {
    background: rgba(183, 189, 255, 0.3);
}

.loadmore-main {
    padding-top: 60px;
    padding-bottom: 40px;
    text-align: center;
}

.loadmore-btn {
    background-color: #00a4d9;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.03em;
    padding: 6px 15px;
    font-family: var(--secondary-font);
    line-height: 1.3;
    display: inline-block;
    transition: all 300ms ease-in-out;
    -webkit-transition: all 300ms ease-in-out;
    -moz-transition: all 300ms ease-in-out;
}

.loadmore-btn:hover {
    transition: all 300ms ease-in-out;
    -webkit-transition: all 300ms ease-in-out;
    -moz-transition: all 300ms ease-in-out;
    background-color: var(--blue-100);
}

.blog-detailsMain {
    margin-top: -80px;
    position: relative;
    z-index: 1;
}

.blog-detailsMain .blog-detail-inner .imagecardbx {
    border: 1px solid var(--black-200);
}

.gradient-banner.affliate-header .banner-content-inner .banner-description {
    max-width: 100%;
}

.gradient-banner.affliate-header .banner-content-inner .banner-left-text {
    flex: 0 0 100%;
    max-width: 100%;
    text-align: center;
}

.banner-heading .hd-gradient {
    background: linear-gradient(to right, #00a4d9 0%, #f093ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.gradient-banner.affliate-header .banner-content-inner .banner-description {
    margin-bottom: 5px;
}

.gradient-banner.affliate-header .banner-content-inner h5 {
    font-size: 24px;
    letter-spacing: 0.03em;
    line-height: 1.45em;
    color: var(--black-200);
    font-family: var(--primary-font);
    font-weight: 400;
    margin-bottom: 20px;
}

.gradient-banner.affliate-header .banner-content-inner h5 span {
    font-weight: 500;
}

.affliate-header .banner-content-inner .btn.btn-primary {
    margin-top: 30px;
}

.gradient-banner.affliate-header .banner-content-inner {
    min-height: max(75vh, 540px);
}

.gradient-banner.affliate-header .graphics.ring-right {
    bottom: 60px;
    right: 130px;
}

/* affliated css start */

.affliated-main {
    padding: 80px 0 110px 0;
    position: relative;
}

.affliated-title h2 {
    font-size: 36px;
    font-family: var(--secondary-font);
    font-weight: 700;
    line-height: 1.2;
    color: #42444f;
    text-align: center;
    margin: 0px;
}

.affliated-title {
    margin-bottom: 80px;
}

.affliated-right-content .customRow {
    display: flex;
    flex-wrap: wrap;
}

.affliated-right-content .customRow .bx1 {
    flex: 0 0 62px;
    max-width: 62px;
}

.affliated-right-content .customRow .bx2 {
    flex: 1;
}

.count-step {
    width: 62px;
    height: 62px;
    border-radius: 50%;
    background: rgba(0, 164, 217, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #494f59;
    font-size: 35px;
    font-weight: 500;
    line-height: 1;
    font-family: var(--secondary-font);
}

.right-content-step {
    padding-left: 20px;
}

.right-content-step h3 {
    font-family: var(--secondary-font);
    font-size: 32px;
    color: #42444f;
    line-height: 1.2;
    font-weight: 600;
    margin-bottom: 10px;
}

.right-content-step h3 strong {
    font-weight: 800;
    font-family: var(--secondary-font);
    color: #42444f;
}

.right-content-step p {
    font-family: var(--primary-font);
    color: #494f59;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0.03em;
    margin-bottom: 0px;
    line-height: 1.5;
}

.affliated-stepOne .right-content-step {
    max-width: 430px;
}

.start-earning {
    padding-top: 36px;
}

.affliated-stepOn {
    position: relative;
}

.circle-shape {
    position: absolute;
    right: 20px;
    animation: ScaleIn 2s infinite;
    top: 100px;
    z-index: -1;
}

.affliated-stepTwo {
    background: radial-gradient(88.86% 387.92% at 14.1% 12.9%,
            #f8fdff 0%,
            #daf6ff 100%);
    z-index: 1;
}

.affliated-stepTwo .imagebx {
    text-align: center;
}

.affliated-description .row {
    align-items: center;
}

.affliated-stepTwo .right-content-step {
    max-width: 460px;
}

.affliated-stepTwo .affliated-right-content {
    padding-left: 80px;
}

.affliated-stepTwo.affliated-main {
    padding: 100px 0 110px 0;
}

.affliated-stepThree .right-content-step {
    max-width: 430px;
}

.cardplan-ourter {
    display: flex;
    flex-direction: column;
    min-height: 280px;
    border-radius: 15px;
    padding: 30px 30px;
    margin-bottom: 20px;
    position: relative;
}

.cardplan-ourter .tagpaln {
    background: rgba(255, 255, 255, 0.5);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.02em;
    font-family: var(--primary-font);
    color: #000;
    padding: 4px 10px;
    line-height: 1.2;
    display: inline-block;
    border-radius: 50px;
    text-transform: uppercase;
}

.cardPlan-footer h4 {
    font-family: var(--primary-font);
    font-weight: 500;
    font-size: 80px;
    line-height: 1;
    margin-bottom: 0;
}

.cardPlan-footer {
    margin-top: auto;
    text-align: right;
}

.cardPlan-footer p {
    font-family: var(--primary-font);
    font-weight: 500;
    font-size: 18px;
    line-height: 1.3;
    letter-spacing: 0.05em;
    margin-bottom: 0px;
    color: #42444f;
}

.left-cardPlan .cardPlan-row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -10px;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.left-cardPlan .cardPlan-row .bx1 {
    flex: 0 0 380px;
    max-width: 380px;
    padding: 0 10px;
}

.cardplan-ourter.silverpaln {
    background-color: #e2ebfa;
}

.silverpaln .cardPlan-footer h4 {
    color: #274b88;
}

.cardplan-ourter.goldpaln {
    background-color: #eafaff;
}

.goldpaln .cardPlan-footer h4 {
    color: #274b88;
}

.cardplan-ourter.partnerplan {
    background-color: #fad0c5;
}

.partnerplan .cardPlan-footer h4 {
    color: #8d3f2a;
}

.left-cardPlan {
    width: 100%;
}

.affliated-main.affliated-stepThree {
    padding: 120px 0 120px 0;
}

.cardPlan-top img {
    position: absolute;
    top: 30px;
    left: 30px;
}

.affliated-stepThree .circle-shape {
    position: absolute;
    left: 0px;
    right: 0px;
    margin: 0 auto;
    animation: ScaleIn 2s infinite;
    top: -60px;
    z-index: -1;
}

.right-circle-shape {
    position: absolute;
    left: 0;
    top: 50%;
    z-index: -1;
}

.affliated-stepThree .small-shape {
    position: absolute;
    top: 40%;
    right: 0px;
    z-index: -1;
}

.affliated-stepThree .ball-shape {
    position: absolute;
    bottom: 10%;
    left: 0px;
    right: 0px;
    margin: 0 auto;
    z-index: -1;
    opacity: 0.2;
}

.affliated-stepTwo .halfcircle-shape {
    position: absolute;
    bottom: 0px;
    right: 0px;
    z-index: -1;
}

.affliated-stepTwo .halfball-shape {
    position: absolute;
    left: 0px;
    top: 60px;
    z-index: -1;
}

.affliated-stepTwo .plus-shape {
    position: absolute;
    right: 10%;
    top: 60px;
    z-index: -1;
}

.affliated-stepTwo .plusrotate-shape {
    position: absolute;
    left: 40%;
    bottom: 60px;
    z-index: -1;
}

.gradient-banner.affliate-header {
    z-index: 1;
}

.faq-wrapper.faq-affliated {
    background-image: none;
    padding-top: 20px;
}

.smtag-value {
    display: inline-block;
    font-size: 12px;
    background-color: #00a4d9;
    color: #fff;
    padding: 3px 5px;
    line-height: 1.1;
    border-radius: 4px;
    margin-left: 4px;
}

.affilate-link {
    display: flex;
    align-items: center;
}

.transfer-domain {
    text-align: center;
    padding-bottom: 100px;
}

.transfer-domain-inner h3 {
    font-size: 42px;
    margin-bottom: 20px;
    font-weight: 700;
    font-family: var(--secondary-font);
    letter-spacing: 0em;
}

.transfer-domain-inner h3 span {
    background: linear-gradient(90deg, #00a4d9, #6376da);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    display: inline-block;
}

.transfer-domain-inner p {
    font-family: var(--secondary-font);
    letter-spacing: 0.03em;
    margin-bottom: 0;
    line-height: 145%;
    font-size: 16px;
    padding-bottom: 15px;
    max-width: 960px;
    margin-left: auto;
    margin-right: auto;
}

header .navbar .navbar-nav li .nav-link.btn-outline-primary {
    background-color: #fff;
}

.api-main {
    margin-bottom: 80px;
}

/* Verifier Section */
.verifier-main {
    background-color: #fbfbfb;
    padding: 100px 0;
    position: relative;
    z-index: 1;
}

.verifier-sec p {
    font-family: var(--secondary-font);
    letter-spacing: 0.03em;
    margin-bottom: 0;
    line-height: 145%;
    font-size: 16px;
    padding-bottom: 15px;
    max-width: 960px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.verifier-main h3 {
    text-align: center;
    font-size: 42px;
    font-weight: 700;
    text-align: center;
    font-family: var(--secondary-font);
    color: var(--secondary-color);
    margin-bottom: 30px;
}

.verifier-main .spiral-ball {
    position: absolute;
    right: 0px;
    bottom: 0px;
    max-width: 250px;
    height: auto;
    z-index: -1;
}

.compareContainer.compare-verifier .cstmRow {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.compareContainer.compare-verifier {
    padding-top: 40px;
    margin-left: auto;
    margin-right: auto;
    max-width: 950px;
}

.txt-cnt p,
.txt-cnt h5 {
    text-align: right;
}

.ver-btn {
    margin-top: 40px;
}

.verifier-sec h3 span {
    background: linear-gradient(90deg, #00a4d9, #6376da);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    display: inline-block;
}

.compare-verifier p {
    font-weight: normal !important;
}

/* Verifier Section */

/* API Section */
.api-sec p {
    font-size: 18px;
    margin: 0 100px;
    margin-bottom: 25px;
}

.api-sec {
    margin: 0px 31px;
}


.api-main h3 {
    font-size: 37px !important;
}

/* API Section */

/* Range silder pricing section */
.range-slider {
    padding: 10px 0px 10px 0px;
    margin: 0 0 30px;
    position: relative;
    max-width: 500px;
    margin: 0 auto;
}

.range-slider input[type="range"] {
    width: 100%;
    height: 10px;
    outline: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
    border-radius: 30px;
}

.range-slider input[type="range"]::-webkit-slider-thumb {
    background: #00a4d9;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    box-shadow: 0 0 0 4px #fff;
    cursor: pointer;
    transition: all 0.15s ease-in-out 0s;
    -webkit-appearance: none;
    appearance: none;
}

.range-slider input[type="range"]:active::-webkit-slider-thumb,
.range-slider input[type="range"]::-webkit-slider-thumb:hover {
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
}

.range-slider input[type="range"]::-moz-range-thumb {
    background: #00a4d9;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    box-shadow: 0 0 0 4px #fff;
    border: none;
    cursor: pointer;
    transition: all 0.15s ease-in-out 0s;
}

.range-slider input[type="range"]:active::-moz-range-thumb,
.range-slider input[type="range"]::-moz-range-thumb:hover {
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
}

.range-slider .range-value {
    color: #fff;
    background: linear-gradient(#00a4d9, #0ebff8);
    font-size: 18px;
    font-weight: 600;
    font-style: italic;
    text-align: center;
    padding: 2px 6px;
    transform: translateY(50%);
    position: absolute;
    bottom: -12px;
    right: 0;
    left: 0px;
    margin: 0 auto;
    border-radius: 4px;
    display: inline-block;
    width: fit-content;
}

::-moz-range-track {
    background: transparent;
    border: 0;
}

.custom-rangeslider {
    margin-bottom: 50px;
}

.pricing-wrapper.custom-pricing-wrapper .pricing-table-wrapper {
    justify-content: center;
}

.range-slider-holder {
    margin-top: 40px;
}

.range-slider-holder h4 {
    font-size: 24px;
    text-align: center;
    color: #42444f;
}

.pricing-wrapper .pricing-inner h2 {
    margin-bottom: 10px;
}

.pricing-wrapper .pricing-inner p {
    letter-spacing: 0.03em;
    line-height: 145%;
    margin-bottom: 0;
    font-size: 16px;
    font-weight: 400;
    color: #42444f;
    /* max-width: 680px;
    margin-left: auto;
    margin-right: auto; */
    text-align: center;
}

.mailbox-info {
    font-size: 13px;
    max-width: 397px;
    margin: 0 auto;
    text-align: center;
    background: #f5f5f5;
    padding: 5px 15px;
    border-radius: 80px;
    color: #494f59;
    display: flex;
    align-items: center;
}

.mailbox-info span {
    padding-right: 4px;
    line-height: 1;
}

.mailbox-info span svg {
    width: 14px;
    fill: #494f59;
    position: relative;
    top: -1px;
}

@media only screen and (max-width: 1199px) {
    .transfer-domain-inner h3 {
        font-size: 32px;
    }
}

@media only screen and (max-width: 991px) {
    .footer-link-outer {
        max-width: 100%;
    }

    .compare-cta-banner {
        padding-top: 80px;
    }

    .right-content-step h3 {
        font-size: 26px;
    }

    .affliated-stepTwo .affliated-right-content {
        padding-left: 30px;
    }

    header .navbar-expand-md .navbar-nav .nav-link {
        font-size: 16px;
    }

    header li.nav-item {
        margin-left: 20px;
    }
}

@media only screen and (max-width: 767px) {
    .api-main {
        margin-top: 0;
    }

    .api-main h3 {
        font-size: 28px !important;
    }

    .api-sec {
        margin-bottom: 30px;
    }

    .api-main {
        margin-bottom: 55px;
    }

    .verifier-main h3 {
        font-size: 28px;
    }

    .api-sec p {
        font-size: 16px;
        margin: 0;
        margin-bottom: 25px;
    }

    .compareContainer.compare-verifier .cstmCol {
        flex: 0 0 50%;
        max-width: 100%;
    }

    .verifier-main {
        padding: 40px 0;
    }

    .blog-details-right {
        padding-left: 0px;
    }

    .blog-title h1 {
        font-size: 28px;
    }

    .blog-title {
        margin-bottom: 0px;
        padding: 20px 0;
    }

    .formInnerBox .form-control {
        min-height: 40px;
    }

    .blog-searechbar .searchicon {
        top: 5px;
        right: 5px;
        width: 30px;
        height: 30px;
    }

    .related-blog-post .rowbox1 {
        margin-bottom: 15px;
    }

    .blog-card .blog-imagebx {
        height: 165px;
    }

    .blog-page-list .row .rowbox1 {
        margin-bottom: 15px;
    }

    .compare-cta-banner {
        padding-top: 40px;
    }

    .blog-details-main {
        padding-bottom: 40px;
    }

    .compareContainer {
        padding-top: 100px;
    }

    .blog-mainbaner.blog-card h3 {
        font-size: 20px;
    }

    .blog-top-banner {
        height: 260px;
    }

    .blogup-main {
        margin-top: -60px;
    }

    .blog-detail-inner .imagecardbx {
        border-radius: 10px;
    }

    img.left-ring-steps-blog {
        max-height: 75px;
    }

    img.double-ring-blog {
        max-width: 70px;
    }

    .affliated-stepOne .right-content-step {
        max-width: 100%;
    }

    .affliated-description .imagebx {
        text-align: center;
        margin-bottom: 30px;
    }

    .affliated-stepTwo .affliated-description .row {
        flex-direction: column-reverse;
    }

    .affliated-stepTwo .right-content-step {
        max-width: 100%;
    }

    .left-cardPlan {
        max-width: 460px;
        margin: 0 auto;
        margin-bottom: 30px;
    }

    .affliated-stepThree .right-content-step {
        max-width: 100%;
    }

    .affliated-title h2 {
        font-size: 26px;
    }

    .affliated-main {
        padding: 60px 0 60px 0;
    }

    .affliated-title {
        margin-bottom: 40px;
    }

    .count-step {
        width: 45px;
        height: 45px;
        font-size: 22px;
    }

    .affliated-right-content .customRow .bx1 {
        flex: 0 0 45px;
        max-width: 45px;
    }

    .right-content-step {
        padding-left: 10px;
    }

    .right-content-step h3 {
        font-size: 22px;
    }

    .affliated-stepTwo.affliated-main {
        padding: 60px 0 100px 0;
    }

    .affliated-stepTwo .affliated-right-content {
        padding-left: 0px;
    }

    .cardPlan-footer h4 {
        font-size: 70px;
    }

    .cardplan-ourter {
        min-height: 230px;
    }

    .affliated-main.affliated-stepThree {
        padding: 80px 0 80px 0;
    }

    .gradient-banner.affliate-header .banner-content-inner h5 {
        font-size: 18px;
    }

    .gradient-banner.affliate-header .banner-content-inner {
        min-height: 500px;
    }

    .left-cardPlan .cardPlan-row .bx1,
    .left-cardPlan .cardPlan-row .bx2 {
        padding: 0 5px;
    }

    .left-cardPlan .cardPlan-row {
        margin: 0;
    }

    .cardplan-ourter {
        margin-bottom: 10px;
    }

    .cardplan-ourter .tagpaln {
        font-size: 11px;
    }

    .blog-card .blog-imagebx {
        height: auto;
    }

    .blog-card.blog-mainbaner .blog-imagebx {
        height: 200px;
    }

    header .navbar-expand-md .navbar-nav li .nav-link.btn-outline-primary,
    header .navbar-expand-md .navbar-nav li .nav-link.btn-primary {
        padding: 8px 10px;
    }

    header .navbar-expand-md .navbar-nav .nav-link {
        font-size: 15px;
    }

    .navbar-brand {
        max-width: 100px;
    }

    .faq-wrapper.faq-affliated {
        padding-top: 0px;
    }

    .navbar-collapse {
        display: block !important;
        transform: translateX(-100%);
        position: fixed;
        left: 0;
        top: 60px;
        height: 100%;
        overflow: auto;
        background: var(--white);
        padding: 30px 0;
        width: 70%;
        transition: 0.1s all linear;
        border-right: 1px solid var(--grey-100);
        border-top: 1px solid var(--grey-100);
    }

    .navbar-landing-page {
        max-width: 280px;
    }

    .navbar-collapse.show {
        transform: translateX(0) !important;
        transition: 0.1s all linear;
    }

    .navbar-landing-page .navbar-nav {
        padding: 0 15px;
    }

    .navbar-landing-page .navbar-nav li.nav-item {
        width: 100%;
        text-align: center;
    }

    .navbar-landing-page .navbar-nav li.nav-item .nav-link {
        width: -moz-fit-content;
        width: fit-content;
        margin-left: auto;
        margin-right: auto;
        padding: 0 5px;
    }

    header .navbar-expand-md .navbar-nav .nav-link {
        margin-bottom: 20px;
    }

    .navbar-landing-page .navbar-nav li.nav-item .nav-link.btn {
        width: 100%;
        padding: 0;
    }

    header li.nav-item {
        margin-left: 0px;
    }

    header li.nav-item:last-child {
        margin-left: 0px;
    }

    .transfer-domain-inner h3 {
        font-size: 28px;
    }

    .transfer-domain {
        padding-bottom: 30px;
        padding-top: 30px;
    }

    .range-slider-holder {
        margin-top: 25px;
    }

    .range-slider-holder h4 {
        font-size: 18px;
    }
}

/* tooltip style */
.custom-tooltip {
    --bs-tooltip-bg: #ccedf8;

    --bs-tooltip-color: var(--black-100);
}

.pricing-wrapper .card-price ul li img.tooltip-img {
    background: transparent !important;
    padding: 0;
    flex: 0 0 16px;
    min-height: 16px;
    width: 16px;
    align-self: center;
    height: 16px;


}

.nav-item.dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0;
}

@media only screen and (max-width: 575px) {
    .printer-gallery-inner h3 {
        font-size: 18px;
    }

    .trending-blog-listing .customRow .bx1 {
        flex: 0 0 80px;
        max-width: 80px;
    }

    .trending-blog-listing .customRow .right-content {
        flex: 0 0 calc(100% - 80px);
        max-width: calc(100% - 80px);
        padding-left: 10px;
    }

    .trending-blog-listing {
        padding: 10px 0;
    }

    .blog-card.blog-mainbaner .blog-imagebx {
        height: 300px;
    }

    .compareContainer .itmth img {
        max-width: 80px;
    }

    .compareContainer .itmth svg {
        width: 80px;
        height: auto;
    }
}

@media only screen and (max-width: 440px) {
    .blog-card.blog-mainbaner .blog-imagebx {
        height: 260px;
    }
}

@media only screen and (max-width: 390px) {

    .left-cardPlan .cardPlan-row .bx1,
    .left-cardPlan .cardPlan-row .bx2 {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .cardplan-ourter {
        min-height: 200px;
    }

    .cardPlan-footer h4 {
        font-size: 50px;
    }

    .cardPlan-footer {
        padding-top: 40px;
    }

    .blog-card.blog-mainbaner .blog-imagebx {
        height: 200px;
    }
}