.cp-link {
  color: var(--orange-500);
  font-family: Inter, sans-serif;
  font-weight: 500;
  display: inline-block;
  line-height: 20px;
  transition: all 0.2s ease-in-out;
}
.cp-link:hover, .cp-link:focus {
  transform: translateX(2px);
  color: var(--orange-500);
  text-decoration: none;
}
.cp-link--icon:after {
  content: "";
  display: inline-block;
  width: 12px;
  height: 10px;
  margin-left: 8px;
  background: url("../images/home/jan-2019/arrow/button-arrow-orange.svg") center/contain no-repeat;
}
.cp-link__white {
  color: #ffffff;
  border-bottom: 1px solid #ffffff;
  display: inline-block;
  margin-top: 24px;
}
.cp-link__white:hover, .cp-link__white:focus {
  color: #ffffff;
  text-decoration: none;
}
.cp-link__white--icon:after {
  content: "";
  display: inline-block;
  width: 12px;
  height: 10px;
  margin-left: 8px;
  background: url("../images/home/jan-2019/arrow/arrow.svg") center/contain no-repeat;
  filter: brightness(0) invert(1);
}
.cp-link__orange {
  color: #FF7846;
}
.cp-link__orange:hover, .cp-link__orange:focus {
  color: #FF7846;
  text-decoration: none;
}
.cp-link__orange--icon:after {
  background: url("../images/home/jan-2019/arrow/button-arrow-orange.svg") center/contain no-repeat;
}

.cp-btn {
  color: var(--blue-900);
  font-family: Inter, sans-serif;
  font-size: 18px;
  font-weight: 500;
  background-color: var(--lime-500);
  box-shadow: 0 2px 10px 0 rgba(0, 4, 48, 0.08), 0 8px 8px 0 rgba(0, 4, 48, 0.12), 0 12px 21px 0 rgba(0, 4, 48, 0.24);
  display: inline-block;
  height: 50px;
  line-height: 50px;
  padding-left: 20px;
  padding-right: 20px;
  transition: 0.3s ease;
  position: relative;
}
@media (max-width: 767px) {
  .cp-btn {
    display: block;
    width: 100%;
    white-space: nowrap;
    text-align: center;
    max-width: 320px;
  }
}
.cp-btn:after {
  content: "";
  display: inline-block;
  width: 14px;
  height: 12px;
  margin-left: 8px;
  transition: 0.3s ease;
  background: url("../images/home/jan-2019/arrow/button-arrow-blue.svg") center/contain no-repeat;
}
.cp-btn:hover, .cp-btn:focus {
  color: var(--blue-900);
  transition: 0.3s ease;
  text-decoration: none;
  border-color: transparent;
}
.cp-btn:hover:after, .cp-btn:focus:after {
  transform: translateX(4px);
}
.cp-btn--ghost {
  color: var(--lime-500);
  background: transparent;
  box-shadow: none;
}
.cp-btn--ghost:hover, .cp-btn--ghost:focus {
  color: var(--lime-500);
}
.cp-btn--ghost:after {
  background: url("../images/home/jan-2019/arrow/button-arrow-lime.svg") center/contain no-repeat;
}
.cp-btn--ghost-primary {
  box-shadow: 0 0 0 1px #3A008C inset;
  color: #3A008C;
}
.cp-btn--ghost-primary:hover, .cp-btn--ghost-primary:focus {
  color: #3A008C;
}
.cp-btn--ghost-primary:after {
  background: url("../images/home/jan-2019/arrow/button-arrow-purple.svg") center/contain no-repeat;
}
.cp-btn--primary {
  background: #3A008C;
}
.cp-btn--altghost {
  color: #FFAE90;
  background: transparent !important;
  box-shadow: 0px 0px 0px 1px #FFAE90 inset;
}
.cp-btn--altghost:hover, .cp-btn--altghost:focus {
  color: #FFAE90;
}
.cp-btn--altghost:after {
  background: url("../images/home/jan-2019/arrow/button-arrow-aps.svg") center/contain no-repeat;
}

