* {
    box-sizing: border-box
}

html {
    /* overflow-x: hidden; */
    scroll-behavior: smooth;
    touch-action: manipulation
}

body {
    margin: 0;
    padding: 0;
    overflow-x: hidden
}

h1, h2, h3, h4, h5, h6, p {
    margin: 0;
    padding: 0
}

a {
    text-decoration: none
}

a:hover {
    text-decoration: none
}

li, ul {
    margin: 0;
    padding: 0;
    list-style-type: none
}

.font-bold {
    font-family: var(--objektive-bold);
    font-weight: 700
}

.font-medium {
    font-family: var(--objektive-medium);
    font-weight: 500
}

.font-regular {
    font-family: var(--objektive-regular);
    font-weight: 400
}

.font-super {
    font-family: var(--text-super)
}

.font-obj-bold {
    font-family: var(--objektive-bold);
    font-weight: 700
}

.font-obj-med {
    font-family: var(--objektive-medium);
    font-weight: 500
}

.font-obj-thin {
    font-family: var(--objektive-thin);
    font-weight: 300
}

.font-obj-reg {
    font-family: var(--objektive-regular);
    font-weight: 400
}

.font-abeze {
    font-family: ABeeZee, sans-serif
}

.height-130 {
    height: 130px
}

.main-menu {
    padding: 23px 7px;
    position: relative;
    z-index: 999;
    background-color: transparent;
    margin: 0 auto;
    max-width: 1197px
}

.header-menu {
    z-index: 99;
    display: flex;
    max-width: 1291px;
    margin: 0 auto;
    padding: 0 15px 0 0;
    align-items: center
}

.header-logo {
    width: 10%
}

.header-logo img {
    max-width: 190px
}

.nav-menu {
    width: 100%;
    padding: 60px 0 30px;
    left: -100%;
    opacity: 0;
    top: 0;
    z-index: 3;
    background-color: var(--bg-white);
    position: absolute;
    -webkit-transition: .3s cubic-bezier(.215, .61, .355, 1);
    transition: .3s cubic-bezier(.215, .61, .355, 1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap
}

.nav-menu.active {
    left: 0;
    opacity: 1;
    -webkit-transition-delay: .2s;
    transition-delay: .2s
}

.nav-list {
    overflow: hidden;
    max-height: 100%
}

.nav-list li {
    display: block;
    position: relative
}

.nav-list li a {
    color: var(--text-grey);
    font-size: 15px;
    padding: 10px 0;
    display: inline-block;
    font-family: var(--objektive-mk1);
    transition: .4s;
    margin: 0 15px;
    position: relative
}

.nav-list li:first-child a {
    margin-left: 0
}

.nav-list li a::after {
    background-color: var(--bg-orange);
    height: 2px;
    transition: .4s;
    position: absolute;
    right: 0;
    bottom: 7px;
    content: "";
    width: 0
}

.nav-list li a:hover {
    text-decoration: none;
    color: var(--color-orange)
}

.login-btn:hover:after, .nav-list li a:hover:after {
    width: 100%;
    left: 0
}

.login-btn::after {
    bottom: -4px
}

#info-banner p a {
    pointer-events: none
}

.nav-list li a svg {
    fill: var(--color-orange);
    width: 15px;
    height: 15px
}

.nav-list li a span {
    color: var(--color-black);
    font-family: var(--objektive-bold);
    font-weight: 700;
}

.nav-btn {
    height: 47px;
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    width: 72px;
    padding: 14px 23px;
    display: block;
    z-index: 999;
    overflow: hidden
}

.nav-btn span {
    background-color: var(--bg-orange);
    height: 3px;
    width: 21px;
    display: block;
    margin: 4px 0;
    position: relative;
    -webkit-transition: all .4s ease, visibility .1s ease;
    transition: all .4s ease, visibility .1s ease
}

.nav-btn.active span {
    height: 3px;
    -webkit-transform-origin: 0;
    transform-origin: 0
}

.nav-btn.active span:first-child {
    top: -2px;
    right: -2px;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg)
}

.nav-btn.active span:last-child {
    right: -2px;
    top: -1px;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    width: 21px
}

.nav-btn.active span:nth-child(2) {
    visibility: hidden
}

.nav-btn span:nth-child(2) {
    margin-left: 8px
}

.login-site {
    margin-left: auto;
    display: inline-block
}

.login-btn {
    font-size: 15px;
    color: var(--color-black);
    font-weight: var(--font-w-semi-bold);
    margin: 0 19px 0 0;
    transition: .3s;
    position: relative
}

.login-btn:hover {
    color: var(--color-orange)
}

.get-start-btn {
    background: var(--bg-orange);
    color: var(--color-white);
    font-size: 16px;
    border-radius: 10px;
    padding: 9px 35px;
    position: relative;
    border: none;
    font-family: var(--objektive-regular)
}

.get-start-btn::before, .hover-btn::before {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    transition: .5s;
    content: "";
    background: var(--color-black);
    width: 0;
    border-radius: 10px
}

.hover-btn::before {
    border-radius: 5px
}

.get-start-btn:hover::before, .hover-btn:hover::before {
    width: 100%;
    left: 0
}

.get-start-btn span, .hover-btn span {
    z-index: 9;
    position: relative;
    font-weight: normal;
}

.get-start-btn:hover, .hover-btn:hover {
    color: var(--color-white)
}

.get-start-btn:focus, .hover-btn:focus {
    outline: 0;
    box-shadow: none
}

.mobile-orange {
    display: none
}

.Billed_monthly.checked {
    color: var(--text-black) !important
}

.custom-control-label.checked {
    color: var(--text-border) !important
}

@media (min-width: 851px) {
    .nav-btn {
        display: none
    }

    .nav-menu {
        position: relative;
        left: auto;
        top: auto;
        background-color: transparent;
        z-index: 0;
        height: auto;
        opacity: 1;
        padding: 0
    }

    .nav-list {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: space-between;
        overflow: visible;
        max-height: none
    }
}

.banner-sec {
    margin: 61px auto 0 auto;
    max-width: 1232px;
    padding: 0 8px
}

.banner-row {
    display: flex
}

.banner-col-1 {
    width: 49%
}

.banner-col-2 {
    width: 50%
}

.banner-text {
    letter-spacing: 1.3px
}

.banner-text-col {
    margin: 34px auto 0 0;
    max-width: 572px
}

.banner-text h1 {
    font-size: 48px;
    color: var(--color-black);
    font-weight: var(--font-w-bold);
    word-spacing: 1px
}

.banner-text span {
    color: var(--color-orange)
}

.banner-text p {
    font-size: 17px;
    color: var(--color-black);
    padding: 36px 0 20px;
    line-height: 23px
}

.banner-search {
    position: relative;
    max-width: 381px
}

.banner-search input[type=search] {
    background-color: transparent;
    border: 1px solid var(--color-lite-grey);
    display: inline-block;
    padding: 13px 52px;
    color: var(--color-black);
    width: 99%;
    outline: 0;
    font-family: var(--objektive-thin);
    font-weight: 800
}

.banner-search input[type=search]::placeholder {
    color: var(--color-lite-grey)
}

.banner-search i {
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    height: fit-content;
    font-size: 20px;
    color: var(--color-lite-grey);
    left: 18px;
    font-weight: 100
}

.banner-btn-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 65%;
    padding: 12px 0 0
}

.btn-col-1 p {
    font-size: 11px;
    font-family: var(--objektive-regular);
    color: var(--color-black);
    text-align: center;
    margin-top: 8px
}

.btn-col {
    transform: translate(0, -10px)
}

.acc-btn {
    background: var(--bg-orange);
    color: var(--color-white);
    font-size: 15px;
    border-radius: 10px;
    padding: 12px 70px;
    font-family: var(--objektive-regular);
    display: inline-block;
    position: relative
}

.acc-btn::before {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    transition: .5s;
    content: "";
    background: var(--color-black);
    width: 0;
    border-radius: 10px
}

.acc-btn:hover span {
    z-index: 9;
    position: relative
}

.acc-btn:hover::before {
    width: 100%;
    left: 0
}

.acc-btn:hover {
    color: var(--color-white)
}

.free-one-btn::before {
    background: var(--bg-white)
}

.free-one-btn:hover span {
    color: var(--color-black)
}

.demo-btn {
    position: relative;
    display: inline-block
}

.demo-btn::before {
    position: absolute;
    background-image: url(../images/Group20.png);
    background-repeat: no-repeat;
    width: 67px;
    height: 35px;
    content: "";
    left: -88px;
    transform: scaleY(-1);
    top: 34px
}

.demo-btn span {
    color: var(--text-black);
    text-decoration: underline;
    font-family: var(--objektive-mk1);
    font-size: 13px;
    display: inline-block
}

.demo-btn span::before {
    position: absolute;
    content: "\f01d";
    font-family: FontAwesome, serif;
    color: var(--color-black);
    left: -32px;
    font-size: 28px;
    top: -6px;
    margin: auto;
    bottom: 0
}

.banner-image img {
    max-width: 100%
}

.free-one-sec .container {
    max-width: 1436px
}

.free-one-sec {
    margin: -23px 0 0
}

.free-one-bg {
    background-image: url("../images/bg/Vector_1.png");
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: center
}

.free-row {
    padding: 77px 33px 35px 0;
    align-items: center;
    position: relative;
    display: flex;
    margin: 0 0 0 auto;
    justify-content: space-around;
    max-width: 1292px
}

.free-col-2 {
    position: relative;
    display: flex;
    align-items: center
}

.free-one-para p {
    color: var(--color-white);
    font-size: 32px;
    word-spacing: 4px
}

.free-one-para span {
    text-decoration: underline
}

.acc-btn.free-one-btn {
    padding: 11px 6px;
    width: 208px;
    height: 43px;
    text-align: center;
    position: relative
}

.acc-btn.free-one-btn:hover {
    color: var(--color-white)
}

.free-col-2 span img {
    max-width: 100%;
    transform: translate(4px, -14px)
}

.how-work-sec {
    margin: 0 auto 112px
}

.work-col {
    padding-left: 0 !important
}

.how-work {
    padding: 68px 0 15px
}

.how-work h2 {
    color: var(--color-black);
    font-size: 55px;
    font-weight: 700
}

.works img {
    max-width: 100%;
    height: 176px
}

.works-text h5 {
    font-size: 28px;
    color: var(--color-black);
    font-family: var(--objektive-medium);
    word-spacing: -7px;
    font-weight: var(--font-w-semi-bold);
    padding: 0 0 38px
}

.works-text p {
    font-size: 17px;
    color: var(--color-black);
    font-family: var(--objektive-regular);
    margin: 0 auto;
    max-width: 211px;
    line-height: 24px
}

.feature-carousal-container {
    margin: 11px auto 0 auto;
    max-width: 1072px
}

.feature-on-bg {
    background-size: 100% 100%;
    background: url("../images/bg/Vector.png") repeat center;
    height: 280px
}

.feature-heading {
    padding: 35px 0 47px
}

.feature-heading h6 {
    font-size: 22px;
    color: var(--color-white)
}

.feature-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 auto;
    max-width: 1084px;
    flex-wrap: wrap;
    text-align: center
}

.feature-image img {
    max-width: 100%;
    height: auto;
    width: auto
}

.feature-image.feature-image-2 img {
    height: 80px
}

.trust-pilot-sec {
    margin: 108px auto 39px
}

.trust-image img {
    max-width: 100%;
    margin-bottom: 56px
}

.review-bg {
    background-color: var(--color-smok-grey);
    box-shadow: 0 0 9px 0 #545454;
    border-radius: 17px;
    margin: 10px 10px 10px
}

.owl-container {
    margin: 0 auto;
    max-width: 982px
}

.review-text {
    padding: 38px 25px 45px
}

.star-icon i {
    color: var(--color-green);
    font-size: 12px
}

.review-para p {
    color: var(--text-grey);
    font-size: 18px;
    font-family: var(--objektive-regular);
    padding: 20px 0 20px;
    line-height: 25px
}

.client-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 63%
}

.client-image img {
    max-width: 100%
}

.client-para p {
    font-size: 13px;
    font-family: var(--objektive-medium);
    color: var(--text-grey);
    margin-top: 15px
}

.client-para p:nth-child(2) {
    font-size: 9px;
    font-family: var(--objektive-regular)
}

.trust-pilot-carousal.owl-theme .owl-nav .owl-prev::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    left: -62px;
    background-image: url("../images/left.png");
    background-repeat: no-repeat;
    width: 28px;
    height: 50px
}

.trust-pilot-carousal.owl-theme .owl-nav .owl-next::after {
    position: absolute;
    content: "";
    top: 0;
    bottom: 0;
    margin: auto;
    right: -67px;
    background-image: url(../images/right.png);
    background-repeat: no-repeat;
    width: 28px;
    height: 50px
}

.trust-pilot-carousal.owl-theme .owl-nav {
    margin-top: 0 !important
}

.trust-pilot-carousal.owl-theme .owl-nav span {
    display: none
}

.owl-theme .owl-dots .owl-dot {
    outline: 0
}

.customers-about-bg {
    background-image: url("../images/bg/Vector-1.png");
    background-size: 100% 100%;
    background-repeat: repeat;
    padding-bottom: 53px;
    background-position: center
}

.customers-text {
    padding: 122px 0 63px
}

.customers-text h4 {
    font-size: 32px;
    color: var(--color-white);
    font-family: var(--objektive-medium)
}

.customers-text h6 {
    font-size: 23px;
    color: var(--color-white);
    font-family: var(--objektive-light-italic);
    margin: 32px auto 43px;
    max-width: 994px;
    line-height: 1.4
}

.customers-text h6:nth-child(3) {
    color: var(--color-orange);
    font-family: var(--objektive-regular);
    font-style: inherit;
    margin: 0 auto
}

.customers-text p {
    font-size: 12px;
    color: var(--color-white);
    font-family: var(--objektive-thin);
    font-style: italic
}

.we-offer-sec {
    margin: 82px auto 168px;
    padding: 0 10px
}

.we-offer-text h2 {
    color: var(--color-black);
    font-size: 55px;
    border-bottom: 1px solid var(--color-black);
    display: inline-block;
    letter-spacing: -1px;
    font-weight: 700
}

.offer-row {
    display: flex;
    margin: 0 auto 0;
    max-width: 1265px;
    padding: 168px 0 0;
    justify-content: space-between
}

.offer-col {
    width: 41%
}

.offer-image-col {
    width: 57%
}

.offer-text {
    margin: 0 0 0 auto;
    max-width: 480px
}

.offer-text p span {
    position: relative
}

.offer-text p span:after {
    content: '';
    height: 2px;
    width: 100%;
    background: var(--bg-black);
    display: inline-block;
    position: absolute;
    bottom: 2px;
    left: 0;
    right: 0
}

.offer-text h2 {
    color: var(--color-orange);
    font-size: 55px;
    font-family: var(--objektive-bold);
    font-weight: 700
}

.offer-text p {
    color: var(--color-black);
    font-size: 28px;
    padding: 37px 0 67px;
    font-family: var(--objektive-light);
    line-height: 1.4
}

.offer-text a {
    font-size: 32px;
    font-family: var(--objektive-light);
    color: var(--color-black);
    position: relative;
    transition: .4s
}

.offer-text a img {
    margin-left: 6px
}

.offer-image-col img {
    max-width: 100%
}

.offer-row:nth-child(3) {
    flex-direction: row-reverse
}

.offer-col.offer-col-2 {
    text-align: right
}

