:root {
    --primary-color: #822dd5;
    --secondary-color: #091069;
    --third-color: #f92c8b;
    --forth-color: #b02cd6;
    --grad-secondary-color: #8624e1;
    --grad-primary-color: #c180ff;
}

body {
    font-family: "Open Sans", sans-serif;
}

.primary-color {
    color: var(--primary-color);
}

.secondary-color {
    color: var(--secondary-color);
}

.third-color {
    color: var(--third-color);
}

.forth-color {
    color: var(--forth-color);
}

.grad-secondary-color {
    color: var(--grad-secondary-color);
}

.grad-primary-color {
    color: var(--grad-primary-color);
}

.img-fluid {
    width: 100%;
}

::-webkit-scrollbar {
    width: 5px;
    height: 5px;
}

::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px var(--secondary-color);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: var(--secondary-color);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-color)
}

a {
    text-decoration: none;
    color: var(--secondary-color);
}

.main-header {
    position: relative;
    top: 0px;
    width: 100%;
    box-shadow: 0 4px 7px rgba(0, 0, 0, 0.06);
    z-index: 999;
    background-color: #fff;
}

.navbar-right-menu {
    display: flex;
    align-items: center;
    justify-content: end;
}

.navbar-right-menu .header-menu .nav-list {
    margin-right: 15px;
}

.navbar-right-menu .header-menu .nav-list .nav-menu {
    display: flex;
    align-items: center;
}

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

.navbar-right-menu .header-menu .nav-list .nav-menu li {
    position: relative;
}

.navbar-right-menu .header-menu .nav-list .nav-menu li a {
    padding: 30px 0;
    margin-right: 29px;
    display: block;
    color: var(--secondary-color);
    font-size: 15px;
    font-style: normal;
    position: relative;
    text-align: center;
    font-weight: 500;
    line-height: 30px;
    letter-spacing: 0.32px;
    transition: all 500ms ease;
    text-transform: uppercase;
    cursor: pointer;
}

.nav-menu li .sub-menu {
    left: 0;
    opacity: 0;
    visibility: hidden;
    position: absolute;
    top: 100%;
    z-index: 10;
    overflow: hidden;
    padding: 0;
    width: 257px;
    text-align: left;
    border-radius: 0 0 15px 15px;
    background-color: #fff;
    box-shadow: 0 8px 8px rgba(23, 22, 24, 4%), 0 4px 4px rgba(23, 22, 24, 4%), 0 2px 2px rgba(23, 22, 24, 4%);
    transition: transform .3s cubic-bezier(.175, .885, .32, 1.275);
}

.nav-menu li .sub-menu {
    transform: translate3d(0, 2rem, 0) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0) skew(0, 0);
    pointer-events: none;
    padding: 0;
}

.navbar-right-menu .header-menu .nav-list .nav-menu li:hover .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: all;
    z-index: 9999;
}

.navbar-right-menu .header-menu .nav-list .nav-menu li .sub-menu li {
    position: relative;
    transition: all 300ms ease;
}

.navbar-right-menu .header-menu .nav-list .nav-menu li .sub-menu li a {
    display: block;
    width: 100%;
    padding: 8px 19px;
    text-align: left;
    border-bottom: 1px solid #e7e7e7;
    margin-right: 0px;
    font-size: 14px;
}

.navbar-right-menu .header-menu .nav-list .nav-menu li .sub-menu li a:before {
    background: linear-gradient(45deg, var(--grad-secondary-color), var(--grad-primary-color));
    content: "";
    width: 0;
    height: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
    z-index: -1;
}

.navbar-right-menu .header-menu .nav-list .nav-menu li .sub-menu li:hover a {
    color: #fff;
}

.navbar-right-menu .header-menu .nav-list .nav-menu li .sub-menu li:hover a:before {
    width: 100%;
}

.btn.btn1 {
    background: linear-gradient(45deg, var(--third-color), var(--forth-color));
    color: #fff;
    display: inline-flex;
    align-items: center;
    font-size: 15px;
    font-weight: 600;
    line-height: 1;
    padding: 15px 24px;
    border-radius: 7px;
    transition: all 0.3s ease-in-out;
    overflow: hidden;
    text-transform: uppercase;
    position: relative;
    z-index: 1;
}

.btn.btn1:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.2);
    -webkit-transform-origin: right center;
    transform-origin: right center;
    -webkit-transform: scale(0, 1);
    transform: scale(0, 1);
    -webkit-transition: -webkit-transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

.btn.btn1:hover:before {
    -webkit-transform-origin: left center;
    -moz-transform-origin: left center;
    -ms-transform-origin: left center;
    transform-origin: left center;
    -webkit-transform: scale(1, 1);
    -moz-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    -o-transform: scale(1, 1);
    transform: scale(1, 1);
}

.btn.btn2 {
    background-color: transparent;
    color: var(--secondary-color);
    display: inline-flex;
    align-items: center;
    font-size: 15px;
    font-weight: 600;
    line-height: 1;
    padding: 15px 24px;
    border-radius: 7px;
    transition: all 0.3s ease-in-out;
    overflow: hidden;
    text-transform: uppercase;
    position: relative;
    z-index: 1;
    border: 1px solid var(--secondary-color);
}

.btn.btn2:before {
    content: "";
    background: var(--secondary-color);
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    -webkit-transform-origin: right center;
    transform-origin: right center;
    -webkit-transform: scale(0, 1);
    transform: scale(0, 1);
    -webkit-transition: -webkit-transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}
.btn.btn2:hover {
    color: #fff;
}

.btn.btn2:hover::before {
    -webkit-transform-origin: left center;
    -moz-transform-origin: left center;
    -ms-transform-origin: left center;
    transform-origin: left center;
    -webkit-transform: scale(1, 1);
    -moz-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    -o-transform: scale(1, 1);
    transform: scale(1, 1);
}

.default-padding {
    padding: 80px 0;
}

.br-30 {
    border-radius: 30px!important;
}

.navbar-right-menu .header-menu .nav-list .nav-menu li a:hover {
    color: var(--third-color);
}

.container,
.container-lg,
.container-md,
.container-sm,
.container-xl {
    max-width: 1140px;
}

.screenshot-carousel {
    position: relative;
    margin: 30px 0px;
}

.iphone-frame {
    left: 50%;
    top: 0;
    z-index: 11;
    width: 248px;
    height: 100%;
    position: absolute;
    border-radius: 35px;
    transform: translateX(-50%);
    background-repeat: no-repeat;
    box-shadow: 0px 0px 27px 3px rgb(7 1 87 / 10%);
}

.application-slider img {
    display: block;
    height: auto;
    width: 100%;
    position: relative;
    text-align: center;
    transition: all 0.4s ease;
    opacity: 0.5;
}

.application-slider img {
    display: block;
    height: 100%;
    width: 100%;
    position: relative;
    text-align: center;
    transition: all 0.4s ease;
    opacity: 0.5;
}

.application-slider .slick-slide.slick-active.lt2 img {
    transform: translate(15%, 0) scale(0.6);
}

.application-slider .slick-slide.slick-active.lt1 img {
    opacity: 0.7;
    transform: translate(-5%, 0) scale(0.8);
}

.application-slider .slick-slide.slick-active.gt1 img {
    opacity: 0.7;
    transform: translate(5%, 0) scale(0.8);
}

.application-slider .slick-slide.slick-active.gt2 img {
    transform: translate(-15%, 0) scale(0.6);
}

.application-slider .slick-slide.slick-center img {
    z-index: 1;
    transform: scale(1);
    opacity: 1;
    color: #e67e22;
}

.application-slider .slick-slide.slick-current.slick-active.slick-center img {
    border-radius: 35px;
}

.slick-arrow {
    position: absolute;
    border: none;
    outline: none !important;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    text-align: center;
    border-radius: 4px;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.slick-arrow i {
    font-size: 20px;
    font-weight: 600;
    color: #fff;
}

.prevArrow {
    top: 50%;
    left: -5%;
}

.nextArrow {
    top: 50%;
    right: -5%;
}

.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
    color: #fff;
    outline: none;
    background: var(--secondary-color);
}

ul.slick-dots {
    position: absolute;
    left: 50%;
    bottom: 0px;
    padding: 0;
    transform: translate(-50%, 0);
    margin: 0px;
}

ul.slick-dots li {
    margin-right: 6px;
    border-color: #909BA9;
    border: 1px solid #909BA9;
    background: #909BA9;
    border-radius: 50%;
    display: inline-block;
    width: 7px;
    height: 7px;
}

ul.slick-dots li button {
    display: none;
}

ul.slick-dots li.slick-active {
    border-color: var(--primary-color);
    border: 1px solid var(--primary-color);
    background: var(--primary-color);
}

.application-slider ul.slick-dots {
    bottom: -38px;
}

.application-slider {
    margin-bottom: 30px;
}

.sec-title h4 {
    margin-bottom: 10px;
    font-size: 40px;
    font-weight: 700;
    color: var(--secondary-color);
}

.sec-title p.desc {
    font-size: 15px;
    color: #5d5d5d;
}

.sec-title {
    margin-bottom: 20px;
}

.carousel-indicators {
    position: relative;
    display: block;
    margin-left: 0px;
    margin-right: 0px;
    width: 100%;
}

.carousel-indicators .indicator-item {
    display: flex;
    width: 100%;
    background: #fff;
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 15px;
    cursor: pointer;
    border: 2px solid var(--primary-color);
}

.indicator-img {
    margin-right: 15px;
    width: 25%;
    display: flex;
    max-width: 100px;
    height: 80px;
    border-radius: 50%;
    background: #f0e0ff;
    text-align: center;
    line-height: 45px;
    padding: 10px;
    align-items: center;
    justify-content: center;
}

.indicator-img img {
    max-width: 100%;
    width: 60px;
}

.indicator-text {
    width: 74%;
}

.indicator-text h5 {
    font-size: 17px;
    font-weight: 700;
    text-transform: capitalize;
    margin-bottom: 5px;
}

.indicator-text p {
    color: #717478;
    font-size: 13px;
    font-weight: 500;
    line-height: 20px;
    margin-bottom: 0px;
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
}

.carousel-inner {
    width: 100%;
    height: 585px;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 20px;
    box-shadow: 0px 0px 27px 3px rgb(7 1 87 / 10%);
}

.carousel-inner .carousel-item {
    width: 100%;
    height: 100%;
}

.carousel-inner .carousel-item img {
    text-align: center;
    width: auto;
    height: 100%;
    border-radius: 25px;
}

.carousel-indicators .indicator-item.active {
    background: linear-gradient(229deg, var(--grad-primary-color) 0, var(--grad-secondary-color) 100%);
}
.carousel-indicators .indicator-item.active .indicator-img {
    background: #fff;
}

.carousel-indicators .indicator-item.active .indicator-text h5 {
    color: #fff;
}

.carousel-indicators .indicator-item.active .indicator-text p {
    color: #ffffffba;
}

.carousel-inner .carousel-item {
    transition: .5s;
}

.banner-section {
    padding: 100px 0;
}

.banner-content h3 {
    margin-bottom: 20px;
    font-size: 51px;
    font-weight: 700;
    color: var(--secondary-color);
}