.cp-hero {
  overflow: hidden;
  background-color: transparent;
}
@media (min-width: 992px) and (min-height: 700px) {
  .cp-hero {
    min-height: 620px;
  }
}
.cp-hero__container {
  font-family: Sora, sans-serif;
  padding-top: 90px;
  padding-bottom: 110px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-gap: 30px;
  max-width: 1170px;
  align-items: center;
  position: relative;
  z-index: 2;
}
@media (min-width: 768px) and (max-width: 991px) {
  .cp-hero__container {
    padding-top: 120px;
    padding-bottom: 90px;
    text-align: center;
  }
}
@media (min-width: 992px) {
  .cp-hero__container {
    padding-top: 180px;
    padding-bottom: 150px;
    text-align: center;
  }
}
@media (max-height: 700px) {
  .cp-hero__container {
    padding-top: 160px;
    padding-bottom: 160px;
    text-align: center;
  }
}
@media (max-width: 767px) {
  .cp-hero__container {
    padding: 120px 24px;
    text-align: left;
    display: block;
  }
}
.cp-hero__container--footer {
  padding: 80px 24px;
}
@media (min-width: 992px) {
  .cp-hero__container--footer {
    padding-bottom: 60px;
  }
}
@media (max-width: 767px) {
  .cp-hero__container--xs {
    padding-bottom: 30px;
  }
}
.cp-hero__body {
  grid-column: 2/12;
}
.cp-hero__footer {
  grid-column: 1/13;
}
.cp-hero__header {
  max-width: 600px;
  margin: 0 auto 36px;
}
.cp-hero__icon {
  margin-bottom: 24px;
}
.cp-hero__title {
  color: #ffffff;
  font-size: 30px;
  font-weight: bold;
  font-family: Sora, sans-serif;
  letter-spacing: -1.4px;
  line-height: 36px;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
  margin-top: 0;
}
@media (min-width: 768px) {
  .cp-hero__title {
    font-size: 36px;
    line-height: 46px;
  }
}
@media (min-width: 992px) {
  .cp-hero__title {
    font-size: 42px;
    line-height: 50px;
  }
}
.cp-hero__desc {
  color: #ffffff;
  font-size: 18px;
  line-height: 28px;
  font-family: Inter, sans-serif;
}
.cp-hero__highlight {
  position: relative;
  transition: background-size 0.3s ease;
  padding: 0 4px;
  margin: 0 -4px;
}
.cp-hero__highlight--active {
  background-size: 100% 100%;
}
.cp-hero__arrow {
  display: none;
  padding: 10px;
  opacity: 0.5;
  transition: 0.3s ease;
}
.cp-hero__arrow:hover, .cp-hero__arrow:focus {
  opacity: 9;
}
@media (min-width: 992px) {
  .cp-hero__arrow {
    display: inline-block;
  }
}
.cp-hero__arrow--right {
  grid-column-end: -1;
  margin-left: 0;
  margin-right: 0;
}
.cp-hero__arrow--left {
  grid-column-start: 1;
  margin-right: 0;
  margin-left: 0;
  transform: rotate(180deg);
}
.cp-hero__action {
  margin: 12px 8px;
}
@media (max-width: 767px) {
  .cp-hero__action {
    flex: 1;
  }
}
.cp-hero__actions {
  display: flex;
}
@media (max-width: 767px) {
  .cp-hero__actions {
    flex-wrap: wrap;
  }
}
@media (min-width: 768px) {
  .cp-hero__actions {
    justify-content: center;
  }
}
.cp-hero__video {
  margin-bottom: 48px;
  display: block;
  position: relative;
  transition: 0.3s ease-out;
}
@media (min-width: 768px) {
  .cp-hero__video {
    transform: perspective(1000px) rotateX(12deg);
  }
  .cp-hero__video:hover, .cp-hero__video:focus {
    transform: perspective(900px) rotateX(8deg);
    cursor: pointer;
  }
}
.cp-hero__vbtn {
  background: url("https://www.chargebee.com/static/resources/careers/youtube.svg") no-repeat left center;
  background-size: 50px;
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%);
  height: 50px;
  width: 50px;
}
@media (min-width: 768px) {
  .cp-hero__vbtn {
    background-size: 100px;
    height: 100px;
    width: 100px;
    top: 45%;
  }
}
@media (min-width: 768px) {
  .cp-hero__panels {
    display: flex;
    justify-content: space-around;
  }
}
@media (max-width: 767px) {
  .cp-hero__panel + .cp-hero__panel {
    margin-top: 24px;
  }
}
.cp-hero--sm {
  background-color: var(--blue-900);
}
.cp-hero--rbi {
  background-color: #fff7e6;
}
.cp-hero--rp {
  background: #dfffee;
}
.cp-hero--hgsb {
  background: #dfffee url("../images/product/detail/super-scale-banner.svg") bottom/contain no-repeat;
}
.cp-hero--esb {
  background: #1C0534 url("../images/product/detail/enterprise.svg") bottom/contain no-repeat;
}
.cp-hero--sab {
  background: #fce4ff url("../images/product/accounting-and-taxes/accounting-and-taxes-bg.svg") center/cover no-repeat;
  background-position: center bottom -80px;
}
.cp-hero--sr {
  background: #fce8e5 url("../images/product/reporting-and-analytics/reporting-and-analytics-bg.svg") bottom/cover no-repeat;
  background-position: center bottom -70px;
}
.cp-hero--ssp {
  background: #e1e9fb url("../images/product/detail/self-service-banner.svg") bottom/contain no-repeat;
}
.cp-hero--fsd {
  background: #d8d5f7 url("../images/product/detail/sales-driven.svg") bottom/contain no-repeat;
}
@media (min-width: 992px) {
  .cp-hero--fsd {
    background-size: cover;
  }
}
.cp-hero--sfo {
  background: #fce4ff url("../images/product/detail/saas-finance.svg") bottom/contain no-repeat;
}
.cp-hero--sbe {
  background-color: #1C0534;
}
.cp-hero--rbi .cp-hero__title {
  color: #4D3600;
}
.cp-hero--rbi .cp-btn {
  background-color: #4D3600;
}
.cp-hero--rbi .cp-btn--ghost {
  color: #4D3600;
  background-color: transparent;
  box-shadow: 0px 0px 0px 1px #4D3600 inset;
}
.cp-hero--rbi .cp-btn--ghost:after {
  background: url("../images/home/jan-2019/arrow/button-arrow-rbi.svg") center/contain no-repeat;
}
.cp-hero--rp .cp-hero__title {
  color: #00523E;
}
.cp-hero--rp .cp-btn {
  background-color: #00523E;
}
.cp-hero--rp .cp-btn--ghost {
  color: #00523E;
  background-color: transparent;
  box-shadow: 0px 0px 0px 1px #00523E inset;
}
.cp-hero--rp .cp-btn--ghost:after {
  background: url("../images/home/jan-2019/arrow/button-arrow-rp.svg") center/contain no-repeat;
}
.cp-hero--sab .cp-hero__title {
  color: #4C0078;
}
.cp-hero--sab .cp-btn {
  background-color: #4C0078;
}
.cp-hero--sab .cp-btn--ghost {
  color: #4C0078;
  background-color: transparent;
  box-shadow: 0px 0px 0px 1px #4C0078 inset;
}
.cp-hero--sab .cp-btn--ghost:after {
  background: url("../images/home/jan-2019/arrow/button-arrow-sab.svg") center/contain no-repeat;
}
.cp-hero--sr .cp-hero__title {
  color: #73361F;
}
.cp-hero--sr .cp-btn {
  background-color: #73361F;
}
.cp-hero--sr .cp-btn--ghost {
  color: #73361F;
  background-color: transparent;
  box-shadow: 0px 0px 0px 1px #73361F inset;
}
.cp-hero--sr .cp-btn--ghost:after {
  background: url("../images/home/jan-2019/arrow/button-arrow-sr.svg") center/contain no-repeat;
}
.cp-hero--sbe .cp-hero__title {
  color: #ffffff;
}
.cp-hero--sbe .cp-btn {
  background-color: #6200EA;
}
.cp-hero--sbe .cp-btn--ghost {
  color: #ffffff;
  background-color: transparent;
  box-shadow: 0px 0px 0px 1px #ffffff inset;
}
.cp-hero--sbe .cp-btn--ghost:after {
  background: url("../images/home/jan-2019/arrow/button-arrow.svg") center/contain no-repeat;
}

.cp-shape {
  position: relative;
  z-index: 1;
}
.cp-shape--two .cp-circle {
  background: #feeecc;
}
.cp-shape--two .cp-circle--1 {
  right: -50px;
  top: 200px;
  left: auto;
}
@media (max-height: 700px) {
  .cp-shape--two .cp-circle--1 {
    top: 160px;
  }
}
.cp-shape--two .cp-circle--2 {
  left: 50px;
  right: auto;
  border-radius: 0 50px 50px 0;
  transform: rotate(130deg) !important;
}
.cp-shape--two .cp-circle--3 {
  left: 60px;
  top: 420px;
  width: 200px;
  height: 200px;
}
.cp-shape--two .cp-circle--5 {
  right: 50px;
  top: 500px;
  width: 165px;
  height: 165px;
  z-index: 1;
}
@media (max-height: 700px) {
  .cp-shape--two .cp-circle--5 {
    top: 460px;
  }
}
.cp-shape--two .cp-dot {
  left: 10px;
}
.cp-shape--two .cp-dot, .cp-shape--two .cp-dot:after, .cp-shape--two .cp-dot:before {
  box-shadow: 0 -22px 0 0px #e1cba0, 0 -44px 0 0px #e1cba0, 0 -66px 0 0px #e1cba0, 0 -88px 0 0px #e1cba0, 0 -110px 0 0px #e1cba0, 0 -132px 0 0px #e1cba0, 0 -154px 0 0px #e1cba0, 0 -176px 0 0px #e1cba0, 0 -198px 0 0px #e1cba0, 0 -220px 0 0px #e1cba0, 0 -244px 0 0px #e1cba0, 0 -266px 0 0px #e1cba0, 0 -288px 0 0px #e1cba0, 0 -310px 0 0px #e1cba0, 0 -332px 0 0px #e1cba0, 0 -354px 0 0px #e1cba0, 0 -376px 0 0px #e1cba0;
}
.cp-shape--two .cp-dot:before {
  left: 46px;
}
.cp-shape--two .cp-dot:after {
  left: 23px;
}
.cp-shape--two .cp-triangle--1 {
  left: auto;
  right: 260px;
  top: 260px;
  transform: rotate(180deg);
  border-top-color: #feeecc;
}
@media (max-height: 700px) {
  .cp-shape--two .cp-triangle--1 {
    top: 220px;
  }
}
.cp-shape--two .cp-triangle--2 {
  background-color: #e1cba0;
  transform: rotate(140deg);
  top: 560px;
  left: -40px;
}
@media (max-height: 700px) {
  .cp-shape--two .cp-triangle--2 {
    top: 520px;
  }
}
.cp-shape--two .cp-triangle--2:after {
  border-top: 150px solid white;
  border-right: 130px solid transparent;
}
.cp-shape--two .cp-wavys {
  right: 0;
}
.cp-shape--three .cp-circle {
  background: #c5f9e1;
}
.cp-shape--three .cp-circle--1 {
  right: -90px;
  left: auto;
  top: 70px;
  width: 130px;
  height: 130px;
}
.cp-shape--three .cp-circle--2 {
  left: 80px;
  top: 250px;
}
.cp-shape--three .cp-circle--3 {
  left: 0px;
  top: 380px;
  width: 320px;
  height: 320px;
}
.cp-shape--three .cp-circle--5 {
  right: 40px;
  top: 410px;
  width: 220px;
  height: 220px;
}
.cp-shape--three .cp-triangle--1 {
  right: 240px;
  left: auto;
  top: 200px;
  border-top: 30px solid #c5f9e1;
}
.cp-shape--three .cp-triangle--2 {
  right: -20px;
  left: auto;
  width: 130px;
  height: 180px;
  background: #29d495;
  transform: rotate(90deg);
}
.cp-shape--three .cp-wavys {
  left: 200px;
  width: 240px;
  overflow: hidden;
}
.cp-shape--three .cp-dot {
  left: auto;
  right: 130px;
  top: 580px;
}
.cp-shape--three .cp-dot, .cp-shape--three .cp-dot:after, .cp-shape--three .cp-dot:before {
  box-shadow: 0 -22px 0 0 #29d495, -70px -22px 0 0 #29d495, -140px -22px 0 0 #29d495, 0 -44px 0 0 #29d495, -70px -44px 0 0 #29d495, -140px -44px 0 0 #29d495, 0 -66px 0 0 #29d495, -70px -66px 0 0 #29d495, -140px -66px 0 0 #29d495, 0 -88px 0 0 #29d495, -70px -88px 0 0 #29d495, -140px -88px 0 0 #29d495, 0 -110px 0 0 #29d495, -70px -110px 0 0 #29d495, -140px -110px 0 0 #29d495, 0 -132px 0 0 #29d495, -70px -132px 0 0 #29d495, -140px -132px 0 0 #29d495, 0 -154px 0 0 #29d495, -70px -154px 0 0 #29d495, -140px -154px 0 0 #29d495, 0 -176px 0 0 #29d495, -70px -176px 0 0 #29d495, -140px -176px 0 0 #29d495, 0 -198px 0 0 #29d495, -70px -198px 0 0 #29d495, -140px -198px 0 0 #29d495;
}
.cp-shape--three .cp-dot:before {
  left: 46px;
}
.cp-shape--three .cp-dot:after {
  left: 23px;
}