.offer-text.offer-text-2 {
    margin: 33px auto 0 0;
    max-width: 447px
}

.offer-row.offer-row-3 {
    padding: 200px 0 0
}

.offer-col.offer-col-3 {
    width: 48%
}

.offer-text.offer-text-3 {
    margin: 16px auto 0 auto;
    max-width: 525px
}

.offer-image-col.offer-image-col-3 {
    width: 51.4%
}

.offer-row:nth-child(5) {
    flex-direction: row-reverse
}

.offer-row.offer-row-4 {
    padding: 220px 0 0
}

.offer-text.offer-text-4 {
    margin: 42px auto 0 0;
    max-width: 504px
}

.offer-col.offer-col-4 {
    width: 46%;
    text-align: right
}

.amazon-bg {
    background-image: url("../images/bg/Vector12.png");
    background-size: cover;
    background-repeat: no-repeat;
    padding: 92px 0 73px 0
}

.amazon-text {
    margin: 0 auto;
    max-width: 967px
}

.amazon-text h2 {
    color: var(--color-black);
    font-size: 55px;
    line-height: 61px;
    font-weight: 700
}

.create-acc {
    margin-top: 71px
}

.create-acc-btn::after {
    position: absolute;
    right: -77px;
    background-image: url(../images/Group_822.png);
    background-repeat: no-repeat;
    width: 67px;
    height: 38px;
    content: "";
    top: -8px
}

.extra-plan button {
    position: relative;
  }
  
  .extra-plan button::before {
    content: "";
    position: absolute;
    background: url(../images/Group_822.png);
    background-repeat: no-repeat;
    right: 0;
    top: -8px;
    width: 67px;
    right: -77px;
    height: 38px;
  }
  
.create-acc-btn {
    background-color: var(--bg-orange);
    color: var(--color-white);
    font-size: 15px;
    font-family: var(--objektive-regular);
    padding: 13px 21px;
    border-radius: 9px;
    position: relative;
    display: inline-block
}

.create-acc-btn::before {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    transition: .5s;
    content: "";
    background: var(--color-black);
    width: 0;
    border-radius: 10px
}

.create-acc-btn:hover::before {
    width: 100%;
    left: 0
}

.create-acc-btn:hover {
    color: var(--color-white)
}

.create-acc-btn:hover span {
    color: var(--color-white);
    position: relative;
    z-index: 99
}

.footer-bg {
    background-color: var(--color-dark);
    position: relative;   
}

.footer-bg::after {
    position: absolute;
    bottom: 0;
    right: 0;
    content: ""
}

.footer-row {
    display: flex;
    padding: 18px 0px 9px;
    border-bottom: 1px solid rgba(255, 255, 255, .644);
    margin: 0 auto;
    max-width: 1295px;
}

.footer-logo-col {
    width: 100%;
    max-width: 187px;
    margin-right: 40px
}

.footer-menu-col {
    width: 100%
}

.footer-logo img {
    max-width: 100%
}

.footer-logo {
    padding: 3px 0 0 0
}

.footer-menu-row {
    display: flex;
    margin: 0 auto 0 0;
    padding: 7px 0 0
}

.footer-menu-row .footer-menu {
    margin-right: 100px
}

.footer-menu-row .footer-menu:last-child {
    margin-right: 0
}

.footer-menu-row.footer-menu-row-2 {
    max-width: 394px
}

.footer-menu h6 {
    color: var(--color-white);
    font-size: 11.2px;
    font-family: var(--objektive-medium);
    font-weight: 400;
    line-height: 1.4;
    margin-bottom: 10px;
}
/* .footer-menu .menu-a{
    margin-bottom: 10px;
} */
.footer-menu a {
    color: var(--color-menu);
    display: inline-block;
    font-size: 10px;
    font-family: var(--objektive-regular);
    position: relative;
    line-height: 1.3;
}

.footer-menu a::before {
    background-color: var(--bg-white);
    height: 1px;
    transition: .4s;
    position: absolute;
    right: 0;
    bottom: -2px;
    content: "";
    width: 0
}

.footer-menu a:hover:before {
    width: 100%;
    left: 0
}

.footer-btm-text {
    width: 42%
}

.footer-btm-text ul {
    display: flex;
    flex-wrap: wrap
}

.footer-btm-text ul li {
    margin: 0 10px 0 0
}

.footer-btm-text ul li svg {
    margin: 0 5px 0 0
}

.footer-btm-text ul li a {
    color: var(--color-white);
    font-size: 9.5px
}

.footer-btm-row {
    margin: 0 auto;
    max-width: 1374px;
    display: flex;
    padding: 7px 108px 8px 37px;
    justify-content: space-between;
    align-items: center
}

.footer-icon {
    display: flex;
    justify-content: center;
    width: auto;
    align-items: center;
}

.footer-icon a {
    background-color: var(--color-white);
    border-radius: 50%;
    width: 19px;
    height: 19px
}

.footer-icon a i {
    color: var(--color-black);
    font-size: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    margin: auto
}

.popup-dialog {
    max-width: 509px;
    margin: 3.3rem auto
}

.popup-body {
    padding: 0
}

.popup-content {
    border-radius: 11px
}

.pop-heading h2 {
    font-size: 30px;
    color: var(--color-black);
    font-family: var(--objektive-bold);
    border-bottom: 1px solid var(--color-border);
    padding: 14px 0;
    font-weight: 700
}

.pop-heading p {
    font-size: 15px;
    color: var(--color-black);
    font-family: var(--objektive-medium);
    border-bottom: 1px solid var(--color-border);
    padding: 7px 0
}

.step p {
    color: var(--color-step);
    font-size: 18px;
    padding: 23px 0
}

.form-1 {
    position: relative
}

.form-1 span {
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    height: fit-content;
    height: -moz-fit-content;
    left: 17px
}

.popup-form {
    margin: 0 auto;
    max-width: 455px
}

.popup-form span i {
    color: var(--color-border);
    margin: 0 -27px 0 0;
    z-index: 9;
    position: relative;
    font-size: 18px
}

.popup-form input[type=password], .popup-form input[type=tel], .popup-form input[type=text] {
    display: inline-block;
    border: 1px solid var(--color-border);
    color: var(--color-black);
    font-size: 16px;
    outline: 0;
    width: 100%;
    padding: 13px 55px;
    border-radius: 4px;
    font-family: var(--objektive-regular)
}

.popup-form button[type=button], .popup-form button[type=submit] {
    background-color: var(--bg-orange);
    padding: 10px 12px;
    display: inline-block;
    color: var(--color-white);
    font-size: 20px;
    font-family: var(--objektive-medium);
    border: none;
    outline: 0;
    width: 100%;
    border-radius: 6px;
    font-weight: 500
}

.popup-form input[type=password]::placeholder, .popup-form input[type=tel]::placeholder, .popup-form input[type=text]::placeholder {
    color: var(--color-border);
    font-size: 16px
}

.form-btn {
    margin-top: 33px
}

.or p {
    font-size: 14px;
    color: var(--color-black);
    font-family: var(--objektive-medium);
    padding: 14px 6px
}

.suggestions {
    border: 1px solid var(--color-border);
    margin: 0 auto;
    max-width: 455px;
    border-radius: 6px
}

.zonbase-row {
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--color-border);
    padding: 1px 18px
}

.g-icon img {
    max-width: 100%
}

.g-search p {
    color: var(--color-step);
    font-size: 12px;
    padding-left: 18px
}

.user-row {
    display: flex;
    border-bottom: 1px solid var(--color-border);
    padding: 1px 15px;
    align-items: center
}

.user-image img {
    max-width: 100%
}

.user-text {
    padding-left: 9px
}

.user-text p {
    font-size: 12px;
    color: var(--color-dull);
    text-align: left;
    transform: translate(0, 7px)
}

.user-text a {
    font-size: 10px;
    color: var(--color-dull)
}

.more-text p {
    color: var(--color-more);
    font-size: 10px;
    padding: 6px 0
}

.continue-btn {
    border: 1px solid var(--color-border);
    margin: 38px auto;
    max-width: 455px;
    padding: 10px 0;
    position: relative;
    border-radius: 6px
}

.continue-btn a img {
    position: absolute;
    left: 17px;
    top: 0;
    bottom: 0;
    margin: auto
}

.continue-btn a span {
    color: var(--color-black);
    font-family: var(--objektive-regular);
    font-size: 18px
}

.log-in-text p {
    color: var(--color-black);
    font-size: 16px;
    padding: 10px 0 39px
}

.log-in-text a {
    text-decoration: underline;
    color: var(--color-black)
}

.popup-form-2 {
    margin: 0 auto;
    max-width: 455px
}

.popup-form-2 label {
    color: var(--color-border);
    font-size: 10px;
    font-family: var(--objektive-regular);
    text-align: left;
    position: absolute;
    left: 16px;
    top: 3px
}

.popup-form-2 select {
    display: inline-block;
    border: 1px solid var(--color-border);
    font-size: 16px;
    outline: 0;
    width: 100%;
    padding: 18px 10px;
    border-radius: 6px;
    font-family: var(--objektive-regular)
}

.popup-form-2 select option {
    color: var(--color-black) !important
}

.popup-form-2 input[type=text] {
    display: inline-block;
    border: 1px solid var(--color-border);
    color: var(--color-border);
    font-size: 16px;
    outline: 0;
    width: 100%;
    padding: 18px 10px;
    border-radius: 6px;
    font-family: var(--objektive-regular)
}

.popup-form-2 input[type=text]::placeholder {
    color: var(--color-border)
}

.popup-form-2 button[type=submit] {
    background-color: var(--bg-orange);
    color: var(--color-white);
    font-size: 14px;
    font-family: var(--objektive-medium);
    border: none;
    width: 100%;
    padding: 16px 0;
    border-radius: 8px;
    margin-bottom: 32px
}

header .head-content-1 {
    padding: 94px 0 31px;
    border-bottom: 6px solid var(--color-orange)
}

header .logo img {
    width: 100%;
    max-width: 270px
}

.border-btm {
    border-bottom: 1px solid var(--color-lite)
}

.summery-col {
    border-bottom: 1px solid var(--color-lite-grey);
    padding-bottom: 34px
}

.our-summery h2 {
    font-weight: 700;
    color: var(--color-black);
    font-size: 36px;
    padding: 0 0 20px
}

.our-summery h6 {
    font-weight: 700;
    color: var(--color-black);
    font-size: 16px;
    padding-top: 16px
}

.summery-page {
    margin-top: 77px;
    margin-bottom: 63px
}

.summery-para-row {
    display: flex;
    align-items: flex-end;
    padding: 0 0 15px
}

.summery-text span {
    font-family: var(--objektive-bold);
    position: relative
}

.summery-text span::before {
    position: absolute;
    left: 0;
    bottom: 0;
    top: 4px;
    background-image: url(../images/cross.png);
    width: 51px;
    height: 16px;
    content: "";
    background-repeat: no-repeat;
    margin: auto
}

.summery-text i {
    font-size: 28px;
    padding: 0 25px 0 0;
    color: var(--color-orange)
}

.summery-text h6 {
    font-size: 24px;
    color: var(--color-black);
    font-weight: 400
}

.summery-line {
    margin-left: 16px
}

.summery-line p {
    font-size: 16px;
    color: var(--color-lite);
    font-weight: 400
}

.credit-card-info {
    padding: 28px 0 0
}

.credit-card-info.credit-card-info-2 {
    padding: 16px 0 0
}

.credit-card-info h6 {
    color: var(--color-black);
    font-weight: 600;
    border-bottom: 1px solid var(--color-black);
    display: inline-block;
    font-family: var(--objektive-medium);
    font-size: 16px
}

.credit-card-info p {
    color: var(--color-black);
    font-size: 16px;
    font-family: var(--objektive-regular);
    padding-top: 20px
}

.credit-card-info a {
    color: var(--color-orange);
    font-size: 16px
}

.summery-form {
    padding: 40px 0 0;
    border-bottom: 1px solid var(--color-lite-grey)
}

.summery-form input[type=text] {
    color: var(--color-black);
    border: 1px solid var(--text-summer-grey);
    display: inline-block;
    padding: 12px 22px;
    width: 100%;
    border-radius: 6px;
    font-size: 18px;
    margin: 0 0 27px;
    outline: 0
}

.security {
    margin: 37px 0 0
}

.security input[type=text] {
    border: 1px solid var(--text-summer-grey);
    color: var(--color-black);
    display: inline-block;
    padding: 9px 59px;
    font-size: 18px;
    height: 51px;
    border-radius: 6px !important
}

.security input[type=text]::placeholder {
    color: var(--color-black)
}

.security input[type=date]:focus, .security input[type=text]:focus {
    box-shadow: none !important
}

.security input[type=date] {
    border: 1px solid var(--text-summer-grey);
    color: var(--color-black);
    display: inline-block;
    padding: 9px 0;
    border-radius: 6px;
    font-size: 18px;
    height: 51px;
    border-radius: 6px !important;
    display: flex;
    flex-direction: row-reverse
}

.card-img {
    padding-left: 0
}

.card-img img {
    width: 100%;
    transform: translate(0, -9px)
}

.security-img {
    background: 0 0;
    transform: translate(16px, 0);
    border: none;
    margin: 0 -42px 0 0;
    z-index: 9;
    position: relative
}

.lock-inner {
    margin: 0 0 0 -42px;
    position: relative;
    z-index: 9;
    background: 0 0;
    border: none
}

.thanks-text h1 {
    font-size: 53.3px;
    color: var(--color-orange);
    letter-spacing: 1px;
    font-family: var(--objektive-bold)
}

.choosing-row span {
    font-size: 32px;
    color: var(--color-black);
    font-weight: 700;
    font-family: var(--objektive-bold);
    letter-spacing: -1px
}

.choosing-row img {
    max-width: 48%;
    object-fit: contain
}

.choosing-row {
    display: flex;
    align-items: flex-end;
   
}
.choosing-row .payment-logo{
    margin-left: 15px;
}
.zonbase-design h6 {
    color: var(--color-dull);
    font-family: var(--objektive-medium);
    font-size: 18px;
    padding: 11px 0 0;
    letter-spacing: -.8px
}

.zonbase-design p {
    color: var(--color-dull);
    font-size: 16px;
    font-family: var(--objektive-regular);
    padding: 1px 0 0;
    letter-spacing: -1px
}

.obi-wam {
    display: flex;
    padding: 10px 0 6px
}

.obi-wam-text {
    margin: 0 0 0 auto;
    max-width: 288px
}

.obi-wam-text p {
    font-size: 16px;
    color: var(--color-black);
    font-family: var(--objektive-regular)
}

.para-italic p {
    color: var(--color-dull);
    font-family: var(--objektive-regular);
    font-size: 17px;
    font-style: italic
}

.using-zonbase {
    background-color: var(--bg-orange);
    margin: 13px 0 0;
    border-radius: 11px;
    padding: 24px 0
}

.using-zon-col-1 {
    border-bottom: 1px solid var(--color-white)
}

.using-zon-col-1 h6 {
    color: var(--color-black);
    font-size: 24px;
    font-family: var(--objektive-bold)
}

.using-zon-col-1 p {
    color: var(--color-white);
    font-size: 14px;
    font-family: var(--objektive-medium);
    padding: 8px 0 13px;
    margin: 0 auto;
    max-width: 352px;
    line-height: 21px
}

.order {
    border-bottom: 1px solid var(--color-white)
}