.bg-img {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.banner-content p {
    font-size: 19px;
    color: #686161;
    margin-bottom: 20px;
}

.banner-content ul {
    list-style: none;
    padding-left: 0px;
    margin-bottom: 15px;
}

.banner-content ul li {
    margin-bottom: 11px;
    color: #000;
    font-weight: 500;
}

.banner-content ul li i {
    margin-right: 8px;
    color: var(--primary-color);
}

.banner-content ul li span {
    font-size: 19px;
}

.aobut-desc p {
    font-size: 15px;
    color: #5d5d5d;
    text-align: justify;
}

.steps-sec {
    background: linear-gradient(229deg, var(--grad-primary-color) 0, var(--grad-secondary-color) 100%);
}

.sec-title.text-white h4 {
    color: #fff!important;
    background-image: unset;
    background-clip: unset;
    -webkit-text-fill-color: unset;
}

.sec-title.text-white p.desc {
    color: #fff;
}

.text-center p {
    text-align: center;
}

.step-box {
    position: relative;
    text-align: center;
    margin-bottom: 35px
}

.step-box .icon {
    background-color: #fff;
    position: relative;
    height: 130px;
    width: 130px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.step-box .icon img {
    width: 65px;
}

.step-box h5 {
    margin-top: 16px;
    margin-bottom: 0px;
    color: #fff;
    max-width: 78%;
    margin-left: auto;
    margin-right: auto;
    font-size: 19px;
}

.step-box .ser-box-no {
    position: absolute;
    left: 70px;
    top: 27px;
    -webkit-text-stroke: 1px #ffffff;
    transition: all .3s;
    margin-bottom: 0;
    color: #85a6A600;
    opacity: calc(3 / 10);
    font-size: 74px;
    font-weight: 700;
    line-height: 1em;
}

.steps-sec .btn.btn2 {
    color: #fff;
}

.feature-flex {
    gap: 15px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}
.feature-flex .f-box.sec {
    width: 20%;
}
.feature-flex .f-box {
    background-image: radial-gradient(95.56% 95.56% at 50% 50%, #ffffff 0%, #f92c8b1c 100%);
    width: 18%;
    padding: 20px 19px;
    text-align: center;
    border: 1px solid #d9aff066;
    border-radius: 10px;
}

.feature-flex .f-box i {
    font-size: 40px;
    font-weight: 700;
    background-image: linear-gradient(229deg, var(--third-color) 0, var(--grad-secondary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.feature-flex .f-box h5 {
    margin-bottom: 4px;
    margin-top: 11px;
    font-size: 15px;
    color: #000;
}

.feature-flex .f-box:hover {
    transition: .3s;
    background: linear-gradient(229deg, var(--third-color) 0, var(--grad-secondary-color) 100%);
}

.feature-flex .f-box:hover i {
    color: #fff !important;
    background-image: unset;
    background-clip: unset;
    -webkit-text-fill-color: unset;
}

.feature-flex .f-box:hover h5 {
    color: #fff;
}

.feature-flex .f-box:nth-child(even) {
    background: linear-gradient(229deg, var(--third-color) 0, var(--grad-secondary-color) 100%)!important;
}

.feature-flex .f-box:nth-child(even) i {
    color: #fff !important;
    background-image: unset;
    background-clip: unset;
    -webkit-text-fill-color: unset;
}

.feature-flex .f-box:nth-child(even) h5 {
    color: #fff;
}

.price-box {
    border-radius: 10px;
    border: 2px solid var(--grad-primary-color);
    box-shadow: rgba(0, 0, 0, 0.09) 0px 3px 12px;
    /* padding: 29px 23px; */
    position: relative;
}

.price-box h4.box-name {
    margin-top: 0px;
    margin-bottom: 10px;
    font-size: 20px;
    font-weight: 700;
    color: var(--third-color);
    text-transform: uppercase;
}

.price-box p {
    font-size: 14px;
    color: #5d5d5d;
}

.price-box h2.price {
    font-size: 24px;
    display: inline-flex;
    flex-wrap: wrap;
    align-items: flex-end;
    padding: 12px 20px;
    border-radius: 0 0 0 21px;
    background: linear-gradient(229deg, var(--third-color) 0, var(--grad-secondary-color) 100%) !important;
    position: absolute;
    color: #fff;
    font-weight: 600;
    top: 0px;
    right: 0px
}

.price-box .price-inner-head {
    margin-top: 38px;
    padding: 17px 14px;
}

.price-box .price-inner-head ul.check-list {
    list-style: none;
    padding: 0px;
}

.price-box .price-inner-head ul.check-list li {
    margin-bottom: 7px;
    display: flex;
}

.price-box .price-inner-head ul.check-list li i {
    font-size: 12px;
    margin-right: 10px;
    color: var(--primary-color);
}

.price-box .price-inner-head ul.check-list li span {
    color: var(--secondary-color);
    font-weight: 500;
    font-size: 13px;
}

.price-box .btn-div .btn.btn2 {
    width: 100%;
    border-top-left-radius: 0px;
    border-top-right-radius: 0px;
    justify-content: center;
    border: none;
    border-top: 2px solid var(--grad-primary-color);
    background: #e7e7e773;
}

.price-box:hover .btn.btn2 {
    color: #fff;
}

.price-box:hover .btn.btn2::before {
    -webkit-transform-origin: left center;
    -moz-transform-origin: left center;
    -ms-transform-origin: left center;
    transform-origin: left center;
    -webkit-transform: scale(1, 1);
    -moz-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    -o-transform: scale(1, 1);
    transform: scale(1, 1);
}

.price-box.active .btn.btn2 {
    color: #fff;
}

.price-box.active .btn.btn2::before {
    -webkit-transform-origin: left center;
    -moz-transform-origin: left center;
    -ms-transform-origin: left center;
    transform-origin: left center;
    -webkit-transform: scale(1, 1);
    -moz-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    -o-transform: scale(1, 1);
    transform: scale(1, 1);
}

.price-box.active {
    background: #eff1fd;
    transform: scale(1.07);
}
 
.price-box.active .btn.btn2::before {
    background: linear-gradient(229deg, var(--grad-primary-color) 0, var(--grad-secondary-color) 100%);
}
.price-box.active h4.box-name {
    color: var(--primary-color);
}


footer {
    padding-bottom: 70px;
    padding-top: 90px;
    background: #dddddd4d;
}

.footer-widget .f-logo {
    margin-bottom: 20px;
}

.footer-widget .f-logo img {
    width: 200px;
}

.footer-widget .media-footer li {
    display: inline-block;
}

.footer-widget .media-footer li a {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 5px 1px;
    font-size: 13px;
    color: #000;
    width: 35px;
    text-align: center;
    height: 35px;
    line-height: 31px;
    background: transparent;
    border-radius: 50%;
    padding: 0px;
}

.footer-widget .media-footer li a.facebook {
    background: #4a639f;
    color: #fff;
}

.footer-widget .media-footer li a.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: #fff;
}

.footer-widget .media-footer li a.twitter {
    background: #000;
    color: #fff;
}

.footer-widget .media-footer li a.linkedin {
    color: #fff;
    background: #0072b1;
}

.footer-item .footer-title {
    font-size: 25px;
    font-weight: 700;
    color: var(--primary-color);
    text-transform: capitalize;
    margin-bottom: 13px;
}

.footer-item .footer-title .ft-accrd-arrow {
    display: none;
}

.footer-item ul.footer-list {
    padding-left: 0px;
}

.footer-item ul.footer-list li {
    list-style: none;
}

.footer-item ul.footer-list li a {
    margin-bottom: 7px;
    display: block;
}

.footer-item ul.footer-list li a:hover {
    color: var(--third-color);
}

.footer-bottom {
    padding: 10px 0;
    background: linear-gradient(229deg, var(--grad-primary-color) 0, var(--grad-secondary-color) 100%);
}

.footer-bottom .copyright-text {
    margin-bottom: 0px;
    color: #fff;
}

.footer-bottom .copyright-text a {
    color: #fff;
    font-weight: 700;
}

.footer-bottom .copyright-text a:hover {
    transition: .3s;
    color: var(--third-color);
}

.text-right {
    text-align: right !important;
}

.pricing2 .pr-type-box h4 {
    font-size: 21px;
    text-align: center;
    color: var(--secondary-color);
}

.pricing2 .type-box {
    background: #f92c8b29;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    padding: 16px 17px;
    cursor: pointer;
}

.pricing2 .type-box span {
    font-size: 18px;
    color: #000;
    font-weight: 600;
}

.pricing2 .type-box .price-info {
    text-align: center;
}

.pricing2 .type-box .price-info .plan-price {
    margin-bottom: 0px;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 21px;
}

.pricing2 .type-box .price-info .desc {
    margin-bottom: 0px;
    font-size: 10px;
    font-weight: 500;
}

.pricing2 .type-box .price-info .plan-price .discounted-price {
    margin-left: 5px;
    text-decoration: line-through;
    font-weight: 500;
    font-size: 13px;
}

.pricing2 .pr-header h4 {
    color: var(--third-color);
    font-size: 20px;
    font-weight: 600;
}

.pricing2 .pr-header p {
    color: #7a7878;
    font-size: 16px;
}

.pricing2 .price-header {
    margin-bottom: 0;
    position: sticky;
    top: 90px;
    width: 100%;
    z-index: 9;
    background-color: #fff;
    box-shadow: 0 15px 16px 2px rgba(0, 0, 0, .06);
    display: flex;
    flex-direction: row;
    justify-content: center;
    column-gap: 24px;
    align-items: center;
    padding: 36px 16px 26px;
}

.plan-flex {
    padding-top: 21px;
    display: flex;
}

.plan-flex .features {
    width: 25%;
}

.plan-flex .plan-includes {
    width: 25%;
}

.plan-flex .features-heading {
    margin-bottom: 0;
    height: 29px;
    font-weight: 600;
    font-size: 21px;
    color: var(--secondary-color);
}

.plan-flex .features-heading.process {
    font-size: 15px;
    color: #585858;
    text-align: center;
}

.plan-flex span.sub-heading {
    margin-top: 20px;
    border-top: 1px solid #787878c2;
    height: 52px;
    display: flex;
    align-items: center;
    color: #000;
    font-weight: 600;
    line-height: 21px;
    font-size: 15px;
    padding: 7px 0;
}

.plan-flex .features .feature-name {
    border-radius: 16px 0 0 16px;
    padding-left: 15px;
    height: 47px;
    display: flex;
    font-size: 14px;
    align-items: center;
    font-size: 14px;
}

.plan-flex .features .feature-name:nth-child(even) {
    background-color: #ededed;
}

.plan-flex .plan-includes .compare-col {
    display: flex;
    text-align: center;
    justify-content: center;
    height: 47px;
    display: flex;
    align-items: center;
}

span.tick-mark {
    position: relative;
    display: inline-block;
    width: 20px;
    height: 20px;
}

span.tick-mark:before {
    content: '';
    top: 50%;
    height: 50%;
    width: 4px;
    background-color: #198754;
    position: absolute;
    left: 0;
    transform: translateX(10px) rotate(-45deg);
    transform-origin: left bottom;
    border-radius: 2px;
}

span.tick-mark:after {
    content: '';
    background-color:#198754;
    bottom: 0;
    height: 4px;
    width: 94%;
    position: absolute;
    left: 0;
    transform: translateX(10px) rotate(-45deg);
    transform-origin: left bottom;
    border-radius: 2px;
}

.plan-flex .plan-includes .compare-col:nth-child(even) {
    background-color: #ededed;
}

.plan-flex .plan-includes:last-child .compare-col {
    border-radius: 0 16px 16px 0;
    padding-right: 20px;
}

.plan-flex .plan-includes .compare-col .extra-price {
    color: #656565;
    font-weight: 600;
}

.pr-type-box.active .type-box {
    background: linear-gradient(229deg, var(--grad-primary-color) 0, var(--grad-secondary-color) 100%);
}

.pr-type-box.active .type-box span {
    color: #fff;
}

.pr-type-box.active .type-box p.plan-price {
    color: #ffff!important;
}

.pr-type-box.active .type-box p.plan-price span.discounted-price {
    color: #ffffff96;
}

.pr-type-box.active p.desc {
    color: #ddd;
}

.main-header.fixed-header {
    position: fixed;
    top: 0;
}

.btn.btn1 {
    font-size: 13px;
    padding: 13px 20px;
}

.btn.btn2 {
    font-size: 13px;
    padding: 13px 20px;
}

.footer-item ul.footer-list {
    padding-left: 13px;
    position: relative;
}

.footer-item ul.footer-list:before {
    content: '';
    height: calc(100% - 8px);
    transition: height 0.5s;
    position: absolute;
    width: 2px;
    background: rgb(172 95 244);
    top: -10px;
    left: 0;
}

.footer-item ul.footer-list li a {
    font-size: 14px;
    line-height: inherit;
    transition: all 0.3s ease;
    padding-left: 15px !important;
    /* overflow: hidden; */
    text-overflow: ellipsis;
    position: relative;
    display: block;
}

.footer-item ul.footer-list li a:before {
    content: '';
    position: absolute;
    left: 0px;
    width: 5px;
    height: 5px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    border-radius: 100%;
    background: #a85af2;
}

.footer-item ul.footer-list li a:after {
    content: '';
    position: absolute;
    top: -3px;
    width: 13px;
    left: -13px;
    height: 15px;
    border-bottom-left-radius: 8px;
    border-left: 2px solid #ac5ff4;
    border-bottom: 2px solid #ac5ff4;
}

.footer-item .footer-title {
    padding: 7px 16px;
    border-bottom: 2px solid #a85af2;
    border-radius: 10px;
    width: max-content;
    margin-bottom: 4px;
}

.footer-widget.logo-div {
    margin-bottom: 44px;
    text-align: center;
    margin-top: -129px;
}

.footer-widget.logo-div .f-logo img {
    background: #fff;
    padding: 21px;
    width: 247px;
    border-radius: 48px;
}

.mb-plan-details .plan-dt-box {
    display: none;
}

.testimonial-block {
    background: #fff;
}

.testimonial-slider .slider-item {
    margin: 0 15px;
}

.testimonial-section {
    background: linear-gradient(45deg, var(--third-color), var(--forth-color));
}

.testimonial-block {
    border-radius: 10px;
    padding: 19px 24px;
    background: #fff;
}

.testimonial-block .user-img {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.testimonial-block .user-img img {
    width: 60px;
    margin-right: 13px;
}

.testimonial-block .user-img .user-name h4 {
    font-size: 18px;
    margin-bottom: 0px;
    color: #000;
}

.testimonial-block .user-img .user-name .user-dt {
    margin-bottom: 0px;
    font-size: 13px;
    color: var(--primary-color);
}

.testimonial-block .user-img {
    margin-right: 13px;
}

.testimonial-block .user-detail .review {
    color: #443e3e;
    font-size: 14px;
}

.testimonial-block .review-star i {
    color: #fdc22d;
}

.testimonial-slider .slick-arrow {
    top: -88px;
    width: 35px;
    height: 35px;
    right: 10px;
    border-radius: 50%;
}

.testimonial-slider .PrevArrow.slick-arrow {
    right:51px;
}
.testimonial-slider  .slick-arrow i {
    font-size: 14px;
}
.default-padding.newsletter {
    padding: 75px 0;
    position: relative;
}

.newsletter-inner h3 {
    font-size: 44px;
    color: #fff;
    font-weight: 700;
    margin-bottom: 22px;
}

.newsletter-inner .btn.btn1 {
    font-size: 15px;
    padding: 16px 26px;
    border-radius: 30px;
}

.default-padding.newsletter:before {
    content: '';
    background: #00000075;
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
}

.default-padding.newsletter .newsletter-inner {
    z-index: 2;
    position: relative;
}

.card-img-box {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.card-img-box img {
    width: 201px;
    height: auto;
}

.card-box1 {
    background: var(--primary-color);
    border-radius: 30px;
    padding: 31px 35px;
}

.card-box1 .inner-txt p {
    font-size: 18px;
    margin-bottom: 9px;
    color: #fff;
    text-align: center;
}

.card-box2 {
    text-align: left;
    background: var(--third-color);
    border-radius: 30px;
    padding: 53px 48px;
}

.card-box2 h4 {
    color: #fff;
    font-size: 34px;
    font-weight: 600;
}

.card-box2 p {
    color: #fff;
    font-size: 17px;
    margin-bottom: 0px;
}

.card-img-box .img2 {
    width: auto;
    height: 313px;
}

.card-img-box .img1 {
    width: 227px;
}

.card-img-box::before {
    content: '';
    width: 26%;
    left: 38%;
    top: 50%;
    position: absolute;
    background: #ffffff96;
    height: 3px;
}

.form-group {
    position: relative;
    margin-bottom: 15px;
}

.form-group label {
    color: var(--third-color);
    font-size: 14px;
    margin-bottom: 7px;
    font-weight: 600;
}

.form-group .form-control {
    padding: 11px 18px;
    border-radius: 8px;
    border-color: #b262ff87;
    background: #ddbbff4f;
}

.ml-auto {
    margin-left: auto!important;
}

.mr-auto {
    margin-right: auto!important;
}

.contact-form {
    background: #fff;
    padding: 45px 50px;
    box-shadow: -4.104px 11.276px 38px 0px rgba(45, 42, 61, 0.1);
    border-radius: 30px;
}

.scroll-top {
    display: none;
    z-index:9;
    position: fixed;
    bottom: 30px;
    right: 20px;
    padding: 8px 14px;
    margin-bottom: 0px;
    border-radius: 8px;
    color: #fff;
    background: linear-gradient(45deg, var(--third-color), var(--forth-color));
    text-decoration: none;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.scroll-top:hover {
    background: var(--primary-color);
    color: #fff;
}

.contact-float {
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 9;
}

.whatsapp-ring {
    position: relative;
    visibility: visible;
    background-color: transparent;
    width: 110px;
    height: 110px;
    cursor: pointer;
    z-index: 11;
    -webkit-backface-visibility: hidden;
    -webkit-transform: translateZ(0);
    transition: visibility .5s;
    left: 0;
    bottom: 0;
    display: block;
}

.whatsapp-ring-circle {
    width: 110px;
    height: 110px;
    top: 0;
    left: 0;
    position: absolute;
    background-color: transparent;
    border-radius: 100%;
    border: 2px solid #00e676;
    -webkit-animation: phonering-alo-circle-anim 1.2s infinite ease-in-out;
    animation: phonering-alo-circle-anim 1.2s infinite ease-in-out;
    transition: all .5s;
    -webkit-transform-origin: 50% 50%;
    -ms-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
    opacity: .5;
}

.whatsapp-ring-circle-fill,
.whatsapp-ring-img-circle {
    background: #107cb3;
    background: #107cb3;
}

.whatsapp-ring-circle-fill {
    width: 80px;
    height: 80px;
    top: 16px;
    left: 16px;
    position: absolute;
    background-color: #00e676;
    border-radius: 100%;
    border: 2px solid transparent;
    -webkit-animation: phonering-alo-circle-fill-anim 2.3s infinite ease-in-out;
    animation: phonering-alo-circle-fill-anim 2.3s infinite ease-in-out;
    transition: all .5s;
    -webkit-transform-origin: 50% 50%;
    -ms-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
}

.whatsapp-btn-icon {
    display: flex;
    text-decoration: none;
}

.whatsapp-ring-img-circle .whatsapp-btn-icon i {
    font-size: 21px;
    color: #fff;
}

.whatsapp-ring-img-circle {
    background-color: #00e676;
    width: 50px;
    height: 50px;
    top: 31px;
    left: 31px;
    position: absolute;
    background-size: 20px;
    border-radius: 100%;
    border: 2px solid transparent;
    -webkit-transform-origin: 50% 50%;
    -ms-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    justify-content: center;
}

@-webkit-keyframes phonering-alo-circle-anim {
    0% {
        -webkit-transform: rotate(0) scale(.5) skew(1deg);
        -webkit-opacity: .1
    }
    30% {
        -webkit-transform: rotate(0) scale(.7) skew(1deg);
        -webkit-opacity: .5
    }
    100% {
        -webkit-transform: rotate(0) scale(1) skew(1deg);
        -webkit-opacity: .1
    }
}

@-webkit-keyframes phonering-alo-circle-fill-anim {
    0% {
        -webkit-transform: rotate(0) scale(.7) skew(1deg);
        opacity: .6
    }
    50% {
        -webkit-transform: rotate(0) scale(1) skew(1deg);
        opacity: .6
    }
    100% {
        -webkit-transform: rotate(0) scale(.7) skew(1deg);
        opacity: .6
    }
}

.banner-slider .slick-arrow {
    display: none!important;
}

.banner-slider ul.slick-dots {
    bottom: -15px;
}

.form-group .form-control:focus {
    box-shadow: none;
    border-color: var(--third-color);
}

.fiexedBg {
    background: rgb(0 0 0 / 60%);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99;
    width: 100%;
    height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    outline: 0;
}

body.mobile-menu .fiexedBg {
    display: block!important;
}

.login-section:before {
    content: '';
    mask: radial-gradient(67.08px at calc(100% - 90px) 50%, #000 99%, #0000 101%) 0 calc(50% - 60px)/100% 120px, radial-gradient(67.08px at calc(100% + 60px) 50%, #0000 99%, #000 101%) calc(100% - 30px) 50%/100% 120px repeat-y;
    background: #f1f1f1;
    position: absolute;
    left: 0;
    top: 0;
    width: 45%;
    height: 100%;
}

.login-inner {
    gap: 8px;
    display: flex;
    align-items: center;
    padding:33px 54px 61px 59px;
    z-index: 2;
    position: relative;
    justify-content: center;
}

.login-inner .login-details {
    width: 35%;
    margin-right: 40px;
}

.login-inner .login-form {
    width: 45%;
    background: #f1f1f129;
    padding: 50px 55px;
    border-radius: 30px;
    backdrop-filter: blur(5px);
}

.login-inner .login-form .logo img {
    width: 160px;
    margin-bottom: 10px;
}

.login-inner .login-form .sec-title h4 {
    color: var(--secondary-color);
    background-image: unset;
    background-clip: unset;
    -webkit-text-fill-color: unset;
}

.login-inner .login-form .sec-title p.desc {
    color: #fffffff2;
}

.login-inner .login-form .form-group label {
    color: #fff;
}

.login-inner .login-form .form-group .form-control {
    border-color: #eee;
    background: #eee;
}

.login-inner .login-form .form-check label {
    color: #fff;
    cursor: pointer;
}

.login-inner .login-form .forgot-password a {
    color: #eee;
}

.login-section {
    position: relative;
    padding: 100px 0;
    height: 100vh;
    background: linear-gradient(229deg, var(--grad-primary-color) 0, var(--grad-secondary-color) 100%);
}

.login-section .logo {
    top: 0;
    left: 0;
    position: absolute;
    text-align: center;
    background: #f1f1f1;
    width: max-content;
    margin-left: auto;
    margin-right: auto;
    padding: 12px 16px;
    backdrop-filter: blur(5px);
    /*border-bottom-left-radius: 20px;*/
    border-bottom-right-radius: 20px;
}

.login-section .logo img {
    width: 200px;
    margin-left: auto;
    text-align: center;
}

.login-inner .login-details h4 {
    font-size: 35px;
    color: var(--secondary-color);
    margin-bottom: 13px;
    font-weight: 700;
    text-transform: uppercase;
}

.login-inner .login-details p {
    font-size: 19px;
    margin-bottom: 25px;
    color: var(--primary-color);
}

ul.fea-div {
    display: flex;
    width: 72%;
    flex-wrap: wrap;
    padding: 0;
}

ul.fea-div li {
    width: 50%;
    list-style: none;
}

ul.fea-div li .fea-box {
    text-align: center;
    padding: 28px 40px;
    border-right: 3px solid #4d6c7e;
    border-bottom: 3px solid #4d6c7e;
}

ul.fea-div li .fea-box img {
    width: 106px;
    margin-bottom: 9px;
}

ul.fea-div li .fea-box h6 {
    color: #4d6c7e;
    margin-bottom: 0px;
    font-size: 20px;
}

ul.fea-div li:nth-child(2) .fea-box,
ul.fea-div li:nth-child(4) .fea-box {
    border-right: none;
}

ul.fea-div li:nth-child(3) .fea-box,
ul.fea-div li:nth-child(4) .fea-box {
    border-bottom: none;
}

.login-section .toggle-password {
    float: right;
    cursor: pointer;
    margin-right: 14px;
    z-index: 1;
    margin-top: -34px;
    position: relative;
    color: var(--secondary-color);
}
.step-box p {
    color: #eee;
    font-size: 14px;
    margin-top: 10px;
    width: 79%;
    margin-left: auto;
    margin-bottom: 0px;
    margin-right: auto;
}
.faq .accordion-item {
    border: 0;
    overflow: hidden;
}
.faq .accordion-item .accordion-button {
    padding: 15px;
    font-size: 15px;
}
.faq .accordion-item .accordion-button {
    font-size: 14px;
    background-color: transparent;
    -webkit-box-shadow: none;
    box-shadow: none;
    text-transform: capitalize;
    padding: 13px 13px;
    color: var(--secondary-color);
    font-weight: 600;
}.faq .accordion-item .accordion-button:not(.collapsed) {
    background-color: #f92c8b1c;
    color: var(--first-color);
    padding-bottom: 10px;
}

.faq .accordion-item .accordion-collapse {
    background-color: #f92c8b1c;
}
.faq  .accordion-item .accordion-button::after { 
	    background-size: 13px;
    top: 4px;
    position: relative;
}
.faq .accordion-item .accordion-collapse .accordion-body {
    font-size: 13px;
}
.accordion-button:not(.collapsed)::after {
    top: -5px !important;
}
.br-10 {
    border-radius: 10px;
}
.industry-wrap {
    /* width: 20%; */
    background: #fff;
    padding: 6px 36px;
    border-radius: 10px;
}
 .default-padding.industries {
    background: #dddddd4d;
}
.industry-wrap .image-part {
    overflow: hidden;
    width: 100%;
    height: 100px;
    display: table;
}

.industry-wrap .image-part .industry-img {
    display: table-cell;
    vertical-align: middle;
    width: 100%;
    text-align: center;
}

.industry-wrap .image-part .industry-img img {
    margin: 0 auto;
    transform: scale(1);
    transition: all 0.9s;
    display: block;
    width: auto;
    max-width: 115px;
    /* max-width: 100%; */
}
 
.industry-slider .slider-item {
    margin: 0 5px;
}
.industry-slider .slick-arrow {
    display: none!important; ; 
}
.card-type {
    padding: 20px;
    border: 1px solid #eee;
    border-radius: 10px;
    box-shadow: 0 8px 5px 0 #225ab60a, 0 0 4px 0 #295cb012;
    transition: all 0.3s ease-in-out;
}

.card-type .card-icon {
    margin-bottom: 5px;
}

.card-type .card-icon img {
    width: 100px;
} 
.card-type .card-details h4 {
    font-size: 21px;
    color: var(--secondary-color);
}

.card-type .card-details p {
    margin-bottom: 6px;
    font-size: 14px;
    line-height: 23px;
    color: #6c6767eb;
}

.card-type .card-details a {
    color: var(--third-color);
    font-weight: 500;
    font-size: 15px;
    text-decoration: underline;
}

.card-type:hover {
    transform: translateY(-5px);
    transition: 0.5s;
}
.achievment-element span {
    line-height: 1;
}
.counter-section {
    padding-top: 150px;
    padding-bottom: 150px;
    position: relative;
    background: #f8f9fa;
}

.counter-section .sec-title h4 {
    font-size: 29px;
    line-height: 45px; 
    margin-bottom: 18px;
}
 

.counter-section .sec-title p.desc {
    font-size: 16px;
    line-height: 26px;
}

.achievment-element .digit {
    position: relative;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}
.achievment-element.achiev-bg1 {
    width: 237px;
    height: 237px;
    font-size: 50px;
    font-weight: 700;
    position: relative;
    background-image: linear-gradient(90deg, #8624e1 0%, #c180ff 100%);
}
.achievment-element {
    color: #fff;
    font-weight: 700;
    position: relative;
    text-align: center;
    display: inline-block;
    background-size: cover;
    font-family: poppins,sans-serif;
    background-repeat: no-repeat;
    border-radius: 50%;
    box-shadow: 0 5px 20px 0 rgba(0,3,136,.1);
}
.achievment-element p{
	font-size: 17px;
}
.achievment-element span{
	line-height: 1;
}
.achievment-element.achiev-bg2 {
    margin-top: -98px;
    left: 219px;
    width: 140px;
    height: 140px;
    font-size: 24px;
    font-weight: 700;
    position: absolute;
    background-image: linear-gradient(30deg,#ff3a47 0%,#ff3aa5 100%);
}
.achievment-element.achiev-bg3 {
    top: 50px;
    right: 0px;
    width: 160px;
    height: 160px;
    font-size: 30px;
    font-weight: 700;
    position: absolute;
    background-image: linear-gradient(30deg,#f82c8c 0%,#b12cd5 100%);
}
.achievment-element.achiev-bg4 {
    left: 45%;
    width: 140px;
    bottom: -100px;
    height: 140px;
    font-size: 24px;
    font-weight: 700;
    position: absolute;
    background-image: linear-gradient(30deg,#04e8af 0%,#5959fa 99%);
}

.achievment-block {
    position: relative;
}
.blog-item {
    border: 1px solid #eaebed;
    border-radius: 12px;
    overflow: hidden;
    background: #f3f3f3;
    transition: .5s all ease;
    position: relative;
    margin-bottom: 20px;
}

.blog-item .blog-descr {
    padding: 17px 20px;
}

.blog-item .blog-img {
    position: relative;
    width: 100%;
    height: 236px;
    overflow: hidden;
}

.blog-item .blog-img img {
    max-width: 100%;
    width: 100%;
    height: 100%;
    transition: .5s all ease;
}

.blog-item .blog-descr .blog-title {
    line-height: 24px;
    font-size: 17px;
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 13px;
}

.blog-item .blog-descr .blog-text {
    color: #4e4e4e;
    font-size: 15px;
}

.blog-item:hover {
    box-shadow: 0px 5px 15px -4px rgb(0 0 0 / 20%);
}

.blog-item:hover img {
    transform: scale(1.1);
}
.footer-widget p.abt-com {
    font-size: 13px;
    color: #585757;
}.plan-flex .plan-includes .compare-col .btn {
    margin-top: 10px;
}
.blog-item .date-blog {
    position: absolute;
    top: 0;
    right: -1px;
    text-align: center;
    border-radius: 8px 8px 0px 8px;
    padding: 7px 14px;
    z-index: 1;
    line-height: 20px;
    color: #fff;
    font-weight: 600;
    background: linear-gradient(229deg, var(--grad-primary-color) 0, var(--grad-secondary-color) 100%);
}
.form-group i.down-arrow {
    position: absolute;
    top: 43px;
    right: 12px;
    font-size: 14px;
}
.vedio-sec {}

.vedio-sec .video-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100px;
    height: 100px;
    background: linear-gradient(229deg, var(--grad-primary-color) 0, var(--grad-secondary-color) 100%);
    line-height: 85px;
    font-size: 40px;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    border: 0px;
    transform: translate(-50%, -50%);
    animation: waveBtn 2.5s infinite;
    box-shadow: 0px 15px 27px 3px rgba(190, 123, 253, 0.9);
}
@keyframes waveBtn {
	  0% {
		box-shadow: 0 0 0 0 rgba(0, 0, 255, 0.3);
	  }
	  50% {
		box-shadow: 0 0 0 40px rgba(255, 0, 0, 0);
	  }
	  100% {
		box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
	  }
	}

.faq-img {
    position: relative;
}

.vedio-sec .video-btn i {
    line-height: 0px;
}
.p-30{
    padding: 30px!important;
}
section.breadcrumb {
    text-align: center;
    padding: 15px 0 15px;
    background: linear-gradient(229deg, #e0c0ff 0, #ffcee7 100%);
    margin: 0px;
}

.breadcrumb-content {}

.breadcrumb-content h2 {
    font-size: 32px;
    line-height: 40px;
    font-weight: 700;
    margin: 0 0 9px;
    color: var(--secondary-color);
}
  
ul.breadcrumb-menu li {
    font-size: 16px;
    line-height: 20px;
    display: inline-block;
    position: relative;
    color: var(--third-color);
    font-weight: 500;
    padding-right: 10px;
    margin-right: 11px;
}
 

ul.breadcrumb-menu li:last-child {
    margin: 0px;
    padding: 0px;
}

ul.breadcrumb-menu li:first-child:after {
    content: '';
    position: absolute;
    top: 2px;
    right: -4px;
    height: 17px;
    width: 2px;
    background-color: var(--third-color);
}

ul.breadcrumb-menu li a {
    color: var(--primary-color);
}
.cont-box {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
}

.cont-box .i-icon {
    width: 96px;
    height: 96px;
    position: relative;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: center;
    background-color: #f7f7f7;
    transition: all ease .5s;
    text-align: center;
    border-radius: 15px;
    margin-right: 16px;
}

.cont-box .i-icon i {
    line-height: .8;
    font-size: 31px;
    position: relative;
    margin: 0 auto;
    color: var(--primary-color);
    display: block;
    transition: all ease .5s;
}
 

.cont-box .con-desc h4 {
    font-size: 21px;
    color: var(--third-color);
    margin-bottom: 5px;
    font-weight: 400;
}
.newsletter.design2 {
    background: linear-gradient(229deg, var(--grad-primary-color) 0, var(--grad-secondary-color) 100%);
}

.newsletter.design2:before {
    content: none;
}
.newsletter.design2 p {
    color: #eee;
}
.theme-box {
    position: relative;
    margin-bottom: 10px;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #eee; 
}

.theme-box .theme-img {
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.theme-box .theme-img img {
    width: 100%;
    height: auto;
    transition: .5s all ease;
}

.theme-box .theme-desc {text-align: center;padding: 13px 12px;background: #eee;}

.theme-box .theme-desc h4 {
    margin-bottom: 0px;
    font-size: 19px;
} 

.theme-box:hover img {
    transform: scale(1.06);
}
.theme-box:hover .theme-desc h4 {
    color: var(--primary-color);
} 
#videoModal button.close {
    background: transparent;
    padding: 0px;
    border: none;
    line-height: 18px;
    font-size: 27px;
    margin-left: auto;
}

#videoModal .modal-header {
    border-bottom: none;
} 

.modal-body .video-box iframe {
    width: 100%;
    height: 400px;
}

#videoModal .modal-body {
    padding-top: 0px;
}
.footer-partner-block {}

.footer-partner-block .footer-partner-title {
    position: relative;
    display: block;
    text-align: center;
    margin: -15px auto 10px;
}

h6 {}

.footer-partner-block .footer-partner-title h6 {
    position: relative;
    display: inline-block;
    background: var(--primary-color);
    font-size: 13px;
    font-weight: 500;
    padding: 5px 10px;
    border-radius: 30px;
    color: #fff;
    z-index: 1;
}

.footer-partner-block .footer-partner-title:before {
    content: "";
    position: absolute;
    display: block;
    top: 40%;
    left: 0px;
    right: 0px;
    width: 548px;
    height: 1px;
    background: var(--third-color);
    margin: 0px auto;
}

.footer-partner-block ul.footer-partner-list {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    padding: 0;
    list-style: none;
}

.footer-partner-block ul.footer-partner-list li {
    position: relative;
}

.footer-partner-block ul.footer-partner-list li a {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #e8e8e8;
    border-radius: 4px;
    width: 120px;
    height: 60px;
    padding: 5px 10px;
    overflow: hidden;
    margin: 5px;
}

.footer-partner-block ul.footer-partner-list li img {
    max-width: 100%;
    width: 100%;
    transition: .5s all;
}
.footer-detail-content {
    background: #e8e8e8;
    padding: 8px 0px;
    text-align: center;
}

.footer-detail-content .footer-brand-list {
    position: relative;
    margin-bottom: 10px;
}

.footer-detail-content .footer-brand-list ul {
    display: block;
    text-align: center;
    margin-bottom: 0px;
    padding: 0;
}

.footer-detail-content .footer-brand-list ul li {
    display: inline-block;
    position: relative;
}

.footer-detail-content .footer-brand-list ul li a {
    display: inline-block;
    padding-right: 10px;
    margin-bottom: 5px;
    margin-right: 10px;
    font-size: 12px;
    font-weight: 500;
    color: #555;
}

.footer-detail-content .footer-brand-list ul li a:after {
    content: '';
    position: absolute;
    width: 1px;
    height: 15px;
    border-right: 1px solid #7b7b7b;
    top: 7px;
    right: 9px;
}

.footer-detail-content .footer-brand-list ul li a:hover {
    color: var(--primary-color);
}
/**/
.popup {
    display: none; 
    position: fixed; 
    z-index: 1000; 
    left: 0;
    top: 0;
    width: 100%; 
    height: 100%; 
    background-color: rgba(0,0,0,0.8);
    justify-content: center; 
    align-items: center;
}

.popup iframe {
    width: 80%; /* Set iframe width to 80% of the screen */
    height: auto; /* Allow height to adjust automatically */
    max-height: 90%; /* Prevent it from getting too tall */
}

.close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: white;
    font-size: 40px;
    cursor: pointer;
}
.indicator-img i {
    font-size: 35px;
    background-image: linear-gradient(229deg, var(--grad-primary-color) 0, var(--grad-secondary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
/**/.img-modal-block {
    overflow: hidden;
    position: fixed;
    right: 0;
    width: 100%;
    bottom: 0;
    left: 0;
    margin: 1.75rem auto;
    top: 0;
    width: 100%;
    transition: transform .3s ease-out, -webkit-transform .3s ease-out;
    z-index: 1000;
    transition: all .5s ease-in-out;
}

.modalbg {
    overflow: hidden;
    position: fixed;
    z-index: 999;
    background: rgba(0, 0, 0, 0.5);
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    transition: opacity 250ms;
}

.img-modal-block img {
    width: 100%;
    height: auto;
}

.img-modal-block .inner {
    padding: 0 20px;
    height: 100%;
    display: flex;
    align-items: center;
    position: relative;
    justify-content: center;
}
.close-btn {
    position: absolute;
    right: 10px;
    top: 0;
    background-color: #fff;
    border: none;
    padding: 0px;
    height: 40px;
    width: 40px;
    font-size: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 0px;
    border-radius: 50%;
    z-index: 99999;
}
.iti {
    display: block;
}

.callback .modal-header .close.btn-close {
    position: relative;
    top: 0;
    right: 0;
    font-size: unset;
}

.callback .modal-header .modal-title {
    font-size: 18px;
}

.callback .modal-header {
    padding: 12px 20px;
}

.callback .modal-body {
    padding: 18px 20px;
}
.industry-row {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}
.industry-row.my-clients {
    gap: 9px;
    justify-content: center;
}

.industry-row.my-clients .industry-wrap {
    padding: 7px 10px;
}

.industry-row.my-clients .industry-wrap .image-part {
    height: 87px;
}

.industry-row.my-clients .industry-wrap .image-part img {
    max-height: 68px;
}
.iti__country-list{
    max-height: 150px; 
    max-width: 458px
}


.testimonial-section.ds2 {
    background: var(--third-color);
    position: relative;
}
.testimonial-section.ds2:before {
    position: absolute;
    content: '';
    width: 50%;
    top: 0px;
    height: 100%;
    right: 0px;
    background: var(--secondary-color);
}

.testimonial-section.ds2 .row {
    z-index: 2;
    position: relative;
}
.testimonial-section.ds2 .client-div {
    padding-left: 20px;
}
.price-explain .price-type-div {
    margin-top: 20px;
}

.price-explain .price-type-div .price-type-btn {
    margin-bottom: 11px;
}

.price-explain .price-type-div .price-type-btn .btn {
    width: 100%;
    justify-content: center;
}
.commision-block {
    margin-top: 20px;
} 

.total-no-div .form-group {
    display: flex;
    align-items: center;
    border-bottom: 2px solid #b262ff87;
}

.total-no-div .form-group label {
    width: 61%;
    margin-bottom: 0px;
    font-size: 17px;
}

.total-no-div .form-group .form-control {
    border: none;
    width: -webkit-fill-available;
    background: transparent;
    padding-left: 4px; 
} 

.commision-chart h4 {
    padding: 11px 16px;
    background: #eee;
    margin-bottom: 0px;
    font-size: 23px;
    font-weight: 700;
    color: var(--secondary-color);
}

.comm-table {
    background: #fff;
    padding: 10px 15px;
} 

.comm-table .table tr th {
    font-weight: 600;
    padding: 10px 7px;
}
.comm-table .table tr td {
    padding: 10px 7px;
    font-size: 14px;
    color: #000;
}
.comm-table .table tr {
    border-bottom: 2px solid #00000013;
}

.comm-table .table thead {
    border-color: #000;
}
.commision-chart {
    border: 1px solid #e0e0e0;
}
.comm-table .table tbody tr:last-child {
    border-color: transparent;
    border-width: 0px;
}
.summary-box {
    padding: 16px 20px;
    background: linear-gradient(229deg, var(--grad-primary-color) 0, var(--grad-secondary-color) 100%);
}

.summary-box ul {
    list-style: none;
    padding: 0px;
    margin: 0px;
    display: flex;
    align-items: center;
}

.summary-box ul li {
    width: 50%;
    color: #fff;
    font-weight: 700;
}

.summary-box ul li span {
    color: #eee;
    font-weight: 400;
    display: block;
}

.summary-box ul li.mon-income {
    font-size: 23px;
    text-align: end;
    color: var(--secondary-color);
}

.summary-box ul li.mon-income span {
    font-size: 17px;
}
.signup-renew {
    margin-bottom: 25px;
}
.industries-page .industry-wrap {
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.industry-wrap .image-part .industry-img p {
    font-size: 15px;
    margin-bottom: 3px;
    color: var(--secondary-color);
    font-weight: 600;
}

.sidenav .sidenav-box {
    position: fixed;
    left: -73px;
    transition: 0.3s;
    padding: 10px 20px;
    text-decoration: none;
    font-size: 18px;
    color: white;
    border-radius: 5px 5px 5px 5px;
    z-index: 11;
    transform: rotate(90deg);
    text-align: center;
    top: 52%;
    display: flex
;
    background-color: var(--secondary-color);
}
.pricing2 .type-box:hover {
    background: linear-gradient(229deg, var(--grad-primary-color) 0, var(--grad-secondary-color) 100%);
}

.pricing2 .type-box:hover p.plan-price {
    color: #fff;
}

.pricing2 .type-box:hover p.plan-price span.discounted-price {
    color: #ffffff96;
}

.pricing2 .type-box:hover p.desc {
    color: #ddd;
}
.commision-uptitle {
    font-size: 23px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 12px;
    padding-bottom: 5px;
    width: max-content;
    border-bottom: 2px solid var(--primary-color);
}
.policy-text p {
    line-height: 23px;
    font-size: 15px;
    color: #878787;
} 

.policy-text h3 {
    font-weight: 600;
    margin-bottom: 17px;
    font-size: 30px;
    color: var(--secondary-color);
}

.policy-text h4 {
    font-weight: 600;
    margin-bottom: 17px;
    font-size: 25px;
    color: var(--primary-color);
}

.policy-text h5 {
    font-weight: 600;
    margin-bottom: 11px;
    font-size: 19px;
    color: var(--secondary-color);
}
.plan-flex span.sub-heading:first-child {
    border-top: none;
}
.plan-flex .plan-includes .x-mark {
    position: relative;
    display: inline-block;
    font-weight: 700;
    font-size: 18px;
    color: #de3730;
}
.join-aff .card-type {
    margin-bottom: 20px;
    position: relative;
}

.join-aff .card-type ul {
    padding: 0px;
    list-style: none;
    margin: 0px;
    margin-top: 12px;
}

.join-aff .card-type ul li {
    margin-bottom: 10px;
    font-size: 15px;
    padding-left: 19px;
    position: relative;
}

.join-aff .card-type ul li b {
    font-weight: 600;
}

.join-aff .card-type ul li:before {
    content: '';
    position: absolute;
    left: 0px;
    width: 7px;
    height: 7px;
    top: 11px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    border-radius: 100%;
    background: #a85af2;
}
.join-aff .card-type:after {
    content: '';
    position: absolute;
    bottom: -83%;
    width: calc(40% - 100px);
    left: 50%;
    height: 15px;
    border-bottom-left-radius: 8px;
    border-left: 2px solid #ac5ff4;
    border-bottom: 2px solid #ac5ff4;
}

.join-aff .card-type:before {
    content: '';
    height: calc(81% - 11px);
    transition: height 0.5s;
    position: absolute;
    width: 2px;
    background: rgb(172 95 244);
    bottom: -74%;
    left: 50%;
}
.join-aff .card-type.right-div::after {
    border-bottom-right-radius: 8px;
    border-bottom-left-radius: 0px;
    left: 26%;
    border-left: 0px;
    bottom: -71%;
    border-right: 2px solid #ac5ff4;
}
.join-aff .card-type.right-div::before {
    height: calc(70% - 11px);
    bottom: -64%;
}
.join-aff .card-type.last-div{
    position: unset;
}
.join-aff .card-type.last-div:before , .join-aff .card-type.last-div:after{
    content: none;
} 
.become-aff .feature-flex .f-box {
    width: 28%;
    padding: 20px 39px;
}

.become-aff .feature-flex .f-box p {
    margin-top: 9px;
    font-size: 15px;
    color: #666666;
    margin-bottom: 0px;
}
 
.become-aff .feature-flex .f-box:hover p {
    color: #eee;
} 

.become-aff .feature-flex .f-box:nth-child(even) p {
    color: #eee;
}
.gr-2 {
    background: linear-gradient(45deg, var(--third-color), var(--forth-color))!important;
}
.affiliate-slider .slick-arrow {
    display: none!important; 
}
.sec-title h5 {
    color: var(--primary-color);
    font-size: 22px;
}
.be-aff-box {
    margin-bottom: 20px;
    text-align: center;
    margin-top: 46px;
    cursor: pointer;
    background-color: transparent;
    padding: 30px 30px 30px 40px;
    background-image: linear-gradient(180deg, #314DFF14 0%, #FFFFFF 100%);
    border-radius: 10px 10px 10px 10px;
    border-style: solid;
    border-width: 1px 1px 1px 1px;
    border-color: #314DFF4D;
    transition: all 500ms ease;
}

.be-aff-box .icon-div {
    margin-right: auto;
    margin-left: auto;
    background-color: #f9faff;
    padding: 25px;
    width: 104px;
    margin-top: -83px;
    height: 104px;
    background-image: linear-gradient(180deg, #314dff14 0%, #FFFFFF 100%);
    border-style: solid;
    border-width: 1px;
    border-color: #314DFF4D;
    font-size: 49px;
    border-radius: 50%;
    line-height: 0px;
    margin-bottom: 16px;
    color: var(--primary-color);
}
 
.be-aff-box   h5 {
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 20px;
    margin-bottom: 7px;
}

.be-aff-box p {
    margin-bottom: 0px;
    color: #2a3750;
    font-size: 14px;
}

.be-aff-box:hover {
    transition: all 500ms ease;
    background: linear-gradient(45deg, var(--third-color), var(--forth-color));
}


.be-aff-box:hover h5 {
    color: #fff;
}

.be-aff-box:hover p {
    color: #eee;
} 
.newsletter.design2.in-box .newsletter-inner {
    background: var(--secondary-color);
    padding: 36px 45px;
    position: relative;
    border-radius: 30px;
}  

.connect-right-btn .banner-img {
    width: 500px;
    position: absolute;
    bottom: 1px;
    right: -3px;
}
.newsletter.design2.in-box {
    background: transparent;
}
.call-no-icon {
    margin-right: 17px;
    display: inline-flex;
    align-items: center;
    color: #fff;
}

.call-no-icon i {
    line-height: 0px;
    font-size: 30px;
    margin-right: 9px;
}

.call-no-icon span {
    font-size: 20px;
    font-weight: 600;
}
.call-no-icon:hover {
    color: var(--third-color);
}
.no-f-step {
    background: #f9faff;
    margin-bottom: 15px;
    color: var(--secondary-color);
    width: max-content;
    border-radius: 30px;
    font-size: 15px;
    font-weight: 500;
    padding: 7px 20px;
    border: 1px solid #314DFF4D;
}
 
.step-list ul {
    list-style: none;
    padding: 0;
}

.step-list ul li {
    font-size: 15px;
    padding-left: 25px;
    position: relative;
    margin-bottom: 15px;
}

.step-list ul li h6 {
    font-size: 18px;
    color: var(--secondary-color);
    margin-bottom: 4px;
}

.step-list ul li p {
    margin: 0px;
    font-size: 14px;
}

.step-list ul li:before {
    content: '';
    position: absolute;
    left: 4px;
    width: 7px;
    height: 7px;
    top: 11px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    border-radius: 100%;
    background: #a85af2;
}

.gene-top-inner {
    display: flex;
    gap: 10px;
    padding-bottom: 20px;
    margin-bottom: 15px;
    border-bottom: 2px solid #eee;
}

.gene-top-inner .qr-type {
    cursor: pointer;
    gap: 8px;
    display: flex;
    align-items: center;
    background: #f3f3f3;
    padding: 9px 16px;
    border-radius: 10px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    /* border-bottom: 2px solid #ddd; */
}

.gene-top-inner .qr-type .icon-div {/* margin-bottom: 10px; */}

.gene-top-inner .qr-type .icon-div .ty-icon {
    width: 28px;
    filter: grayscale(1);
    opacity: .7;
}

.gene-top-inner .qr-type .type-name {
    margin-bottom: 0;
    font-size: 15px;
}

.generator-box {
    border: 1px solid #eee;
    padding: 16px 20px;
    border-radius: 11px;
    background: #fff;
}
.gene-top-inner .qr-type.active {
    background: #f4eaff;
}  
.gene-top-inner .qr-type.active .icon-div .ty-icon {
    filter: unset;
    opacity: 1;
}

.qr-inner-title {
    font-size: 22px;
    color: var(--secondary-color);
    margin-bottom: 17px;
    font-weight: 600;
}
.show-qr-div {
    border: 1px solid #eee;
    padding: 25px 20px;
    border-radius: 11px;
    background: linear-gradient(229deg, var(--grad-primary-color) 0, var(--grad-secondary-color) 100%);
}

.show-qr-div .qr-img-div {
    padding: 25px 28px;
    width: max-content;
    margin-left: auto;
    box-shadow: rgba(9, 30, 66, 0.25) 0px 4px 8px -2px, rgba(9, 30, 66, 0.08) 0px 0px 0px 1px;
    margin-right: auto;
    background: #fff;
    border-radius: 15px;
}

.show-qr-div .qr-img-div img {
    width: 130px;
}
.generator-box .btn {
    margin-top: 100px;
}
.gene-top-inner .qr-type:hover {
    background: #f4eaff;
}
 
.gene-top-inner .qr-type:hover .icon-div .ty-icon {
    filter: unset;
    opacity: 1;
}
.show-qr-div .download-btn {
    margin-top: 20px;
}
.qr-generator {
    background: #fef5f9;
}
.qr-ty-box {
    transition: all 500ms ease; 
    box-shadow: rgba(0, 0, 0, 0.15) 0px 2px 8px;
    text-align: center;
    background: #fff;
    padding: 23px 20px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.qr-ty-box .icon-div {
    width: 76px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 11px;
}

.qr-ty-box h6 {
    font-size: 18px;
    color: var(--primary-color);
    font-weight: 700;
}

.qr-ty-box p {
    margin-bottom: 0px;
    font-size: 13px;
    color: #717171;
}

.qr-ty-box:hover {
    background: var(--secondary-color);
}

.qr-ty-box:hover img {
    filter: brightness(111);
}

.qr-ty-box:hover h6 {
    color: #fff;
}

.qr-ty-box:hover p {
    color: #eee;
}
.steps-div {
    gap: 30px;
    text-align: left;
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.steps-div .left-div {
    width: 50%;
}

.steps-div .right-div {
    width: 50%;
}

.steps-div h4 {
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 21px;
}

.steps-div p {
    line-height: 27px;
    font-size: 17px;
    text-align: left;
    margin-bottom: 0px;
}
.feature-flex.qr-feature {
    gap: 15px;
    justify-content: center;
}

.feature-flex.qr-feature .f-box {
    width: 13%;
    padding: 15px 15px;
}
.home-page {
    position: relative;
    height: calc(100vh - 0px);
    display: flex
;
    overflow: hidden;
    align-items: center;
}

section.home-page video.bg-video {
    position: absolute;
    z-index: 1;
    filter: blur(10px);
}

.home-page .site-create {
    z-index: 22;
    position: relative;
}

.home-page:before {
    content: ''; 
    opacity: 0.9;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    width: 100%;
    height: 100%;
    background: #ffffff;
}

.home-page .site-create label {
    text-align: center;
    width: 100%;
    font-size: 24px;
    margin-bottom: 20px;
}

.p-rel {
    position: relative;
}
.home-page .site-create .inner .p-rel {
    display: flex;
    border-radius: 58px;
    border: 1px solid #000;
    padding: 30px 70px 30px 30px;
    background: transparent;
}

.home-page .site-create .form-control {
    width: -webkit-fill-available;
    border-radius: 0px;
    border: none;
    border-bottom: 1px solid #000;
    padding: 0;
    background: transparent;
    font-size: 30px;
}

.home-page .site-create .text-fix {
    position: relative;
    font-size: 36px;
    width: max-content;
}

.ok-btn {
    position: absolute;
    color: #fff;
    border: none;
    background: var(--primary-color);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    right: 19px;
    bottom: 30px;
}
.home-page .site-create .form-control:focus{
    box-shadow: none;
    background-color: transparent;
}
.home-page .top-nav-div {
    width: 100%;
    position: absolute;
    top: 0px;
    z-index: 2;
    padding: 12px 15px;
}

.home-page .top-nav-div .d-flex {
    align-items: center;
    justify-content: space-between;
}

.home-page .top-nav-div .logo-div img {
    max-height: 58px;
}
.home-page .footer-detail-content {
    position: absolute;
    width: 100%;
    z-index: 2;
    bottom: 0px;
    background: transparent;
}
.footer-detail-content .footer-brand-list ul li:last-child a::after {
    content: none;
}
section.create-block {
    background: var(--secondary-color);
    position: relative;
}

.create-block .text-div {
    padding: 102px 0 72px 0;
}

.create-block .text-div h4 {
    color: #fff;
    font-size: 21px;
    margin-bottom: 10px;
}

.create-block .text-div .create-txt {
    font-size: 77px;
    color: #fff;
    font-weight: 600;
}

.create-block .text-div .create-txt span {
    color: #f5f5f56e;
}
.create-block:before {
    position: absolute;
    content: '';
    width: 100%;
    height: 50px;
    background: #fff;
    top: 0px;
    border-bottom-left-radius: 35px;
    border-bottom-right-radius: 35px;
}
.create-block .text-div .create-txt:hover {
    border-bottom: 7px solid #fff;
    transition: .2s;
}
.call-connect a {
    display: flex;
    align-items: center;
    gap: 23px;
}

.call-connect a .icon {
    align-items: center;
    justify-content: center;
    display: flex;
    width: 50px;
    border-radius: 50%;
    height: 50px;
    background: var(--primary-color);
}

.call-connect   .icon i {
    font-size: 23px;
    color: #eee;
}

.call-connect .txt {
    font-size: 21px;
} 

.call-connect a:hover {
    color: var(--third-color);
}
.login-inner .login-form .register-txt {
    position: relative;
    margin-bottom: 6px;
    margin-top: 10px;
    font-size: 15px;
    color: #eee;
    width: max-content;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}
.login-inner .login-form .register-txt:after {
    content: '';
    width: 55%;
    background: #eee;
    height: 1px;
    position: absolute;
    right: -103px;
    top: 11px;
}
.login-inner .login-form .register-txt:before {
    content: '';
    width: 55%;
    background: #eee;
    height: 1px;
    position: absolute;
    left: -103px;
    top: 11px;
}

.login-inner .login-form .register-txt a {
    font-weight: 600;
}

.login-inner .login-form .register-txt a:hover {
    color: var(--third-color);
}
.join-aff.onabt-pg .card-type {
    background: #fff;
    margin-bottom: 43px;
    z-index: 1;
    position: relative;
}
.join-aff.onabt-pg .card-type:before {
    height: calc(81% - 11px);
    bottom:-78%;
    left: 26%;
}
.join-aff.onabt-pg .card-type:after{
    bottom: -80%;
    width: calc(64% - 100px);
    left: 26%;
}
.join-aff.onabt-pg .card-type.right-div::before {
   content:none;
}
.join-aff.onabt-pg .card-type.right-div:after{
    content:none;
}
.join-aff.onabt-pg .card-type.right-div {
    margin-bottom: 0px;
}
.stepbox {
    width: calc(61% - 100px);  
    position: relative;
}

.stepbox .inner {
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 27px;    
    border-radius: 20px;
    background: #fff;
    position: relative;
    margin-bottom: 30px;
    box-shadow: 0 8px 5px 0 #225ab61f, 0 0 4px 0 #295cb040;
}
.stepbox .inner .txt {
    padding-right: 15px;
}
.stepbox .inner .img {
    width: 250px;
} 

.steps-two .step-div .stepbox:nth-child(2) {
    margin-left: auto;
} 

.stepbox .inner .txt h5 {
    color: var(--third-color);
    font-weight: 500;
    font-size: 18px;
}

.stepbox .inner .txt p {
    margin-bottom: 0px;
    font-size: 14px;
    color: #4e4e4e;
}
.login-slider .slick-arrow {
    display: none!important; 
} 

.login-slider img {
    /* width: 457px; */
    margin-left: auto;
    margin-right: auto;
}

.login-slider .l-txt {
    text-align: center;
}

.login-slider .l-txt h4 {
    font-size: 26px;
    max-width: 75%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 0px;
}

.login-slider .l-txt span {
    color: var(--third-color);
}
.navbar-right-menu .header-menu .nav-list .nav-menu li.mega:hover {
    position: static;
}

.navbar-right-menu .header-menu .nav-list .nav-menu li.mega .mega-menu .sol-menu-box {
    overflow: hidden;
    padding: 20px 20px;
    text-align: left;
    background: #fff;
    box-shadow: 0 8px 8px rgba(23, 22, 24, 4%), 0 4px 4px rgba(23, 22, 24, 4%), 0 2px 2px rgba(23, 22, 24, 4%);
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    transition: transform .3s cubic-bezier(.175, .885, .32, 1.275);
}

.navbar-right-menu .header-menu .nav-list .nav-menu li.mega .mega-menu .sol-menu-box .icon-menu {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    text-align: left;
    padding-bottom: 15px;
    margin-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.navbar-right-menu .header-menu .nav-list .nav-menu li.mega .mega-menu .sol-menu-box .icon-menu .icon {
    /*width: 35px;
    height: 35px;*/
    padding: 4px 11px;

    background: #edeeff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.navbar-right-menu .header-menu .nav-list .nav-menu li.mega .mega-menu   {
    width: 100%;
    background: transparent;
    box-shadow: none;
    overflow: visible;
}

.navbar-right-menu .header-menu .nav-list .nav-menu li.mega .mega-menu .sol-menu-box .icon-menu .text h6 {
    margin-bottom: 0px;
    font-size: 14px;
}

.navbar-right-menu .header-menu .nav-list .nav-menu li.mega .mega-menu .sol-menu-box .icon-menu .text p {
    line-height: 21px;
    margin-bottom: 0px;
    font-size: 11px;
    color: #000;
    text-transform: capitalize;
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
}

.navbar-right-menu .header-menu .nav-list .nav-menu li.mega .mega-menu .sol-menu-box a {
    padding: 0px;
    display: block;
}

.navbar-right-menu .header-menu .nav-list .nav-menu li.mega .mega-menu .sol-menu-box .icon-menu .icon i {
    font-size: 16px;
}
.stepbox:first-child:before {
    content: '';
    position: absolute;
    width: 500px;
    height: 100px;
    border: dashed 4px #9295bd;
    border-color: #9295bd transparent transparent transparent;
    right: -67%;
    bottom: 17%;
    transform: rotate(25deg);
    border-radius: 50%/100px 100px 0 0;
}
.stepbox:nth-child(2):before {
    content: '';
    position: absolute;
    width: 500px;
    height: 100px;
    border: dashed 4px #9295bd;
    border-color: #9295bd transparent transparent transparent;
    right: 17%;
    bottom: -70%;
    transform: rotate(152deg);
    border-radius: 50%/100px 100px 0 0;
}
.steps-two.design2 {
    background: #f8f7ff;
}
.be-aff-box.wo-bx{
    padding: 27px 28px 20px 30px;
}
.be-aff-box.wo-bx .inner {
    height: 189px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}
.navbar-right-menu .header-menu .nav-list .nav-menu li.mega .mega-menu .sol-menu-box .heading-line {
    height: 35px;
    position: relative;
    display: flex;
    align-items: flex-start;
}

.navbar-right-menu .header-menu .nav-list .nav-menu li.mega .mega-menu .sol-menu-box .heading-line h5 {
    margin-bottom: 0px;
    font-size: 16px;
    background: #fff;
    z-index: 1;
    padding-right: 10px;
}

.navbar-right-menu .header-menu .nav-list .nav-menu li.mega .mega-menu .sol-menu-box .heading-line:before {
    top: 8px;
    content: '';
    border-bottom: 2px solid #eee;
    position: absolute;
    width: 100%;
    height: auto;
}
.why-ch-box {
    display: flex;
    align-items: flex-start;
    background: #f0f2ff;
    padding: 25px 24px;
    border-radius: 20px;
    margin-bottom: 20px;
}

.why-ch-box .ch-icon {
    margin-right: 15px;
}

.why-ch-box .ch-icon img {
    width: 100px;
}
 

.why-ch-box .content h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--secondary-color);
}

.why-ch-box .content p {
    margin-bottom: 0px;
    font-size: 13px;
}
.join-aff.onabt-pg {
    background: #f8f7ff;
} 

.navbar-right-menu .header-menu .nav-list .nav-menu li.mega .mega-menu .sol-menu-box .menu-w-opt h5 {
    margin-bottom: 13px;
    font-size: 15px;
    color: var(--primary-color);
} 

.navbar-right-menu .header-menu .nav-list .nav-menu li.mega .mega-menu .sol-menu-box .menu-w-opt .icon-menu {
    border-bottom: none;
    padding-bottom: 0px;
}
.col-lg-3.col-md-3 {}

.all-services {
    position: sticky;
    top: 111px;
    height: auto;
    width: 100%;
    overflow-x: hidden;
    overflow-y: hidden;
    margin-bottom: 20px;
    padding-right: 10px;
}

.all-services ul.service-items {
    padding: 0px;
    list-style: none;
}

.all-services ul.service-items li {
    position: relative;
}

.all-services ul.service-items li a {
    display: block;
    background: #e3eafd;
    margin-bottom: 16px;
    padding: 14px 20px;
    text-align: center;
    color: var(--secondary-color);
    border: 1px solid #eee;
    border-radius: 10px; 
} 

.all-services ul.service-items li.active a {
    background: linear-gradient(229deg, var(--grad-primary-color) 0, var(--grad-secondary-color) 100%);
    color: #fff;
}
.serv-inner-block .service-title {
    font-size: 25px;
    color: var(--primary-color);
    font-weight: 600;
}

.serv-inner-block p.page-txt {
    font-size: 15px;
    color: #686161;
}
/* fixed side connect */

.fixed-connect-box {
    background-color: #fff;
    border: 1px solid #e2e2e2;
    border-top-left-radius: 15px;
    border-bottom-left-radius: 15px;
    border-right: none;
    box-shadow: -3px 3px 6px 0 rgba(0, 0, 0, .16);
    display: block;
    margin: 0;
    padding: 0;
    position: fixed;
    right: 0;
    text-align: center;
    top: 52%;
    width: 54px;
    z-index: 97; 
}
 

.fixed-connect-box .inner ul {
    display: block;
    margin: 0;
    min-width: inherit;
    padding: 0;
    position: static;
    width: 100%;
    list-style: none;
}

.fixed-connect-box .inner ul li {
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: flex-start;
    margin-bottom: 10px;
    position: relative;
    -webkit-transform: translateX(0);
    transform: translateX(0);
    -webkit-transition: all .85s ease, height .1s, padding .1s;
    transition: all .85s ease, height .1s, padding .1s;
    width: 218px;
    z-index: 9;
    height: 45px;
}

.fixed-connect-box .inner ul li a {
    align-items: center;
    display: flex;
    height: 45px;
    position: relative;
    -webkit-transition: all .45s ease, height .1s, width .1s, opacity .1s;
    transition: all .45s ease, height .1s, width .1s, opacity .1s;
    width: 100%;
}

.fixed-connect-box .inner ul li  .icon {
    color: #004c8f;
    left: 0;
    position: absolute;
    -webkit-transform: translateX(16px);
    transform: translateX(16px);
}

.fixed-connect-box .inner ul li .icon i {
    font-size: 23px;
    line-height: 10px;
    display: block;
}

.fixed-connect-box .inner ul li span.txt {
    color: #000;
    font-size: 14px;
    font-weight: 600;
    left: 0;
    line-height: 1;
    margin-left: 6px;
    opacity: 0;
    position: absolute;
    text-align: left;
    -webkit-transform: translateX(80px);
    transform: translateX(80px);
    -webkit-transition-duration: .55s;
    transition-duration: .55s;
}

.fixed-connect-box .inner ul li:last-child {
    margin: 0px;
}

.fixed-connect-box .inner ul li:hover {
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    align-items: center;
    background-color: #f7f7f7;
    border-radius: 10px 0 0 10px;
    -webkit-box-shadow: 0 0 15px 0 rgba(0, 0, 0, .35);
    box-shadow: 0 0 15px 0 rgba(0, 0, 0, .35);
    justify-content: flex-start;
    overflow: visible;
    right: 0;
    -webkit-transform: translateX(-145px);
    transform: translateX(-145px);
    width: 218px;
}

.fixed-connect-box .inner ul li:hover a {}

.fixed-connect-box .inner ul li:hover .icon {
    -webkit-transform: translateX(15px);
    transform: translateX(15px);
}

.fixed-connect-box .inner ul li:hover .txt {
    opacity: 1;
    -webkit-transform: translateX(40px);
    transform: translateX(40px);
}
.fixed-connect-box .inner ul li .icon.call {
    -webkit-animation: pulseImg 1.5s ease-out 55;
    animation: pulseImg 1.5s ease-out 55;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-timing-function: ease;
    animation-timing-function: ease;
    border-radius: 50%;
}
@-webkit-keyframes pulseImg {
    1% {
        -webkit-box-shadow: 0 0 0 0 #e22b9d;
        box-shadow: 0 0 0 0 #e22b9d
    }

    70% {
        -webkit-box-shadow: 0 0 0 15px #e9000000;
        box-shadow: 0 0 0 15px #e9000000
    }

    to {
        -webkit-box-shadow: 0 0 0 0 #e9000000;
        box-shadow: 0 0 0 0 #e9000000
    }
}

@keyframes pulseImg {
    1% {
        -webkit-box-shadow: 0 0 0 0 #e22b9d;
        box-shadow: 0 0 0 0 #e22b9d
    }

    70% {
        -webkit-box-shadow: 0 0 0 15px #e9000000;
        box-shadow: 0 0 0 15px #e9000000
    }

    to {
        -webkit-box-shadow: 0 0 0 0 #e9000000;
        box-shadow: 0 0 0 0 #e9000000
    }
}

/**/
.newsletter.design2.gr-2 + .create-block {
    margin-top: -40px;
}

.newsletter.design2.gr-2 + .create-block::before {
    background: linear-gradient(170deg, var(--third-color), var(--forth-color))!important;
}
.fixed-connect-box .inner ul li .icon.call i {
    font-size: 23px;
    color: var(--third-color);
}

.fixed-connect-box .inner ul li .icon .bi-whatsapp {
    color: #0d8f50;
}
.blog-dt-div {}

.blog-dt-div h2 {
    margin-bottom: 15px;
    font-size: 30px;
    font-weight: 700;
    color: var(--secondary-color);
}

.blog-dt-div .blog-info-list {
    margin-bottom: 13px;
}

.blog-dt-div .blog-info-list li {
    display: inline-block;
    margin-right: 15px;
    font-size: 15px;
    padding: 0px;
}
.blog-dt-div .blog-info-list li:before{
    content:none;
}

.blog-dt-div .blog-info-list li i {
    color: var(--third-color);
}

.blog-dt-div .blog-img {
    border-radius: 10px;
    margin-bottom: 10px;
}

.blog-dt-div p {
    line-height: 23px;
    font-size: 15px;
    color: #5d5d5d;
    text-align: justify;
}

.blog-dt-div  h4 {
    font-size: 25px;
    color: var(--primary-color);
}

.blog-dt-div h5 {
    font-size: 22px;
    color: var(--third-color);
}

.seprator {
    margin: 20px 0;
    border-bottom: 1px solid #e9e9e9;
}

.blog-dt-div ul {
    margin-bottom: 20px;
}

.blog-dt-div ul li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 6px;
    font-size: 15px;
}

.blog-dt-div ul li:before {content: '';position: absolute;width: 8px;height: 8px;background: var(--secondary-color);border-radius: 50%;left: 3px;top: 7px;}

.blog-dt-div .tag {
    margin-bottom: 10px;
    color: #000;
    font-size: 20px;
    font-weight: 500;
    display: inline-block;
    margin-right: 11px;
}

 .blog-tag {
    display: inline-block;
    border-radius: 40px;
    padding: 7px 19px;
    background: #eaeaea;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 10px;
}

 .blog-tag:hover {
    color: var(--primary-color);
} 
.pre-next-blog .btn-link {
    transition: all .3s ease;
    text-decoration: none;
    display: block;
    text-transform: uppercase;
    color: var(--third-color);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 4px;
    cursor: pointer;
}
.pre-next-blog {
    padding: 10px 0;
}

.pre-next-blog h5 {
    color: var(--secondary-color);
    margin-bottom: 0px;
    font-size: 18px;
    margin-top: 8px;
}

.pre-next-blog .next-blog {
    text-align: right;
    border-left: 1px solid #e9e9e9;
} 

.comment-item-wrap h3.comment-box-title {
    margin-bottom: 15px;
    font-size: 27px;
    font-weight: 700;
    color: var(--secondary-color);
} 
.comment-item-wrap .comment-item {
    display: flex;
    flex-wrap: wrap;
    padding-bottom: 25px;
    margin-bottom: 25px;
    border-bottom: 1px solid rgba(0, 0, 0, .1)
}

.comment-item-wrap .comment-item.reply {
    margin-left: 40px
}

.comment-item-wrap .comment-item:last-child {
    margin-bottom: 0;
    border-bottom: none;
    padding-bottom: 0
}

.comment-item-wrap .comment-item .comment-author-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    position: relative;
    top: 4px
}

.comment-item-wrap .comment-item .comment-author-img img {
    border-radius: 50%;
    width: 100%;
}

.comment-item-wrap .comment-item .comment-author-wrap {
    width: calc(100% - 99px);
    margin-left: 17px;
}

.comment-item-wrap .comment-item .comment-author-wrap .comment-author-name {
    margin: 0 0 7px;
}

.comment-item-wrap .comment-item .comment-author-wrap .comment-author-name h5 {
    line-height: 1;
    margin: 0 20px 0 0;
    font-size: 17px;
    color: var(--primary-color);
    display: inline-block
}

.comment-item-wrap .comment-item .comment-author-wrap .comment-author-name .comment-date {
    display: block;
    font-size: 14px;
    font-weight: 500;
    line-height: 13px;
    color: #303030;
    margin-top: 7px;
}

.comment-item-wrap .comment-item .comment-author-wrap .comment-text p {
    margin: 0
}

.comment-item-wrap .reply-btn {
    display: inline-block;
    line-height: 1;
    font-weight: 600;
    color: var(--secondary-color);
    font-size: 15px;
}

.comment-item-wrap .reply-btn:hover {
    color: var(--third-color);
} 
.comment-form {
    background: #fff;
    padding: 30px 30px;
    box-shadow: -4.104px 11.276px 38px 0px rgba(45, 42, 61, 0.1);
    border-radius: 30px;
}
.post-author-div {
    background: var(--secondary-color);
    display: flex;
    align-items: center;
    padding: 20px 21px;
    border-radius: 20px;
    border: 1px solid #eee;
}

.post-author-div .author-img {
    margin-right: 15px;  
    background: #eee;
    border-radius: 50%;
}

.post-author-div .author-img img {
    border-radius: 50%;
    background: #eee;
}

.post-author-div .user-dt {
    position: relative;
}

.post-author-div .user-dt h5 {
    margin-bottom: 4px;
    font-size: 19px;
    font-weight: 600;
    color: #fff;
}
.post-author-div .user-dt .author-abt {
    color: var(--third-color);
    font-size: 15px;
    margin-bottom: 6px;
    font-weight: 500;
}
.post-author-div .user-dt .post-no {
    top: 0px;
    position: absolute;
    right: 0px;
    font-size: 13px;
    color: #ddd;
}

.post-author-div .user-dt p.desc1 {
    margin: 0px;
    color: #eee;
    font-size: 14px;
    line-height: 24px;
}
.bl-searchbar {
    position: relative;
    margin-bottom: 20px;
}

.bl-searchbar .form-control {
    border: 1px solid #e9e9e9;
    padding: 12px 50px 13px 19px;
    border-radius: 30px;
    width: 100%;
}

.bl-searchbar .btn.btn1 {
    font-size: 14px;
    padding: 11px 11px;
    border-radius: 50%;
    position: absolute;
    right: 7px;
    top: 7px;
}

.sidebar-widget {
    margin-bottom: 20px;
    box-shadow: -4.104px 11.276px 38px 0px rgba(45, 42, 61, 0.1);
    border-radius: 14px;
    border: 1px solid #e9e9e9;
    padding: 12px 16px;
}

.sidebar-widget h4 {
    font-size: 20px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.sidebar-widget ul {}

.sidebar-widget ul li {
    position: relative;
}

.sidebar-widget ul li a {
    margin-bottom: 6px;
    font-size: 14px;
    display: block;
    width: 100%;
    transition: .3s;
    position: relative;

} 


.sidebar-widget ul li.sub-category .sub-div {
    padding-left: 20px;
}

.sidebar-widget ul li.sub-category .sub-div ul {
    padding: 0px;
    list-style: none;
} 

.sidebar-widget ul li.sub-category .sub-div li a {
    color: var(--third-color);
    font-size: 13px;
    margin-bottom: 0px;
}

.sidebar-widget .blog-tag {
    padding: 6px 16px;
    font-size: 13px;
}
.sidebar-widget ul li.sub-category   .down-arrow {
    float: right;
    font-size: 13px;
    top: 3px;
    position: relative;
}

.sidebar-widget ul li.sub-category .sub-div li {
    border-bottom: 1px dashed #eaeaea;
    padding-bottom: 6px;
    margin-bottom: 6px;
}
.sidebar-widget ul li.sub-category .sub-div li a:hover {
    color: var(--primary-color);
}
.join-aff.onabt-pg .card-type:hover {
    background: linear-gradient(45deg, var(--third-color), var(--forth-color));
}

.join-aff.onabt-pg .card-type:hover h4 {
    color: #fff;
}

.join-aff.onabt-pg .card-type:hover p {
    color: #eee;
}

.join-aff .card-type:hover {
    background: linear-gradient(45deg, var(--third-color), var(--forth-color));
}

.join-aff  .card-type:hover h4 {
    color: #fff;
}

.join-aff .card-type:hover ul li {
    color: #eee;
}
.icon-flex-div {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.icon-flex-div .icon-img {
    width: 89px;
}
.join-aff .card-type:hover .icon-img img {
    filter: brightness(6);
} 

.category-rightside-block .service-image {
    text-align: center;
    width: 335px;
    margin-left: auto;
}

.category-rightside-block .service-image img {
    border-radius: 10px;
}

.serv-inner-block {
    margin-bottom: 20px;
}



@media only screen and (max-width: 1366px) {
    .login-inner {
        padding: 26px 1px;
    }
    .login-section:before {
        width: 46%;
    }
    .login-inner .login-details {
        margin-right: 82px;
    }
    .login-inner .login-form {
        padding: 40px 40px;
    }
    .login-section .logo img {
        width: 150px;
    }
    ul.fea-div li:nth-child(2) .fea-box,
    ul.fea-div li:nth-child(4) .fea-box {
        margin-top: 0px;
    }
    ul.fea-div li:nth-child(3) .fea-box,
    ul.fea-div li:nth-child(4) .fea-box {
        border-bottom: none;
        margin-top: -4px;
    }
    ul.fea-div li .fea-box h6 {
        font-size: 17px;
    }
    .navbar-right-menu .header-menu .nav-list .nav-menu li a {
        padding: 18px 0;
        margin-right: 26px;
        font-size: 13px;
    }
    .logo-div img {
        width: 130px;
    }
    .login-inner .login-details h4 {
        font-size: 29px;
        margin-bottom: 7px;
    }
    .login-inner .login-details p {
        font-size: 15px;
    }
    ul.fea-div li .fea-box img {
        width: 75px;
        margin-bottom: 0;
    }
    ul.fea-div li .fea-box {
        padding: 22px 40px;
    }
    .navbar-right-menu .header-menu .nav-list .nav-menu li .sub-menu li a {
        font-size: 11px;
        line-height: 30px;
        padding: 3px 19px;
    }
    .btn.btn2 {
        font-size: 11px;
        padding: 10px 17px;
    }
    .btn.btn1 {
        font-size: 11px;
        padding: 10px 17px;
    }
    .banner-content h3 {
        font-size: 42px;
    }
    .banner-content p {
        font-size: 16px;
        margin-bottom: 15px;
    }
    .banner-content ul li {
        margin-bottom: 6px;
    }
    .banner-content ul li span {
        font-size: 15px;
    }
    .banner-section {
        padding: 65px 0;
    }
    .sec-title h4 {
        font-size: 35px;
    }
    .sec-title p.desc {
        font-size: 13px;
        margin-bottom: 10px;
    }
    .aobut-desc p {
        margin-bottom: 10px;
        font-size: 13px;
    }
    .step-box .icon img {
        width: 50px;
    }
    .step-box .icon {
        height: 100px;
        width: 100px;
    }
    .step-box h5 {
        font-size: 15px;
    }
    .step-box .ser-box-no {
        left: 48px;
        top: 16px;
        font-size: 66px;
    }
    .feature-flex {
        justify-content: center;
    }
    .feature-flex .f-box {
        width: 13%;
        padding: 13px 3px;
    }
    .feature-flex .f-box h5 {
        margin-bottom: 4px;
        margin-top: 6px;
        font-size: 12px;
    }
    .feature-flex .f-box i {
        font-size: 30px;
    }
    .slick-arrow i {
        font-size: 15px;
    }
    .slick-arrow {
        width: 40px;
        height: 40px;
    }
    .card-box1 .inner-txt p {
        font-size: 15px;
    }
    .card-box1 {
        padding: 25px 25px;
    }
    .card-img-box .img2 {
        height: 250px;
    }
    .card-img-box .img1 {
        width: 200px;
    }
    .card-box2 h4 {
        font-size: 26px;
    }
    .card-box2 {
        padding: 39px 41px;
    }
    .card-box2 p {
        font-size: 14px;
    }
    .default-padding {
        padding: 60px 0;
    }
    .price-box h4.box-name {
        margin-top: 0;
        margin-bottom: 6px;
        font-size: 20px;
    }
    .price-box p {
        font-size: 14px;
    }
    .price-box .price-inner-head ul.check-list li {
        font-size: 13px;
        margin-bottom: 2px;
    }
    .price-box .price-inner-head ul.check-list li i {
        font-size: 12px;
        margin-right: 7px;
    }
    .price-box .price-inner-head ul.check-list {
        margin: 0px;
    }
    .price-box .btn-div .btn.btn2 {
        padding: 12px 17px;
    }
    .default-padding.newsletter {
        padding: 80px 0;
    }
    .newsletter-inner h3 {
        font-size: 38px;
        margin-bottom: 20px;
    }
    .newsletter-inner .btn.btn1 {
        font-size: 14px;
        padding: 12px 21px;
    }
    .pricing2 .pr-header h4 {
        font-size: 17px;
    }
    .pricing2 .pr-header p {
        font-size: 14px;
        margin: 0px;
    }
    .pricing2 .price-header .row {
        align-items: center;
    }
    .pricing2 .price-header {
        top: 64px;
        padding: 22px 13px 22px;
    }
    .pricing2 .type-box {
        padding: 11px 12px;
    }
    .pricing2 .pr-type-box h4 {
        font-size: 17px;
    }
    .pricing2 .type-box .price-info .plan-price {
        font-size: 18px;
    }
    .pricing2 .type-box .price-info .desc {
        font-size: 9px;
    }
    .pricing2 .type-box .price-info .plan-price .discounted-price {
        font-size: 11px;
    }
    .plan-flex .features .feature-name {
        font-size: 13px;
    }
    span.tick-mark:before {
        left: -1px;
        top: 50%;
        height: 40%;
        width: 3px;
    }
    span.tick-mark:after {
        bottom: 1px;
        height: 3px;
        width: 83%;
        left: 0;
    }
    .plan-flex .features .feature-name {
        height: 40px;
    }
    .plan-flex .plan-includes .compare-col {
        height: 40px;
    }
    .plan-flex .plan-includes .compare-col .extra-price {
        font-size: 13px;
    }
    .contact-form {
        padding: 40px 40px;
    }
    .form-group .form-control {
        font-size: 12px;
        padding: 9px 15px;
    }
    .form-group label {
        font-size: 13px;
        margin-bottom: 4px;
    }
    .form-group {
        margin-bottom: 10px;
    }
    .footer-bottom .copyright-text {
        font-size: 13px;
    }
    .footer-bottom {
        padding: 8px 0;
    }
    .footer-widget .f-logo img {
        width: 180px;
    }
    .footer-widget .f-logo {
        margin-bottom: 15px;
    }
    .footer-item .footer-title {
        font-size: 20px;
        margin-bottom: 9px;
    }
    .footer-item ul.footer-list li a {
        font-size: 13px;
    }
    .footer-item ul.footer-list:before {
        top: -13px;
    }
    footer {
        padding-bottom: 50px;
        padding-top: 70px;
    }
}

@media only screen and (max-width: 767px) {
    .main-header {
        padding: 8px 0;
    }
    .main-header .logo-div img {
        width: 150px;
    }
    .navbar-right-menu {
        display: none;
        position: fixed;
        top: 0px;
        bottom: 0px;
        height: 100vh;
        width: 352px !important;
        left: -330px;
        background: linear-gradient(229deg, var(--grad-primary-color) 0, var(--grad-secondary-color) 100%);
        z-index: 99999;
        padding: 10px 15px;
        overflow-x: hidden;
        box-shadow: 5px 0px 13px -7px rgb(0 0 0 / 10%);
        overflow-y: auto; 
        animation: slide-in-left 1s forwards;
    }
    body.mobile-menu .navbar-right-menu {
        left: 0px;
        display: block;
    }
    .navbar-right-menu .header-menu .nav-list .nav-menu {
        display: block;
        text-align: left;
    }
    .navbar-right-menu .header-menu .nav-list .nav-menu li a {
        font-size: 14px;
        margin-right: 0px;
        text-align: left;
        padding: 6px 0;
    }
    .navbar-right-menu .right-options {
        margin-top: 15px;
    }
    .nav-menu li .sub-menu {
        position: relative;
        width: 100%;
        opacity: 0;
        height: 0;
    }
    .toggle-menu {
        display: block;
        float: right;
        text-align: right;
        margin-left: auto;
    }
    .toggle-icon {
        position: relative;
        width: 31px;
        height: 20px;
    }
    .toggle-icon span {
        position: absolute;
        width: 100%;
        height: 1px;
        display: inline-block;
        transition: all 0.3s;
        left: 0;
        background: #3f3f3f;
    }
    .toggle-icon span:first-child {
        top: 0;
    }
    .toggle-icon span:nth-child(2) {
        top: 44%;
    }
    .toggle-icon span:last-child {
        bottom: 2px;
    }
    body.mobile-menu .toggle-icon span:first-child {
        transform: rotate(45deg) translate(3px, 9px);
    }
    body.mobile-menu .toggle-icon span:nth-child(2) {
        opacity: 0;
    }
    body.mobile-menu .toggle-icon span:last-child {
        transform: rotate(-45deg) translate(3px, -9px);
    }
    .banner-content h3 {
        font-size: 41px;
    }
    .banner-content p {
        font-size: 16px;
    }
    .banner-section {
        padding: 60px 0;
    }
    .banner-content ul li span {
        font-size: 16px;
    }
    .banner-content ul li i {
        margin-right: 7px;
    }
    .screenshot-carousel .slick-arrow {
        display: none!important;
    }
    .navbar-right-menu .header-menu .nav-list .nav-menu li .sub-menu li a {
        font-size: 12px;
        padding: 5px 19px;
    }
    .navbar-right-menu .header-menu .nav-list .nav-menu li:hover .sub-menu {
        height: auto;
    }
    .banner-img {
        margin-top: 20px;
        height: auto;
    }
    .sec-title h4 {
        font-size: 29px;
    }
    .sec-title p.desc {
        font-size: 15px;
    }
    .aobut-desc p {
        font-size: 11px;
    }
    .feature-flex .f-box {
        width: 31%;
        padding: 11px 2px;
    }
    .feature-flex .f-box.sec {
        width: 31%;
    }
    .feature-flex {
        gap: 10px;
        justify-content: space-between;
    }
    .feature-flex .f-box i {
        font-size: 30px;
    }
    .feature-flex .f-box h5 {
        margin-bottom: 4px;
        margin-top: 5px;
        font-size: 10px;
    }
    .default-padding {
        padding: 60px 0;
    }
    .carousel-inner {
        margin-bottom: 20px;
    }
    .price-box {
        margin-bottom: 15px;
    }
    .pricing2 .price-header {
        top: 72px;
        padding: 18px 0 18px;
    }
    /**/
    .pricing2 .type-box span {
        display: none;
    }
    .pr-type-box {
        background: #f92c8b29;
        display: block;
        border-radius: 42px;
        text-align: center;
        padding: 9px 8px 4px 8px;
        cursor: pointer;
    }
    .pricing2 .type-box {
        background: unset;
        display: block;
        border-radius: 0px;
        text-align: center;
        padding: 0;
    }
    .pricing2 .type-box .price-info .desc {
        display: none;
    }
    .pricing2 .type-box .price-info {
        text-align: center;
    }
    .pricing2 .pr-type-box h4 {
        font-size: 13px;
        margin-bottom: -2px;
    }
    .pricing2 .type-box .price-info .plan-price {
        font-size: 16px;
        line-height: 22px;
    }
    .pricing2 .price-header .col-lg-3.col-4 {
        padding-left: 6px;
        width: 25%;
        padding-right: 0;
    }
    .pricing2 .price-header .col-lg-3.col-4:last-child {
        padding-right: 6px;
        padding-left: 6px;
    }
    .pr-type-box.active {
        background: linear-gradient(229deg, var(--grad-primary-color) 0, var(--grad-secondary-color) 100%);
    }
    .pr-type-box.active .type-box {
        background: transparent;
    }
    .pr-type-box.active h4 {
        color: #fff;
    }
    .pricing2 .pr-header h4 {
        font-size: 17px;
    }
    .pricing2 .pr-header p {
        font-size: 12px;
        margin-bottom: 8px;
    }
    .mb-plan-details .plan-dt-box {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    .plan-flex .plan-includes.hide {
        display: none !important;
    }
    .plan-flex .features {
        width: 55%;
    }
    .plan-flex .plan-includes.active {
        width: 45%;
        display: block;
    }
    .plan-flex .plan-includes .compare-col:nth-child(even) {
        border-radius: 0 16px 16px 0;
    }
    .plan-flex .plan-includes:last-child .compare-col { 
        padding-right: 0;
    }
    .plan-flex .features .feature-name {
        font-size: 14px;
    }
    .footer-bottom .copyright-text {
        text-align: center;
    }
    .footer-bottom .copyright-text {
        font-size: 13px;
    }
    .active {
        display: block;
    }
    .hide {
        display: none;
    }
    .plan-flex .plan-includes .compare-col .extra-price {
        font-size: 13px;
    }
    .plan-flex .features .feature-name span.text {
        font-size: 12px;
    }
    .plan-flex .features .feature-name {
        height: 40px;
    }
    .plan-flex .plan-includes .compare-col {
        height: 40px;
    }
    span.tick-mark:before {
        width: 3px;
    }
    span.tick-mark:after {
        height: 3px;
        width: 83%;
    }
    .testimonial-slider .slick-arrow {
        display: none!important;
    }
    .testimonial-section .sec-title {
        text-align: center;
        margin-bottom: 23px !important;
    }
    .testimonial-block .user-detail .review {
        font-size: 12px;
    }
    .testimonial-block .user-img img {
        width: 50px;
    }
    .testimonial-section .sec-title h4 {
        margin-bottom: 3px!important;
    }
    .testimonial-section .sec-title p.desc {
        font-size: 13px;
    }
    .testimonial-block .user-img .user-name .user-dt {
        font-size: 12px;
    }
    .newsletter-inner h3 {
        font-size: 37px;
        margin-bottom: 15px;
    }
    .default-padding.newsletter {
        padding: 70px 0;
    }
    .newsletter-inner .btn.btn1 {
        font-size: 13px;
        padding: 13px 20px;
    }
    .testimonial-slider ul.slick-dots {
        bottom: -29px;
    }
    .footer-widget .media-footer li a {
        line-height: 34px;
    }
    .footer-widget {
        margin-bottom: 20px;
    }
    .footer-widget .f-logo {
        margin-bottom: 10px;
    }
    .indicator-img {
        margin-right: 11px;
        width: 50px;
        height: 50px;
        line-height: 43px;
        padding: 0;
    }
    .footer-item .footer-title {
        font-size: 21px;
        padding: 5px 13px;
    }
    .card-box1 {
        margin-bottom: 15px;
        padding: 35px 33px;
    }
    .card-img-box .img1 {
        width: 132px;
    }
    .card-img-box .img2 {
        width: auto;
        height: 209px;
    }
    .card-box2 h4 {
        font-size: 27px;
    }
    .card-box2 p {
        font-size: 14px;
    }
    .card-box2 {
        padding: 35px 33px;
    }
    .contact-form {
        padding: 28px 28px;
    }
    .form-group label {
        font-size: 13px;
        margin-bottom: 4px;
    }
    .form-group .form-control {
        font-size: 15px;
        padding: 9px 17px;
        border-radius: 6px;
    }
    .contact-form .btn {
        margin-top: 10px;
    }
    .contact-form .form-group {
        margin-bottom: 10px;
    }
    .card-box1 .inner-txt p {
        font-size: 13px;
    }
    .btn-div .btn {
        margin-right: 8px;
    }
    .navbar-right-menu .right-options .btn.btn2 {
        color: #fff;
    }
    .navbar-right-menu .header-menu .nav-list .nav-menu li a {
        color: #fff;
    }
    .navbar-right-menu .header-menu .nav-list .nav-menu li .sub-menu li a {
        color: var(--secondary-color);
    }
    .login-section .logo img {
        width: 134px;
    }
    .login-section .logo {
        padding: 10px 10px;
    }
    .login-section {
        padding: 34px 0 10px 0;
        height: auto;
    }
    .login-inner {
        padding: 27px 19px;
        display: flex;
        flex-wrap: wrap;
    }
    .login-inner .login-details {
        margin-top: 40px;
        width: 100%;
        margin-right: 0;
        order: 2;
    }
    ul.fea-div {
        width: 100%;
    }
    .login-inner .login-form {
        width: 100%;
        padding: 38px 37px;
        margin-top: 39px;
        order: 1;
        background: #963de9;
    }
    ul.fea-div li .fea-box {
        padding: 15px 26px;
    }
    ul.fea-div li .fea-box img {
        width: 75px;
        margin-bottom: 1px;
    }
    .login-inner .login-form .sec-title h4 {
        font-size: 26px;
    }
    .login-inner .login-form .form-group {
        margin-bottom: 10px;
    }
    .login-inner .login-form .form-group label {
        font-weight: 500;
    }
    .login-inner .login-form .forgot-password a {
        font-size: 13px
    }
    .login-section:before {
        mask: radial-gradient(60.47px at 50% calc(100% - 82.5px), #000 99%, #0000 101%) calc(50% - 60px) 0 / 120px 100%, radial-gradient(60.47px at 50% calc(100% + 52.5px), #0000 99%, #000 101%) 50% calc(100% - 30px) / 120px 100% repeat-x;
        background: #f1f1f1;
        left: 0;
        top: 0;
        width: 100%;
        height: 60%;
    }
    ul.fea-div li:nth-child(2) .fea-box,
    ul.fea-div li:nth-child(4) .fea-box {
        margin-top: 0px;
    }
    .default-padding.counter-section {
        padding-bottom: 150px;
    }
    .achievment-element.achiev-bg1 {
        width: 208px;
        height: 208px;
        font-size: 40px;
    }
    .achievment-element p {
        margin-top: 0px;
        font-size: 16px;
        line-height: 20px;
    }
    .achievment-element.achiev-bg2{
        margin-top: -46px;
        width: 112px;
    height: 112px;
    font-size: 21px;
    }
    .card-type {
        margin-bottom: 15px;

    }
    .carousel-inner .carousel-item img { 
        width: 100%;
        height: auto;
    }
    .carousel-inner .carousel-item {
        width: 100%;
        height: auto;
    }
    .carousel-inner {
        width: 100%;
        height: auto;
    }
    .pt-mb-0{
        padding-top: 0px!important;
    }
    /**/
    .footer-partner-block .footer-partner-title:before{
        width: auto;
    }
    .footer-clientLogo {
        display: block !important;
    }
    .footer-partner-block ul.footer-partner-list{
        display: none;
    }
    .clientLogo-slider a {
        width: 100%;
        margin: 5px 0px;
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
        border: 1px solid #e8e8e8;
        border-radius: 4px;
        height: 60px;
        padding: 5px 10px;
        overflow: hidden;
        margin-bottom: 30px;
    }
    .clientLogo-slider a img {
        width: auto;
        height: 100%;
    }
    .clientLogo-slider .slick-slide {
        height: auto;
        margin: 0 15px;
    }
    .slick-arrow{
        display:none!important;
    }
    .footer-detail-content .footer-brand-list ul li a:after{
        top: 7px;
        right: 5px;
    }
    .footer-detail-content .footer-brand-list ul li a { 
        padding-right: 10px;
        margin-bottom: 2px;
        margin-right: 6px;
        font-size: 10px; 
    }
    .industry-slider ul.slick-dots {
        bottom: -34px;
    }
    .ds-block {
        display: none !important;
    }
    .mb-block {
        display: block !important;
    }
    .indicator-img i {
        font-size: 22px;
    }
    .indicator-text h5 {
        font-size: 15px;
    }
    .indicator-text p { 
        font-size: 11px;
        font-weight: 500;
        line-height: 17px;
        margin-bottom: 0px;
        display: block;
        overflow: unset;
        -webkit-box-orient: unset;
        -webkit-line-clamp: unset;
    }
    .indicator-text {
        width: 84%;
    }
    .industry-row { 
        gap: 10px;
        justify-content: space-around;
    }
    .industry-row .slider-item {
        width: 30%;
    }
    .industry-wrap { 
        padding: 8px 9px;
    }
    .industry-wrap .image-part { 
        height: 75px;
    }
    .industry-row.my-clients {
        margin-top: 0px;
    }
    .industry-row.my-clients .industry-wrap .image-part {
        height: 60px;
    }
    .sec-title.mb-5 {
        margin-bottom: 20px !important;
    }
    .testimonial-slider {
        margin-bottom: 28px;
    }
    .testimonial-section.ds2 .client-div {
        padding-left: .5rem;
        padding-top: 20px;
    }
    .testimonial-section.ds2:before { 
        width: 100%;
        bottom: 0px;
        top:unset;
        height: 46%;  
    }
    .testimonial-section.ds2 .client-div .sec-title {
        text-align: left;
    }
    .price-explain .price-type-div .price-type-btn { 
        display: inline-block;
    }
    .total-no-div .form-group label {
        width: 77%;
        margin-bottom: 4px;
        font-size: 13px;
    }
    .total-no-div {
        margin-bottom: 20px;
    }
    .commision-chart h4 {
        padding: 9px 11px; 
        margin-bottom: 0px;
        font-size: 18px;
    }
    .comm-table { 
        padding: 6px 5px;
    }
    .comm-table .table tr th {
        font-size: 14px; 
        padding: 7px 3px;
    }
    .comm-table .table tr td {
        padding: 7px 3px;
        font-size: 11px;
    }
    .comm-table .table {
        margin: 0px;
    }
    .summary-box ul{
        display:block;
    }
    .summary-box ul li {
        width: 100%;
        font-size: 12px;
    }
    .summary-box {
        padding: 11px 9px;
    }
    .summary-box ul li span{
        display: inline-block;
        margin-right: 4px;
    }
    .summary-box ul li.mon-income {
        font-size: 16px;
        text-align: left;
    }
    .summary-box ul li.mon-income span {
        font-size: 13px;
    }
    .price-box.active { 
        transform: none;
    }
    .pricing2 .type-box:hover p.plan-price {
        color: var(--primary-color);
    }
    .pricing2 .type-box:hover {
        background: transparent;
    }
    .sidenav .sidenav-box{
        display: none;
        right: -60px;
        padding: 11px 15px;
        font-size: 16px;
    }
    .industry-wrap .image-part .industry-img img{
        max-width: 69px;
    }
    .industry-wrap .image-part .industry-img p {
        font-size: 12px;
        margin-bottom: 0;
    }
    .commision-uptitle {
        font-size: 19px;
    }
    .policy-text h3 { 
        margin-bottom: 10px;
        font-size: 26px;
    }
    .policy-text p {
        line-height: 19px;
        font-size: 12px;
    }
    .policy-text h4{
        font-size: 22px;
    }
    .policy-text h5{
        font-size: 16px;
    }
    .breadcrumb-content h2 {
        font-size: 28px;
        margin: 0 0 3px;
        line-height: 29px;
    }
    ul.breadcrumb-menu li a {
        font-size: 12px;
    }
    ul.breadcrumb-menu li {
        font-size: 12px;
    }
    ul.breadcrumb-menu li:first-child:after{
        top: 2px;
        right: -3px;
        height: 14px;
        width: 1px;
    }
    .become-aff .feature-flex .f-box {
        width: 100%;
        padding: 20px 25px;
    }
    .become-aff .feature-flex .f-box h5 {
        font-size: 15px;
    }
    .become-aff .feature-flex .f-box p {
        margin-top: 6px;
        font-size: 14px;
    }
    .join-aff .card-type:before , .join-aff .card-type:after{
        content: none;
    } 
    .join-aff .card-type ul li {
        margin-bottom: 8px;
        font-size: 12px;
        padding-left: 15px;
    }
    .join-aff .card-type ul li:before{ 
        width: 6px;
        height: 6px;
        top: 8px;
    }
    .card-type .card-details h4 {
        font-size: 17px; 
    }
    .connect-right-btn .banner-img {
        width: 100%;
        margin-top: 29px;
        position: relative;
    }
    .newsletter.design2 p {
        font-size: 13px;
    }
    .newsletter.design2.in-box .newsletter-inner { 
        padding: 29px 30px;
    }
    .be-aff-box { 
        margin-top: 46px;
    }
    .be-aff-box .icon-div{
        width: 84px;
        margin-top: -83px;
        height: 84px;
        font-size: 35px;
    }
    .mb-mb-0{
        margin-bottom: 0px!important;
    }
    .sec-title h5 { 
        font-size: 17px;
        line-height: 25px;
    }
    .aobut-desc {
        margin-top: 14px;
    }
    .gene-top-inner {
        flex-wrap: wrap;
        gap: 6px;
    }
    
    .gene-top-inner .qr-type {
        gap: 6px;
        padding: 8px 13px;
    }
    
    .gene-top-inner .qr-type .icon-div .ty-icon {
        width: 19px;
        margin-top: -4px;
    }
    
    .gene-top-inner .qr-type .type-name {
        font-size: 13px;
    }
    .show-qr-div {
        margin-top: 20px;
        margin-right: auto;
        margin-left: auto;
        width: max-content;
    }
    .qr-ty-box {
        padding: 11px 9px;
        margin-bottom: 17px;
    }
    .qr-ty-box .icon-div {
        width: 48px;
    }
    .qr-ty-box h6 {
        font-size: 15px;
    }
    .qr-ty-box p { 
        font-size: 11px;
    }
    .steps-div {
        display: block;
    }
    .steps-div .left-div {
        width: 100%;
    } 
    .steps-div .right-div {
        width: 100%;
    }
    .steps-div h4 { 
        font-size: 20px;
    }
    .steps-div p {
        line-height: 23px;
        font-size: 14px;
    }
    .feature-flex.qr-feature {
        gap: 9px;
    }
    .feature-flex.qr-feature .f-box {
        width: 23%;
        padding: 9px 11px;
    }
    .home-page .site-create label { 
        font-size: 19px;
    }
    .home-page .site-create .form-control { 
        padding: 0; 
        font-size: 17px;
    }
    .home-page .site-create .inner .p-rel{
        padding: 17px 50px 20px 20px;
    }
    .home-page .site-create .text-fix { 
        font-size: 23px; 
    }
    .ok-btn { 
        width: 36px;
        height: 36px;
        right: 13px;
        bottom: 17px;
    }
    .home-page .top-nav-div .logo-div img {
        max-height: 45px;
        width: auto;
    }
    .create-block .text-div .create-txt {
        font-size: 30px;
    }
    .create-block .text-div h4 { 
        font-size: 16px;
    }
    .create-block .text-div {
        padding: 72px 0 33px 0;
    }
    .create-block:before{
        top: -2px;
    }
    .stepbox {
        width: 100%;
        overflow: hidden;
    }
    .stepbox .inner .img {
        width: 85px;
    }
    .stepbox .inner {
        margin-left: 6px;
        margin-right: 6px;
        padding: 15px 12px;
        z-index: 1;
        display: flex;
        align-items: flex-start;
        gap: 13px;
        margin-bottom: 19px;
    }.stepbox .inner .txt {
        padding-right: 0px;
    }
    .stepbox .inner .txt h5 { 
        font-size: 16px;
        margin-bottom: 7px;
    }
    .stepbox .inner .txt p {
        margin-bottom: 0px;
        font-size: 11px;
    }
    .call-connect .txt {
        font-size: 18px;
    }
    .call-connect {
        margin-bottom: 34px;
    }
    .call-connect .icon i {
        font-size: 20px;
    }

    .call-connect a {
        display: flex;
        align-items: flex-start;
        gap: 16px;
    }
    .call-connect a .icon{
        width: 48px; 
        height: 44px;
    }

    .navbar-right-menu .header-menu .nav-list {
        margin-right: 0px;
    }
    .navbar-right-menu .header-menu .nav-list .nav-menu li.mega:hover {
        position: relative;
    }
    .navbar-right-menu .header-menu .nav-list .nav-menu li.mega .mega-menu {
        height: 0px;
    }
    .navbar-right-menu .header-menu .nav-list .nav-menu li.mega:hover .mega-menu {
        height: auto; 
    }
    .navbar-right-menu .header-menu .nav-list .nav-menu li.mega .mega-menu .container {
        padding: 0px;
    }
    .navbar-right-menu .header-menu .nav-list .nav-menu li.mega .mega-menu .sol-menu-box {
        height: 0; 
        border-bottom-left-radius: 0;
        border-bottom-right-radius: 0;
    }
    .navbar-right-menu .header-menu .nav-list .nav-menu li.mega:hover .mega-menu .sol-menu-box {
        height: auto;
    }
    .navbar-right-menu .header-menu .nav-list .nav-menu li.mega .mega-menu .sol-menu-box .icon-menu .icon i {
        font-size: 11px;
        color: var(--secondary-color);
    }
    .navbar-right-menu .header-menu .nav-list .nav-menu li.mega .mega-menu .sol-menu-box .icon-menu .icon {
        padding: 1px 9px;
    }
    .navbar-right-menu .header-menu .nav-list .nav-menu li.mega .mega-menu .sol-menu-box .icon-menu{
        gap: 10px;
    }
    .navbar-right-menu .header-menu .nav-list .nav-menu li.mega .mega-menu .sol-menu-box .icon-menu .text h6 {
        color: var(--secondary-color); 
        font-size: 12px;
    }
    .navbar-right-menu .header-menu .nav-list .nav-menu li.mega .mega-menu .sol-menu-box .icon-menu .text p {
        line-height: 18px;
        margin-bottom: 0px;
        font-size: 10px; 
    }
    .all-services {
        position: relative;
        top: 0;
        padding-right: 0px;
    }
    .serv-inner-block p.page-txt {
        line-height: 19px;
        font-size: 13px;
    }
    .be-aff-box.wo-bx .inner {
        height: auto;
        display: block;
    }
    .be-aff-box.wo-bx {
        margin-top: 44px;
    }
    .why-ch-box{
        padding: 17px 17px;
    border-radius: 15px;
    margin-bottom: 15px;
    }
    .why-ch-box .content h4 {
        font-size: 18px;
    }
    .cont-box .i-icon {
        width: 50px;
        height: 50px;
    }
    .cont-box .i-icon i { 
        font-size: 18px;
    }
    .cont-box .con-desc h4 {
        font-size: 16px;
    }
    .con-desc {
        font-size: 15px;
    }
    .fixed-connect-box .inner ul li{
        margin-bottom: 0;
    }
    .blog-dt-div h2 {
        margin-bottom: 10px;
        font-size: 23px;
    }
    .blog-tag{
        padding: 6px 13px; 
        font-size: 13px;
    }
    .blog-dt-div .tag{
        font-size: 17px;
        margin-right: 6px;
    }
    .blog-dt-div p {
        line-height: 20px;
        font-size: 13px;
    }
    .blog-dt-div h4 {
        font-size: 22px;
    }
    .blog-dt-div h5 {
        font-size: 20px;
    }
    .blog-dt-div ul li { 
        margin-bottom: 4px;
        font-size: 14px;
    }
    .blog-dt-div ul li:before{
        left: 6px;
        top: 9px;
    }
    .pre-next-blog h5{
        font-size: 15px;
    }
    .pre-next-blog .btn-link{
        font-size: 11px;
        margin-top: 4px;
    }
    .post-author-div{
        align-items: flex-start;
        padding: 15px 16px;
        border-radius: 15px;
    }
    .post-author-div .author-img {
        margin-right: 11px;
    }
    .post-author-div .user-dt h5 {
        margin-bottom: 2px;
        font-size: 17px;
    }
    .post-author-div .user-dt .author-abt { 
        font-size: 14px;
        margin-bottom: 3px;
    }
    .post-author-div .user-dt .post-no{
        font-size: 11px;
    }
    .post-author-div .user-dt p.desc1 { 
        font-size: 12px;
        line-height: 20px;
    }
    .post-author-div .author-img img {
        width: 200px;
    }
    .comment-item-wrap .comment-item .comment-author-img {
        width: 57px;
        height: 57px;
    }
    .form-check .form-check-label {
        font-size: 13px;
    }
    .comment-form{
        padding: 23px 23px;
    }
    .blog-dt-div {
        margin-bottom: 25px;
    }


}

@media only screen and (max-width: 420px) {
    .navbar-right-menu{
        width: calc(100% - 59px)!important;
    }
    .main-header .logo-div img {
        width: 114px;
    } 
    .default-padding {
        padding: 40px 0;
    }
    footer {
        padding-bottom: 28px;
        padding-top: 56px;
    }
    .home-page .site-create label { 
        font-size: 15px;
    }
    .home-page .site-create .form-control { 
        padding: 0; 
        font-size: 15px;
    }
    .home-page .site-create .inner .p-rel{
        padding: 17px 50px 20px 20px;
    }
    .home-page .site-create .text-fix { 
        font-size: 19px; 
    }
    .ok-btn { 
        width: 30px;
        height: 30px;
        right: 13px;
        bottom: 17px;
    }
    .login-inner .login-form .register-txt:after { 
        width: 31%; 
        right: -64px;
    }
    .login-inner .login-form .register-txt:before { 
        width: 31%;
        left: -64px;
    }
    .stepbox {
        width: 100%;
        overflow: hidden;
    }
    .stepbox .inner .img {
        width: 85px;
    }
    .stepbox .inner {
        margin-left: 6px;
        margin-right: 6px;
        padding: 15px 12px;
        z-index: 1;
        display: flex;
        align-items: flex-start;
        gap: 13px;
        margin-bottom: 19px;
    }.stepbox .inner .txt {
        padding-right: 0px;
    }
    .stepbox .inner .txt h5 { 
        font-size: 14px;
        margin-bottom: 3px;
    }
    .stepbox .inner .txt p {
        margin-bottom: 0px;
        font-size: 11px;
    }
    .call-connect .txt {
        font-size: 15px;
    }
    .call-connect {
        margin-bottom: 34px;
    }
    .call-connect .icon i {
        font-size: 20px;
    }

    .call-connect a {
        display: flex;
        align-items: flex-start;
        gap: 16px;
    }
    .call-connect a .icon{
        width: 48px; 
        height: 44px;
    }

    .navbar-right-menu .header-menu .nav-list {
        margin-right: 0px;
    }
    .create-block .text-div .create-txt {
        font-size: 26px;
    }
    .create-block .text-div h4 {
        font-size: 14px;
    }
    .create-block .text-div {
        padding: 64px 0 18px 0;
    }
    .banner-content h3 {
        font-size: 36px;
    }
    .banner-content p {
        font-size: 14px;
    }
    .banner-content ul li span {
        font-size: 14px;
    }
    .sec-title h4 {
        font-size: 24px;
    }
    .counter-section .sec-title p.desc {
        font-size: 14px;
        line-height: 24px;
    }
    .be-aff-box h5{
        font-size: 18px;
        margin-bottom: 6px;
    }
    .be-aff-box p { 
        font-size: 12px;
    }
    .be-aff-box.wo-bx {
        padding: 25px 21px 21px 20px;
    }
    .why-ch-box .ch-icon img {
        width: 86px;
    }
    .cont-box .con-desc h4 {
        font-size: 13px;
    }
    .con-desc {
        font-size: 14px;
    }
    .contact-form {
        padding: 20px 20px;
    }
    section.breadcrumb{
        padding: 11px 0 11px;
    }
    .breadcrumb-content h2 {
        font-size: 22px;
        margin: 0 0 0px;
    }
    ul.breadcrumb-menu li {
        font-size: 11px;
        padding-right: 6px;
        margin-right: 6px;
    }
    .footer-bottom .copyright-text {
        font-size: 11px;
    }
    .step-list ul li p { 
        font-size: 12px;
    }
    .no-f-step{
        font-size: 13px; 
    padding: 5px 16px;
    }
    .aobut-desc p {
        font-size: 12px;
    }
    .sec-title p.desc {
        font-size: 12px;
    }
    .pricing2 .price-header {
        top: 68px;
    }
    .navbar-right-menu .header-menu .nav-list .nav-menu li a{
        line-height: 26px;
    }


}

@keyframes slide-in-left {
    0% {
        left: -100%;
    }
    100% {
        left: 0px;
    }
}