.cp-circle {
  position: absolute;
  border-radius: 50%;
  background: #d2e3fe;
}
.cp-circle--1 {
  left: -120px;
  top: 120px;
  width: 150px;
  height: 150px;
}
@media (max-height: 700px) {
  .cp-circle--1 {
    top: 80px;
  }
}
.cp-circle--2 {
  right: 180px;
  top: 140px;
  width: 25px;
  height: 50px;
  border-radius: 0 50px 50px 0;
  transform: rotate(50deg) !important;
}
@media (max-height: 700px) {
  .cp-circle--2 {
    top: 100px;
  }
}
.cp-circle--3 {
  left: -20px;
  top: 380px;
  width: 220px;
  height: 220px;
}
@media (max-height: 700px) {
  .cp-circle--3 {
    top: 340px;
  }
}
.cp-circle--4 {
  right: 400px;
  top: 560px;
  width: 80px;
  height: 80px;
}
@media (max-height: 700px) {
  .cp-circle--4 {
    top: 520px;
  }
}
.cp-circle--5 {
  right: -160px;
  top: 380px;
  width: 340px;
  height: 340px;
}
@media (max-height: 700px) {
  .cp-circle--5 {
    top: 340px;
  }
}

.cp-triangle {
  position: absolute;
}
.cp-triangle--1 {
  left: 160px;
  top: 240px;
  width: 0;
  height: 0;
  border-top: 30px solid #d2e3fd;
  border-left: 30px solid transparent;
}
@media (max-height: 700px) {
  .cp-triangle--1 {
    top: 200px;
  }
}
.cp-triangle--2 {
  top: 490px;
  left: -70px;
  width: 170px;
  height: 150px;
  background: #98b0dd;
  overflow: hidden;
}
@media (max-height: 700px) {
  .cp-triangle--2 {
    top: 450px;
    left: -50px;
  }
}
.cp-triangle--2:after {
  content: "";
  top: 0;
  left: 0px;
  width: 0;
  height: 0;
  border-top: 180px solid white;
  border-right: 170px solid transparent;
  position: absolute;
}
.cp-triangle--3 {
  right: 0;
  top: 450px;
  width: 0;
  height: 0;
  border-bottom: 200px solid #e1cba0;
  border-left: 200px solid transparent;
}
@media (max-height: 700px) {
  .cp-triangle--3 {
    top: 410px;
  }
}

.cp-dot {
  right: 15px;
  top: 635px;
}
@media (max-height: 700px) {
  .cp-dot {
    top: 610px;
  }
}
.cp-dot, .cp-dot:before, .cp-dot:after {
  position: absolute;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  box-shadow: 0 -22px 0 0px #98b0dd, 0 -44px 0 0px #98b0dd, 0 -66px 0 0px #98b0dd, 0 -88px 0 0px #98b0dd, 0 -110px 0 0px #98b0dd, 0 -132px 0 0px #98b0dd, 0 -154px 0 0px #98b0dd, 0 -176px 0 0px #98b0dd, 0 -198px 0 0px #98b0dd, 0 -220px 0 0px #98b0dd, 0 -244px 0 0px #98b0dd, 0 -266px 0 0px #98b0dd, 0 -288px 0 0px #98b0dd, 0 -310px 0 0px #98b0dd, 0 -332px 0 0px #98b0dd, 0 -354px 0 0px #98b0dd, 0 -376px 0 0px #98b0dd;
}
.cp-dot:before, .cp-dot:after {
  content: "";
  top: 0;
}
.cp-dot:before {
  right: 46px;
}
.cp-dot:after {
  right: 23px;
}

.cp-wavy {
  overflow: hidden;
  width: 300px;
  height: 20px;
}
.cp-wavys {
  position: absolute;
  top: 540px;
}
@media (max-height: 700px) {
  .cp-wavys {
    top: 500px;
  }
}

@media (min-width: 992px) {
  .cp-navs {
    margin-bottom: 160px;
  }
}

.cp-article {
  font-family: Sora, sans-serif;
  margin-bottom: 80px;
}
@media (min-width: 992px) {
  .cp-article {
    margin-bottom: 120px;
  }
}
@media (min-width: 991px) {
  .cp-article__container {
    display: flex;
  }
}
@media (min-width: 992px) {
  .cp-article__icon {
    margin-right: 24px;
  }
}
@media (max-width: 991px) {
  .cp-article__icon {
    margin-bottom: 24px;
  }
}
.cp-article__other {
  flex: 1;
}
.cp-article__arrow {
  position: relative;
  background: #6300EA;
  width: 28px;
  height: 28px;
  display: block;
  border-radius: 50%;
  margin-top: 6px;
}
.cp-article__arrow:before, .cp-article__arrow:after {
  content: "";
  position: absolute;
  padding: 1px;
  left: 9px;
  top: 13px;
  transition: 0.3s all;
  background-color: #ffffff;
  transform: rotate(-45deg);
}
.cp-article__arrow:before {
  height: 6px;
}
.cp-article__arrow:after {
  width: 12px;
}
@media (max-width: 767px) {
  .cp-article__body--xs {
    margin-top: 40px;
  }
}
.cp-article__header {
  margin-bottom: 20px;
}
.cp-article__content {
  margin-bottom: 32px;
}
.cp-article__actions {
  display: flex;
  flex-wrap: wrap;
}
.cp-article__action {
  margin-bottom: 18px;
  margin-right: 24px;
}
.cp-article__list {
  margin: 0;
  padding: 0;
}
@media (max-width: 767px) {
  .cp-article__list {
    padding-left: 24px;
  }
}
.cp-article__item {
  margin-bottom: 8px;
}
.cp-article__label {
  text-transform: uppercase;
  margin-bottom: 12px;
  font-weight: 600;
  text-align: center;
  border-radius: 14px;
  display: inline-block;
  padding: 2px 12px;
  color: var(--blue-900);
  background: hsl(199.09, 6.62%, 79.08%);
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 14px;
  margin-top: 0;
}
@media (min-width: 992px) {
  .cp-article__label {
    font-size: 14px !important;
    line-height: 28px;
  }
}
.cp-article__title {
  color: #00000A;
  font-family: Sora, sans-serif;
  font-size: 22px;
  line-height: 32px;
  font-weight: bold;
  letter-spacing: -0.42px;
  margin: 0;
}
@media (min-width: 768px) and (max-width: 991px) {
  .cp-article__title {
    font-size: 28px;
    line-height: 36px;
  }
}
@media (min-width: 992px) {
  .cp-article__title {
    font-size: 32px;
    line-height: 42px;
  }
}
.cp-article__title--alt {
  font-size: 28px;
  line-height: 35px;
}
@media (min-width: 768px) and (max-width: 991px) {
  .cp-article__title--alt {
    font-size: fs_lg;
    line-height: 40px;
  }
}
@media (min-width: 992px) {
  .cp-article__title--alt {
    font-size: 40px;
    line-height: 46px;
  }
}
.cp-article__heading {
  color: #ffffff;
  font-family: Sora, sans-serif;
  font-size: 18px;
  font-weight: bold;
  line-height: 21px;
  margin-bottom: 8px;
  margin-top: 5px;
}
.cp-article__desc {
  color: #242438;
  font-family: Inter, sans-serif;
  font-size: 16px;
  line-height: 24px;
}
.cp-article__figure {
  margin-bottom: 24px;
  margin-top: 12px;
}
@media (min-width: 992px) {
  .cp-article__figure {
    margin-bottom: 24px;
    margin-top: 0;
  }
}
@media (min-width: 992px) {
  .cp-article__figure--alt {
    bottom: -54px;
    position: relative;
  }
}
@media (max-width: 991px) {
  .cp-article__figure--alt {
    margin-bottom: 40px;
  }
}
.cp-article__figure--rgt > img {
  margin-right: 0;
  margin-left: auto;
}
@media (min-width: 992px) {
  .cp-article__figure--rgt {
    margin-right: -40px;
    margin-bottom: -30px;
  }
}
@media (max-width: 991px) {
  .cp-article__figure--rgt {
    margin-bottom: 40px;
    margin-right: -15px;
  }
}
@media (min-width: 768px) {
  .cp-article__figure--transf {
    transform: perspective(300px) rotateY(5deg);
  }
}
.cp-article--alt .cp-article__label {
  font-size: 16px;
}
.cp-article--alt .cp-article__title {
  font-size: 24px;
  line-height: 30px;
  max-width: 380px;
}
.cp-article--center {
  margin-top: 80px;
}
@media (min-width: 992px) {
  .cp-article--center {
    margin-top: 180px;
    margin-bottom: 90px;
    text-align: center;
  }
}
.cp-article--center .cp-article__figure {
  margin-bottom: 36px;
}
.cp-article--center .cp-article__figure > img {
  margin: auto;
}
.cp-article--center .cp-article__desc {
  color: #ffffff;
  font-family: Sora, sans-serif;
  font-size: 20px;
  line-height: 29px;
}
@media (min-width: 992px) {
  .cp-article--center .cp-article__actions {
    justify-content: center;
  }
}