.order p {
    font-size: 26px;
    font-family: var(--objektive-bold);
    color: var(--color-black);
    padding: 7px 0 10px
}

.zonplatinum-col {
    padding: 0 28px
}

.zonplatinum {
    display: flex;
    padding: 15px 0 9px;
    justify-content: space-between
}

.zonplatinum-text p {
    font-size: 14px !important;
    color: var(--color-white)
}

.platinum-form select {
    border: none;
    display: inline-block;
    background-color: transparent;
    color: var(--color-white);
    font-size: 12px;
    font-family: var(--objektive-thin)
}

.platinum-form select option {
    color: var(--color-black)
}

.form-border {
    border: 2px dotted var(--color-black);
    border-radius: 6px;
    margin: 27px 0 0;
    position: relative;
    padding: 9px 23px 19px 32px
}

.has-error .form-border {
    border-color: var(--color-red)
}

.form-border p {
    font-size: 12px;
    font-family: var(--objektive-regular);
    margin: -21px 0 0
}

.form-border label.signup-agreement-label {
    font-size: 12px;
    font-family: var(--objektive-regular);
    margin: 3px 0 0;
    cursor: pointer
}

.form-border a, .form-border span {
    color: var(--color-orange)
}

.thanks-col {
    padding-left: 0;
    padding-right: 0;
    margin: 0 0 0 auto;
    max-width: 388px
}

.zonbase-btm p {
    color: var(--color-white);
    font-size: 10px;
    font-family: var(--objektive-regular);
    padding: 16px 0 0
}

.dotted-box {
    border-top: 1px solid var(--color-lite-grey);
    margin: 21px auto 0;
    max-width: 798px
}

.security-form-btns {
    display: flex;
    padding: 13px 2px 0 25px;
    justify-content: space-between;
    align-items: center
}

.security-code {
    padding: 0 17px !important
}

.back-btn {
    color: var(--color-black);
    font-size: 20px;
    font-family: var(--objektive-bold)
}

.back-btn:hover {
    color: var(--color-black)
}

.trial-btn {
    background-color: var(--bg-orange);
    padding: 12px 37px;
    border: none;
    display: inline-block;
    color: var(--color-white);
    font-size: 24px;
    font-family: var(--objektive-bold);
    border-radius: 6px;
    position: relative
}

.trial-btn:hover {
    color: var(--color-white)
}

.trial-btn::after {
    position: absolute;
    background-image: url("../images/Frame.png");
    background-repeat: no-repeat;
    left: -81px;
    top: 0;
    content: "";
    width: 69px;
    height: 52px
}
.trial-btn-image{
    padding: 0 30px 0 30px;
    position: relative;
    height: 57px;
    line-height: 57px;
}
.trial-btn-image img{
    position: relative;
    z-index: 998;
    left: -37px;
}

.paid-btn-image{
    padding: 0 19px !important;
    position: relative;
    height: 52px;
    line-height: 35px;
}
.paid-btn-image img{
    position: relative;
    z-index: 998;
    left: -19px;
    height: 52px
}
.summery-page-footer {
    margin: 63px 0 0
}

.top-back-page {
    color: var(--color-black);
    font-size: 20px;
    font-family: var(--objektive-bold);
    display: none
}

.page-sec {
    margin-bottom: 124px
}

header .head-content-2 {
    padding: 55px 0 33px;
    border-bottom: 6px solid var(--color-orange)
}

.earn-profit h2 {
    font-size: 35px;
    color: var(--color-black);
    font-family: var(--objektive-bold);
    padding: 26px 0 28px
}

.earn-profit h5 {
    font-size: 25px;
    color: var(--color-black);
    font-family: var(--objektive-regular)
}

.progress-line {
    height: 21px;
    border-radius: 24px;
    margin: 4px auto 25px;
    max-width: 772px
}

.progress-bar-bg {
    background-color: var(--bg-orange);
    border-radius: 0
}

.earn-profit p {
    font-size: 16px;
    color: var(--color-black);
    font-family: var(--objektive-medium)
}

.earn-profit p:nth-child(2) {
    margin: 0 auto 0;
    max-width: 662px
}

.page-video {
    text-align: center;
    margin: 17px auto 0
}

.page-video img {
    max-width: 100%
}

.next-partner-btn {
    background-color: var(--bg-orange);
    padding: 5px 74px;
    display: inline-block;
    border-radius: 5px;
    margin-top: 31px
}

.next-partner-btn p {
    color: var(--color-white);
    font-family: var(--objektive-bold);
    font-size: 22px
}

.next-partner-btn p:nth-child(2) {
    font-family: var(--objektive-regular)
}

.end-text a {
    color: var(--color-black);
    font-family: var(--objektive-bold);
    font-size: 14px;
    border-bottom: 1px solid var(--color-black);
    display: inline-block;
    padding: 47px 0 0
}

.pag2-footer-bg {
    background-color: var(--color-dark)
}

.pag2-footer-logo img {
    max-width: 100%
}

.page2-footer-text p {
    color: var(--color-white);
    font-style: italic;
    font-family: ABeeZee, sans-serif;
    font-size: 16px;
    padding: 0 0 7px;
    letter-spacing: 1px
}

.page2-footer-text a {
    font-family: ABeeZee, sans-serif;
    font-size: 18px;
    color: #b9b9b9;
    line-height: 1.9
}

.page2-col-1 {
    margin: 0 0 0 auto;
    max-width: 246px
}

.page2-col-2 {
    margin: 0 0 0 auto;
    max-width: 221px
}

.page2-col-3 {
    margin: 0 0 0 auto;
    max-width: 229px
}

.page-2-row {
    margin: 0 auto;
    max-width: 1185px;
    padding: 42px 0 21px
}

.page2-space {
    padding: 35px 0 0
}

.page2-btm-bg {
    background-color: var(--color-black)
}

.page2-btm-row {
    justify-content: space-between;
    align-items: center;
    padding: 18px 10px;
    margin: 0 auto;
    max-width: 1243px
}

.page2-btm-text a {
    font-family: ABeeZee, sans-serif;
    color: var(--color-white);
    font-style: italic;
    font-size: 16px;
    font-weight: 400;
    padding: 0 9px
}

.page2-btm-icon {
    display: flex;
    padding: 0 2px;
    justify-content: flex-end
}

.page2-btm-icon a {
    background-color: var(--color-white);
    border-radius: 50%;
    width: 30px;
    height: 30px;
    margin: 0 6px
}

.page2-btm-icon a i {
    color: var(--color-black);
    font-size: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    margin: auto
}

.page2-top-back-page {
    display: none
}

.fix-icon {
    position: fixed;
    right: 0;
    bottom: 10px;
    z-index: 999
}

.fix-icon img {
    width: 40px
}

.flipTimer {
    width: 500px;
    margin: 49px auto 0 auto;
    text-align: center;
    position: relative
}

.dhbrd-clp-ftr-sec .skip-now  {
    margin-bottom: 1rem;
}

/* .sec {
    position: absolute;
    color: #000;
    font-size: 14px;
    bottom: 64px;
    left: 130px
}

.min {
    position: absolute;
    color: #000;
    font-size: 14px;
    bottom: 64px;
    right: 135px
}
 */

/* ===============ali css ===============*/

header .head-content {
    padding: 80px 0 31px;
    border-bottom: 6px solid var(--color-orange)
}

header .logo img {
    width: 100%;
    max-width: 270px
}

section.signup-banner {
    margin-top: 36px
}

section.signup-banner .banner-content {
    font-family: var(--objektive-mk1-bold);
    color: var(--text-black)
}

section.signup-banner .banner-content h1 {
    font-size: 36px
}

section.signup-banner .banner-content p:first-of-type {
    font-size: 16px;
    padding: 11px 0 22px
}

.banner-content .custom-switch .custom-control-label::before {
    width: 50px;
    height: 25px;
    border-color: var(--color-orange);
    border-radius: 20px;
    background-color: var(--bg-orange)
}

.banner-content .custom-switch .custom-control-label::after {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    top: 0;
    left: calc(-2.25rem + -4px);
    border: 1px solid var(--color-orange);
    background: var(--bg-white)
}

.banner-content .custom-control-input:checked ~ .custom-control-label::before {
    background: var(--bg-orange)
}

.banner-content .custom-switch .custom-control-input:checked ~ .custom-control-label::after {
    transform: translateX(1.5rem);
    -webkit-transform: translateX(1.5rem)
}

.banner-content .custom-control label {
    transform: translate(-60px, 4px);
    color: var(--text-border);
    font-size: 15px;
    font-family: var(--objektive-mk1-medium)
}

.banner-content .custom-control label {
    cursor: pointer
}

.banner-content .custom-control label.custom-control-label {
    color: var(--text-black);
    transform: translate(-15px, 0);
    padding-left: 30px;
    padding-top: 5px
}

section.signup-banner .banner-content p:last-of-type {
    margin-top: 15px
}

section.signup-banner .banner-content p:last-of-type span {
    color: var(--text-white);
    display: inline-block;
    background: var(--bg-orange);
    border-radius: 20px;
    padding: 1px 12px
}

section.plan {
    background: url(../images/bg/plan-bg.png) center center no-repeat;
    background-size: 100% 75%;
    padding: 51px 0 0;
    font-family: var(--objektive-mk1-bold)
}

#watchVideoHomePageModal video {
    width: 100%;
    height: auto
}

#watchVideoHomePageModal .btn-orange {
    min-height: 35px
}

#flipdown {
    margin-top: 0 !important
}

.banner-section {
    margin-top: 55px
}

.section__header {
    font-size: 48px;
    line-height: 56px;
    color: var(--color-black);
    margin-bottom: 15px
}

.section__header span {
    color: var(--text-orange)
}

.section__subheader p {
    font-size: 17px;
    line-height: 24px;
    color: var(--color-black);
    font-family: var(--objektive-regular);
    margin-bottom: 31px
}

.email-collector__input {
    outline: 0;
    max-height: 52px;
    padding: 15px 46px 15px;
    background: url(../images/envelope.svg) no-repeat 14px 17px/20px 18px, var(--bg-white);
    border-radius: 4px;
    width: 376px;
    border: 1px solid #cbcbcb;
    box-shadow: 0 4px 8px rgb(0 0 0 / 25%);
    border-left: 4px solid var(--color-orange);
    color: var(--color-black);
    font-family: var(--objektive-regular);
    font-size: 16px;
    line-height: 23px
}

.email-collector__input::placeholder {
    color: var(--text-summer-grey)
}

.fre-trial-btn {
    background: var(--bg-orange);
    box-shadow: 0 4px 4px rgb(0 0 0 / 25%);
    font-size: 15px;
    line-height: 22px;
    text-align: center;
    color: var(--text-white);
    font-family: objektiv-mk1, sans-serif;
    padding: 10.5px 69px;
    margin: 28px 0 37px;
    position: relative;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border-radius: 10px
}

.fre-trial-btn:hover {
    background: var(--bg-black);
    color: var(--text-white)
}

.btn-desc {
    position: absolute;
    left: 100%;
    font: 400 14px/18px objektiv-mk1;
    text-align: left;
    margin-left: 20px;
    max-width: 100px;
    width: 100%;
    color: #919191;
    pointer-events: none;
    top: auto
}

.btn-desc span, .card__text > span {
    font-weight: 700
}

.rating-star {
    width: 21px;
    height: 21px;
    background: url(../images/rating-star.svg) center/contain no-repeat;
    display: inline-block
}

.rating {
    display: inline-block;
    vertical-align: middle;
    margin-right: 20px
}

.card__text {
    font-size: 14px;
    line-height: 18px;
    color: #919191;
    font-family: var(--objektive-regular);
    margin-bottom: 12px
}

.rating-logos > * {
    margin: 0 18px 0 0
}

.rating-logos > a:last-child {
    margin: 0
}

.video-component__poster {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    background-color: transparent;
    border: none;
    border-radius: 7px;
    text-indent: -999em;
    overflow: hidden;
    opacity: 1;
    transition: opacity .8s, height 0s;
    transition-delay: 0s, 0s;
    outline: 0
}

.video-component {
    width: 509px;
    height: 313px;
    position: relative;
    background-color: transparent;
    border-radius: 7px;
    overflow: hidden;
    margin-left: auto
}

.video-component__poster:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 96px;
    height: 96px;
    margin: -50px 0 0 -50px;
    border-radius: 100%;
    transition: background-color .3s;
    background: var(--bg-white);
    box-shadow: 0 4px 18px rgb(0 0 0 / 25%), 0 9px 25px rgb(255 153 0 / 25%)
}

.visually-hidden {
    clip: rect(0 0 0 0);
    -webkit-clip-path: inset(50%);
    clip-path: inset(50%);
    height: 1px;
    overflow: hidden;
    position: absolute;
    white-space: nowrap;
    width: 1px
}

.video-component__poster:after {
    content: '';
    background: url(../images/play-orange.svg) no-repeat center/contain;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 50px;
    height: 48px;
    margin: -24px 0 0 -22px
}

.video-component__poster:focus:before, .video-component__poster:hover:before {
    background-color: var(--bg-orange)
}

.video-component__poster:focus:after, .video-component__poster:hover:after {
    background: url(../images/play-white.svg) no-repeat center/contain
}

.modal.modal_w700 .modal-dialog {
    opacity: 1;
    width: 700px;
    max-width: 90%;
    height: auto;
    position: fixed;
    z-index: 10010;
    left: 50%;
    top: 23.5%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    background: var(--bg-white);
    -webkit-animation: modalToptoCenter .2s linear .2s both;
    animation: modalToptoCenter .2s linear .2s both;
    overflow: auto;
    padding: 0 !important;
    margin: 0;
    pointer-events: initial;
    border-radius: 5px
}

[data-modal-wistia-video] {
    padding: 0;
    border-radius: 5px
}

[data-modal-wistia-video] .modal__video iframe {
    position: absolute;
    margin: 0;
    top: 0;
    left: 0;
    bottom: 0;
    height: 100%;
    width: 100%;
    border: 0
}

.modal-overlay {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    background: rgba(0, 0, 0, .65)
}

[data-modal-main-video] .modal__video, [data-modal-wistia-video] .modal__video {
    overflow: hidden;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin: 0 auto;
    position: relative;
    padding-bottom: 51%;
    padding-top: 21%;
    height: 0
}

.modal-backdrop {
    background: rgba(0, 0, 0, .65)
}

.banner-left-colmn {
    padding-left: 0
}

@media (min-width: 768px) {
    section.plan .col-md-5 {
        flex: 0 0 46.666667%;
        max-width: 46.666667%
    }

    .Standard-price-ist {
        border-right: 0px !important
    }

    .Standard-price-last {
        border-left: 0 !important
    }
}

section.plan .plan-content {
    max-width: 1019px;
    margin: auto
}

section.plan .plan-col {
    position: relative;
    z-index: 1
}

section.plan .plan-col.legend::before {
    content: '';
    position: absolute;
    background: url(../images/plan-arrow.png) no-repeat;
    background-size: 100% 100%;
    width: 162px;
    height: 109px;
    top: -105px;
    right: -68px
}

section.plan .plan-col.standard::before {
    content: '';
    position: absolute;
    background: url(../images/bg/bg-standard-plan.png) no-repeat;
    background-size: 100% 100%;
    width: 74%;
    height: 56%;
    top: -11%;
    bottom: 0;
    left: -36%;
    margin: auto;
    z-index: -1
}

