/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
    line-height: 1.6;
    color: #1a1a1a;
    background-color: #ffffff;
    overflow-x: hidden;
}


br {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}


/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1rem;
    color: #666;
}

a {
    text-decoration: none;
    color: inherit;
    color: #EB1000;
    transition: all 0.3s ease;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 500;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg, #EB1000 0%, #d10000 100%);
    border: 2px solid #800900;
    color: white;
    /* box-shadow: 0 4px 15px rgba(235, 16, 0, 0.4); */
    box-shadow: 0 4px 15px rgba(16, 16, 16, 0.2);
    user-select: none;
}

.btn-primary:hover {
    transform: translateY(-2px);
    /* box-shadow: 0 8px 25px rgba(235, 16, 0, 0.6); */
    box-shadow: 0 4px 15px rgba(16, 16, 16, 0.4);
}

.btn-secondary {
    background: #f8f9fa;
    color: #1a1a1a;
    border: 2px solid #e9ecef;
}

.btn-secondary:hover {
    background: #e9ecef;
    transform: translateY(-1px);
}

.btn-outline {
    background: transparent;
    color: #EB1000;
    border: 2px solid #EB1000;
}

.btn-outline:hover {
    background: #EB1000;
    color: white;
    transform: translateY(-1px);
}

.btn-large {
    padding: 16px 32px;
    font-size: 18px;
}