.cp-media__container {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-gap: 30px 0;
  padding-bottom: 20px;
  margin-bottom: 80px;
  border-bottom: 1px solid #E0E0E4;
}
@media (min-width: 992px) {
  .cp-media__container {
    margin-bottom: 120px;
  }
}
.cp-media__aside {
  grid-column: span 12;
  color: #00000a;
  font-family: Sora, sans-serif;
  font-size: 24px;
  font-weight: bold;
  letter-spacing: -0.3px;
  line-height: 28px;
  margin-right: 50px;
}
.cp-media__aside--img {
  margin-bottom: 12px;
}
@media (min-width: 992px) {
  .cp-media__aside--img {
    text-align: right;
  }
}
@media (min-width: 992px) {
  .cp-media__aside {
    grid-column: span 4;
    text-align: right;
  }
}
.cp-media__main {
  grid-column: span 12;
}
@media (min-width: 992px) {
  .cp-media__main {
    grid-column: span 8;
  }
}
@media (min-width: 1440px) {
  .cp-media__main {
    grid-column: span 7;
  }
}
.cp-media__list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.cp-media__item {
  color: #00000a;
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 40px;
  max-width: 300px;
}
@media (min-width: 1024px) {
  .cp-media__item {
    max-width: 310px;
  }
}
@media (max-width: 767px) {
  .cp-media__item {
    margin-bottom: 24px;
  }
}