section.plan .plan-col.legend::after {
    content: '';
    position: absolute;
    background: url(../images/bg/bg-legend-plan.png) no-repeat;
    background-size: 100% 100%;
    width: 75%;
    height: 77%;
    top: -9%;
    bottom: 0;
    right: -27%;
    margin: auto;
    z-index: -1
}

section.plan .plan-col span.plan-header {
    background: var(--bg-orange);
    font-size: 24px;
    color: var(--text-white);
    display: block;
    border-top-left-radius: 25px;
    border-top-right-radius: 25px;
    padding: 3px 0
}

section.plan .plan-col span.trial {
    background: var(--bg-dark);
    font-size: 12px;
    text-align: center;
    color: var(--text-white);
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 7px 0
}

section.plan .plan-col.standard span.trial {
    border-top-left-radius: 25px;
    border-top-right-radius: 25px
}

.plan-col .plan-info {
    padding: 0 40px 40px;
    background: var(--bg-white);
    border-bottom-left-radius: 25px;
    border-bottom-right-radius: 25px;
    box-shadow: 0 1px 19px rgba(0, 0, 0, .1)
}

.plan-col.standard .plan-info {
    background: #eee
}

.plan-col .plan-info h2 {
    font-size: 24px;
    color: var(--text-black);
    padding: 16px 0;
    border-bottom: 1px solid #a4a4a4
}

.plan-col .plan-info h3 {
    font-size: 96px;
    font-family: var(--objektive-mk1)
}

.plan-col .plan-info h3 sup {
    font-size: 36px;
    top: -1.1em
}

.plan-col .plan-info a {
    font-size: 20px;
    text-align: center;
    color: var(--text-black);
    text-transform: uppercase;
    border-radius: 35px;
    background: var(--bg-white);
    min-width: 319px;
    padding: 10px 0;
    display: inline-block;
    margin: 15px 0
}

.plan-col.legend .plan-info a {
    background: var(--bg-orange);
    color: var(--text-white)
}

.plan-col .plan-info p {
    font-size: 12px;
    color: var(--text-black);
    font-family: var(--objektive-mk1)
}

.plan-col .plan-info p span {
    color: #ff0202 !important;
    display: inline-block !important
}

.plan-col .plan-info span.no-contact {
    font-size: 13px;
    font-family: var(--objektive-mk1);
    color: #707070;
    border-bottom: 1px solid #a4a4a4;
    margin: 7px 0 16px;
    padding-bottom: 20px
}

.plan-col .plan-info span:last-child {
    color: #757575;
    font-size: 12px;
    border-bottom-left-radius: 25px;
    border-bottom-right-radius: 25px;
    display: block
}

.plan-col .plan-footer {
    background: var(--bg-light-orange);
    border-bottom-left-radius: 25px;
    border-bottom-right-radius: 25px;
    color: #232323;
    font-size: 13px;
    width: 87%;
    margin: auto
}

.plan-col .plan-footer:hover {
    cursor: pointer
}

.plan-col .plan-footer p {
    position: relative;
    padding: 17px 0 3px
}

.plan-col .plan-footer button {
    display: inline-block;
    background: 0 0;
    border: none
}

/* 30 days free trail */

.free-trial-banner-sec .hm-banner-right-side {
    border-left: 2px solid #E6BC6D;
    padding-left: 59px;
}
.free-trial-banner-sec .banner-left-colmn {
    padding-right: 32px !important;
}
.free-trial-banner-sec .email-collector__input {
    width: 496px;
}
.free-trial-banner-sec .fre-trial-btn {
    width: 496px;
    justify-content: center;
    border-radius: 4px;
    padding: 14px 15px;
    font-size: 16px;
    text-transform: uppercase;
}
.free-trial-banner-sec.banner-section {
    background: url(../images/hm-bnr-bg-img.svg) no-repeat;
    background-size: 100%;
    background-position-y: 155px;
}

.we-offer-sec {
    margin: 45px auto 168px;
}
.offer-row {
    padding: 100px 0 0;
}
.offer-row.offer-row-3, .offer-row.offer-row-4 {
    padding: 120px 0 0;
}
.offer-text a span {
    transition: 0.4s;
}
.offer-text a:hover span {
    padding-left: 5px;
    transition: 0.4s;
}
.offer-text a:hover {
    color: #E6BC6D;
}
.hover-img, .offer-text a:hover .nrml-img{
    display: none;
}
.offer-text a:hover .hover-img{
    display: inline-block;
}

/* Help in Chooseing Plan */

@media (min-width: 992px) {
    section.plan-help .col-lg-8 {
        flex: 0 0 68.666667%;
        max-width: 68.666667%
    }

    section.plan-help .col-lg-4 {
        flex: 0 0 30.333333%;
        max-width: 30.333333%
    }
}

section.plan-help {
    margin-top: 119px
}

section.plan-help .plan-help-content {
    background: var(--bg-orange);
    color: var(--text-white);
    box-shadow: 0 0 32px rgba(0, 0, 0, .1);
    border-radius: 25px;
    padding: 28px 25px 24px 43px
}

.plan-help-content .plan-help-col h2 {
    font-family: var(--objektive-mk1-xbold);
    font-size: 36px;
    text-transform: capitalize;
    margin-bottom: 23px
}

.plan-help-content .plan-help-col p {
    font-family: var(--objektive-mk1);
    font-size: 24px;
    line-height: 40px
}

.plan-help-content .plan-help-col span {
    font-family: var(--objektive-mk1-bold)
}

.plan-help-content .plan-help-col a {
    background: var(--bg-black);
    border-radius: 27px;
    font-family: var(--objektive-mk1-xbold);
    font-size: 24px;
    color: var(--text-white);
    text-align: center;
    display: block;
    padding: 15px 0
}

.plan-help-content .plan-help-col a span {
    display: inline-block;
    vertical-align: .1em
}

.plan-help-content .plan-help-col a img {
    width: 100%;
    max-width: 27px;
    margin-top: -9px
}

section.features-compare {
    margin-top: 110px;
    margin-bottom: 45px
}

section.features-compare .section-title h2 {
    font-family: var(--objektive-mk1-xbold);
    font-size: 26px;
    text-align: center;
    color: var(--text-black)
}

section.features-compare .compare-table {
    margin: 15px auto 0;
    max-width: 1070px;
    position: relative
}

section.features-compare .compare-table::after {
    content: '';
    position: absolute;
    background: url(../images/table-float.png) no-repeat;
    background-size: 100% 100%;
    width: 120px;
    height: 120px;
    top: -40px;
    right: -59px
}

.compare-table table {
    border-radius: 10px
}

.compare-table table th {
    text-align: center;
    background: linear-gradient(90deg, #E6BC6D 0, #E6BC6D 100%);
    border: 1px solid #ededed;
    font-size: 18px;
    font-family: var(--objektive-mk1-bold);
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-white);
    vertical-align: middle
}

.compare-table table th span {
    font-size: 10px;
    font-family: var(--objektive-mk1-medium);
    margin-top: 9px;
    display: block
}

.compare-table table th:first-of-type {
    border-top-left-radius: 10px
}

.compare-table table th:last-of-type {
    border-top-right-radius: 10px
}

.compare-table table tbody tr:nth-of-type(even) {
    background: var(--bg-light-orange)
}

.compare-table table td {
    text-align: center;
    padding: 20px 12px 20px 36px;
    font-family: var(--fontmkreg);
    font-size: 18px;
    color: var(--text-black)
}

.compare-table table td:first-child {
    border-left: 1px solid rgba(0, 0, 0, .24)
}

.compare-table table td:last-child {
    border-right: 1px solid rgba(0, 0, 0, .24)
}

.compare-table table tr:last-child td {
    border-bottom: 1px solid rgba(0, 0, 0, .24)
}

.compare-table table td.trynow-btn {
    padding: 27px 30px
}

.compare-table table td:nth-of-type(2) {
    border-right: 1px solid rgba(0, 0, 0, .24);
    border-left: 1px solid rgba(0, 0, 0, .24)
}

.compare-table table td:first-of-type {
    text-align: unset
}

.compare-table table td .td-row {
    display: flex;
    align-items: center
}

.compare-table table td img {
    width: 100%;
    max-width: 40px
}

.compare-table table td .td-row a img {
    filter: grayscale(1);
    transition: .3s all ease;
    width: 31px
}

.compare-table table td .td-row a:hover img {
    filter: grayscale(0);
    transition: .3s all ease
}

.bs-tooltip-right .tooltip-inner {
    max-width: 288px;
    background: var(--bg-white);
    color: var(--text-black);
    font-size: 14px;
    box-shadow: 0 12px 35px rgb(0 0 0 / 25%);
    border-radius: 8px;
    padding: 1.2rem 1.5rem
}

.bs-tooltip-right .arrow::before {
    border-right-color: var(--color-white)
}

.compare-table table td .td-row a {
    margin-left: 10%
}

.compare-table table td a.btn {
    background: linear-gradient(90deg, #E6BC6D 0, #E6BC6D 100%);
    border-radius: .25rem;
    font-size: 20px;
    letter-spacing: .5px;
    text-transform: uppercase;
    color: var(--text-white);
    max-width: 265px;
    width: 100%;
    padding: 8.5px 0
}

.compare-table table td a.btn::before {
    border-radius: .25rem
}

section.features-compare .back-btn {
    margin-top: 56px
}

section.features-compare .back-btn a {
    font-family: var(--objektive-mk1-bold);
    font-size: 20px;
    letter-spacing: .111111px;
    color: var(--text-black)
}

#down {
    scroll-behavior: smooth
}

.better-sec h2, .cstm-banner-text h1, .industry-sec h2, .industry-sec h4 {
    font-family: var(--objektive-mk1-xbold);
    font-weight: 800
}

.better-sec p, .industry-sec p {
    font-family: var(--objektive-regular)
}

.better-sec h2 {
    font-size: 48px;
    line-height: 56px;
    text-align: center;
    color: var(--text-black)
}

.modal .input-group-text {
    width: 45px
}

.better-sec h2 span, .industry-sec-inner h4 span {
    color: var(--text-orange)
}

.better-desc {
    font-size: 22px;
    line-height: 25px;
    text-align: center;
    color: var(--text-black);
    margin-top: 10px
}

.better-sec {
    padding: 95px 0 68px
}

.better-row {
    border-bottom: 1px solid #ccc;
    padding: 30px 10px
}

.better-row:last-child {
    border: 0
}

.better-row img {
    text-align: right
}

.better-row .better-clmn-left {
    border-right: 1px solid #ccc
}

.better-clmn-left, .better-clmn-right {
    padding: 15px 40px 15px 60px
}

.better-row .row {
    display: flex;
    align-items: center
}

.better-colmn-sec {
    border-top: 1px solid #ccc;
    margin-top: 35px
}

.better-colmn-desc {
    font-size: 20px;
    color: var(--text-black);
    line-height: 30px;
    font-family: var(--objektive-mk1-xbold) !important;
    font-weight: 800
}

.industry-sec {
    background: var(--bg-black);
    text-align: center;
    color: var(--text-white);
    padding: 64px 0 70px
}

.cstm-hdg-2 {
    font-size: 32px;
    line-height: 37.09px;
    margin-bottom: 15px;
}

.industry-sec .cstm-hdg-2 {
    color: var(--text-white)
}

.industry-desc {
    font-size: 20px;
    line-height: 23px
}

.industry-sec-inner h4 {
    font-size: 18px;
    line-height: 21px;
    margin: 20px 0
}

.industry-clmn-desc {
    font-size: 16px;
    line-height: 19px;
    text-align: center
}

.industry-sec-inner .industry-column {
    padding: 28px 25px
}

.industry-icon, .industry-img-bottom {
    display: flex;
    justify-content: center;
    align-items: center
}

.industry-icon {
    height: 90px
}

.industry-sec-inner {
    margin: 74px 0 0
}

.tab-slider--nav {
    width: 100%;
    float: left
}

.tab-slider--tabs {
    list-style: none;
    position: relative;
    border-radius: 35px;
    overflow: hidden;
    height: 35px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    text-align: center;
    margin: auto;
    display: table
}

.tab-slider--tabs:after {
    pointer-events: none;
    content: "";
    width: 47px;
    border: 1px solid var(--color-orange);
    height: 47px;
    position: absolute;
    top: 5px;
    left: 44.5%;
    transition: all 250ms ease-in-out;
    border-radius: 35px;
    background: var(--bg-white);
    pointer-events: none
}

.tab-slider--tabs.slide:after {
    left: 49.5%
}

.tab-slider--tabs:before {
    content: "";
    background: var(--bg-orange);
    height: 34px;
    width: 69px;
    position: absolute;
    border-radius: 50px;
    left: 45%;
    top: 12px
}

.tab-slider--trigger {
    font-size: 24px;
    line-height: 34.54px;
    color: var(--text-step);
    padding: 10px 0;
    position: relative;
    cursor: pointer;
    display: inline-block;
    transition: color 250ms ease-in-out;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    letter-spacing: .2px;
    width: 390px;
    margin: 0 -42px;
    font-family: Objektiv Mk1
}

.tab-slider--trigger.active {
    color: var(--text-black)
}

.tab-slider--tabs.slide li.tab-slider--trigger.monthly-tab {
    z-index: 9
}

.tab-slider--tabs li.tab-slider--trigger.monthly-tab {
    text-align: right;
    padding-right: 100px
}

li.tab-slider--trigger.annually-tab {
    text-align: left;
    padding-left: 100px
}

.cstm-banner-text {
    border-top: 6px solid var(--color-orange);
    padding: 10px 0 15px 0;
    margin-top: 0;
    text-align: center
}

.cstm-banner-text h2 {
    font-size: 28px;
    line-height: 32px;
    font-family: var(--objektive-bold);
    color: var(--text-black);
    padding: 15px 0
}

.cstm-banner-text h1 span {
    color: var(--text-orange)
}

.banner-desc {
    font-size: 22px;
    font-style: italic;
    font-weight: 400;
    line-height: 28px;
    font-family: var(--objektive-regular);
    color: var(--text-black)
}

.banner-desc-save {
    font-family: var(--objektive-bold);
    font-size: 24px;
    line-height: 35px;
    letter-spacing: .8px;
    margin-top: 30px
}

.banner-desc-save span {
    background: var(--bg-orange);
    color: var(--text-white);
    border-radius: 20px;
    padding: 2px 15px
}

.banner-img {
    margin: auto;
    display: table
}

.pricing-section {
    background: url(../images/listing-optimizer-images/pricing-bg.svg) no-repeat;
    background-size: cover;
    background-position: top center;
    padding: 120px 0
}

.pricing-column {
    background: #f9f9f9;
    border: 1px solid #dedede;
    padding: 25px 40px 60px 40px;
    color: var(--text-black);
    text-align: center;
    box-shadow: 0 0 10px rgb(0 0 0 / 25%)
}

.active-plans {
    background: var(--bg-white);
    transform: scale(1);
    z-index: 9;
    box-shadow: 0 0 19px rgb(0 0 0 / 30%);
    position: relative;
    padding: 25px 0 60px 0
}

.pricing-sec-inner .row {
    align-items: center;
    justify-content: center
}

.tab-slider--container {
    padding: 110px 80px 0;
    max-width: 1700px;
    margin: auto
}

.active-plans:after {
    content: "";
    background: url(../images/landing/pricing-crown.svg) no-repeat;
    height: 100px;
    width: 100px;
    position: absolute;
    top: -44px;
    right: auto;
    left: -33px
}

h5#pricing-Label {
    font-size: 17px;
    line-height: 24.46px
}