.btn-full {
    width: 100%;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(9px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 1rem 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo-img {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.logo-text {
    font-size: 24px;
    font-weight: 700;
    background: linear-gradient(132deg, #EB1000 0%, #690700 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    font-weight: 500;
    color: #666;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #EB1000;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}
  
  .body_container {
    transition: filter 0.75s ease-in-out;
    -webkit-transition: filter 0.75s ease-in-out;
  }
  
  
  .header {
    position: relative;
    top: 0;
    left: 0;
    right: 16px;
    min-height: 68px;
    padding-bottom: 0px;
    margin: 0;
    box-sizing: border-box;
    -webkit-box-sizing:border-box;
    -moz-box-sizing: border-box;
    transition: top 0.5s ease-in-out;
    -webkit-transition: top 0.5s ease-in-out;
    z-index: 99999;
    background-color: #F5F5EE;
  }
  
  .header .header_top {
    position: relative;
    display: block;
    width: calc(100% - 32px);
    height: 60px;
    margin: 0 auto;
    border-bottom: 1px solid #ccc;
    background-color: #F5F5EE;
  }
  
  
  .logo {
    position: relative;
    top: 14px;
    left: 0px;
    display: inline-block;
    background: url('../../assets/farebin_em.png');
    background-size: 38px;
    background-repeat: no-repeat;
    background-position: left center;
    min-width: 100px;
    padding: 8px 0 8px 40px;
    color: #000;
    font-weight: bold;
  }
  
  .logo:hover, .logo:focus {
    text-decoration: none;
    color: #000;
  }
  
  .header .header_bottom {
    background-color: #FDFDF8;
    position: relative;
    display: block;
    width: 100% ;
    padding: 0 32px;
    margin: 0 auto;
    border-bottom: 1px solid #ccc;
  }
  
  
  .nav_ul {
    display: inline-block;
    padding: 16px 0;
    list-style: none;
    margin: 0;
  }
  
  .nav_ul .nav_icon {
    height: 10px;
    margin: 0 -8px !important;
    background: url("../assets/chevron-right-dark-24px.png");
    background-size: 12px;
    background-repeat: no-repeat;
    background-position: center;
  }
  
  .nav_ul li {
    display: inline-block;
    margin: 0;
    padding: 2px 8px;
    font-weight: bold;
  
    cursor: pointer;
  }
  
  .nav_ul li a {
    text-decoration: none !important;
    color: #666;
    font-weight: bold;
    cursor: pointer;
  }
  
  .nav_ul li a:hover {
    text-decoration: none !important;
    color: #268BD2;
    /* color: #000; */
    cursor: pointer;
  }
  
  
  
  
  .log_in, .sign_up {
    position: absolute;
    top: 12px;
    right: 139px;
    padding: 6px 16px;
    border: 1px solid #000;
    border-radius: 4px 0 0 4px;
    color: #000;
    text-align: center;
    /* font-weight: bold; */
    text-decoration: none;
    cursor: pointer;
    background: #fff;
    /* background: #000 url("../../assets/chevron-right-light-24px.png");
    background-size: 16px;
    background-repeat: no-repeat;
    background-position: calc(100% - 8px) 49%; */
    opacity: 0.95;
  }
  
  .log_in:hover {
    color: #000;
    opacity: 1;
    box-shadow: 0 3px 8px -3px #0002;
    text-decoration: none;
  }
  
  
  .sign_up {
    right: 32px;
    color: #fff;
    background: #000;
    opacity: 0.9;
    border-radius: 0 4px 4px 0;
  }
  
  .sign_up:hover {
    color: #fff;
    opacity: 1;
    box-shadow: 0 3px 8px -3px #0002;
    text-decoration: none;
  }
  
  .log_in:focus {
    color: #000;
  }
  
  .sign_up:focus {
    color: #fff;
    text-decoration: none;
  }
  
  
  
  
  .main_div {
    display: block;
    position: relative;
    /* background: red; */
    top: 86px;
    margin: 16px auto 0 auto;
    height: auto;
    width: calc(100% - 0);
    padding: 0 16px 16px 16px;
    list-style: none;
    text-align: center;
  }
  
  
  .main_div h1 {
    line-height: 50px;
    color: #000;
    font-weight: bolder;
    margin: 8px 0;
  }
  
  
  .main_div .first_top_heading h4.deal {
    margin-top: 24px;
  }
  
  .main_div .first_top_heading h4.deal span b {
    position: relative;
    display: inline-block;
  
  }
  
  
  .main_div h4.deal span {
    /* position: absolute;
    bottom: 12px;
    right: 26px; */
    color: #268BD2;
    font-size: 13px;
    background: #E1F2FF;
    border-radius: 8px;
    border: 1px solid #268BD2;
    padding: 6px 12px;
    box-shadow: 0 3px 8px -3px #0009;
  }
  
  
  
  /* also need keyframes and -moz-keyframes */
   @keyframes shake {
      8%, 41% {
          transform: translateX(-10px);
          -webkit-transform: translateX(-10px);
      }
      25%, 58% {
          transform: translateX(10px);
          -webkit-transform: translateX(10px);
      }
      75% {
          transform: translateX(-5px);
          -webkit-transform: translateX(-5px);
      }
      92% {
          transform: translateX(5px);
          -webkit-transform: translateX(5px);
      }
      0%, 100% {
          transform: translateX(0);
          -webkit-transform: translateX(0);
      }
  }
  
  
  
  .refund {
    padding: 40px 0;
  }
  
  
  .refund p {
    color: #D04200;
  }
  
  
  .refund h2 {
    font-size: 3.5rem;
    font-weight: 700;
    /* line-height: 1.1; */
    margin-bottom: 0.5rem;
    color: #1a1a1a;
  }
  
  .refund h3 {
    color: #000;
    /* line-height: 28px; */
    margin-top: -2px;
    font-weight: bold;
  }
  
  .refund h4 {
    font-size: 1.5rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.5;
  }
  
  .refund h4 span {
    font-style: italic;
  }
  
  .refund img {
    margin-top: 16px;
    width: 175px;
    height: 175px;
    object-fit: cover;
    pointer-events: none !important;
  }
  
  
  .get_started_btn {
    width: 332px;
    width: 80%;
    border-radius: 6px;
    /* border: 1px solid #fff; */
    cursor: pointer;
    box-shadow: 0 3px 10px -3px #0003;
    margin: 10px 0 8px 0;
    text-decoration: none;
    /* background: linear-gradient(180deg, rgba(238,93,25,1) 29%, rgba(214,71,3,1) 65%); */
    background: #EB1000;
    transition: all 0.4s ease-in-out;
  }
  
  .refund .get_started_btn {
    display: inline-block;
    width: 340px;
  }
  
  .get_started_btn span {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 6px;
    background: url("../../assets/chevron-right-light-24px.png");
    /* border: 1px solid #F26522;
    background-color: #e14f25; */
    background-size: 19px;
    background-repeat: no-repeat;
    background-position: calc(100% - 16px) 48%;
    font-size: 17px;
    /* font-weight: bold; */
    color: #fff;
    padding: 12px 32px 12px 18px;
    margin: 0;
    cursor: pointer;
    text-align: left;
    text-decoration: none;
    transition: background-position 0.5s ease-in-out;
    opacity: 1;
  }
  
  .get_started_btn:hover, .get_started_btn:focus {
    color: #fff;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(16, 16, 16, 0.3);
  }
  
  .get_started_btn span:hover, .get_started_btn span:focus {
    color: #fff;
    text-decoration: none;
    opacity: 1;
    background-position: calc(100% - 10px) 48%;
    
  }
  
  .get_started_btn b {
    /* color: #e14f25; */
    /* color: #F0652F; */
  }
  
  
  
  .carousel-container {
      width: 100%;
      overflow: hidden;
      /* background-color: white; */
      padding: 20px 0;
  }
  
  .carousel-container p {
    color: #D04200;
  }
  
  .carousel {
    margin-top: 24px;
    display: flex;
    width: max-content;
    animation: scroll 550s linear infinite;
  }
  
  .logo-item {
      width: 150px;
      /* width: auto; */
      margin: 0 24px;
      display: flex;
      justify-content: center;
      align-items: center;
  }
  
  .logo-item img {
      max-width: 100%;
      max-height: 100px;
      object-fit: contain;
  }
  
  @keyframes scroll {
      0% {
          transform: translateX(0);
      }
      100% {
          transform: translateX(-100%);
      }
  }
  
  
  
  
  .testimonial_div {
    position: relative;
    margin: 100px auto 0 auto;
    padding-bottom: 32px;
    min-height: 350px;
    width: 100%;
    height: auto;
    /* border-bottom: 3px solid #000; */
  }
  
  .testimonial_div.newmanwebsolutions .xm {
    display: none;
  }
  
  .testimonial_div.amvlaw .col-md-5 {
    background: url("../../assets/aaron_amvlaw_.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
    height: 390px;
  }
  
  .testimonial_div.newmanwebsolutions .col-md-5 {
    background: url("../../assets/Sam_Newman_2.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
    height: 390px;
  }
  
  .testimonial_div .col-md-7 {
    padding-right: 150px;
  }
  
  
  .testimonial_div.newmanwebsolutions .col-md-7 {
    padding-left: 150px;
    padding-right: 0px;
  }
  
  .testimonial_div .col-md-7 h2 {
    text-align: left;
    /* font-weight: bolder; */
    color: #000;
    font-size: 18px;
    font-style: italic;
    line-height: 28px;
  }
  
  .testimonial_div .col-md-7 h2 span {
    color: #000;
  }
  
  .testimonial_div.newmanwebsolutions .col-md-7 h2 {
    /* text-align: left; */
  }
  
  .testimonial_div .col-md-7 a {
    margin: 0;
  }
  
  .testimonial_div .col-md-7 img {
    pointer-events: none;
    display: block;
    width: 150px;
    text-align: left;
  }
  
  .testimonial_div.newmanwebsolutions .col-md-7 img {
    width: 150px;
  }
  
  .testimonial_div .col-md-7 h4 {
    text-align: left;
    margin-top: 18px;
    /* padding-left: 24px; */
    /* background: url("../../assets/aaron_AMVLAW_logo.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: left center; */
  }
  
  
  
  .testimonial_div .col-md-7 h4 a {
    text-align: left;
    text-decoration: none;
    color: #999;
    line-height: 24px;
  }
  
  .testimonial_div.newmanwebsolutions .col-md-7 h4 {
    /* padding-left: 32px; */
    /* background: url("../../assets/newmanwebsolutions_logo.png");
    background-size: 28px;
    background-repeat: no-repeat;
    background-position: left 95%; */
  }
  
  
  .mon_year_div {
    display: block;
    text-align: right;
    width: 90%;
    margin: 0 auto;
    border-top: 1px dashed #ccc;
    border-bottom: 1px dashed #ccc;
    padding: 16px 100px 16px 24px;
    font-size: 12px;
    user-select: none;
  }
  
  .mon_year_div .billing_cycle {
    position: relative;
    display: inline-block;
    font-weight: bold;
    color: #000;
    float: left;
  }
  
  .mon_year_div p {
    position: relative;
    display: inline-block;
    font-weight: normal;
    color: #888;
  }
  
  .mon_year_div .monthly_label {
    top: 2px;
    margin: 0 6px 0 0;
  }
  
  .mon_year_div .yearly_label {
    top: 2px;
    margin: 0 0 0 6px;
  }
  
  .mon_year_div .active {
    font-weight: bold;
    color: #268BD2;
  }
  
  .mon_year_div .percent_saved {
    position: absolute;
    top: -2px;
    text-align: center;
    color: #888;
    font-size: 12px;
    font-weight: normal;
    background: #eee;
    border-radius: 8px;
    border: 1px solid #ddd;
    padding: 3px 8px;
    margin-left: 8px;
    width: 75px;
    box-shadow: 0 3px 8px -3px #0001;
  }
  
  .mon_year_div .active .percent_saved {
    color: #268BD2;
    background: #E1F2FF;
  }
  
  .switch {
      position: relative;
      top: -8px;
      display: inline-block;
      width: 40px;
      height: 12px;
      margin: 0;
      
    }
  
    /* Hide default HTML checkbox */
    .switch input {
      opacity: 0;
      width: 0;
      height: 0;
    }
  
    /* The slider */
    .slider {
      position: absolute;
      cursor: pointer;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background-color: #E5E7EB;
      background-color: #E1F2FF;
      box-shadow: 0 0 1px #000e;
      border: 1px solid #268BD2;
      -webkit-transition: .4s;
      transition: .4s;
    }
  
    .slider:before {
      position: absolute;
      content: "";
      height: 20px;
      width: 20px;
      left: -2px;
      bottom: -5px;
      background-color: #268BD2;
      -webkit-transition: .4s;
      transition: .4s;
      border: 1px solid #fff;
    }
  
    input:checked + .slider {
      /* background-color: #ccc; */
    }
  
    input:focus + .slider {
      /* box-shadow: 0 0 1px #268BD2; */
    }
  
    input:checked + .slider {
      /* border: 1px solid #aaa; */
    }
  
    input:checked + .slider:before {
      -webkit-transform: translateX(22px);
      -ms-transform: translateX(22px);
      transform: translateX(22px);
      /* background-color: #1a73e8; */
      /* border: 1px solid #fff; */
    }
  
    /* Rounded sliders */
    .slider.round {
      border-radius: 20px;
    }
  
    .slider.round:before {
      border-radius: 50%;
    }
  
  
  
  
    .pricing_table {
      display: block;
      /* background: red; */
      margin: 0 auto !important;
      width: 100% !important;
      text-align: left;
    }

    .container_pricing_table {
        /* max-width: 1200px; */
        margin: 0 auto;
        padding: 0;
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        gap: 0rem;
        align-items: center;
        position: relative;
        z-index: 1;
    }
  
    .pricing_table .tier {
      padding: 0;
    }
  
    .pricing_table .tier .tier_inner {
      background: #f8f9fa;
      border-radius: 6px;
      border: 1px solid #ddd;
      margin: 0 8px;
      padding: 16px 24px;
      min-height: 1070px;
      box-shadow: 0 3px 8px -3px #0001;
    }
  
    .pricing_table .tier .professional_tier {
      position: relative;
      top: 0px;
      min-height: 1100px;
      border: 2px solid #268BD2;
      box-shadow: 0 3px 8px -3px #0009;
    }
  
    .pricing_table .tier .professional_tier .best_seller_new {
      position: absolute;
      right: 8px;
      top: -18px;
      background: #268BD2;
      vertical-align: middle;
      padding: 5px 10px;
      box-shadow: 0 3px 8px -3px #0009;
      color: #fff;
      font-size: 12px;
      font-weight: bold;
      border: 2px solid #146dac;
      border-radius: 8px;
    }
  
    .pricing_table .tier .professional_tier .best_seller_new svg {
      display: inline-block;
      vertical-align: middle;
      margin-right: 4px;
    }
  
    .pricing_table .tier .professional_tier .best_seller_new svg path {
      fill: #c90 !important;
    }
  
  
  .pricing_table .tier .professional_tier .best_seller_new svg path:first-child {
    animation: sparkleLarge 5.75s linear infinite;
    -webkit-animation: sparkleLarge 5.75s linear infinite;
    fill: rgb(251, 191, 11) !important;
  }
  
  .pricing_table .tier .professional_tier .best_seller_new svg path:last-child {
    animation: sparkle 5.75s linear infinite;
    -webkit-animation: sparkle 5.75s linear infinite;
    fill: #ffcd36 !important;
  }
  
  /* also need keyframes and -moz-keyframes */
  @keyframes sparkle {
    8%, 41% {
        transform: translateX(1px);
        -webkit-transform: translateX(1px);
    }
    25%, 58% {
        transform: translateX(2px);
        -webkit-transform: translateX(2px);
    }
    75% {
        transform: translateX(1px);
        -webkit-transform: translateX(1px);
    }
    92% {
        transform: translateX(1px);
        -webkit-transform: translateX(1px);
    }
    0%, 100% {
        transform: translateX(0);
        -webkit-transform: translateX(0);
    }
  }
  
  
  @keyframes sparkleLarge {
    8%, 41% {
        transform: translateX(1px);
        -webkit-transform: translateX(1px);
    }
    25%, 58% {
        transform: translateX(-1px);
        -webkit-transform: translateX(-1px);
    }
    75% {
        transform: translateX(0px);
        -webkit-transform: translateX(0px);
    }
    92% {
        transform: translateX(-1px);
        -webkit-transform: translateX(-1px);
    }
    0%, 100% {
        transform: translateX(0);
        -webkit-transform: translateX(0);
    }
  }

  .tier_inner hr {
    background-color: #fff;
    border: 1px solid #fde2e0;
  }
  
  
    .pricing_table .tier .tier_inner .head {
      color: #000;
      font-weight: bold;
    }
  
    .pricing_table .tier .tier_inner .sub_head {
      color: #999;
      line-height: 24px;
      min-height: 100px;
      border-bottom: 1px solid #eee;
      /* border-bottom: 1px solid #F26522; */
    }

    .pricing_table .tier .professional_tier .sub_head {
        min-height: 114px;
    }
  
    .pricing_table .tier .tier_inner .sub_head b {
      color: #555;
      font-weight: normal;
    }
  
    .pricing_table .tier .tier_inner .price_div {
      min-height: 88px;
      /* overflow: hidden; */
    }
  
    .pricing_table .tier .tier_inner .price_div .price {
      position: relative;
      display: inline-block;
      margin: 0 auto;
      padding: 0 24px 0 0;
    }
  
    .pricing_table .tier .tier_inner .price_div .price span {
      display: inline-block;
      position: relative;
      top: 0;
      font-size: 32px;
      font-weight: bold;
      color: #000;
      margin: 0 auto;
      padding: 0;
    }
  
    .pricing_table .tier .tier_inner .price_div .price sub {
      position: absolute;
      top: 16px;
      /* left: 149px; */
      color: #000;
      font-weight: bold;
    }
  
    .pricing_table .tier .tier_inner .price_div .period {
      position: relative;
      bottom: 2px;
      display: inline-block;
      font-size: 14px;
      color: #888;
      margin: 0 auto 0 auto;
      /* text-decoration: line-through; */
      /* float: right; */
    }
  
    .pricing_table .tier .tier_inner .price_div .billing_sched {
        position: relative;
      display: inline-block;
      font-size: 14px;
      color: #999;
      font-weight: bold;
      margin-top: 0;
      cursor: pointer;
    }

    .pricing_table .tier .tier_inner .price_div .billing_sched .tip {
        position: absolute;
        left: 0;
        right: auto;
    }

    .pricing_table .tier .tier_inner .billing_sched svg {
        position: relative;
        top: 2px;
        margin-left: 5px;
        width: 14px;
        height: auto;
        opacity: 0.4;
        cursor: pointer;
      }
  
    .pricing_table .tier .tier_inner .use_plan_btn {
      display: block;
      background: #800900;
      background: linear-gradient(180deg, rgb(160, 11, 0) 55%, rgba(128, 9, 0, 1) 100%);
      border-radius: 5px;
      padding: 0;
      margin: 0;
      opacity: 1;
    }
  
  
    .pricing_table .tier .tier_inner .use_plan_btn a {
      display: block;
      /* background: #e14f25 url("../../assets/chevron-right-light-24px.png"); */
      background: transparent url("../../assets/chevron-right-light-24px.png");
      background-size: 20px;
      background-repeat: no-repeat;
      background-position: calc(100% - 10px) 49%;
      font-size: 15px;
      font-weight: bold;
      color: #fff;
      border-radius: 5px;
      border: 2px solid #800900;
      padding: 10px 32px 10px 16px;
      margin: 0;
      cursor: pointer;
      text-decoration: none;
      box-shadow: 0 3px 8px -3px #0003;
      transition: all 0.4s ease-in-out;
    }
  
    .pricing_table .tier .tier_inner .enterprise_use_plan_btn a {
      background: #800900 url("../../assets/chevron-right-light-24px.png");
      background-size: 20px;
      background-repeat: no-repeat;
      background-position: calc(100% - 6px) 49%;
      border: 1px solid #000;
      opacity: 0.9;
      font-weight: bold;
    }
  
    .pricing_table .tier .tier_inner .use_plan_btn a:hover {
      opacity: 1;
      background-position: calc(100% - 8px) 49%;
      box-shadow: 0 3px 8px -3px #0005;
    }

    .pricing_table .tier .tier_inner .use_plan_btn:hover {
        transform: translateY(-2px);
      box-shadow: 0 4px 15px rgba(16, 16, 16, 0.2);
      }
  
    .pricing_table .tier .tier_inner .plan_features {
      list-style: none;
      padding: 0;
      margin-top: 24px;
      min-height: 180px;
    }
  
    .pricing_table .tier .tier_inner .plan_features li {
      background: url("../../assets/valid.png");
      background-size: 16px;
      background-repeat: no-repeat;
      background-position: 3px 6px;
      padding: 2px 0 2px 24px;
      color: #000;
      font-weight: bold;
    }
  
  
    .pricing_table .tier .tier_inner .common_features {
      padding: 0 0 0 25px;
      margin-top: 24px;
    }
  
  
    .pricing_table .tier .tier_inner .common_features li {
      padding: 2px 0 2px 0;
    }
  
    .pricing_table .tier .tier_inner ul li p {
      position: relative;
      display: inline;
      margin: 0;
      padding: 0;
      font-size: 14px;
      color: #000;
    }
  
    .pricing_table .tier .tier_inner .price_div svg, .pricing_table .tier .tier_inner ul svg {
      position: relative;
      top: 2px;
      margin-left: 5px;
      width: 14px;
      height: auto;
      opacity: 0.4;
      cursor: pointer;
    }
  
    .pricing_table .tier .tier_inner ul li:hover svg {
      opacity: 1;
    }
  
    .pricing_table .tier .tier_inner .tip {
      display: none;
      position: absolute;
      right: -24px;
      width: 170px;
      padding: 8px 16px;
      font-size: 12px;
      font-weight: normal;
      /* color: #999; */
      background: #FDFDF8;
      border: 1px solid #ccc;
      border-radius: 6px;
      box-shadow: 0 3px 8px -3px #0005;
      z-index: 9999999999999;
    }
  
    .pricing_table .tier .tier_inner .tier_learn_more {
      position: absolute;
      bottom: 24px;
      display: block;
      padding-left: 8px;
      font-weight: bold;
      text-decoration: none;
    }
  
    .pricing_table .tier .tier_inner .tier_learn_more:hover {
      text-decoration: none;
    }
  
    .container_pricing_table .tier .popular {
      /* position: absolute;
      bottom: 12px;
      right: 26px; */
      color: #268BD2;
      font-size: 12px;
      background: #E1F2FF;
      border-radius: 8px;
      padding: 3px 8px;
    }
  
  
  
    .see_all_features .see_all_features_chevron {
      background: url("../../assets/chevron-right-dark-24px.png");
      background-size: 16px;
      background-repeat: no-repeat;
      background-position: center;
      width: 32px;
      height: 32px;
      transform: rotate(90deg);
      margin: 0 auto;
    }
  
  
    .feature_table .row {
      margin-bottom: 2px;
    }
  
  
    .feature_table .feature_col {
      text-align: center;
      background: #fff;
      /* border-left: 3px solid #F5F5EE; */
      /* border-bottom: 3px solid #F5F5EE; */
    }
  
    .feature_table .feature_head {
      padding: 18px 0;
      /* border: none; */
      color: #000;
    }
  
  
    .feature_info, .feature_plan {
      padding: 14px 0 !important;
    }
  
    .feature_info p, .feature_plan p {
      margin: 0;
      font-size: 13px;
    }
  
  
  
  
  .custom_pricing, .onboarding_div {
    position: relative;
    margin: 130px auto 0 auto;
    min-height: 350px;
    width: 90%;
    /* box-shadow: 0 8px 8px -3px #0001; */
  }
  
  .custom_pricing .row, .onboarding_div .row {
      height: 100%;
      padding: 0 !important;
      /* border: 1px solid #999; */
      /* border-right: 2px solid #444; */
      /* border-bottom: 2px solid #444; */
      text-align: left;
      /* background: #fff; */
  }
  
  .custom_pricing .row .left_custom_div, .onboarding_div .row .right_onboarding_div {
    height: 100%;
    margin: 0;
    padding: 32px;
    /* background: #fff; */
  }
  
  .custom_pricing .row .left_custom_div h1, .onboarding_div .row .right_onboarding_div h1 {
    color: #000;
    font-weight: bolder;
    margin: 8px 0;
  }
  
  .custom_pricing .row .left_custom_div h4, .onboarding_div .row .right_onboarding_div h4 {
    color: #000;
    line-height: 28px;
    margin-top: 0;
    padding-right: 6px;
    /* font-weight: bold; */
  }
  
  .custom_pricing .row .left_custom_div h4 span, .onboarding_div .row .right_onboarding_div h4 span {
    color: #000;
    background-color: #eee;
    padding: 4px 6px;
    border: 1px solid #ddd;
    border-radius: 6px;
  }
  
  .custom_pricing .row .left_custom_div .custom_pricing_btn, .onboarding_div .row .right_onboarding_div .onboarding_btn {
    display: block;
    width: 90%;
    border-radius: 5px;
    border: 1px solid #000;
    background: #ffbc00 url("../../assets/chevron-right-dark-24px.png");
    background-size: 16px;
    background-repeat: no-repeat;
    background-position: calc(100% - 8px) 49%;
    font-size: 15px;
    font-weight: bold;
    color: #000;
    padding: 10px 32px 10px 16px;
    margin: 0;
    cursor: pointer;
    text-decoration: none;
    box-shadow: 0 3px 8px -3px #0003;
    transition: background-position 0.5s ease-in-out;
    opacity: 1;
  }
  
  .branded_link_div .row .right_onboarding_div .onboarding_btn {
    /* border: 1px solid #e14f25; */
    background-color: #ff7a3c;
  }
  
  .custom_pricing .row .left_custom_div .custom_pricing_btn:hover, .custom_pricing .row .left_custom_div .custom_pricing_btn:focus, .onboarding_div .row .right_onboarding_div .onboarding_btn:hover, .onboarding_div .row .right_onboarding_div .onboarding_btn:focus {
      text-decoration: none;
      /* background-color: #000; */
      color: #000;
  }
  
  
  .custom_pricing .row .right_custom_div {
      height: 100%;
      margin: 0;
      /* background: #FB651E url('../../assets/bk_large_trans.png'); */
      /* background: transparent url('../../assets/bk_large_trans.png');
      background-size: cover;
      background-repeat: no-repeat;
      background-position: center; */
  }
  
  
  .custom_pricing .row .right_custom_div .enterprise_pattern {
    top: 190px !important;
  }
  
  
  
  .onboarding_div .row .right_onboarding_div {
    text-align: left;
  }
  
  
  .onboarding_div .row .left_onboarding_div .enterprise_pattern {
    top: 190px !important;
    -moz-transform: scaleX(-1);
      -webkit-transform: scaleX(-1);
      -o-transform: scaleX(-1);
      transform: scaleX(-1);
      -ms-filter: fliph; /*IE*/
      filter: fliph; /*IE*/
  }
  
  
  .signature_div .left_onboarding_div {
    /* min-height: 350px; */
  }
  
  .signature_div .bigb {
    transition: bottom 0.5s ease-in-out, left 0.5s ease-in-out;
  }
  
  .signature_div .shf {
    transition: bottom 0.5s ease-in-out, left 0.5s ease-in-out;
  }
  
  .signature_div:hover .bigb {
    bottom: 150% !important;
    left: 15% !important;
  }
  
  .signature_div:hover .shf {
    bottom: 1% !important;
    left: 0px !important;
  }
  
  .onboarding_btn:hover {
    transition: background-position 0.5s ease-in-out;
    background-position: calc(100% - 10px) 49% !important;
  }
  
  
  .branded_link_div .bigb {
    transition: bottom 0.5s ease-in-out, right 0.5s ease-in-out;
  }
  
  .branded_link_div .bigb2 {
    transition: bottom 0.5s ease-in-out, right 0.5s ease-in-out;
  }
  
  .branded_link_div .shf2 {
    transition: bottom 0.5s ease-in-out, right 0.5s ease-in-out;
  }
  
  .branded_link_div:hover .bigb {
    bottom: 45% !important;
    right: 40% !important;
  }
  
  .branded_link_div:hover .bigb2 {
    bottom: -90% !important;
    right: 1% !important;
  }
  
  .branded_link_div:hover .shf2 {
    bottom: -15% !important;
    right: 50% !important;
  }
  
  
  /* .signature_div .bigb:hover,
  .signature_div .bigb:hover + .shf,
  .signature_div .bigb:hover ~ .shf {
    bottom: 75% !important;
    left: 2px !important;
  }
  
  .signature_div .shf:hover,
  .signature_div .shf:hover + .bigb,
  .signature_div .shf:hover ~ .bigb {
    bottom: 75% !important;
    left: 2px !important;
  } */
  
  /* .signature_div .shf:hover {
    bottom: 25% !important;
    left: 59% !important;
  } */
  
  
  
  .compare_div {
    position: relative;
    margin: 130px auto 0 auto;
    width: 80%;
    text-align: left;
  }
  
  .compare_div h2 {
    font-weight: bolder;
    color: #000;
    line-height: 38px;
    margin: 0 auto;
    text-align: center;
  }
  
  .compare_div h4 {
    line-height: 24px;
    margin: 0 auto;
    text-align: center;
  }
  
  .compare_div ul {
    margin: 32px auto 0 auto;
    padding: 16px 24px;
    list-style: none;
    border: 2px solid #268BD2;
    border-radius: 4px;
  }
  
  .compare_div ul li {
    display: block;
    margin: 8px 0;
    padding: 16px 0;
    border: 2px solid #999;
    border-radius: 6px;
  }
  
  .compare_div ul li div {
    display: inline-block;
    vertical-align: middle;
    text-align: center;
    width: 30%;
  }
  
  .compare_div ul li .co_logo {
    width: 38%;
    height: 48px;
    border-right: 2px dashed #999;
  }
  
  .compare_div ul li.okaysend_li div {
    color: #D04200;
  }
  
  .compare_div ul li .okaysend {
    background: url("../../assets/upload-zapier-test.jpg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 150px auto;
  }
  
  .compare_div ul li .content-snare {
    background: url("../../assets/content-snare.jpg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 150px auto;
  }
  
  .compare_div ul li .file-invite {
    background: url("../../assets/file-invite.jpg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 150px auto;
  }
  
  .compare_div ul li .clustdoc {
    background: url("../../assets/clustdoc.jpg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 150px auto;
  }
  
  .compare_div ul li .easy-send {
    background: url("../../assets/easy-send.jpg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 150px auto;
  }
  
  
  .compare_div ul li .billing_sched {
    position: relative;
    display: inline-block;
    top: 0;
    font-weight: bold;
    color: #000;
    margin: 0 auto;
    padding: 0;
  }
  
  .compare_div ul li .price {
    position: relative;
    display: inline-block;
    top: 0;
    font-size: 32px;
    font-weight: bold;
    color: #000;
    margin: 0 auto;
    padding: 0;
  }
  
  
  
  
  .benefits_div {
    position: relative;
    margin: 130px auto 0 auto;
    width: 80%;
    text-align: left;
  }
  
  .benefits_div h2 {
    font-weight: bolder;
    color: #000;
    line-height: 38px;
  }
  
  .benefits_div h4 {
    color: #000;
    min-height: 95px;
    line-height: 28px;
    margin-top: 0;
    padding: 0 8px 0 0;
  }
  
  .benefits_div .benefits_pattern {
    height: 100px;
    width: 100%;
    object-fit: cover;
    border-radius: 32px;
    /* background: rgba(242, 101, 34, 0.22) url('../../assets/bk_large_trans.png');
    background-size: auto;
    background-repeat: no-repeat;
    background-position: center; */
  }
  
  
  
  
  
  .faq {
    position: relative;
    display: block;
    margin: 130px auto 0 auto;
    padding: 0;
    width: 85%;
    text-align: left;
  }
  
  .faq h1 {
    color: #000;
    font-weight: bolder;
    margin: 8px 0;
  }
  
  .collapsible {
    position: relative;
    background-color: transparent;
    cursor: pointer;
    padding: 16px 24px 16px 0px;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    font-size: 19px;
    color: #000;
  }
  
  .collapsible span {
    position: absolute;
    top: calc(50% - 6px);
    right: 8px;
    width: 12px;
    height: 12px;
    background: url("../../assets/dropdown_dark.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    transform: rotate(0deg);
  }
  
  .collapsible.active span {
    transform: rotate(180deg);
  }
  
  .content {
    padding: 0 2px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
    background-color: transparent;
      font-size: 15px;
    color: #444;
  }
  
  
  
  
  /* Footer */
.footer {
    position: relative;
    background: #1a1a1a;
    color: white;
    padding: 0 0 20px 0;
}



.footer_border_div {
    position: relative;
    top: 0px;
    height: 48px;
    margin: 0 0 32px 0;
  }
  
  .footer_border_div svg {
    position: absolute;
    top: -1px;
    z-index: 100;
    display: block;
    height: 48px;
    width: auto;
  }
  

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.footer-social div {
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-social div svg {
    color: #999;
    transition: color 0.2s ease;
    width: 20px;
    height: 18px;
}

.footer-social div svg:hover {
    color: #EB1000;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 0;
    filter: invert(100%) sepia(0%) saturate(0%) hue-rotate(29deg) brightness(170%) contrast(103%);
}

.footer-description {
    color: #999;
    line-height: 1.6;
}

.footer-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: white;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: #999;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #EB1000;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 2rem;
    text-align: center;
    color: #999;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer .footer-bottom .location {
    display: inline-block;
    /* float: right; */
    /* background: red; */
    margin: 0;
    user-select: none;
  }
  
  .footer .footer-bottom .location * {
    display: inline-block;
    color: #888;
    font-size: 12px;
  }

  .footer .footer-bottom .location p {
    position: relative;
    top: -3px;
  }
  
  .footer .footer-bottom .flag {
    width: 14px;
    height: 14px;
    margin-top: 0;
    margin-left: 12px;
    border-radius: 50%;
    object-position: 50% 50%;
    object-fit: cover;
    outline: none;
    user-select: none;
  }

  
  
  
  
    @media (max-width: 1200px) {
      .header {
        width: 100%;
      }
  
  
      .main_div {
        width: 100%;
        padding: 0 0 16px 0;
      }
  
      .pricing_table .tier .tier_inner .plan_features li p {
        font-size: 14px;
      }
  
      .pricing_table .tier .tier_inner .common_features li {
        font-size: 14px;
      }
  
      .pricing_table .tier .tier_inner ul li svg {
        margin-left: 3px;
      }
    }
  
  
    @media (max-width: 950px) {
      .testimonial_div.newmanwebsolutions {
        margin-top: 0;
      }
  
      .testimonial_div .col-md-7 {
        padding: 0 50px !important;
      }
  
      .testimonial_div.amvlaw .col-md-5 {
        height: 190px;
      }
  
      .testimonial_div.newmanwebsolutions .col-md-5 {
        height: 190px;
      }
  
      .testimonial_div .col-md-7 img {
        display: block;
        margin: 16px auto 0 auto;
        width: 124px;
        text-align: center;
      }
  
      .testimonial_div.newmanwebsolutions .col-lg-5 {
        display: none;
      }
  
      .testimonial_div.newmanwebsolutions .xm {
        display: block;
      }
  
      .testimonial_div_border_div svg {
        bottom: -44px;
      }
    }


    /* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-logo {
        justify-content: center;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-bottom {
      flex-direction: column;
      text-align: center;
      gap: 1rem;
  }

    .floating-card {
        display: none;
    }
}
  
  
    @media (max-width: 450px) {
  
      .mon_year_div {
        width: 100%;
        padding: 16px 92px 16px 16px;
        text-align: right;
      }
  
      .mon_year_div .billing_cycle {
        font-weight: normal;
      }
  
      .mon_year_div p {
        position: relative;
        display: inline-block;
        font-weight: normal;
        color: #888;
      }
  
      .mon_year_div .active {
        font-weight: bold;
        color: #268BD2;
      }
  
      .mon_year_div .monthly_label {
        margin: 0 6px 0 -10px;
      }
  
      .mon_year_div .percent_saved {
        font-size: 11px;
        padding: 3px 7px;
        margin-left: 6px;
        width: 70px;
        text-align: center;
      }

      .container_pricing_table {
        grid-template-columns: 1fr;
      }
  
      .pricing_table .tier {
        margin-bottom: 80px !important;
      }
  
      .pricing_table .tier .tier_inner {
        min-height: 800px;
      }
  
      .pricing_table .tier .professional_tier {
        top: 0;
        min-height: 800px;
      }
  
      .pricing_table .tier .tier_inner .plan_features li p {
        font-size: 16px;
      }
  
      .pricing_table .tier .tier_inner .common_features li {
        font-size: 15px;
      }
  
      .pricing_table .tier .tier_inner .plan_features {
        list-style: none;
        padding: 0;
        margin-top: 24px;
        min-height: 132px;
      }
  
      .pricing_table .tier .professional_tier .plan_features {
        min-height: 132px;
      }
  
      .custom_pricing {
        padding-top: 50px;
      }
  
      .custom_pricing .left_custom_div {
        z-index: 999999;
      }
  
      .custom_pricing .right_custom_div {
        position: relative !important;
        top: -632px !important;
        z-index: 99;
        opacity: 0.8;
      }
  
  
      .onboarding_div {
        top: -80px !important;
      }
  
      .onboarding_div .row .left_onboarding_div {
        top: -44px !important;
        opacity: 0.8;
      }
  
      .benefits_div {
        margin-top: -70px;
      }
  
      .benefits_div .col-lg-4 {
        margin-bottom: 56px;
      }
  
      .benefits_div h4 {
        min-height: 62px;
      }
  
      .benefits_div .benefits_pattern {
        height: 80px;
      }
  
  
      .testimonial_div .col-md-5 {
        background-position: center;
        height: 300px;
      }
  
      .testimonial_div .col-md-7 {
        padding: 0 24px;
      }
  
      .testimonial_div .col-md-7 h2 {
        text-align: center;
      }
  
      .testimonial_div .col-md-7 h4 {
        text-align: center;
      }
  
      .testimonial_div.amvlaw .col-md-5 {
        height: 190px;
      }
  
      .testimonial_div.newmanwebsolutions .col-md-5 {
        height: 190px;
      }
  
      .testimonial_div .col-md-7 img {
        display: block;
        margin: 16px auto 0 auto;
        width: 124px;
        text-align: center;
      }
  
      .testimonial_div.newmanwebsolutions .col-lg-5 {
        display: none;
      }
  
      .testimonial_div.newmanwebsolutions .xm {
        display: block;
      }
  
      .onboarding_div .row .left_onboarding_div {
        padding: 0;
      }
  
  
      .onboarding_div .row .right_onboarding_div .onboarding_btn {
        width: 100%;
      }
  
      .header .header_top {
        width: 100%;
      }
  
      .logo {
        left: 0px;
      }
  
      .log_in, .sign_up {
        display: none;
        /* right: 106px;
        padding: 6px 12px;
        opacity: 1; */
      }
  
      /* .sign_up {
        top: 13px;
        right: 10px;
        border-radius: 4px;
      } */
  
      .hamburger_icon {
        display: block;
        position: absolute;
        top: 12px;
        right: 0;
        padding: 6px 16px;
      }
  
      .hamburger_icon #open-menu-svg {
        display: block;
      }
  
      .header .header_bottom {
        padding: 0px 8px 0 8px;
        background-color: #F5F5EE;
        background-color: #FDFDF8;
        box-shadow: 0 5px 10px -3px #0005;
        height: 990px;
        top: 60px;
        right: -110%;
        position: absolute;
        -webkit-transition: right 0.45s;
        -moz-transition:    right 0.45s;
        -ms-transition:     right 0.45s;
        -o-transition:      right 0.45s;
        transition:         right 0.45s;
      }
  
      .nav_ul {
        /* display: none; */
        text-align: center;
        width: 100%;
        padding: 0 8px;
        margin: 0;
      }
  
      .nav_ul li.signin {
        display: block;
        /* border-top: 1px solid #ddd; */
      }
  
      .nav_ul li {
        display: block;
        margin: 0 0 0 0;
        padding: 0;
        font-weight: bold;
        font-size: 18px;
        width: 100%;
        text-align: left;
        background: url('../../assets/chevron-right-dark-24px.png');
        background-size: 20px;
        background-repeat: no-repeat;
        background-position: 98% center;
        border-bottom: 1px solid #ddd;
      }
  
      .nav_ul li a {
        display: block;
        padding: 24px 8px !important;
        color: #444;
        width: 100%;
      }
  
      .footer .logo_div {
        margin-bottom: 24px;
      }
  
      .footer .logo_div .desc {
        margin: 8px 0 16px 8px;
        max-width: 95%;
        font-size: 16px;
        color: #999;
      }
  
      .footer .footer_divs ul {
        list-style: none;
        padding: 0 0 0 10px;
        margin: 32px 0 16px 0;
      }
  
      .faq {
        width: 85%;
      }
  
      .collapsible {
        padding: 16px 32px 16px 0px;
      }
  
      .collapsible span {
        /* top: calc(50% - 6px); */
        right: 0;
      }
  
      .content {
        border-bottom: 1px dotted #ddd;
      }
  
    }
  
  
  
    @media (max-width: 300px) {
      .benefits_div h4 {
        min-height: 95px;
      }
    }
  