.cp-parallax {
  font-family: Sora, sans-serif;
  color: #ffffff;
  padding-top: 80px;
  padding-bottom: 80px;
  margin-bottom: 90px;
  min-height: 400px;
  position: relative;
  box-shadow: inset 0 1px 17px 2px rgba(0, 0, 0, 0.29);
  background: url("../images/product/testimonial/trail-testimonial.png") center/cover no-repeat fixed;
  filter: grayscale(100%);
}
.cp-parallax:after {
  content: "";
  display: block;
  width: 100%;
  position: absolute;
  right: 0;
  height: 100%;
  top: 0;
  background: linear-gradient(-90deg, #000000 0%, rgba(0, 0, 0, 0.69) 48.29%, rgba(0, 0, 0, 0) 100%);
  z-index: 1;
}
.cp-parallax--rp {
  background: url("../images/product/study-banner.png") center/cover no-repeat fixed;
}
.cp-parallax--card:after {
  background: linear-gradient(90deg, #000000 0%, rgba(0, 0, 0, 0.69) 48.29%, rgba(0, 0, 0, 0) 100%);
}
.cp-parallax--livestorm {
  background: url("../images/product/testimonial/livestorm-testimonial.png") center/cover no-repeat fixed;
}
.cp-parallax--fishburners {
  background: url("../images/product/testimonial/fishburners-testimonial.png") center/cover no-repeat fixed;
}
.cp-parallax--nobly {
  background: url("../images/product/testimonial/nobly-testimonial.png") center/cover no-repeat fixed;
}
.cp-parallax--whiteboard {
  background: url("../images/case-study/whiteboard/whiteboard-banner.jpg") center/cover no-repeat fixed;
}
.cp-parallax--freedom {
  background: url("../images/product/testimonial/freedom-img.png") center/cover no-repeat fixed;
}
.cp-parallax--freshdesk {
  background: url("../images/product/testimonial/freshdesk-img.png") center/cover no-repeat fixed;
}
.cp-parallax--zenchef {
  background: url("../images/case-study/zenchef/bg1.jpg") center/cover no-repeat fixed;
}
.cp-parallax--codacy {
  background: url("../images/product/testimonial/codacy-img.png") center/cover no-repeat fixed;
}
.cp-parallax--getaccept {
  background: url("../images/case-study/getaccept/getaccept-img.png") center/cover no-repeat fixed;
}
.cp-parallax--concord {
  background: url("../images/case-study/concord/concord-banner.png") center/cover no-repeat fixed;
}
.cp-parallax--voverc {
  background: url("../images/case-study/voverc/voverc-banner.jpg") center/cover no-repeat fixed;
}
.cp-parallax--livestorm {
  background: url("../images/case-study/livestorm/livestorm-banner.jpg") center/cover no-repeat fixed;
}
.cp-parallax--acloudguru {
  background: url("../images/case-study/cloudguru/cloud-guru.jpeg") center/cover no-repeat fixed;
}
.cp-parallax--sisu {
  background: url("../images/case-study/sisu/sisu-banner.jpg") center/cover no-repeat fixed;
}
.cp-parallax--makespace {
  background: url("../images/case-study/makespace/makespace-team.jpg") center/cover no-repeat fixed;
}
.cp-parallax--drawboard {
  background: url("../images/case-study/drawboard/drawboard.jpg") center/cover no-repeat fixed;
}
.cp-parallax--userlanee {
  background: url("../images/case-study/userlane/userlane-banner.jpg") center/cover no-repeat fixed;
}
@media (min-width: 1200px) {
  .cp-parallax {
    padding-top: 120px;
    padding-bottom: 120px;
    min-height: 480px;
  }
}
.cp-parallax__header {
  margin-bottom: 24px;
}
.cp-parallax__header--white {
  filter: brightness(0) invert(1);
}
.cp-parallax__body {
  position: relative;
  z-index: 2;
}
.cp-parallax__content {
  margin-bottom: 32px;
  font-size: 18px;
  line-height: 26px;
}
@media (min-width: 992px) {
  .cp-parallax__content {
    font-size: 20px;
    line-height: 32px;
  }
}
.cp-parallax__author {
  font-size: 18px;
  font-weight: 500;
  text-align: right;
}
.cp-parallax__action {
  display: inline-block;
  margin-top: 24px;
}
.cp-parallax__action:hover, .cp-parallax__action:focus {
  text-decoration: none;
  color: #ffffff;
  opacity: 0.7;
}

.ps-article {
  font-family: Sora, sans-serif;
}
.ps-article__body {
  margin-bottom: 36px;
}
.ps-article__header {
  margin-bottom: 12px;
}
.ps-article__title {
  color: #ffffff;
  font-size: 24px;
  line-height: 32px;
  font-weight: bold;
  letter-spacing: -0.6px;
  font-family: Sora, sans-serif;
  margin: 0;
}
@media (min-width: 768px) and (max-width: 991px) {
  .ps-article__title {
    font-size: 28px;
    line-height: 36px;
  }
}
@media (min-width: 992px) {
  .ps-article__title {
    font-size: 32px;
    line-height: 42px;
  }
}
.ps-article__desc {
  color: #242438;
  font-family: Inter, sans-serif;
  font-size: 16px;
  line-height: 24px;
}

.ps-main__parallax {
  background-color: #180824;
}
@media (max-width: 767px) {
  .ps-main__parallax {
    padding: 40px 0;
  }
}
@media (min-width: 767px) {
  .ps-main__parallax .ps-article {
    padding: 60px 0 40px 0;
  }
}
@media (min-width: 992px) {
  .ps-main__parallax .ps-article {
    padding-top: 100px;
    padding-bottom: 80px;
  }
}
@media (max-width: 767px) {
  .ps-main__parallax .ps-article__img {
    margin: 24px auto;
    max-width: 280px;
  }
}
@media (min-width: 768px) {
  .ps-main__parallax .ps-flex--bottom {
    display: flex;
    align-items: flex-end;
  }
}

.cp-paper {
  border: 1px solid #EFEFF1;
  border-radius: 10px;
  background-color: #ffffff;
  box-shadow: 0 4px 16px 0 rgba(0, 0, 0, 0.09);
  padding-top: 40px;
  padding-bottom: 20px;
  max-width: 100%;
  margin: 0 0 80px;
  overflow: hidden;
}
@media (min-width: 992px) {
  .cp-paper {
    margin: 0 20px 80px;
  }
}
@media (min-width: 992px) {
  .cp-paper .cp-flex {
    display: flex;
  }
}
@media (min-width: 992px) {
  .cp-paper .cp-flex--align-bottom {
    align-self: flex-end;
  }
}
@media (min-width: 992px) {
  .cp-paper .cp-flex--align-bottom .cp-article__figure {
    margin-bottom: -20px;
  }
}
@media (min-width: 1200px) {
  .cp-paper .cp-flex--align-bottom .cp-article__figure {
    margin-bottom: -30px;
  }
}
@media (min-width: 1200px) {
  .cp-paper {
    max-width: 1170px;
    margin: 0 auto 120px;
    padding-bottom: 30px;
    padding-top: 60px;
  }
}
@media (min-width: 1440px) {
  .cp-paper {
    max-width: 1220px;
  }
}
.cp-paper--alt {
  border-width: 0;
  box-shadow: none;
  border-bottom: 1px solid #E0E0E4;
  padding-bottom: 60px;
}
@media (min-width: 992px) {
  .cp-paper--rbi {
    max-height: 500px;
  }
}

.cp-footer {
  text-align: center;
}
.cp-footer__title {
  color: #ffffff;
  font-family: Sora, sans-serif;
  font-size: 24px;
  letter-spacing: -0.6px;
  line-height: 32px;
  margin-bottom: 32px;
}
@media (min-width: 768px) {
  .cp-footer__title {
    font-size: 32px;
    line-height: 42px;
    font-weight: bold;
  }
}
.cp-footer__action {
  margin: 12px 8px;
}
@media (max-width: 767px) {
  .cp-footer__action {
    flex: 1;
  }
}
.cp-footer__actions {
  display: flex;
}
@media (max-width: 767px) {
  .cp-footer__actions {
    flex-wrap: wrap;
  }
}
@media (min-width: 768px) {
  .cp-footer__actions {
    justify-content: center;
  }
}

.cp-panel {
  margin-bottom: 100px;
}
.cp-panel__container {
  box-shadow: 0 0 1px 1px rgba(0, 0, 0, 0.06);
  padding: 12px 24px;
  border-radius: 4px;
  text-align: center;
  color: #242438;
  transition: 0.3s ease;
  display: block;
}
.cp-panel__container:hover, .cp-panel__container:focus {
  box-shadow: 0 1px 1px 0 rgba(90, 122, 190, 0.1), 0 10px 20px 0 rgba(90, 122, 190, 0.2);
  text-decoration: none;
  color: #242438;
}
@media (min-width: 768px) {
  .cp-panel__container {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
  }
}
@media (max-width: 767px) {
  .cp-panel__icon {
    max-width: 40px;
    margin: 0 auto 14px;
  }
}
.cp-panel__icon > img {
  margin: 12px auto 20px;
}
@media (min-width: 768px) {
  .cp-panel__icon > img {
    margin: 0;
    padding-right: 12px;
  }
}
.cp-panel__icon--alt {
  margin: 0 auto 14px;
}
@media (min-width: 768px) {
  .cp-panel__icon--alt {
    margin: -20px 0px -20px -40px;
    padding-right: 10px;
  }
}
.cp-panel__icon--alt > img {
  min-width: 40px;
  margin: 12px auto 20px;
}
@media (min-width: 768px) {
  .cp-panel__icon--alt > img {
    min-width: 70px;
    margin: 0;
    padding-right: 12px;
  }
}

.cp-product__article {
  margin-top: 40px;
  margin-bottom: 60px;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .cp-product__article {
    margin-top: 120px;
    margin-bottom: 100px;
  }
}
@media screen and (min-width: 1025px) {
  .cp-product__article {
    margin-top: 180px;
    margin-bottom: 120px;
  }
}

.flexrow {
  display: flex;
  justify-content: flex-start;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .flexrow {
    flex-wrap: wrap;
  }
}
.flexrow--middle {
  display: flex;
  align-items: center;
}
.flexrow--end {
  display: flex;
  align-items: flex-end;
}
.flexrow--margin {
  margin-top: 73px;
}
@media screen and (max-width: 767px) {
  .flexrow--margin {
    margin-top: 20px;
  }
}

.mobile-menu--expanded {
  transition: 600ms;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  background-color: #ffffff;
  box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.06), 0 4px 14px -1px rgba(0, 0, 0, 0.18);
  border-radius: 2px;
  position: fixed;
  top: 100px;
  z-index: 1000;
  margin: auto;
  width: 88%;
  left: 0px;
  right: 0px;
  opacity: 0;
  display: none;
}
.mobile-menu--expanded .menu-items {
  width: 50%;
  height: 100px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  border-right: 1px solid rgba(0, 0, 0, 0.06);
  display: flex;
  color: rgba(0, 0, 0, 0.75);
  font-weight: 500;
  padding: 0px 25px;
  align-items: center;
}
.mobile-menu--expanded .menu-items:nth-child(odd) {
  border-right: 0px;
}
.mobile-menu__close {
  width: 40px;
  height: 40px;
  cursor: pointer;
  text-align: center;
  background-color: #212128;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  right: -19px;
  top: -19px;
}

.p-menu {
  transition: 100ms;
  position: absolute;
  left: 0px;
  top: 0px;
  opacity: 1;
  width: 100%;
  z-index: 90;
  margin: 0;
  display: flex;
  justify-content: space-between;
  border-radius: 8px;
  background-color: #ffffff;
  box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.06), 0 4px 14px -1px rgba(0, 0, 0, 0.18);
}
.p-menu-parent {
  position: relative;
  top: -52px;
}
.p-menu__container {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex: 1;
  margin: 0 auto;
}
.p-menu__content {
  display: flex;
  justify-content: space-around;
  flex: 1;
  margin: 0 auto;
}
.p-menu__tab {
  padding: 24px 20px;
  color: #000FF0;
  font-family: Sora, sans-serif;
  font-size: 16px;
  letter-spacing: -0.4px;
  line-height: 20px;
  position: relative;
}
@media (min-width: 1440px) {
  .p-menu__tab {
    padding: 30px 40px 24px 40px;
    font-size: 20px;
    line-height: 28px;
  }
}
.p-menu__tab:after {
  content: "";
  width: 40px;
  height: 3px;
  border-radius: 2px;
  background: transparent;
  position: absolute;
  bottom: 0;
  display: block;
}
.p-menu__tab:hover, .p-menu__tab:focus {
  text-decoration: none;
  color: #000FF0;
}
.p-menu__tab:hover:after, .p-menu__tab:focus:after {
  content: "";
  width: 40px;
  height: 3px;
  border-radius: 2px;
  background-color: #000FF0;
  position: absolute;
  bottom: 0;
  display: block;
}
.p-menu__tab--active {
  color: var(--orange-500) !important;
  font-weight: bold;
}
.p-menu__tab--active:after {
  background-color: var(--orange-500) !important;
}
.p-menu__tab--active:hover, .p-menu__tab--active:focus {
  color: #193165;
  font-weight: bold;
}
.p-menu__logo {
  display: none;
}
.p-menu__signup {
  display: inline-block;
  display: none;
  color: #ff6c36;
  border: 1px solid #ff6c36;
  text-decoration: none;
  height: 33px;
  line-height: 31px;
  border-radius: 2px;
  padding: 0 18px;
  font-size: 14px;
}
.p-menu__signup:hover {
  background-color: #ff6c36;
  color: #fff;
}
.p-menu--rbi .p-menu__tab--active {
  color: #4D3600;
  font-weight: bold;
}
.p-menu--rbi .p-menu__tab--active:after {
  background-color: #4D3600;
}
.p-menu--rbi .p-menu__tab--active:hover, .p-menu--rbi .p-menu__tab--active:focus {
  color: #4D3600;
  font-weight: bold;
}
.p-menu--rp .p-menu__tab--active {
  color: #00523E;
  font-weight: bold;
}
.p-menu--rp .p-menu__tab--active:after {
  background-color: #00523E;
}
.p-menu--rp .p-menu__tab--active:hover, .p-menu--rp .p-menu__tab--active:focus {
  color: #00523E;
  font-weight: bold;
}
.p-menu--sab .p-menu__tab--active {
  color: #4C0078;
  font-weight: bold;
}
.p-menu--sab .p-menu__tab--active:after {
  background-color: #4C0078;
}
.p-menu--sab .p-menu__tab--active:hover, .p-menu--sab .p-menu__tab--active:focus {
  color: #4C0078;
  font-weight: bold;
}
.p-menu--sr .p-menu__tab--active {
  color: #73361F;
  font-weight: bold;
}
.p-menu--sr .p-menu__tab--active:after {
  background-color: #73361F;
}
.p-menu--sr .p-menu__tab--active:hover, .p-menu--sr .p-menu__tab--active:focus {
  color: #73361F;
  font-weight: bold;
}
.p-menu--sbe .p-menu__tab--active {
  color: #2C0069;
  font-weight: bold;
}
.p-menu--sbe .p-menu__tab--active:after {
  background-color: #2C0069;
}
.p-menu--sbe .p-menu__tab--active:hover, .p-menu--sbe .p-menu__tab--active:focus {
  color: #2C0069;
  font-weight: bold;
}
.p-menu--fixed {
  position: fixed;
  animation: slide-down 0.3s;
  transition: 0.2s ease;
  top: 0 !important;
  left: 0;
  right: 0;
  opacity: 1;
  z-index: 9999;
  background: #fff;
  border-radius: 0;
}
.p-menu--fixed .p-menu__tab {
  font-size: 16px;
  line-height: 22px;
  padding-top: 20px;
  padding-bottom: 16px;
}
.p-menu--fixed .p-menu__container {
  padding: 0 30px;
}
.p-menu--fixed .p-menu__content {
  max-width: 1024px;
}
.p-menu--fixed .p-menu__logo, .p-menu--fixed .p-menu__signup {
  display: inline-block;
}
.p-menu--mobile {
  padding: 20px;
  border-radius: 2px;
  height: 90px;
  align-items: center;
  position: relative;
  z-index: 100;
}
.p-menu--mobile .selected-menu,
.p-menu--mobile .show-menu {
  width: 50%;
}
.p-menu--mobile .selected-menu {
  text-align: left;
  color: #012A38;
  font-weight: 500;
}
.p-menu--mobile .show-menu {
  text-align: right;
  padding-right: 10px;
}
.p-menu--mobile .show-menu img {
  cursor: pointer;
}