.cstm-list li {
    list-style: none;
    color: var(--text-black);
    padding-left: 30px;
    position: relative;
    font-family: var(--objektive-bold);
    font-size: 18px;
    line-height: 39px;
    letter-spacing: .8px;
    text-align: left
}

.tab-slider--body .col-md-6 {
    padding: 10px 50px 30px 50px
}

.tab-slider--body h5 {
    font-family: var(--objektive-mk1-xbold);
    font-size: 36px;
    line-height: 52px;
    letter-spacing: .8px;
    margin: 5px 0 20px;
    color: var(--text-black)
}

h6.cstm-price {
    font-family: ObjektivMk1-Medium;
    font-size: 48px;
    line-height: 80px;
    color: var(--text-black);
    letter-spacing: .2px;
    margin-bottom: 5px
}

.tab-slider--body .col-md-6:last-child {
    padding: 30px 35px;
    border-bottom: 1px solid #e1e1e1
}

h6.cstm-price span {
    line-height: 28.29px;
    font-size: 17px
}

.cstm-btn {
    padding: 10px 15px;
    width: 246px
}

.clr-orng {
    line-height: 136.9%;
    letter-spacing: .2px;
    color: var(--text-orange)
}

.save-percnt {
    font-family: var(--objektive-mk1-xbold);
    font-size: 24px;
    line-height: 35px;
    letter-spacing: .8px;
    color: var(--text-orange);
    font-weight: 800;
}

.clr-orng {
    font-family: var(--objektive-bold);
    font-size: 18px
}

p.clr-orng.billed {
    font-family: objektiv-mk1, sans-serif;
    margin: 1rem 0 15px
}

.cstm-btn {
    background: var(--bg-orange);
    font-family: var(--objektive-mk1-xbold);
    font-size: 15px;
    line-height: 22px;
    text-align: center;
    color: var(--text-white);
    padding: 11px 15px;
    border-radius: 10px;
    width: 246px;
    outline: 0 !important;
    box-shadow: none !important
}

.upgrd-std-mnthly {
    background: var(--bg-white);
    border: 1px solid var(--color-black);
    color: var(--text-black)
}

button.btn.cstm-btn:hover {
    background: var(--bg-black);
    color: var(--text-white)
}

.incl {
    font-size: 18px !important;
    font-family: var(--objektive-bold);
    line-height: 26px !important;
    letter-spacing: .8px;
    margin: 20px 0 8px;
    color: var(--text-black);
    border-top: 1px solid #ccc;
    padding: 20px 0
}

.cstm-list li:after {
    content: "";
    background: url(../images/landing/pricing-list-orange-icon.svg) no-repeat;
    position: absolute;
    height: 20px;
    width: 20px;
    left: 0;
    top: 9px;
    font-weight: 700;
}

ul.cstm-list {
    padding: 0 20px
}

.cstm-del:after {
    content: "";
    background: red;
    height: 5px;
    width: 100%;
    position: absolute;
    top: 40px;
    transform: rotate(9deg);
    left: 0
}

h6.cstm-price.cstm-del {
    position: relative;
    display: inline-block
}

.training-desc {
    margin-bottom: 30px
}

h4.save-percnt.save-up {
    border-bottom: 1px solid #9d9d9d;
    border-top: 1px solid #9d9d9d;
    padding: 7px 0;
    margin: 22px 0 30px
}

.talk-desc {
    font-size: 22px;
    line-height: 32px;
    font-family: var(--objektive-bold);
    color: var(--text-black)
}

.zonbase-pro {
    font-size: 18px;
    font-style: italic;
    line-height: 26px;
    font-family: var(--objektive-bold);
    border-top: 1px solid #9d9d9d;
    padding: 20px 7px 0
}

.cstm-recommend-list li {
    font-size: 14px;
    line-height: 30px;
    color: var(--text-orange)
}

.bnus {
    font-size: 16px;
    line-height: 23px;
    font-family: var(--objektive-mk1-xbold);
    text-align: left;
    padding: 20px 0 5px 50px
}

.talk-clmn {
    padding: 0 15px
}

.talk-clmn .btn {
    margin: 20px 0 40px
}

.cstm-recommend-list.cstm-list li:after {
    top: 3px
}

.annually-tab span {
    font-family: var(--objektive-mk1-xbold);
    font-size: 14px;
    line-height: 23px;
    letter-spacing: .2px;
    color: var(--text-orange)
}

.Standard-price-last::before {
    content: "";
    background: url(../images/landing/orange-price-bg.svg) no-repeat;
    position: absolute;
    top: -230px;
    z-index: -1;
    left: -457px;
    width: 925px;
    height: 100%;
    background-size: 100%
}

.Standard-price-ist::after {
    content: "";
    background: url(../images/landing/black-price-bg.svg) no-repeat;
    position: absolute;
    bottom: -220px;
    z-index: -1;
    left: -105px;
    width: 925px;
    height: 100%;
    background-size: 100%
}

.disct-hdg {
    font-family: var(--objektive-mk1-xbold);
    font-size: 36px;
    font-weight: 800;
    line-height: 42px;
    color: var(--text-orange);
    margin: 20px 0 10px 0
}

.tmer-price {
    padding: 0 0 30px 0;
    border: 0
}

h5.tmer-price-rcmd {
    background: var(--bg-orange);
    margin: -25px -79px 25px;
    border: 1px solid var(--color-orange);
    color: var(--text-white)
}

.timer-prec-sec .pricing-sec-inner .row {
    justify-content: center
}

.timer-prec-sec .pricing-column {
    padding: 25px 79px 60px 79px;
    margin: 0 49px
}

.tmer-price.Standard-price-last::before {
    top: -125px;
    left: -250px
}

.tmer-price {
    z-index: auto;
    transform: initial
}

.timer-prec-sec .cstm-del:after {
    transform: rotate(6deg)
}

.rtgetng-img-sec h3 {
    font-family: var(--objektive-mk1-black);
    font-size: 48px;
    font-weight: 700;
    line-height: 69px;
    color: var(--text-black)
}

.rtgetng-img-sec .row {
    justify-content: space-between;
    align-items: center;
    margin: auto
}

.retargeting-table {
    width: 100%;
    border: 1px solid #c2c2c2;
    border-radius: 25px;
    margin: 27px 0 0;
    table-layout: fixed
}

.retargeting-table td, table.retargeting-table th {
    border: 1px solid #c2c2c2
}

.retargeting-table th {
    color: var(--text-white);
    text-transform: uppercase;
    padding: 33.3px 15px
}

.retargeting-table td {
    color: var(--text-black)
}

.retargeting-table td, .retargeting-table th {
    font-family: var(--objektive-mk1-black);
    font-size: 24px;
    line-height: 27px;
    letter-spacing: 1px;
    text-align: center;
    font-weight: 700
}

.retargeting-table th:first-child {
    text-align: left;
    padding-left: 52px;
    width: auto
}

.retargeting-table thead tr {
    background: linear-gradient(90deg, var(--bg-orange) 0, var(--bg-orange) 100%);
    border-radius: 25px 25px 0 0
}

.retargeting-table td:first-child {
    text-align: left;
    padding-left: 34px
}

.retargeting-table td {
    padding: 32px 15px
}

.retargeting-table-sec {
    padding: 80px 0 80px
}

.retargeting-table tr:nth-child(even) {
    background: #ffebcc
}

table.retargeting-table th {
    width: 220px
}

.banner-section {
    margin-top: 55px
}

.section__header {
    font-size: 48px;
    line-height: 56px;
    color: var(--color-black);
    margin-bottom: 15px
}

.section__header span {
    color: var(--text-orange)
}

.section__subheader p {
    font-size: 17px;
    line-height: 24px;
    color: var(--color-black);
    font-family: var(--objektive-regular);
    margin-bottom: 31px
}

.email-collector__input {
    outline: 0;
    max-height: 52px;
    padding: 15px 46px 15px;
    background: url(../images/envelope.svg) no-repeat 14px 17px/20px 18px, var(--bg-white);
    border-radius: 4px;
    width: 376px;
    border: 1px solid #cbcbcb;
    box-shadow: 0 4px 8px rgb(0 0 0 / 25%);
    border-left: 4px solid var(--color-orange);
    color: var(--color-black);
    font-family: var(--objektive-regular);
    font-size: 16px;
    line-height: 23px
}

.email-collector__input::placeholder {
    color: var(--text-summer-grey)
}

.fre-trial-btn {
    background: var(--bg-orange);
    box-shadow: 0 4px 4px rgb(0 0 0 / 25%);
    font-size: 15px;
    line-height: 22px;
    text-align: center;
    color: var(--text-white);
    font-family: objektiv-mk1, sans-serif;
    padding: 10.5px 69px;
    margin: 28px 0 37px;
    position: relative;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border-radius: 10px
}

.fre-trial-btn:hover {
    background: var(--bg-black);
    color: var(--text-white)
}

.btn-desc {
    position: absolute;
    left: 100%;
    font: 400 14px/18px objektiv-mk1;
    text-align: left;
    margin-left: 20px;
    max-width: 100px;
    width: 100%;
    color: #919191;
    pointer-events: none;
    top: auto
}

.btn-desc span, .card__text > span {
    font-weight: 700
}

.rating-star {
    width: 21px;
    height: 21px;
    background: url(../images/rating-star.svg) center/contain no-repeat;
    display: inline-block
}

.rating {
    display: inline-block;
    vertical-align: middle;
    margin-right: 20px
}

.card__text {
    font-size: 14px;
    line-height: 18px;
    color: #919191;
    font-family: var(--objektive-regular);
    margin-bottom: 12px
}

.rating-logos > * {
    margin: 0 18px 0 0
}

.rating-logos > a:last-child {
    margin: 0
}

.video-component__poster {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    background-color: transparent;
    border: none;
    border-radius: 7px;
    text-indent: -999em;
    overflow: hidden;
    opacity: 1;
    transition: opacity .8s, height 0s;
    transition-delay: 0s, 0s;
    outline: 0
}

.video-component {
    width: 509px;
    height: 313px;
    position: relative;
    background-color: transparent;
    border-radius: 7px;
    overflow: hidden;
    margin-left: auto
}

.video-component__poster:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 96px;
    height: 96px;
    margin: -50px 0 0 -50px;
    border-radius: 100%;
    transition: background-color .3s;
    background: var(--bg-white);
    box-shadow: 0 4px 18px rgb(0 0 0 / 25%), 0 9px 25px rgb(255 153 0 / 25%)
}

.visually-hidden {
    clip: rect(0 0 0 0);
    -webkit-clip-path: inset(50%);
    clip-path: inset(50%);
    height: 1px;
    overflow: hidden;
    position: absolute;
    white-space: nowrap;
    width: 1px
}

.video-component__poster:after {
    content: '';
    background: url(../images/play-orange.svg) no-repeat center/contain;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 50px;
    height: 48px;
    margin: -24px 0 0 -22px
}

.video-component__poster:focus:before, .video-component__poster:hover:before {
    background-color: var(--bg-orange)
}

.video-component__poster:focus:after, .video-component__poster:hover:after {
    background: url(../images/play-white.svg) no-repeat center/contain
}

.modal.modal_w700 .modal-dialog {
    opacity: 1;
    width: 700px;
    max-width: 90%;
    height: auto;
    position: fixed;
    z-index: 10010;
    left: 50%;
    top: 23.5%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    background: var(--bg-white);
    -webkit-animation: modalToptoCenter .2s linear .2s both;
    animation: modalToptoCenter .2s linear .2s both;
    overflow: auto;
    padding: 0 !important;
    margin: 0;
    pointer-events: initial;
    border-radius: 5px
}

[data-modal-wistia-video] {
    padding: 0;
    border-radius: 5px
}

[data-modal-wistia-video] .modal__video iframe {
    position: absolute;
    margin: 0;
    top: 0;
    left: 0;
    bottom: 0;
    height: 100%;
    width: 100%;
    border: 0
}

.modal-overlay {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    background: rgba(0, 0, 0, .65)
}

[data-modal-main-video] .modal__video, [data-modal-wistia-video] .modal__video {
    overflow: hidden;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin: 0 auto;
    position: relative;
    padding-bottom: 51%;
    padding-top: 21%;
    height: 0
}

.modal-backdrop {
    background: rgba(0, 0, 0, .65)
}

.banner-left-colmn {
    padding-left: 0
}

.compare-table table tbody tr td:first-child span {
    padding-right: 10px;
    line-height: 14px
}

@media (max-width: 1070px) {
    section.plan .plan-col.legend::before {
        width: 40%;
        height: 21%;
        top: -105px;
        right: -24px
    }

    section.features-compare .compare-table::after {
        top: -29px;
        right: -32px;
        width: 90px;
        height: 90px
    }
}

@media (max-width: 991px) {
    .plan-col .plan-info a {
        font-size: 16px;
        width: 100%;
        min-width: unset
    }
    
    .obi-wam-text {
        margin: 0 0 0 10px;
        max-width: unset;
    }
    .thanks-col {
        max-width: unset;
    }
    .choosing-row {
        justify-content: start;
    }
    .choosing-row img {
        max-width: 130px;
        margin: 0 0 0 10px;
    }
    .thanks-text h1 {
        text-align: start !important;
    }
    section.plan .plan-col span.plan-header {
        font-size: 18px
    }

    section.plan-help .col-lg-8 {
        margin-bottom: 20px
    }

    .compare-table table td a.btn {
        padding: 12px 0;
        font-size: 16px
    }

    .compare-table table td .td-row a img, .compare-table table td img {
        width: 25px
    }

    .compare-table table th {
        font-size: 14px;
        letter-spacing: 0
    }

    .compare-table table td {
        font-size: 15px
    }

    .colmn-reverse {
        flex-direction: column-reverse
    }

    .video-component {
        margin: auto
    }

    .banner-section {
        margin-top: 20px;
        text-align: center
    }

    .fre-trial-btn {
        padding: 10.2px 58px;
        margin: 28px auto 28px
    }

    .email-collector__input {
        width: 100%
    }

    .card__text {
        margin-bottom: 0
    }

    .create-acc {
        margin-top: 11px
    }

    .banner-left-colmn {
        padding-left: 15px
    }
}

@media (max-width: 767px) {
    header .head-content {
        padding: 7px 0 14px;
        border-bottom: 1px solid var(--color-orange)
    }

    header .logo img {
        max-width: 215px
    }

    section.signup-banner {
        margin-top: 29px
    }

    section.signup-banner .banner-content h1 {
        font-size: 24px
    }

    section.signup-banner .banner-content p:first-of-type {
        font-size: 12px;
        padding: 9px 9px 8px
    }

    .banner-content .custom-switch .custom-control-label::before {
        width: 30px;
        height: 15px;
        left: -1.25rem
    }

    .banner-content .custom-switch .custom-control-label::after {
        width: 20px;
        height: 20px;
        top: 2px;
        left: calc(-2.25rem + 8px)
    }

    .banner-content .custom-control label {
        transform: translate(-45px, -1px)
    }

    .banner-content .custom-control label.custom-control-label {
        padding-top: 0
    }

    section.signup-banner .banner-content p:last-of-type {
        margin-top: 17px;
        font-size: 13px
    }

    section.plan {
        background: url(../images/bg/plan-mob1.png) top center no-repeat, url(../images/bg/plan-mob2.png) bottom center no-repeat;
        background-size: 100% 45%
    }

    section.plan .plan-content {
        max-width: 310px
    }

    section.plan .plan-col span.trial {
        padding: 10px 0
    }

    .plan-col .plan-info {
        padding: 0 0 9px;
        position: relative
    }

    .plan-col .plan-info h2 {
        padding: 10px 0 7px
    }

    .plan-col .plan-info h3 {
        font-size: 79px;
        margin-top: 49px;
        margin-left: -40px
    }

    .plan-col .plan-info h3 sup {
        font-size: 26px;
        top: -2.7em;
        left: 16px
    }

    .plan-col .plan-info a {
        display: inline-block;
        margin: -3px 0 10px;
        width: 89%;
        font-size: 21px;
        padding: 8px 0
    }

    .plan-col .plan-info p {
        font-size: 16px
    }

    .plan-col .plan-info span.no-contact {
        margin: 2px 0 7px;
        padding-bottom: 4px
    }

    .plan-col .plan-footer {
        width: 91%;
        margin: -12px auto 0
    }

    .plan-col .plan-footer p {
        padding-bottom: 0
    }

    section.plan .plan-col.legend::before {
        display: none
    }

    section.plan .plan-col.standard {
        margin-bottom: 50px
    }

    section.plan-help {
        margin-top: 48px
    }

    section.plan-help .container {
        padding: 0
    }

    section.plan-help .plan-help-content {
        padding: 21px 34px 15px 24px
    }

    .plan-help-content .plan-help-col h2 {
        margin-bottom: 17px;
        font-size: 19px
    }

    .plan-help-content .plan-help-col p {
        font-size: 15px;
        line-height: 19px;
        text-align: center
    }

    .plan-help-content .plan-help-col a {
        padding: 6px 0;
        width: 64%;
        margin: auto;
        font-size: 15px
    }

    section.features-compare {
        margin-top: 61px
    }

    section.features-compare .section-title h2 {
        font-size: 19px
    }

    section.features-compare .compare-table {
        overflow-x: auto
    }

    .compare-table table th {
        padding: 21px 10px 10px
    }

    .compare-table table th:first-of-type {
        padding-top: 10px
    }

    .compare-table table td {
        padding: 22px 12px 22px 12px;
        font-size: 10px
    }

    .compare-table table td .td-row a {
        margin-left: 7%
    }

    .compare-table table td a.btn {
        padding: 10px 0;
        font-size: 10px
    }

    section.features-compare .back-btn {
        margin-top: 0
    }

    section.features-compare .compare-table::after {
        display: none
    }

    section.features-compare .section-title {
        position: relative
    }

    section.features-compare .section-title::after {
        content: '';
        position: absolute;
        background: url(../images/table-float.png) no-repeat;
        background-size: 100% 100%;
        top: 15px;
        right: -18px;
        width: 75px;
        height: 75px;
        z-index: 1
    }

    .better-sec, .industry-sec {
        padding: 50px 0
    }

    .better-sec h2, .cstm-hdg-2 {
        font-size: 30px;
        line-height: 37px
    }

    .banner-desc br, .industry-desc br {
        display: none
    }

    .better-colmn-desc, .better-desc, .industry-desc {
        font-size: 18px;
        line-height: 24px
    }

    .industry-sec-inner {
        margin: 40px 0 0
    }

    .industry-sec-inner .industry-column {
        padding: 25px 15px !important
    }

    .better-row {
        padding: 15px 10px
    }

    .better-row .better-clmn-left {
        border-right: 0px
    }

    .better-clmn-left, .better-clmn-right {
        padding: 7px 15px
    }

    .tab-slider--tabs {
        width: 100%
    }

    .tab-slider--trigger {
        font-size: 18px;
        line-height: 25.9px;
        padding: 10px 0;
        margin: 0 -25px
    }

    .tab-slider--tabs li.tab-slider--trigger.monthly-tab {
        padding-right: 60px;
        width: 47%
    }

    li.tab-slider--trigger.annually-tab {
        padding-left: 60px;
        width: 65%
    }

    .tab-slider--trigger span {
        font-size: 10px
    }

    .tab-slider--tabs:before {
        left: 36%;
        top: 15px;
        height: 20px;
        width: 40px
    }

    .tab-slider--tabs:after {
        left: 35%;
        top: 11px;
        height: 28px;
        width: 28px
    }

    .tab-slider--tabs.slide:after {
        left: 40%
    }

    .tab-slider--container {
        padding: 90px 15px 0 18px
    }

    h6.cstm-price {
        font-size: 30px;
        line-height: 50px;
        margin-bottom: 0
    }

    .talk-clmn, ul.cstm-list {
        padding: 0 0
    }

    .tab-slider--body h5 {
        font-size: 27px;
        line-height: 40px;
        margin: 0 0 7px
    }

    .talk-desc {
        font-size: 17px;
        line-height: 26px
    }

    .cstm-list.cstm-recommend-list li {
        font-size: 16px;
        line-height: 24px;
        margin-bottom: 6px
    }

    .cstm-list li {
        font-size: 16px
    }

    .pricing-column {
        padding: 25px 15px 40px 15px;
        margin: 0 0 30px
    }

    .cstm-banner-text {
        padding: 20px 0 10px 0
    }

    .cstm-banner-text h2 {
        font-size: 24px;
        line-height: 32px
    }

    .cstm-banner-text h1 {
        font-size: 33px
    }

    .banner-desc {
        font-size: 18px
    }

    .pricing-sec-inner .row {
        flex-direction: column
    }

    .recommend-colmn {
        order: 1
    }

    .Standard-price-ist {
        order: 2
    }

    .Standard-price-last {
        order: 3;
        margin-bottom: 0
    }

    .timer-prec-sec .pricing-column {
        padding: 25px 15px 30px 15px;
        margin: 0 0 30px
    }

    h5.tmer-price-rcmd {
        margin: -25px -15px 10px
    }

    .tmer-price.Standard-price-last {
        order: 1
    }

    .timer-prec-sec h6.cstm-price {
        font-size: 30px;
        line-height: 50px
    }

    .retargeting-table td, .retargeting-table th {
        padding: 10px 15px
    }

    .retargeting-table td:first-child, .retargeting-table th:first-child {
        padding-left: 15px
    }

    .retargeting-table th:first-child {
        width: 360px
    }

    .retargeting-table td, .retargeting-table th {
        font-size: 18px
    }

    .rtgetng-img-sec img {
        width: 70%;
        margin-bottom: 10px
    }

    .retargeting-table-sec {
        padding: 40px 0 20px
    }

    .rtgetng-img-sec h3 {
        margin-bottom: 10px
    }

    .retargeting-table td img {
        width: 30px
    }

    .comparisonStyle {
        font-size: 27px !important;
        line-height: 37px !important
    }

    .disct-hdg {
        margin: 10px 0 10px 0;
        line-height: 25px
    }

    .banner-desc-save {
        margin-top: 10px
    }
    .recommend-colmn img {
        max-width: 200px
    }


    .active-plans:after {
        height: 55px;
        width: 69px;
        top: -32px;
        left: -23px;
        background-size: 100%
    }

    .training-desc {
        margin-bottom: 10px
    }

    .cstm-del:after {
        top: 22px
    }

    .incl {
        padding: 20px 0 0
    }

    .talk-clmn .btn {
        margin: 20px 0 20px
    }

    h4.save-percnt.save-up {
        margin: 15px 0 20px;
        padding: 0 0
    }

    .banner-section {
        margin-top: 20px;
        text-align: center
    }

    .colmn-reverse {
        flex-direction: column-reverse
    }

    .video-component {
        width: 100% !important;
        height: 225px
    }

    .section__header {
        font-size: 31px;
        line-height: 40px
    }

    .section__subheader p {
        font-size: 16px;
        margin-bottom: 20px
    }

    .rating {
        margin-right: 10px
    }

    header:before {
        background-size: 100%;
        transform: translate(-50%, -50%)
    }

    .amazon-bg {
        padding: 13px 0 25px 0
    }

    .btn-desc {
        margin-left: 15px
    }

    .fre-trial-btn {
        padding: 10.2px 45px
    }

    br{
    display: none;
}
.amazon-seller-section {
    padding-bottom: 30px;
}
.hm-new-pricing .row{
    flex-direction: column-reverse;
}
.fre-trial-btn {
    margin: 20px 0px !important;
    padding: 10px 15px;
    font-size: 14px;
}
.offer-text {
    margin: 0px auto 0 auto !important;
}
.offer-col {
    padding: 15px 0 0 !important;
}
.we-offer-sec {
    margin: 40px auto 40px;
}
.section__subheader p {
    font-size: 15px;
    line-height: 22px;
}
.hm-banner-right-side img{
    max-width: 300px;
    margin-bottom: 10px;
}
.offer-image-col img {
    max-width: 200px !important;
}
.offer-text p {
    padding: 6px 0 1px;
    font-size: 14px;
    line-height: 1.5;
}
.offer-text a {
    font-size: 12px;
}
.offer-text a img {
    max-width: 20px;
}
}

@media (max-width: 340px) {
    .fre-trial-btn {
        margin: 28px 25px 28px !important
    }
}

@media (min-width: 1300px) {
    .summery-page .container {
        max-width: 1244px
    }
}

@media screen and (max-width: 1290px) {
    .customers-about-bg, .feature-on-bg, .free-one-bg {
        background-size: 100% 100%
    }

    .header-logo {
        width: 8%
    }

    .trust-pilot-carousal.owl-theme .owl-nav .owl-next::after {
        bottom: -46px;
        right: -54px;
        left: 0;
        margin: auto auto 0 auto
    }

    .trust-pilot-carousal.owl-theme .owl-nav .owl-prev::before {
        bottom: -46px;
        margin: auto auto 0 auto;
        left: 0;
        right: 33px
    }

    .offer-text p {
        padding: 48px 0 66px
    }

    .header-menu {
        align-items: center
    }

    .nav-list li a {
        padding: 10px 2px;
        font-size: 13px;
        margin: 0 13px
    }

    .banner-btn-row {
        width: 85%
    }

    .footer-btm-text {
        width: 58%
    }

    .footer-btm-row {
        padding: 6px 95px 2px 39px
    }

    .footer-icon {
        width: auto;
    }

    .acc-btn.free-one-btn {
        width: 228px;
        font-size: 13px
    }

    .our-summery h2 {
        font-size: 28px
    }

    .summery-text h6 {
        font-size: 20px
    }

    .summery-line p {
        font-size: 14px
    }

    .using-zonbase {
        padding: 24px 11px
    }

    .thanks-text h1 {
        font-size: 35px;
        text-align: center;
        margin-top: 30px
    }

    .choosing-row span {
        font-size: 24px
    }

    .zonbase-design h6 {
        font-size: 16px
    }

    .obi-wam-text p {
        font-size: 15px
    }

    .para-italic p {
        font-size: 18px
    }

    .using-zon-col-1 h6 {
        font-size: 20px
    }

    .order p {
        font-size: 22px
    }

    .zonplatinum-col {
        padding: 0 3px
    }

    .dotted-box {
        max-width: 612px
    }

    .security-form-btns {
        padding: 13px 2px 0 0
    }

    .page2-btm-text a {
        padding: 0 5px
    }
}

@media screen and (max-width: 991px) {
    .pag2-footer-logo {
        text-align: center
    }

    .pag2-footer-logo img {
        margin-bottom: 25px
    }

    .feature-col-1 {
        width: 33%
    }

    .feature-row {
        justify-content: center
    }

    .feature-on-bg {
        height: auto;
        padding-bottom: 30px
    }

    .feature-heading {
        padding: 35px 0 20px
    }

    .nav-btn {
        width: 60px;
        padding: 14px 15px
    }
}

@media screen and (max-width: 850px) {
    .login-btn {
        margin: 0 0 5px 0
    }

    .nav-list li a::after {
        display: none
    }

    .nav-menu {
        align-items: unset;
        flex-direction: column;
        justify-content: unset;
        text-align: center
    }

    .login-site {
        display: flex;
        flex-direction: column;
        margin-left: auto;
        margin-right: auto
    }

    .get-start-btn {
        padding: 11px 11px;
        display: inline-block;
        text-align: center;
        width: 176px;
        font-size: 14px
    }

    .nav-list li a {
        padding: 0 0 9px 0
    }

    .main-menu {
        padding: 16px 11px
    }

    .header-logo img {
        margin-left: 0
    }

    .header-menu {
        padding: 0 10px 0 0
    }

    .banner-text h1 {
        font-size: 23px;
        word-spacing: -2px
    }

    .banner-text p {
        font-size: 16px;
        padding: 8px 0 8px
    }

    .banner-search input[type=search] {
        padding: 6px 52px
    }

    .banner-search i {
        font-size: 16px
    }

    .acc-btn {
        font-size: 15px;
        padding: 10px 26px
    }

    .banner-btn-row {
        width: 100%
    }

    .banner-sec {
        margin: 40px auto 0 auto
    }

    .free-one-para p {
        font-size: 15px
    }

    .acc-btn.free-one-btn {
        padding: 13px 23px;
        font-size: 12px;
        width: 247px
    }

    .how-work {
        padding: 30px 0 10px
    }

    .how-work h2 {
        font-size: 36px
    }

    .works img {
        height: 138px
    }

    .works-text h5 {
        font-size: 23px;
        word-spacing: 0;
        padding: 0 0 19px
    }

    .works-text p {
        font-size: 16px
    }

    .review-para p {
        font-size: 16px;
        padding: 22px 0 30px
    }

    .client-row {
        width: 91%
    }

    .review-text {
        padding: 31px 19px 36px
    }

    .customers-text {
        padding: 90px 0 68px
    }

    .customers-text h6 {
        font-size: 17px;
        margin: 30px auto 37px
    }

    .customers-text {
        padding: 90px 0 36px
    }

    .offer-text h2 {
        font-size: 32px
    }

    .offer-text p {
        padding: 13px 0 15px;
        font-size: 17px
    }

    .offer-text a i {
        font-size: 26px;
        transform: translate(10px, 10px)
    }

    .offer-text a {
        font-size: 22px
    }

    .we-offer-text h2 {
        font-size: 36px
    }

    .amazon-text h2 {
        font-size: 26px
    }

    .create-acc-btn {
        font-size: 14px;
        padding: 12px 18px
    }

    .footer-row {
        flex-direction: column;
        margin: 0 auto
    }

    .footer-menu-row .footer-menu {
        margin-bottom: 30px;
        margin-right: 20px !important;
        width: 100%;
        max-width: 113px
    }

    .footer-logo-col {
        width: 100%;
        text-align: center;
        margin: 0 auto 20px auto
    }

    .footer-menu-col {
        width: 100%
    }

    .footer-menu-row.footer-menu-row-2 {
        max-width: 693px
    }

    .footer-menu-row.footer-menu-row-2 {
        max-width: 421px
    }

    .footer-btm-row {
        flex-direction: column-reverse;
        padding: 6px 95px 2px 38px
    }

    .footer-btm-text {
        width: 58%
    }

    .footer-icon {
        width: 100%
    }

    .footer-menu-row {
        margin: 0 auto 0 auto;
        flex-wrap: wrap
    }

    .footer-btm-text {
        width: 100%
    }
    
    .footer-btm-text ul{
        justify-content: center;
    }

    .footer-btm-text ul li {
        list-style-type: none
    }

    .trust-pilot-carousal.owl-theme .owl-nav .owl-next::after, .trust-pilot-carousal.owl-theme .owl-nav .owl-prev::before {
        display: none
    }

    .thanks-col {
        margin: 0 auto 0 auto;
        max-width: 703px;
        padding-left: 15px;
        padding-right: 15px
    }

    .card-img {
        padding-left: 15px
    }

    .dotted-box {
        max-width: 687px
    }

    .page2-col-1, .page2-col-2, .page2-col-3 {
        margin: 0 auto;
        max-width: unset
    }

    .review-para p {
        min-height: 196px
    }

    .mt-0-40 {
        margin-top: .4rem !important
    }
}