.cp-card {
  border: 1px solid #EFEFF1;
  border-radius: 10px;
  background-color: #FFFFFF;
  box-shadow: 0 4px 16px 0 rgba(0, 0, 0, 0.09);
}
@media (min-width: 992px) {
  .cp-card {
    margin-top: -240px;
    position: relative;
    z-index: 99;
  }
}
.cp-card__body {
  padding: 30px;
}
@media (min-width: 992px) {
  .cp-card__body {
    padding: 48px 64px;
  }
}
.cp-card__footer {
  background-color: #1D0046;
  padding: 30px;
  border-radius: 0 0 10px 10px;
  padding-top: 0;
}
.cp-card__footer img {
  margin: auto;
}

.cp-rack {
  border: 1px solid #EFEFF1;
  border-radius: 6px;
  background-color: #FFFFFF;
  box-shadow: 0 4px 16px 0 rgba(0, 0, 0, 0.09);
  padding: 50px 24px;
  text-align: center;
  margin-bottom: 100px;
  margin-top: -30px;
}
@media (min-width: 768px) {
  .cp-rack {
    padding: 50px 100px;
  }
}
@media (min-width: 992px) {
  .cp-rack {
    margin-bottom: 150px;
  }
}
.cp-rack__header {
  margin-bottom: 16px;
  margin-top: -80px;
}
.cp-rack__figure {
  margin-bottom: 16px;
  text-align: center;
  display: inline-block;
}
.cp-rack__title {
  color: #ffffff;
  font-family: Sora, sans-serif;
  font-size: 18px;
  letter-spacing: -0.4px;
  line-height: 24px;
  font-weight: 500;
}
@media (min-width: 992px) {
  .cp-rack__title {
    line-height: 33px;
    font-size: 24px;
    font-weight: normal;
  }
}

.cp-timemachine {
  padding: 60px 0;
  background-color: #14022E;
  max-width: 1200px;
  margin: auto;
  margin-bottom: 80px;
}
@media (min-width: 1200px) {
  .cp-timemachine {
    border-radius: 10px;
    box-shadow: 0 4px 16px 0 rgba(0, 0, 0, 0.16);
  }
}
@media (min-width: 768px) {
  .cp-timemachine {
    background: url("../images/time-machine/cb-timemachine.png") right -120px bottom -130px/170% no-repeat #14022E;
    padding-bottom: 240px;
  }
}
@media (min-width: 992px) {
  .cp-timemachine {
    margin-bottom: 120px;
    background-position: right -120px bottom -160px;
    background-size: 130%;
  }
}
.cp-timemachine__title {
  color: #ffffff;
  font-size: 24px;
  line-height: 32px;
  letter-spacing: -0.3px;
  font-family: Sora, sans-serif;
  margin-bottom: 16px;
  margin-top: 0;
}
@media (max-width: 991px) {
  .cp-timemachine__title {
    margin-top: 24px;
  }
}
.cp-timemachine__desc {
  color: #ffffff;
  font-size: 16px;
  line-height: 24px;
  font-family: Inter, sans-serif;
  opacity: 0.8;
}

.add-blur {
  filter: blur(8px);
  pointer-events: none;
}

@media (min-width: 992px) {
  .mTopLg {
    margin-top: 9em;
  }
  .mTopMd--neg {
    margin-top: -48px;
  }
}
a:hover, a:focus {
  text-decoration: none;
}

@keyframes slide-down {
  0% {
    transform: translateY(-40px);
  }
  100% {
    transform: translateY(0px);
  }
}
@media (min-width: 768px) {
  .cp-slider {
    margin-left: -24px;
  }
}
.cp-slider__progress {
  padding-left: 24px;
  position: relative;
  border-left: 3px solid transparent;
  opacity: 0.5;
}
.cp-slider__progress:hover {
  opacity: 1;
}
@media (min-width: 768px) {
  .cp-slider__figure {
    transform: perspective(300px) rotateY(-5deg);
    margin-top: 100px;
  }
}
.cp-slider__animate {
  animation: slideIn 0.4s ease-in;
  transition: 0.4s ease;
}
@keyframes slideIn {
  from {
    transform: translateX(50px);
    opacity: 0.5;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}
.cp-slider__item .cp-slider__desc {
  display: none;
  margin-bottom: 0;
  font-size: 16px;
  line-height: 24px;
  color: #242438;
}
.cp-slider__item .cp-slider__heading {
  margin-bottom: 12px;
  color: #ffffff;
  font-size: 20px;
  line-height: 28px;
  cursor: pointer;
  font-family: Sora, sans-serif;
  font-weight: bold;
}
.cp-slider__item .cp-slider__sep {
  border-bottom: 1px solid #00001E;
  margin: 16px 24px;
  margin-right: 0;
}
.cp-slider__item-active .cp-slider__progress {
  border-color: #FFE8B2;
  opacity: 1;
}
.cp-slider__item-active .cp-slider__progress:before {
  content: "";
  display: block;
  height: 0;
  width: 3px;
  background: #FFB400;
  position: absolute;
  left: -3px;
  top: 0;
  bottom: 0;
  animation: progressBar 4000ms linear forwards;
}
.cp-slider__item-active .cp-slider__progress--hide {
  border-left: 3px solid transparent;
}
.cp-slider__item-active .cp-slider__progress--hide:before {
  display: none;
}
.cp-slider__item-active .cp-slider__desc {
  display: block;
}
@keyframes progressBar {
  0% {
    height: 1%;
  }
  100% {
    height: 100%;
  }
}
[cb-modal] {
  background-color: rgba(0, 0, 0, 0.75);
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  z-index: 99999;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  align-content: center;
  overflow-y: auto;
}

[cb-modal__close] {
  position: absolute;
  right: 6px;
  top: 0px;
  color: #484848;
  font-size: 30px;
  cursor: pointer;
  font-weight: 500;
  padding: 10px;
  line-height: 24px;
}

[cb-modal__body] {
  max-width: 480px;
  overflow-y: auto;
  margin: auto;
  background-color: #fff;
  padding: 30px;
  position: relative;
  padding-top: 70px;
}
@media (max-width: 767px) {
  [cb-modal__body] {
    width: 100%;
  }
}

[cb-modal][cb-modal-hide] {
  display: none !important;
}

.cp-ttestimonial {
  font-family: Sora, sans-serif;
  background-color: #ffffff;
  max-width: 480px;
  padding: 36px;
  border-radius: 8px;
  box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.06), 0 4px 14px -1px rgba(0, 0, 0, 0.18);
  display: block;
  transition: 0.2s ease;
  position: relative;
  overflow: hidden;
  color: #242438;
}
.cp-ttestimonial:after {
  content: "";
  background: url("../images/home/jan-2019/quote.svg") center/contain no-repeat;
  width: 50px;
  height: 40px;
  position: absolute;
  display: block;
  right: 20px;
  top: -2px;
  z-index: 1;
  filter: grayscale(1);
  opacity: 0.3;
  transition: 0.24s ease-out;
}
.cp-ttestimonial:hover, .cp-ttestimonial:focus {
  color: #242438;
  text-decoration: none;
  box-shadow: 0 0 14px 0 rgba(0, 0, 0, 0.12), 0 14px 24px 0 rgba(0, 0, 0, 0.12);
}
.cp-ttestimonial:hover:after, .cp-ttestimonial:focus:after {
  filter: grayscale(0);
  transform: rotate(3deg) scale(1.05);
  opacity: 1;
}
.cp-ttestimonial__figure {
  margin-bottom: 16px;
}
.cp-ttestimonial__content {
  margin-bottom: 24px;
}
.cp-ttestimonial__author {
  color: #ffffff;
  font-size: 18px;
  line-height: 21px;
  font-weight: bold;
}