@media screen and (max-width: 550px) {
    .banner-row {
        flex-direction: column-reverse
    }

    .offer-row, .offer-row:nth-child(3), .offer-row:nth-child(5) {
        flex-direction: column-reverse
    }

    .trust-pilot-carousal.owl-theme .owl-nav .owl-next::after, .trust-pilot-carousal.owl-theme .owl-nav .owl-prev::before {
        display: none
    }

    .banner-col-1 {
        width: 100%;
        position: relative
    }

    .banner-col-2 {
        width: 100%
    }

    .offer-image-col {
        width: 100%;
        text-align: center
    }

    .offer-col {
        width: 100%
    }

    .offer-col.offer-col-3 {
        width: 100%
    }

    .offer-image-col.offer-image-col-3 {
        width: 100%
    }

    .offer-col.offer-col-4 {
        width: 100%
    }

    .login-btn {
        margin: 0 0 18px 0
    }

    .header-logo img {
        margin-left: 0
    }

    .banner-sec {
        margin: 10px auto 0 auto;
        max-width: 100%;
        padding: 0
    }

    .banner-text-col {
        margin: 23px auto 0 auto;
        max-width: 100%
    }

    .banner-text h1 {
        font-size: 21px;
        word-spacing: 0;
        letter-spacing: 1.4px;
        line-height: 1.6
    }

    .banner-text p {
        font-size: 12px;
        padding: 8px 0 8px;
        letter-spacing: .6px;
        line-height: 1.7
    }

    .banner-search {
        max-width: 100%;
        margin: 14px 0 0 0
    }

    .banner-search input[type=search] {
        padding: 8px 35px 8px;
        font-size: 12px
    }

    .banner-search i {
        left: 9px
    }

    .acc-btn-space {
        border-radius: 4px;
        padding: 7px 12px;
        font-size: 14px
    }

    .btn-col-1 {
        position: absolute;
        right: 4px;
        bottom: .35rem
    }

    .btn-col {
        transform: translate(0, 0)
    }

    .btn-col-1 p {
        margin: 0 auto;
        max-width: 100px;
        transform: translate(5px, 6px)
    }

    .banner-btn-row {
        justify-content: center;
        padding: 0 0 0
    }

    .demo-btn span {
        padding: 0 5px 0;
        font-size: 10px;
        margin-left: 27px
    }

    .demo-btn span::before {
        left: 9px;
        font-size: 19px;
        top: 0
    }

    .demo-btn::before {
        background-image: url(../images/Group_786.png);
        transform: scaleZ(-1);
        top: 2px;
        left: 94px
    }

    .free-row {
        padding: 52px 28px 23px 10px;
        margin-top: 32px
    }

    .free-one-para p {
        font-size: 11.6px
    }

    .free-col-2 span img {
        position: absolute;
        top: 0;
        right: 0;
        max-width: 25%;
        transform: translate(40px, -2px);
        max-height: 25px;
    }

    .acc-btn.free-one-btn {
        padding: 8px 1px;
        font-size: 9px;
        margin: auto;
        height: fit-content;
        height: -moz-fit-content;
        width: 124px;
        border-radius: 7px
    }

    .how-work h2 {
        font-size: 25px
    }

    .works img {
        height: 89px
    }

    .works-text h5 {
        font-size: 16px;
        padding: 0 0 10px
    }

    .works-text p {
        font-size: 12px;
        margin: 0 auto;
        max-width: 124px;
        line-height: 1.7
    }

    .work-row {
        padding: 0 13px
    }

    .how-work-sec {
        margin: 0 auto 20px
    }

    .feature-heading {
        padding: 19px 0 5px
    }

    .feature-heading h6 {
        font-size: 16px
    }

    .feature-image img {
        max-width: 80%
    }

    .feature-image.feature-image-2 img {
        height: 63px
    }

    .feature-on-bg {
        height: auto;
        padding-bottom: 15px
    }

    .trust-image img {
        max-width: 66%
    }

    .review-text {
        padding: 18px 22px 19px
    }

    .review-para p {
        font-size: 13px;
        padding: 7px 0 0;
        line-height: 1.6;
        min-height: 169px
    }

    .client-image img {
        max-width: 79%
    }

    .client-row {
        width: 64%
    }

    .client-para p {
        font-size: 11px
    }

    .client-para p:nth-child(2) {
        font-size: 8px
    }

    .customers-text {
        padding: 54px 0 15px;
        margin: 0 auto;
        max-width: 297px
    }

    .customers-text h4 {
        font-size: 25px
    }

    .customers-text h6 {
        font-size: 14px;
        margin: 26px auto 23px
    }

    .customers-text p {
        padding-top: 9px
    }

    .customers-about-bg {
        padding-bottom: 9px
    }

    .customers-text h6:nth-child(3) {
        font-size: 16px
    }

    .we-offer-text h2 {
        font-size: 24px;
        letter-spacing: 0
    }

    .offer-text h2 {
        font-size: 24px;
        letter-spacing: 0
    }

    .offer-col {
        text-align: center
    }

    .offer-text p {
        padding: 6px 0 1px;
        font-size: 14px;
        line-height: 1.5
    }

    .offer-text a {
        font-size: 12px
    }

    .offer-text a i {
        font-size: 16px;
        transform: translate(2px, 4px)
    }

    .offer-text a:hover i {
        transform: translate(10px, 4px)
    }

    .offer-col.offer-col-2 {
        text-align: center
    }

    .offer-text.offer-text-2 {
        margin: -1px auto 0 0
    }

    .offer-text.offer-text-3 {
        margin: -5px auto 0 auto
    }

    .offer-col.offer-col-4 {
        text-align: center
    }

    .offer-row.offer-row-4 {
        padding-top: 40px
    }

    .offer-text.offer-text-4 {
        margin: 0 auto 0 auto;
        max-width: 300px
    }

    .amazon-text {
        margin: 14px auto 0 auto;
        max-width: 288px
    }

    .amazon-text h2 {
        font-size: 24px;
        text-align: center;
        line-height: 37px
    }

    .create-acc-btn {
        font-size: 12px;
        padding: 6px 16px;
        border-radius: 5px
    }

    .create-acc-btn::after {
        background-image: url("../images/Group_823.png");
        top: 0
    }

    .footer-row {
        padding: 25px 14px 9px
    }

    .footer-menu-row {
        padding: 33px 0 0;
        justify-content: center;
    }

    .footer-row {
        margin: 0 auto 0 auto;
        max-width: 356px;
        padding: 25px 14px 59px
    }

    .footer-menu h6 {
        font-size: 11px;
        padding: 0 0 7px
    }

    .footer-menu a {
        font-size: 12px;
        padding: 0 0 2px;
        letter-spacing: 0
    }

    .footer-menu {
        width: 36%
    }

    .footer-menu-2 {
        width: 43%
    }

    .footer-menu-row.footer-menu-row-2 {
        padding: 27px 0 0
    }

    .footer-menu-3 {
        width: 47%
    }

    .footer-menu-4 {
        width: 43%
    }

    .footer-icon {
        width: 100%;
        margin: -36px 0 0 0
    }

    .footer-btm-text ul li {
        display: inline-block
    }

    .footer-btm-text ul {
        display: unset
    }

    .footer-btm-text {
        width: 100%;
        text-align: center;
        padding: 14px 0 6px
    }

    .footer-btm-text ul li a {
        padding: 0 5px
    }

    .footer-btm-row {
        padding: 6px 14px 2px 14px
    }

    .pop-heading h2 {
        font-size: 18px
    }

    .pop-heading p {
        font-size: 13px
    }

    .step p {
        font-size: 16px;
        padding: 15px 0
    }

    .popup-form input[type=password], .popup-form input[type=text] {
        font-size: 14px;
        padding: 10px 56px
    }

    .popup-form button[type=submit] {
        font-size: 18px
    }

    .popup-dialog {
        max-width: 347px
    }

    .continue-btn a span {
        font-size: 14px
    }

    .log-in-text p {
        font-size: 14px;
        padding: 10px 0 24px
    }

    header .head-content-1 {
        padding: 17px 0 20px;
        border-bottom: 2px solid var(--color-orange)
    }

    header .logo img {
        max-width: 206px
    }

    .our-summery h2 {
        font-size: 22px
    }

    .summery-page {
        margin-top: 20px;
        padding: 0 3px
    }

    .summery-line p {
        display: none !important
    }

    .summery-text h6 {
        font-size: 13px
    }

    .summery-text i {
        font-size: 20px;
        padding: 0 14px 0 0
    }

    .our-summery h2 {
        padding: 0 0 14px
    }

    .summery-para-row {
        padding: 0 0 10px
    }

    .our-summery h6 {
        font-size: 12px;
        padding-top: 18px;
        line-height: 18px
    }

    .summery-col {
        border: none
    }

    .credit-card-info h6 {
        font-size: 16px;
        border: none
    }

    .summery-col {
        padding-bottom: 16px
    }

    .credit-card-info p {
        padding: 10px 0 0;
        line-height: 1.8;
        font-size: 13px
    }

    .credit-card-info a {
        font-size: 13px
    }

    .summery-form {
        padding: 26px 0 23px
    }

    .summery-form input[type=text] {
        padding: 13px 14px;
        font-size: 11px;
        margin: 0 0 14px
    }

    .summery-form {
        border: none
    }

    .security {
        margin: 5px 0 0
    }

    .security input[type=text] {
        padding: 5px 34px;
        font-size: 12px;
        height: 33px
    }

    .security-col-1 {
        margin-bottom: 15px
    }

    .security input[type=date] {
        padding: 9px 0;
        font-size: 14px;
        height: 33px
    }

    .card-img img {
        width: 100%;
        transform: translate(0, -8px)
    }

    .date-col {
        padding-left: 0
    }

    .dotted-box {
        max-width: 100%;
        margin: 14px auto 0;
        border: none
    }

    .form-border p {
        font-size: 9px;
        margin: -22px 0 0
    }

    .form-border {
        padding: 9px 23px 17px 32px
    }

    .back-btn {
        display: none
    }

    .back-btn2 {
        display: block !important
    }

    .btnForMobile {
        margin-top: 1rem !important;
        margin-right: 64vw !important;
        display: block !important
    }

    .trial-btn::before {
        background-image: url(../images/Frame0.png);
        left: -61px;
        top: -42px;
        content: "";
        width: 32px;
        height: 48px;
        right: 0;
        margin: auto;
        display: none
    }

    .security-form-btns {
        justify-content: center
    }

    .trial-btn {
        font-size: 13px;
        margin: 14px 0 0;
        padding: 0px 27px 0px 27px
    }
    .trial-btn-image{
        display: flex;
        line-height: 17px;
        margin-top: 13px;
    }
    .trial-btn::after{
        display: none;
    }
    .trial-btn-image span{
        margin-top: 13px;
    }

    .thanks-text h1 {
        font-size: 44.3px;
        text-align: center;
        padding: 47px 0 10px
    }

    .choosing-row {
        align-items: unset;
        padding: 0 13px;
        margin: 0 0 27px
    }

    .zonbase-design h6 {
        display: none
    }

    .zonbase-design p {
        font-size: 15px;
        padding: 2px 0 20px;
        line-height: 1.4
    }

    .obi-wam {
        padding: 0 0 6px
    }

    .obi-wam-text p {
        font-size: 18px;
        line-height: 1.6;
        padding-left: 9px
    }


    .using-zonbase {
        margin: 63px 0 0
    }

    .using-zonbase {
        padding: 17px 11px
    }

    .using-zon-col-1 p {
        font-size: 13px;
        padding: 8px 0 23px
    }

    .order p {
        padding: 7px 0 16px
    }

    .zonplatinum {
        padding: 11px 0 8px
    }

    .zonbase-btm p {
        padding: 16px 0 7px
    }

    .summery-page-footer {
        margin: 53px 0 0
    }

    .security-img {
        transform: translate(0, 0)
    }

    .top-back-page {
        display: block;
        position: absolute;
        top: 53px;
        left: 15px;
        font-size: 16px
    }

    .top-back-page:hover {
        color: var(--color-black)
    }

    .popup-form button[type=submit], .popup-form-2 button[type=submit] {
        width: 64%
    }

    .summery-text span::before {
        top: 0;
        width: 25px
    }

    .earn-profit h2 {
        font-size: 22px
    }

    .earn-profit h5 {
        font-size: 18px;
        padding: 0 0 11px
    }

    .progress-bar-bg {
        font-size: 9px
    }

    .next-partner-btn {
        padding: 5px 26px;
        margin-top: 27px
    }

    .next-partner-btn p {
        font-size: 14px
    }

    .end-text a {
        padding: 25px 0 0
    }

    .page-sec {
        margin-bottom: 41px
    }

    .page2-footer-text a {
        font-size: 16px
    }

    .page2-space {
        padding: 10px 0 0
    }

    .page2-btm-text {
        display: flex;
        flex-direction: column;
        text-align: center
    }

    .page2-btm-text a {
        font-size: 15px;
        padding: 2px 0
    }

    .page2-btm-row {
        justify-content: center
    }

    .page2-btm-icon {
        margin: 10px 0 0
    }

    .page2-col-1, .page2-col-2, .page2-col-3 {
        padding: 6px 0
    }

    .page2-top-back-page {
        position: absolute;
        top: 100px;
        left: 15px;
        font-size: 16px;
        color: var(--color-black);
        font-family: var(--objektive-bold);
        display: block
    }

    .flipTimer {
        width: unset
    }
    .min {
        right: 53px
    }
    /*
    .sec {
        left: 59px;
    } */

    .offer-text a img {
        margin-left: 2px;
        max-width: 21px;
        max-height: 12px;
    }

    .nav-list li:first-child a {
        margin: 0
    }

    .using-zonbase {
        display: none
    }

    .mobile-orange {
        display: block
    }

    .security-form-btns {
        justify-content: center;
        flex-direction: column
    }

    .using-zonbase {
        margin: 13px 0 0
    }

    .plan-help-content .plan-help-col a img {
        max-width: 17px;
        margin: -5px 5px 0 0
    }

    section.plan .plan-col.legend::after, section.plan .plan-col.standard::before {
        display: none
    }

    section.plan {
        background: url(../images/bg/plan-mob2.png) top center no-repeat, url(../images/bg/plan-mob2.png) bottom center no-repeat
    }

    .compare-table table td.trynow-btn {
        padding: 17px 4px
    }

    .thanks-text h1 {
        font-size: 33.3px
    }

    .dotted-box {
        margin: 0 15px
    }

    .custom-switch {
        padding-left: 0
    }

    .banner-content .custom-control label {
        font-size: 13px
    }

    .banner-content .custom-control label.custom-control-label {
        padding-top: 3px
    }

    .form-check {
        padding-left: 1.25rem;
    }

    .summery-form {
        padding-bottom: 0
    }

    .mt-0-40 {
        margin-top: .4rem !important
    }
}

@media (min-width: 3000px) {
    .amazon-bg {
        padding: 155px 0 54px 0
    }
}