.cp-tslider {
  text-align: center;
}
.cp-tslider__figure {
  position: relative;
  overflow: hidden;
  transform: translate3d(0, 0, 0);
  max-width: 650px;
  margin: 42px auto 16px;
}
.cp-tslider__figure:after, .cp-tslider__figure:before {
  content: "";
  width: 50px;
  height: 40px;
  display: inline-block;
  z-index: 1;
  position: absolute;
  top: 0;
}
.cp-tslider__figure:after {
  right: 0;
  background: linear-gradient(270deg, #ffffff 0%, rgba(255, 255, 255, 0) 100%);
}
.cp-tslider__figure:before {
  left: 0;
  background: linear-gradient(90deg, #ffffff 0%, rgba(255, 255, 255, 0) 100%);
}
.cp-tslider__figure > figure {
  height: 36px;
  width: 2526px;
  background: url("../images/home/jan-2019/customers/customers.png") center/contain;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  transform: translate3d(0, 0, 0);
  animation: moveSlideshow 80s ease infinite;
}
.cp-tslider--customers .cp-slider__figure > figure {
  background: url("../images/home/jan-2019/customers/customers.png") center/contain;
}
.cp-tslider--billing .cp-slider__figure {
  max-width: 450px;
  margin-bottom: 0;
}
.cp-tslider--billing .cp-slider__figure > figure {
  height: 24px;
  background: url("../images/home/jan-2019/pg-logos.png") center/contain;
}

@keyframes moveSlideshow {
  100% {
    transform: translateX(-66.6666%);
  }
}
.cp-tpanels__title {
  color: #ffffff;
  font-family: Sora, sans-serif;
  font-size: 22px;
  line-height: 32px;
  font-weight: bold;
  letter-spacing: -0.42px;
  margin: 0;
}
@media (min-width: 768px) and (max-width: 991px) {
  .cp-tpanels__title {
    font-size: 28px;
    line-height: 36px;
  }
}
@media (min-width: 992px) {
  .cp-tpanels__title {
    font-size: 32px;
    line-height: 42px;
  }
}
.cp-tpanels__container {
  margin-top: 32px;
}
.cp-tpanel {
  padding: 30px 42px 30px 30px;
  cursor: pointer;
  position: relative;
  transition: 0.1s ease-out;
}
@media (max-width: 991px) {
  .cp-tpanel {
    padding: 21px 42px 21px 21px;
  }
}
.cp-tpanel:not(:last-child) {
  border-bottom: 1px solid rgba(90, 122, 190, 0.1);
}
.cp-tpanel:hover, .cp-tpanel:focus {
  background: #F4F7FC;
}
.cp-tpanel__title {
  color: rgba(0, 0, 0, 0.8);
  font-size: 18px;
  font-weight: bold;
  line-height: 28px;
  position: relative;
}
.cp-tpanel__title:after {
  content: "";
  border: 5px solid transparent;
  border-top-color: rgba(0, 0, 0, 0.54);
  position: absolute;
  right: -20px;
  top: 50%;
  margin-top: -2.5px;
  transition: transform 0.2s ease;
}
.cp-tpanel__desc {
  display: none;
  margin-top: 30px;
}
@media (min-width: 992px) {
  .cp-tpanel__bg {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: -1;
    transform: scale(0.8, 0.8);
    transition: box-shadow 0.2s, transform 0.2s;
  }
}
.cp-tpanel__link {
  padding: 21px 30px;
  display: block;
}
.cp-tpanel__link:hover, .cp-tpanel__link:focus {
  background-color: rgba(0, 0, 0, 0.02);
  text-decoration: none;
}
.cp-tpanel--active {
  z-index: 2;
}
.cp-tpanel--active .cp-tpanel__title {
  font-weight: bold;
}
.cp-tpanel--active .cp-tpanel__title:after {
  transform: rotate(180deg);
  margin-top: -5px;
}
.cp-tpanel--active .cp-tpanel__desc {
  display: block;
  animation: fadeInUp 0.4s ease-out;
}
.cp-tpanel--active .cp-tpanel__bg {
  background: #fff;
  transform: scale(1.04, 1.1);
  box-shadow: 0 4px 16px 0 rgba(0, 0, 0, 0.2);
}

[cb-vtab] [cb-vtab-txt] {
  position: relative;
}

[cb-vtab] [cb-vtab-aside] {
  position: relative;
}

[cb-vtab] [cb-vtab-contents] [cb-vtab-content]:not(:first-child),
[cb-vtab] [cb-vtab-selectbox],
[cb-vtab] [cb-vtab-item-bg] {
  display: none;
}

[cb-vtab] [cb-vtab-item-selected] {
  color: #ffffff;
  background: #fff;
}
[cb-vtab] [cb-vtab-item-selected]:after {
  background: url("../images/home/jan-2019/arrow/tab-ui-black.svg") center/contain no-repeat;
  opacity: 1;
  visibility: visible;
  right: 12px;
}

[cb-vtab] [cb-vtab-item-bg] {
  transform: translateX(0);
  position: absolute;
  width: 100%;
  height: 44px;
  will-change: transform;
  transition: transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  border-radius: 4px;
  border: 1px solid #ffffff;
  box-shadow: 0 -2px 0px 0px #ffffff inset;
  z-index: 1;
}

.cp-ttab__figure {
  margin-top: 24px;
  margin-bottom: 48px;
}
@media (min-width: 992px) {
  .cp-ttab__img {
    margin: 40px -40px 0;
  }
}
@media (min-width: 1200px) {
  .cp-ttab__img {
    margin: -60px -80px 0;
  }
}
.cp-ttab__aside {
  margin-top: 20px;
}
@media (max-width: 991px) {
  .cp-ttab__aside {
    max-width: 340px;
    margin: 20px auto 0;
  }
}
.cp-ttab__content {
  margin-top: 72px;
}
@media (max-width: 991px) {
  .cp-ttab__content {
    margin-top: 48px;
  }
}
.cp-ttab__desc {
  color: #ffffff;
  font-size: 24px;
  line-height: 29px;
}
.cp-ttab__items {
  display: flex;
}
.cp-ttab__item {
  color: #000FF0;
  font-family: Sora, sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 18px;
  padding: 12px 15px;
  cursor: pointer;
  position: relative;
  transition: 0.2s ease-out;
  background-color: #F4F7FC;
}
.cp-ttab__item:first-child {
  border-radius: 3px 0 0 3px;
}
.cp-ttab__item:last-child {
  border-radius: 0 3px 3px 0;
}
.cp-ttab__links {
  display: flex;
  flex-wrap: wrap;
  margin-top: 30px;
}
.cp-ttab__link {
  margin-bottom: 12px;
  margin-right: 24px;
}
@media only screen and (min-width: 992px) {
  .cp-ttab__link {
    display: inline-flex;
    align-items: center;
  }
}
.cp-ttab__select {
  background-color: #ffffff;
  border-radius: 2px;
  box-shadow: 0 1px 4px -1px rgba(0, 0, 0, 0.06), 0 4px 14px -1px rgba(0, 0, 0, 0.18);
  border-width: 0;
  text-align: left;
}
@media (max-width: 767px) {
  .cp-ttab__select {
    margin-bottom: 24px;
  }
}
.cp-ttab__select:after {
  content: "";
  width: 10px;
  height: 10px;
  border: 6px solid transparent;
  border-top-color: rgba(0, 0, 10, 0.5019607843);
  display: inline-block;
  position: absolute;
  right: 20px;
  top: 26px;
}
.cp-ttab__select > select {
  -webkit-appearance: none;
  border: 0;
  background: transparent;
  font-weight: 500;
  padding: 18px 24px 18px 18px;
  width: 100%;
}

.slick-slide {
  margin: 0px 15px;
}
.slick-slide img {
  width: 100%;
}

.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0;
}
.slick-list:focus {
  outline: none;
}
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track, .slick-slider .slick-list {
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  top: 0;
  left: 0;
  display: block;
}
.slick-track:before {
  display: table;
  content: "";
}
.slick-track:after {
  display: table;
  content: "";
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  display: none;
  height: 100%;
  min-height: 1px;
}

[dir=rtl] .slick-slide {
  float: right;
}

.slick-slide img {
  display: block;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}

.slick-initialized .slick-slide {
  display: inline-block;
  vertical-align: middle;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: none;
}

.slick-arrow.slick-hidden {
  display: none;
}

.slick-slide div {
  width: inherit;
  height: 50px;
  background-size: contain;
}

.doodle_bg {
  background: transparent url("../images/home/jan-2019/customers/doodle.png") no-repeat center;
}

.envoy_bg {
  background: transparent url("../images/home/jan-2019/customers/envoy.png") no-repeat center;
}

.freedom_bg {
  background: transparent url("../images/home/jan-2019/customers/freedom.png") no-repeat center 4px;
}

.freshworks_blck_bg {
  background: transparent url("../images/home/jan-2019/customers/freshworks_blck.png") no-repeat center;
}

.knewton_logo_bg {
  background: transparent url("../images/home/jan-2019/customers/knewton_logo.png") no-repeat center -3px;
}

.okta_bg {
  background: transparent url("../images/home/jan-2019/customers/okta.png") no-repeat center;
  background-size: 70px !important;
  background-position: center 4px !important;
}

.percona_bg {
  background: transparent url("../images/home/jan-2019/customers/percona.png") no-repeat center;
}

.zenchef_bg {
  background: transparent url("../images/home/jan-2019/customers/zenchef.png") no-repeat center;
  background-size: 120px !important;
  margin-top: -18px;
}

.calendy_bg {
  background: transparent url("../images/home/jan-2019/customers/calendly.png") no-repeat center;
}

.study_bg {
  background: transparent url("../images/home/jan-2019/customers/study.png") no-repeat center;
}

.braintree_bg {
  background: transparent url("../images/home/jan-2019/payment-gateway/braintree.png") no-repeat center;
}

.gocardless_bg {
  background: transparent url("../images/home/jan-2019/payment-gateway/gocardless.png") no-repeat center;
}

.paypal_bg {
  background: transparent url("../images/home/jan-2019/payment-gateway/paypal.png") no-repeat center;
  background-size: 70px !important;
  background-position: center 7px !important;
}

.worldpay_bg {
  background: transparent url("../images/home/jan-2019/payment-gateway/worldpay.png") no-repeat center;
}

.hs_error_rollup {
  display: none;
}

ul.no-list.hs-error-msgs.inputs-list {
  padding: 0;
  margin-top: 4px;
}

.cb-article {
  margin-bottom: 80px;
}
.cb-article .g2_badges {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: -200px;
  gap: 30px;
}
@media (max-width: 768px) {
  .cb-article .g2_badges {
    flex-wrap: wrap;
    margin-top: -150px;
    gap: 10px;
  }
}
@media (min-width: 1440px) {
  .cb-article .g2_badges {
    gap: 60px;
  }
}
.cb-article .g2_badges img {
  width: 100%;
  max-width: 180px;
}
.cb-article .g2_badges img:nth-child(1), .cb-article .g2_badges img:nth-child(5) {
  width: 110px;
}
@media (max-width: 768px) {
  .cb-article .g2_badges img:nth-child(1), .cb-article .g2_badges img:nth-child(5) {
    width: 180px;
  }
}
.cb-article .g2_badges img:nth-child(2), .cb-article .g2_badges img:nth-child(4) {
  width: 150px;
}
@media (max-width: 768px) {
  .cb-article .g2_badges img:nth-child(2), .cb-article .g2_badges img:nth-child(4) {
    width: 180px;
  }
}
.cb-article .g2_footer {
  margin-top: 0;
  gap: 10px;
}
@media (min-width: 768px) {
  .cb-article .g2_footer {
    flex-wrap: nowrap;
  }
}

.cb_partner_rated {
  position: relative;
  background-color: #E9E6FF;
  padding: 16px;
  border-radius: 6px;
  max-width: 230px;
  margin-top: 100px;
}
.cb_partner_rated img {
  position: absolute;
  width: 120px;
  top: -83px;
  left: 15px;
}
.cb_partner_rated h4 {
  font-weight: 700;
  color: #170C62;
  line-height: 1.3;
  margin-top: 90px;
}/*# sourceMappingURL=product.css.map */