@media screen and (max-width: 350px) {
    .banner-search {
        max-width: 208px
    }

    .btn-col-1 {
        right: -22px;
        bottom: .7rem
    }

    .demo-btn::before {
        top: 0;
        left: 91px
    }

    .btn-col-1 p {
        padding-top: 1px;
        font-size: 9px;
        transform: translate(2px, 5px)
    }

    .client-row {
        width: 91%
    }

    .btn-col {
        transform: translate(-14px, 0)
    }

    .mt-0-40 {
        margin-top: .4rem !important
    }

    .choosing-row span {
        font-size: 22px
    }

    .trial-btn::after {
        left: -70px
    }
}

@media (min-width: 100px) and (max-width: 767px) {
    #ohsnap .alert-orange {
        display: none
    }

    #info-banner p, #info-banner p a {
        display: block
    }

    #info-banner p span.close-banner {
        position: absolute;
        top: 10px;
        right: 15px
    }
}

.limited-text {
    display: -webkit-box;
    -webkit-line-clamp: 12;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis
}

.form-1 span.iti__country-name, .form-1 span.iti__dial-code {
    position: inherit;
    top: inherit;
    bottom: inherit;
    margin: inherit;
    height: inherit;
    left: inherit;
    font-family: var(--objektive-regular)
}

.form-1 span.iti__dial-code {
    padding-left: 5px
}

.popup-form .has-error input[type=text] {
    border: 1px solid var(--color-red);
    border-radius: 6px
}

span.error-text.error_right_side {
    position: absolute;
    right: 10px;
    bottom: 0;
    font-size: 12px;
    color: red;
    left: initial
}

.bg-orange {
    background-color: var(--bg-orange)
}

.bg-black {
    background-color: var(--color-black)
}

.text-orange {
    color: var(--color-orange)
}

.text-white {
    color: var(--color-white)
}

.video-container {
    position: relative;
    width: 100%
}

video#kevinVideo {
    width: auto;
    height: 500px
}

a#playKevinVideo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    background-color: transparent;
    color: #fff;
    font-size: 16px;
    padding: 12px 24px;
    border: none;
    cursor: pointer;
    border-radius: 5px
}

a#playKevinVideo img {
    height: 60px;
    width: 60px
}

.video-progress {
    display: block;
    margin: 0 auto;
    width: 70%;
    height: 5vh;
    font-size: 16px;
    border-radius: 25px;
    max-width: 700px
}

.video-progress .progress-bar {
    background-color: #428bca;
    height: 5vh;
    font-weight: 600;
    white-space: break-spaces
}

.video-progress .progress-bar-animated {
    animation: progress-bar-stripes 2s linear infinite reverse
}

.mx-7 {
    margin-left: 4rem;
    margin-right: 4rem
}

.text-underline {
    text-decoration: underline
}

.fs-13 {
    font-size: 13px
}

a#goToInBoundPricePage:hover {
    color: var(--color-orange);
    text-decoration: underline
}

.btn-recommended-text {
    border-radius: .25rem .25rem 0 0;
    max-width: 80%;
    margin: 0 auto;
    padding-top: 4px
}

.partner-button-container {
    max-width: 889px
}

input#signup_billing_contact {
    padding: 13px 55px
}

.summery-form .iti.iti--allow-dropdown {
    margin: 0 0 27px
}

#plan-period-switch-annually, #plan-period-switch-monthly, #switch-to-plus {
    cursor: pointer
}

.count-down-timer-table {
    font-family: var(--objektive-bold);
    margin: 0 auto;
    width: auto
}

.count-down-timer-table tr td {
    font-family: var(--objektive-bold);
    border: 0 !important;
    font-size: 13px;
    font-weight: 700;
    padding: 2px 15px;
    letter-spacing: 1px;
    color: rgba(0, 0, 0, .4);
    text-transform: uppercase
}

#kevinVideoTimer.colorDefinition {
    font-family: var(--objektive-bold);
    border-color: transparent;
    border-radius: 0;
    color: #2d2d2d;
    background-color: var(--bg-white);
    letter-spacing: 10px
}

#kevinVideoTimer.colorDefinition.size_lg {
    font-size: 60px;
    border-width: 0
}

.text-video-page-color {
    color: #2d2d2d
}

#info-banner {
    background: var(--bg-orange);
    padding: 10px 0
}

#info-banner p, #info-banner p a {
    font-weight: 400;
    font-size: 16px;
    color: var(--text-white)
}

#info-banner p a {
    font-weight: 700
}

#info-banner p span {
    font-weight: 700;
    font-size: 16px;
    color: var(--text-white);
    margin-left: 20px
}

#info-banner .banner-box-inputs input {
    font-size: 10px
}

#info-banner .banner-box-inputs button {
    font-size: 12px;
    background: var(--bg-black);
    border-radius: 4px;
    margin-left: 5px
}

.banner-box-inputs {
    z-index: 99
}

#info-banner p span.close-banner:hover {
    cursor: pointer
}

@media (max-width: 991px) {
    .video-progress .progress-bar {
        white-space: unset;
        padding: 2px 10px;
        align-items: center;
        font-size: 12px !important
    }
    .free-trial-banner-sec .hm-banner-right-side{
        border: 0px;
        padding-left: 0px;
    }
}

@media (max-width: 767px) {
    .section__subheader p br {
        display: none
    }

    .video-progress .progress-bar {
        padding: 0 10px;
        font-size: 9px !important
    }

    .partner-button-container .row {
        margin: auto 0
    }

    #info-banner p, #info-banner p a {
        font-size: 14px
    }

    .pl-4, .px-4 {
        padding-left: .5rem !important
    }

    .pr-4, .px-4 {
        padding-right: .5rem !important
    }

    .pl-5, .px-5 {
        padding-left: 1rem !important
    }

    .pr-5, .px-5 {
        padding-right: 1rem !important
    }

    .information-text {
        margin-top: 20px
    }

    #freeTrialExitIntentPopup .btn-green {
        font-size: 16px !important
    }
}

@media (max-width: 424px) {
    .video-progress .progress-bar {
        font-size: 8px !important
    }

    span.its-free-span {
        display: block
    }

    #info-banner p, #info-banner p a {
        font-size: 10px
    }
}

#in-bound-successful-payment-message b, #in-bound-successful-payment-message strong {
    font-family: var(--objektive-bold)
}

.btn-orange {
    font-family: var(--objektive-mk1-bold);
    background-color: var(--bg-orange);
    color: var(--color-white)
}

.btn-orange:hover {
    background-color: var(--bg-orange);
    color: var(--color-white)
}

.owl-carousel.trust-pilot-carousal .owl-stage {
    display: flex
}

.owl-carousel.trust-pilot-carousal .item {
    display: flex;
    flex: 1 0 auto;
    height: 100%
}

.owl-carousel.trust-pilot-carousal .review-text {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: stretch
}

#social-login-google {
    padding: 1px 6px
}

.back-btn2 {
    display: none
}

.btnForMobile {
    display: none
}

.mt-0-40 {
    margin-top: .3rem
}

#g_id_onload {
    border: none !important
}

#signup_first_name {
    border-radius: 4px 4px 0 0;
    border-bottom: 0
}

#signup_contact {
    border-radius: 0 0 4px 4px
}

.show-password-container #signup_email {
    border-radius: 4px 4px 0 0;
    border-bottom: 0
}

.show-password-container #signup_password {
    border-radius: 0 0 4px 4px
}

.circle-orange-amz {
    color: var(--text-white);
    background: var(--bg-orange);
    box-shadow: 0 2.16502px 4.33003px rgb(0 0 0 / 15%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    font-weight: 700;
    justify-content: center;
    left: 421px;
    top: 714px;
    border: 2.16502px solid var(--color-white)
}

.dim-38 {
    min-height: 38px;
    min-width: 38px
}

.transX-20 {
    transform: translateX(20px)
}

#info-banner p a {
    pointer-events: none
}

@media (max-width: 1350px) {
    .footer-row{
        padding-left: 10px;
        padding-right: 10px;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .banner-desc {
        font-size: 22px
    }
    
    .free-one-sec {
        margin: -23px 0 0;
    }
    .tab-slider--body h5 {
        font-size: 23px;
        line-height: 40px;
        margin: 0 0 10px
    }

    .cstm-btn {
        width: 200px
    }

    .timer-prec-sec .pricing-column {
        padding: 25px 15px 60px 15px;
        margin: 0 20px
    }

    .rtgetng-img-sec img {
        width: 180px
    }

    .rtgetng-img-sec .comparisonStyle {
        font-size: 36px;
        line-height: 55px
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .rtgetng-img-sec img {
        width: 250px
    }

    .rtgetng-img-sec .comparisonStyle {
        font-size: 48px;
        line-height: 70px
    }

    .feature-on-bg {
        height: 225px
    }

    .banner-text h1 {
        font-size: 40px
    }

    .offer-text h2 {
        font-size: 45px
    }

    .offer-text p {
        padding: 13px 0 15px
    }

    .banner-section {
        margin-top: 20px
    }

    .banner-section br {
        display: none
    }

    .amazon-text h2, .section__header {
        font-size: 45px
    }

    .amazon-bg {
        padding: 50px 0 40px 0 !important
    }
}

@media (min-width: 768px) and (max-width: 1199px) {
    .tab-slider--container {
        padding: 120px 20px 0
    }

    .pricing-column {
        padding: 25px 10px 40px 10px
    }

    .talk-desc {
        font-size: 18px;
        line-height: 26px
    }

    h6.cstm-price {
        font-size: 32px;
        line-height: 55px
    }

    .cstm-del:after {
        top: 30px
    }

    ul.cstm-list {
        padding: 0 0
    }

    .cstm-list li {
        font-size: 16px
    }

    ul.cstm-list.cstm-recommend-list li {
        line-height: 18px;
        margin-bottom: 4px;
        font-size: 11px
    }

    .cstm-recommend-list.cstm-list li:after {
        top: 0
    }

    .zonbase-pro {
        font-size: 15px;
        line-height: 21px
    }

    .timer-prec-sec .pricing-column {
        padding: 25px 15px 60px 15px;
        margin: 0 20px
    }

    h5.tmer-price-rcmd {
        margin: -25px -15px 25px
    }

    .tab-slider--container.tab-slider-timer {
        padding: 165px 0 0
    }

    .retargeting-table th:first-child {
        width: 400px
    }

    .comparisonStyle {
        font-size: 40px;
        line-height: 55px
    }

    .retargeting-table td {
        padding: 15px 15px
    }

    .retargeting-table td img {
        width: 30px
    }

    .retargeting-table th {
        padding: 20px 15px
    }

    .retargeting-table-sec {
        padding: 30px 0 50px
    }

    .training-desc {
        margin-bottom: 20px
    }

    .banner-sec {
        margin: 0 auto 0 auto
    }
}

@media (max-width: 340px) {
    .cstm-list li {
        font-size: 14px;
        line-height: 33px
    }

    .tab-slider--tabs li.tab-slider--trigger.monthly-tab {
        padding-right: 50px
    }

    li.tab-slider--trigger.annually-tab {
        padding-left: 50px
    }

    .tab-slider--trigger {
        font-size: 17px
    }

    .tab-slider--trigger span {
        font-size: 8px
    }

    .tab-slider--tabs:before {
        left: 34%
    }

    .tab-slider--tabs:after {
        left: 34%
    }

    .tab-slider--tabs.slide:after {
        left: 38.5%
    }

    .fre-trial-btn {
        margin: 28px 25px 28px !important
    }
}

@media (min-width: 1285px) and (max-width: 1400px) {
    .pricing-column {
        padding: 25px 20px 60px 20px
    }

    .cstm-list.cstm-recommend-list {
        padding: 0
    }

    .cstm-recommend-list li {
        font-size: 12px
    }
}

@media (min-width: 1200px) and (max-width: 1285px) {
    .cstm-list li {
        font-size: 16px;
        line-height: 39px
    }

    .pricing-column {
        padding: 25px 15px 60px 15px
    }

    ul.cstm-list {
        padding: 0 0
    }

    .cstm-list.cstm-recommend-list li {
        font-size: 12px;
        line-height: 22px;
        margin-bottom: 5px
    }

    .cstm-recommend-list.cstm-list li:after {
        top: 0
    }

    .banner-left-colmn {
        padding-left: 15px
    }
}

@media (min-width: 1200px) and (max-width: 1360px) {
    .timer-prec-sec .pricing-column {
        padding: 25px 50px 60px 50px;
        margin: 0 40px
    }

    h5.tmer-price-rcmd {
        margin: -25px -50px 25px
    }
}

@media (min-width: 1200px) {
    .banner-section .container {
        max-width: 1197px
    }
}

@media (max-width: 1199px) {
    .banner-image img {
        max-width: 80%
    }

    .banner-image {
        text-align: center
    }

    .create-acc {
        margin-top: 11px
    }

    .trust-image img {
        margin-bottom: 20px
    }

    .we-offer-sec {
        margin: 40px auto 42px
    }

    .offer-col {
        padding-top: 20px
    }

    .offer-row, .offer-row.offer-row-4 {
        padding: 40px 0 0 !important
    }

    .how-work-sec {
        margin: 10px auto 40px
    }

    .how-work {
        padding: 30px 0 15px
    }

    .trust-pilot-sec {
        margin: 40px auto
    }

    .customers-text {
        padding: 54px 0 15px
    }

    .how-work {
        padding: 30px 0 15px
    }

    .amazon-text h2 {
        text-align: center
    }

    .amazon-bg {
        padding: 30px 0 40px 0
    }

    .popup-form .form-btn {
        margin-top: 20px
    }

    .continue-btn {
        margin: 10px auto
    }

    div#g_id_onload {
        margin: 0;
        padding: 0
    }

    .popup-body {
        padding: 0 15px
    }

    .modal {
        padding-right: 0 !important
    }

    .footer-menu-row .footer-menu {
        margin-right: 20px !important;
    }

    .free-trial-banner-sec .email-collector__input, .fre-trial-btn {
        width: 100% !important;
    }
    .free-trial-banner-sec .banner-section {
        background-position-y: bottom;
    }
}

@media (min-width: 1200px) {
    .banner-section .container {
        max-width: 1197px
    }
}

@media (min-width: 992px) and (max-width: 1919px) {
    .get-start-btn, .login-btn, .nav-list li a {
        font-size: 14px
    }
}


@media (min-width: 768px) and (max-width: 1680px){
.section__header {
    font-size: 38px;
    line-height: 48px;
}
.section__subheader p {
    font-size: 15px;
    line-height: 23px;
}
.we-offer-sec {
    margin: 45px auto 50px;
}
.offer-image-col img {
    max-width: 85%;
}
.offer-text a img {
    max-width: 28px;
}
.we-offer-text h2, .offer-text h2 {
    font-size: 36px;
}
}

@media (min-width: 1200px) and (max-width: 1680px){
.free-one-para p {
    font-size: 28px;
}
.we-offer-text h2, .offer-text h2 {
    font-size: 40px;
}
.offer-text a {
    font-size: 22px;
}
.offer-row {
    padding: 60px 0 0 !important;
}
.offer-text p {
    padding: 13px 0 15px;
    font-size: 20px;
}
}

@media (max-width: 768px) {

.extra-plan {
    margin: 40px 15px 60px;
  }
  
  .extra-plan .cstm-btn {
    width: auto;
    padding: 10px 44px;
  }
  
  .extra-plan .container {
    padding: 55px 20px;
  }
  
  .extra-plan-title {
    font-size: 26px;
  }
  
  .extra-plan p {
    font-size: 16px;
    margin-bottom: 23px;
  }
  

}