/*!
 * General Element
 */
*, ::after, ::before {
    box-sizing: border-box;
}
body {
    position: relative;
    height:100%;
    overflow-x: hidden;
    font-family: 'Inter', system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    font-weight: 400;
    font-size: 18px;
    line-height: 140%;
    color: #000000;
    background: #fff;
    letter-spacing: -0.1px;
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: transparent;
}
strong,b {
    font-weight: 700
}
a,
a:hover {
    text-decoration: none;
    color: #000;
}
img.img-fluid {
    max-width: 100%;
    height: auto;
    display: block;
}
button {
    border: none;
}
.bc__grid{
    display:grid;
    grid-template-rows: repeat(var(--bc-rows,1),var(--bc-col-height,1fr));
    grid-template-columns: repeat(var(--bc-columns,12),var(--bc-col-width,1fr));
    gap: var(--bc-gap-v,1rem) var(--bc-gap-h,1rem);
    margin-left:auto;
    margin-right:auto
}
.one__col > * {
    grid-column: auto/span 12;
    text-align: center;
    margin: 0 auto;
    width: 100%;
}
.ratio {
    position: relative;
    width: 100%;
    overflow: hidden;
}
.ratio::before {
    display: block;
    padding-top: var(--bs-aspect-ratio);
    content: "";
}
.ratio__square::before {
    --bs-aspect-ratio: 100%;
}
.ratio__vertical::before {
    --bs-aspect-ratio: 125%;
}
.ratio__wide::before {
    --bs-aspect-ratio: 56.25%;
}
.ratio__wide2::before {
    --bs-aspect-ratio: 60%;
}
.ratio>* {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.ratio > * {
    border-radius: 14px;
}
.bc__button a {
    display: flex;
    padding: 14px 30px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    min-width: 160px;
    max-width: 280px;
    color: #fff;
    border-radius: 72px;
    background: #000;
    font-size: 16px;
    position: relative;
    overflow: hidden;
    font-weight: 500;
    transition: all .15s linear;
}
.bc__button {
    text-align: center;
    width: max-content;
    display: flex;
    flex-direction: column;
    gap: 10px 0;
    margin: 0 auto;
    align-items: center;
}
.bc__header .bc__button a {
    width: -webkit-fill-available;
    max-width: none;
}
.bc__button > span {
    font-size: 14px;
    line-height: 1;
}
.bc__button a::before {
    content: '';
    position: absolute;
    width: 0;
    height: 100%;
    left: 0;
    top: 0;
    background: #01A0C6;
    transition: width 0.1s linear;
}
.bc__button a:before {
  --size: 0;
  content: '';
  position: absolute;
  left: var(--x);
  top: var(--y);
  width: var(--size);
  height: var(--size);
  background: radial-gradient(circle at center,rgba(140, 100, 255,.8) 0,rgba(140, 100, 255,0) 50%) no-repeat;
  transform: translate(-50%, -50%);
  transition: width 0.2s ease, height 0.2s ease, left 0.25s linear, top 0.25s linear;
}

.bc__button a:hover:before {
  --size: 120px;
}
.bc__button a:hover::before {
    width: 100%;
}
.bc__button a span {
    position:relative;
}
.bc__button a:hover {
    background-image: linear-gradient(to right top, #140eb4, #3810c2, #5111d0, #6812de, #7e12eb) !important;
}
.link_with_icon {
    display: flex;
    align-items: center;
    gap: 0 6px;
}
.bc__video {
    overflow: hidden;
    padding: 4px;
    border-radius: 16px;
    /*background: var(--Border-color, linear-gradient(147deg, #01A0C6 8.41%, #480CAB 39.58%, #1F40B4 74.21%, #01C6BA 98.95%)); */
    background: #f7f7f7;
    position: relative;
}
.sep {
    height: 6px;
}
p {
    margin-bottom: 10px;
}

/*! Site Navigation */
.bc__nav {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    background: #FFF;
    padding: 10px 20px;
    z-index: 999;
    border-bottom: 1px solid #e8e8e8;
}
.bc__nav.scrolled {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border-bottom: 1px solid #f5f5f5;
}
.bc__nav .bc__grid {
    --bc-columns: 2;
    --bc-col-width: auto;
    --bc-gap-h: 0;
    align-items: center;
    justify-content: space-between;
    --bc-gap-v: 0;
}
.bc__logo a {
    display: block;
    width: 120px;
    height: 30px;
}
.bc__logo svg {
    max-width: 100%;
    height: auto;
}
.bc__menu a {
    font-size: 14px;
    font-weight: 500;
    color: #000;
    display: flex;
    align-items: center;
    gap: 0 4px;
}
.bc__menu a:hover {
    color: #01a0c6 !important;
    text-decoration: underline
}
.bc__menu a:hover svg path {
    stroke: #01a0c6 !important;
}
.bc__menu a:first-of-type {
    display: none;
}

/*! Site Header */
.bc__header {
    text-align: center;
    padding-top: 70px;
    padding-bottom: 20px;
    display: grid;
    gap: 10px;
    padding: 70px 20px 30px;
}
.bc__header .bc__grid {
    --bc-columns: 1;
    text-align: center;
    --bc-gap-v: 16px;
}
.bc__header h1, .bc__bottom_cta .section__title, .big.section__title {
    font-size: 32px;
    font-style: normal;
    font-weight: 900;
    line-height: 110%;
    letter-spacing: -1px;
    margin-bottom: 0;
}
.bc__header h1 {
    font-size: 48px
}
.bc__header h2 {
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    letter-spacing: 0.1px;
    font-size: 22px;
}
.bc__video_wrapper {
    max-width: 85%;
    margin: 0 auto;
    width: 100%;
}
.bc__header h1 span {
    position: relative;
}
.bc__header h1 span::after {
    content: '';
    position: absolute;
    width: 42px;
    height: 42px;
    background: url('../images/confetti.png') no-repeat;
    background-size: cover;
    left: -4px;
    top: -10px;
}
.platformList__wrapper {
    display: grid;
    grid-template-columns: repeat(2, auto);
    align-items: center;
    gap: 0 24px;
    justify-items: center;
    justify-content: center;
}
.platformList__wrapper span {
    grid-column-start: 1;
    grid-column-end: 3;
    display: grid;
    margin-bottom: 10px;
}
.platformList__wrapper .platform__logo {
    width: 106px;
    height: 40px;
    background-image: url('../images/sprite-lightbg.svg');
    background-repeat: no-repeat;
    background-size: 320px 800px;
    background-position: -160px -470px;
    grid-row-start: 2;
}
.bc__dark .platformList__wrapper .platform__logo {
    background-image: url('../images/sprite-darkbg.svg');
    background-repeat: no-repeat;
    
}
.platformList__wrapper .platform__logo.ig {
    grid-row-start: 2;
    width: 136px;
    background-position: -160px -510px;
}
.platformList__wrapper .platform__logo.tiktok {
    grid-row-start: 3;
    width: 92px;
    background-position: -160px -550px;
}
.platformList__wrapper .platform__logo.linkedin {
    grid-row-start: 3;
    width: 102px;
    background-position: -160px -590px;
}
/*! Section */
section {
    padding: 30px 20px;
}
.section__title {
    font-family: Inter;
    font-size: 28px;
    font-style: normal;
    font-weight: 800;
    line-height: 110%;
    letter-spacing: -0.5px;
    margin-bottom: 10px;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}
.section__title_wrapper {
    grid-column: auto/span 12;
    text-align: center;
}
.section__title_wrapper .section__title {
    margin-bottom: 10px;
}
.section__title + p {
    text-align: center;
    margin-bottom: 0;
}
.bc__trust .bc__grid {
    --bc-columns: 3;
    --bc-rows: 2;
    --bc-gap-h: 0.5rem;
    --bc-col-width: auto;
    --bc-col-height: auto;
}
.bc__trust .section__title {
    grid-column: 1/span 3;
}
.bc__trust .number {
    font-size: 26px;
    font-weight: 900;
    line-height: 1.1;
}
.bc__trust .bc__grid > div {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    justify-content: space-between;
    line-height: 1;
}
.trustpilot__stat > span:last-child {
    line-height: 1;
    font-size: 16px;
    gap: 6px;
    flex-direction: column;
    display: flex;
    align-items: center;
}
.trustpilot__stat > span:last-child span {
    display: flex;
    align-items: center;
    gap: 2px;
}
.trustpilot__stat > span:last-child > span:last-child {
    display: none;
}
.star__unfill,
.star__fill {
    width: 20px;
    height: 20px;
    background: url('../images/sprite-lightbg.svg') no-repeat;
    background-position: -80px -180px;
    background-size: 160px 400px;
    display: flex;
}
.star__fill {
    background-position: -100px -180px
}
.star__unfill + span {
    padding-top: 3px;
}
.best__app span {
    background: url('../images/sprite-lightbg.svg') no-repeat;
}
.best__app span:first-child {
    width: 110px;
    height: 30px;
    background-position: -120px -300px;
    background-size: 240px 600px;
}
.best__app span:last-child {
    width: 94px;
    height: 18px;
    background-position: -120px -330px;
    background-size: 240px 600px;
}
.swiper-container {
    width: 100%;
    height: 100%;
    position: relative;
}
.swiper-wrapper {
    position: relative;
    -webkit-transition-timing-function:linear!important;
    -o-transition-timing-function:linear!important;
    transition-timing-function:linear!important;
}
.bc__brands {
    margin: 0px -20px 0;
    position: relative;
}
.bc__brands h5 {
    font-weight: 700;
    text-align: center;
    margin-bottom: 10px;
}
.bc__brands [class*="__brand"] {
    height: 40px;
    background: url('../images/sprite-lightbg.svg') no-repeat;
    background-size: 320px 800px;
    display: block;
}
.bc__brands .disney__brand {
    width: 94px;
    background-position: 0 -40px;
}
.bc__brands .marvel__brand {
    width: 72px;
    background-position: 0 -80px;
}
.bc__brands .redbull__brand {
    width: 108px;
    background-position: 0% -120px;
}
.bc__brands .twitter__brand {
    width: 96px;
    background-position: 0 -160px;
}
.bc__brands .loreal__brand {
    width: 96px;
    background-position: 0 -200px;
}
.bc__brands .seattle__brand {
    width: 107px;
    background-position: 0 -240px;
}
.bc__brands .ae__brand {
    width: 84px;
    background-position: 0 -280px;
}
.bc__brands .lego__brand {
    width: 72px;
    background-position: 0 -320px;
}
.bc__brands .wb__brand {
    width: 110px;
    background-position: 0 -360px;
}
.bc__brands .disney__brand:hover {
    background-position: 0 -400px;
}
.bc__brands .marvel__brand:hover {
    background-position: 0 -440px;
}
.bc__brands .redbull__brand:hover {
    background-position: 0 -480px;
}
.bc__brands .twitter__brand:hover {
    background-position: 0 -520px;
}
.bc__brands .loreal__brand:hover {
    background-position: 0 -560px;
}
.bc__brands .seattle__brand:hover {
    background-position: 0 -600px;
}
.bc__brands .ae__brand:hover {
    background-position: 0 -640px
}
.bc__brands .lego__brand:hover {
    background-position: 0 -680px;
}
.bc__brands .wb__brand:hover {
    background-position: 0 -720px;
}
.bc__ideas {
    text-align: center;
}
.slide__desc h4, .list__testimonial h5, .bc__step h4, .bc__feat h4 {
    font-family: Inter;
    font-size: 21px;
    font-style: normal;
    font-weight: 700;
    line-height: 130%;
    letter-spacing: -0.3px;
    margin-bottom: 0;
}
.bc__dark .slide__desc h4 {
    color: #fff;
}
.bc__feat h4 {
    margin-bottom: 4px;
    font-size: 20px;
    font-weight: 800;
}
.slide__desc p {
    line-height: 130%;
    margin-bottom: 0;
}

.bc__howitworks .details {
    text-align: left;
    max-width: 90%;
}
ol > li:before {
    content: counters(item, ".") ". ";
    counter-increment: item;
    position: absolute;
    left: 0;
    top: 0;
}
ol {
    counter-reset: item;
}
ol > li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px;
}
ol > li:last-of-type {
    margin-bottom: 0;
}
.bc__howitworks ol {
    padding: 0px 10px 16px;
}
.bc__howitworks p {
    text-align: center;
    margin-bottom: 20px;
}
.bc__video .badge {
    text-align: center;
    font-size: 16px;
    padding: 12px 68px;
    font-weight: 600;
    background: #ffeb00;
    position: absolute;
    z-index: 2;
    color: #000;
    border-radius: 0;
    top: 32px;
    left: -54px;
    box-shadow: 0 8px 10px #030d260f;
    transform: rotate(-45deg);
    line-height: 1;
}
.bc__platform .bc__grid {
    --bc-gap-v: 20px;
    --bc-gap-h: 20px;
}
.platform {
    grid-column: auto/span 4;
    border: 1px solid #eee;
    border-radius: 16px;
}
.bc__platform .bc__button {
    grid-column: auto/span 12;
    margin-top: 10px;
}
.platform:nth-of-type(4) {
    grid-column-start: 9;
}
.platform:nth-of-type(5) {
    grid-column-start: 3;
}
.platform a > span:last-of-type {
    display: none;
}
.platform a {
    position: relative;
}
.platform span[class*="icon"] {
    width: 40px;
    height: 40px;
    background: url('../images/sprite-lightbg.svg') no-repeat;
    background-position: -160px 0;
    background-size: 320px 800px;
    z-index: 2;
    margin: 0 auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    align-self: center;
    border-radius: 0;
}
.platform span.instagram__icon {
    background-position: -200px 0;
}
.platform span.tiktok__icon {
    background-position: -240px 0;
}
.platform span.linkedin__icon {
    background-position: -280px 0;
}
.platform span.twitter__icon {
    background-position: -160px -80px;
}
.platform__box .ratio {
    background: #fff;
    z-index: 22;
    border-radius: 16px;
}
.platform a:hover::after {
    content:'';
    position: absolute;
    width: calc(100% + 8px);
    height: calc( 100% + 8px);
    top: -4px;
    left: -4px;
    z-index: 1;
    border-radius: 20px;
    background: var(--Border-color, linear-gradient(147deg, #01A0C6 8.41%, #480CAB 39.58%, #1F40B4 74.21%, #01C6BA 98.95%));
}

.bc__uses {
    text-align: center;
}
.bc__uses .section__title {
    grid-column: auto/span 12;
}
.bc__uses .bc__grid:nth-of-type(n+2) {
    --bc-columns: 1;
}
.bc__uses .ratio > * {
    border-radius: 0;
}
.bc__uses .bc__video img:first-of-type {
    border-radius: 12px 12px 0 0;
}
.bc__uses p {
    margin-bottom: 0;
}
.bc__uses .bc__video img:last-of-type {
    border-radius: 0 0 12px 12px;
}
.post__stats {
    display: grid;
    text-align: center;
    align-content: space-between;
    justify-content: space-around;
    gap: 0 10px;
    grid-template-columns: repeat(3, auto);
}
.post__stats_number {
    font-weight: 800;
    font-size: 24px;
    line-height: 1;
    display: inline-block;
    position: relative;
}
.post__stats span {
    font-size: 16px;
    display: block;
    line-height: 1.3;
    position: relative;
}
.post__stats_number::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 6px;
    background: #fce300;
    left: 0;
    bottom: 1px;
    z-index: -1;
    border-radius: 0;
}
.bc__uses .bc__grid:nth-of-type(2) {
    margin-bottom: 20px;
}

.bc__testimonials .section__title_wrapper .section__title {
    margin-bottom: 0;
}
.quote__icon {
    display: block;
    width: 48px;
    margin: 0 auto 16px;
}
.quote__icon svg {
    max-width: 100%;
    display: block;
    height: auto;
    margin: 0 auto;
}
.testimonial__logo {
    width: 124px;
    height: 40px;
    background: url(../images/sprite-lightbg.svg) no-repeat;
    background-position: -160px -120px;
    background-size: 320px 800px;
    margin: 0 auto;
}
.bc__testimonials .section__title + p {
    margin-bottom: 0;
}

.swiper--templates .swiper-wrapper .swiper-slide {
    position: relative;
    width: 110px;
    border-radius: 20px;
}
.swiper--templates .swiper-slide div::before {
    display: block;
    padding-top: 125%;
    content: "";
}
.swiper--templates .swiper-slide div::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: url('../images/templates.png') no-repeat;
    background-position: 0 0;
    border-radius: 20px;
    background-size: 550px 687.5px;
}
.swiper--templates .template__2 div::after {
    background-position: 25% 0;
}
.swiper--templates .template__3 div::after {
    background-position: 50% 0;
}
.swiper--templates .template__4 div::after {
    background-position: 75% 0;
}
.swiper--templates .template__5 div::after {
    background-position: 100% 0;
}
.swiper--templates .template__6 div::after {
    background-position: 0 25%;
}
.swiper--templates .template__7 div::after {
    background-position: 25% 25%;
}
.swiper--templates .template__8 div::after {
    background-position: 50% 25%;
}
.swiper--templates .template__9 div::after {
    background-position: 75% 25%;
}
.swiper--templates .template__10 div::after {
    background-position: 100% 25%;
}
.swiper--templates .template__11 div::after {
    background-position: 75% 50%;
}
.swiper--templates .template__12 div::after {
    background-position: 0 50%;
}
.swiper--templates .template__13 div::after {
    background-position: 25% 50%;
}
.swiper--templates .template__14 div::after {
    background-position: 0% 75%;
}
.swiper--templates .template__15 div::after {
    background-position: 25% 75%;
}
.swiper--templates .template__16 div::after {
    background-position: 50% 75%;
}
.swiper--templates .template__17 div::after {
    background-position: 75% 75%;
}
.swiper--templates .template__18 div::after {
    background-position: 0% 100%;
}
.swiper--templates .template__19 div::after {
    background-position: 25% 100%;
}
.swiper--templates .template__20 div::after {
    background-position: 50% 100%;
}
.bc__templates .section__title_wrapper .section__title {
    margin-bottom: 0;
}
.bc__templates .swiper-container::before {
    content:'';
    position: absolute;
    width: 50px;
    height: 100%;
    background: rgb(255,255,255);
    background: linear-gradient(90deg, rgba(255,255,255,1) 41%, rgba(255,255,255,0.5102634803921569) 84%, rgba(255,255,255,0) 100%);
    top: 0;
    left: 0;
    z-index: 99;
}
.bc__templates .swiper-container::after {
    content:'';
    position: absolute;
    width: 50px;
    height: 100%;
    background: rgb(255,255,255);
    background: linear-gradient(-90deg, rgba(255,255,255,1) 41%, rgba(255,255,255,0.5102634803921569) 84%, rgba(255,255,255,0) 100%);
    top: 0;
    right: 0;
    z-index: 99;
}
.swiper--templates {
    margin: 0 -20px !important;
    width: calc(100% + 40px);
}
.bc__bottom_testimonials .block__wrapper.bc__grid {
    --bc-columns: 4;
    --bc-rows: 1;
    --bc-col-width: 1fr;
    --bc-gap: 16px;
}
.block__wrapper.bc__grid div {
    grid-column: auto/span 1;
}
.bc__testimonial_block {
    border: 1px solid #eee;
    padding: 20px;
    border-radius: 20px;
}
.bc__testimonial_block .avatar {
    width: 46px;
    height: 46px;
    background: url('../images/avatar.png') no-repeat;
    margin-right: 10px;
}
.bc__testimonial_block .user__name {
    font-weight: 700;
}
.bc__testimonial_block p {
    margin-top: 10px;
    margin-bottom: 0;
}
.avatar.user__alesandro {
    background-position: 0 0;
}
.avatar.user__macy {
    background-position: 0 -46px;
}
.avatar.user__samuel {
    background-position: 0 -92px;
}
.avatar.user__christopher {
    background-position: 0 -138px;
}
.avatar.user__tina {
    background-position: 0 -184px;
}
.avatar.user__adam {
    background-position: 0 -230px;
}
.avatar.user__john {
    background-position: 0 -276px;
}
.avatar.user__sandy {
    background-position: 0 -322px;
}
.avatar.user__lin {
    background-position: 0 -368px;
}
.avatar.user__paul {
    background-position: -46px -368px;
}
.avatar.user__joanne {
    background-position: 0 -460px;
}
.avatar.user__denise {
    background-position: 0 -506px;
}
.avatar.user__nick {
    background-position: 0 -552px;
}
.avatar.user__mirella {
    background-position: 0 -598px;
}
.avatar.user__grady {
    background-position: -46px -46px;
}
.avatar.user__kurt {
    background-position: -46px -92px;
}
.avatar.user__robert {
    background-position: -46px -138px;
}
.avatar.user__damon {
    background-position: -46px -184px;
}
.avatar.user__dan {
    background-position: -46px -230px;
}
.avatar.user__russel {
    background-position: -46px -276px;
}
.avatar.user__matt {
    background-position: -46px -322px;
}
.avatar.user__cyltie {
    background-position: -46px -414px;
}
.testimonials__scroller_wrapper {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    width: 1760%;
    text-align: left;
    gap: 0 16px;
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 4px;
}
.bc__bottom_testimonials .trustpilot__stat {
    display: grid;
    grid-template-columns: repeat(1, auto);
    justify-items: center;
    justify-content: center;
    gap: 4px 40px;
}
.bc__bottom_testimonials .trustpilot__stat div {
    display: flex;
    align-items: center;
    gap: 0 10px;
}
.bc__bottom_testimonials .trustpilot__stat div span:last-of-type {
    display: flex;
    align-items: center;
}
.bc__bottom_testimonials > .bc__grid {
    --bc-gap-v: 10px;
    margin-bottom: 20px;
}
.bc__bottom_testimonials .section__title, .bc__calendar .section__title {
    padding-left: 40px;
    padding-right: 40px;
}
.bc__testimonial_block div {
    display: flex;
    align-items: center;
}
.testimonials__scroller {
    max-width: 1050px;
    overflow: hidden;
    margin: 0 -20px;
}
.os-scrollbar {
    opacity: 0;
    display: none;
}
.os-scrollbar {
    left: 20px !important;
    right: 20px !important;
}
.os-scrollbar-track {
    background: #00000017 !important;
}
.testimonials__outer_wrapper {
    max-width: max-content;
    margin: 0 auto;
    position: relative;
    padding-bottom: 20px;
}
.button__next, .button__prev {
    width: 40px;
    height: 36px;
    position: relative;
    left: 50%;
    margin-left: -40px;
    display: inline-flex;
    background: url('../images/sprite-lightbg.svg') no-repeat;
    background-size: 320px 800px;
    background-position: -160px -322px;
    cursor: pointer;
    bottom: -20px;
}
.button__prev {
    margin-left: 4px;
    background-position: -200px -322px;
}
.button__scroll.disabled {
    opacity: 0.2;
}

.bc__faqs .bc__button {
    margin-top: 10px;
}
.faq a {
    color: #01A0C6;
    text-decoration: underline;
}
.faq {
    padding-bottom: 16px;
    margin-bottom: 15px;
    border-bottom: 1px solid #eee;
    width: 100%;
    text-align: left;
}
.answer {
    display: none;
    padding-top: 10px;
}
.ask {
    position: relative;
    cursor: pointer;
    padding-right: 30px;
    text-align: left;
    display: flex;
    align-content: center;
    justify-content: space-between;
}
.ask::after {
    content: '+';
    width: 20px;
    height: 100%;
    cursor: pointer;
    font-size: 24px;
    font-weight: 600;
    text-align: center;
}
.ask.opened::after {
    content: '-';
}

.bc__footer {
    font-size: 18px;
    padding: 30px 20px 20px;
}
.bc__footer > .bc__grid:first-of-type {
    --bc-columns: 2;
    --bc-rows: 2;
    --bc-col-width: auto;
    --bc-col-height: auto;
    --bc-gap-v: 20px;
    --bc-gap-h: 36px;
}
.widget__content.bc__grid {
    --bc-columns: 1;
    --bc-rows: auto;
    --bc-gap-v: 16px;
    line-height: 1.3;
}
.widget__content.widget__social {
    --bc-gap-h: 6px;
    --bc-rows: auto !important;
    grid-template-columns: repeat(3, 24px);
}
.bc__widget:nth-child(2) {
    display: none;
}
.widget__title {
    font-weight: 600;
    margin-bottom: 16px;
    width: max-content;
}
.bc__social {
    display: block;
    width: 24px;
    height: 24px;
    background: url('../images/sprite-lightbg.svg') no-repeat;
    background-position: -96px -144px;
    background-size: 192px 480px;
}
.bc__social:hover {
    background-position: -96px -168px;
}
.bc__instagram {
    background-position: -120px -144px;
}
.bc__instagram:hover {
    background-position: -120px -168px;
}
.bc__linkedin {
    background-position: -144px -144px;
}
.bc__linkedin:hover {
    background-position: -144px -168px;
}
.bc__footer > .bc__grid:last-of-type {
    --bc-columns: 1;
    padding-top: 20px;
    margin-top: 30px;
    border-top: 1px solid #eee;
    justify-content: center;
}
.bc__legal {
    grid-row-start: 1;
    align-self: center;
    justify-content: center;
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    justify-items: center;
    gap: 10px;
}
.bc__copyright p {
    text-align: center;
    margin-bottom: 0;
}
.bc__footer a:hover {
    color: #01A0C6;
}
span.bubble {
    font-size: 13px;
    padding: 4px 7px;
    display: none;
    background: #baffca;
    border-radius: 8px;
    border: 1px solid #6ebf81;
    line-height: 1.2;
    width: 114px;
    font-weight: 300;
}
.bc__advantages {
    grid-template-columns: repeat(1, 1fr);
    max-width: 940px;
    align-items: center;
}
.ratio__5by4::before {
    --bs-aspect-ratio: 80%;
}
.answer ul {
    list-style: disc;
    margin: 16px 0 16px;
    gap: 10px;
    padding: 0 0 0 24px;
}
.answer ul li {
    margin: 0;
    position: relative;
}
.section__title_wrapper .img__emoji {
    height: 48px;
    margin: 0 auto 10px;
}
.advantages {
    text-align: left;
    padding: 10px 16px;
    margin-bottom: 16px;
    line-height: 1.3;
    border-radius: 4px;
    position: relative;
    overflow: hidden;
}
.advantages::before,.advantages::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: var(--bg);
    z-index: -1;
    left: 0;
    top: 0;
    border-radius: 4px;
    transition: all .15s linear;
}
.advantages::before {
    background: #f7f7f7;
}
.advantages::after {
    width: 3px;
}
.advantages:hover::after {
    width: 100%;
}
.bc__dark .advantages::before {
    background: #171717;
}
.bc__dark .advantages:hover {
    color: #000;
}
.bc__steps video {
    border-radius: 0 !important;
}
.bc__dark .bc__steps video {
    border-radius: 30px !important;
}
.align__top {
    align-items: start !important;
}
section.bc__features .section__title {
    max-width: 80%;
}
.bc__feats {
    --bc-gap-v: 20px;
}
.bc__feat {
    grid-template-columns: repeat(1, 1fr);
    align-items: center !important;
    grid-column: auto / span 12;
    --bc-gap-v: 10px;
}
body:not(.bc__dark) .bc__feat {
    padding: 20px;
    background: #fff;
    border-radius: 30px;
    border: 4px solid rgb(0 0 0 / 5%);
}
.bc__features .bc__grid {
    max-width: 940px;
}
#carousel1:not(.carousel__loaded) {
    display: grid;
    grid-template-columns: repeat(8, 58%);
    gap: 10px;
    padding: 0 30px;
}
.bc__features {
    background: #f5f5f5;
}
.bc__dark .bc__features {
    background: #111
}
ul#carousel2 li {
    display: flex;
    justify-content: center;
    width: max-content !important;
    padding: 0 16px;
}
ul#carousel3 li {
    display: flex;
    justify-content: center;
    width: max-content !important;
    padding: 0 10px;
}
.bc__video .bc__button {
    position: absolute;
    bottom: 30px;
    width: 100%;
    left: 0;
    right: 0;
    opacity: 0;
}
.bc__video .bc__button a {
    padding: 6px 24px;
    font-size: 16px;
    width: 100%;
}
.button__badge span {
    display: flex;
    align-items: center;
    font-size: 18px;
    gap: 0 6px;
}
.button__badge span svg {
    max-width: 24px;
    height: auto;
}
.button__badge {
    display: flex;
    gap: 6px 20px;
    padding: 6px 30px;
    flex-direction: column;
    align-items: center;
}
.bc__brands .bx-wrapper{
    max-width: 100% !important;
}
/*!
 * Media Queries
 */
@media (min-width:768px){
.bc__grid {
    max-width: 700px;
}
.bc__nav .bc__grid {
    --bc-gap-h: 2rem;
}
.bc__menu a:first-of-type {
    display: inline-grid;
}
.bc__menu {
    --bs-columns: 2;
    --bs-col-width: auto;
    justify-content: end;
}
.bc__header {
    padding-top: 90px;
    text-align: left;
}
.bc__header h1 {
    font-size: 38px;
}
.bc__header h2 {
    display: inline-grid;
    grid-row-start: 2;
    padding: 0;
}
.bc__header .bc__video_wrapper {
    grid-row-end: 4;
    grid-column-start: 2;
    grid-row-start: 1;
    padding-left: 20px;
    padding-right: 0;
}
.bc__header .bc__video {
    max-width: 100%;
}
.bc__trust .section__title {
    grid-column: 1/span 6;
    margin-bottom: 0;
    text-align: left;
}
.bc__trust .bc__grid {
    --bc-columns: 12;
    --bc-grid: 1;
    --bc-col-width: 1fr;
    align-items: center;
    --bc-rows: 1;
}
.trustpilot__stat {
    grid-column: 9/span 2;
}
.bc__trust .bc__grid > div {
    grid-column-end: span 2;
    justify-content: start;
    gap: 10px;
}
.bc__ideas .section__title + p {
    grid-column: 3/span 8;
    grid-row-start: 2;
}
.bc__ideas .bc__video_wrapper {
    grid-column: auto/span 4;
}
.slide__desc p {
    margin-bottom: 0;
    line-height: 150%;
}
.bc__whoitfor .slide__desc p {
    margin-bottom: 0;
}
.bc__howitworks .bc__grid {
    --bc-columns: 2;
    --bc-rows: 2;
    --bc-col-height: auto;
    --bc-gap-v: 0;
}
.bc__howitworks .bc__video_wrapper {
    grid-column: 1 /span 1;
    grid-row-start: 1;
    grid-row-end: 3;
}
.bc__howitworks .section__title {
    grid-column: 2/span 1;
    margin: 0;
    text-align: left;
    align-self: end;
    margin-bottom: 20px;
}
.bc__howitworks .details {
    align-self: start;
    grid-column: auto/span 1;
    max-width: 100%;
}
.bc__howitworks {
    text-align: left;
}
.bc__howitworks ol {
    padding: 0;
    background: none;
    margin-bottom: 10px;
}
.bc__howitworks p {
    text-align: left;
}
.bc__howitworks .bc__button {
    margin: 0;
}
.bc__uses .bc__grid {
    --bc-columns: 12;
    margin-bottom: 30px;
}
.bc__whoitfor .section__title + div {
    grid-column: 2/span 10;
    padding: 0 30px;
}
.bc__whoitfor .bc__video_wrapper {
    grid-column: auto/span 4;
}
.bc__whoitfor .bc__button {
    grid-row-start: 4;
    grid-column: 4/span 6;
}
.bc__whoitfor .section__title + div + .bc__video_wrapper {
    grid-column-start: 2;
}
.bc__platform .bc__grid {
    --bc-columns: 12;
    margin-bottom: 20px;
}
.bc__platform .section__title {
    grid-column-end: span 12;
    display: inline-grid;
}
.platform:nth-of-type(1) {
    grid-column-start: 2;
}
.platform:nth-of-type(4) {
    grid-column-start: auto;
}
.bc__uses .bc__video_wrapper {
    grid-column: 2/span 5;
    grid-row-start: 1;
    grid-row-end: 3;
}
.bc__uses .bc__grid > div:not(.bc__video_wrapper) {
    grid-column: 7 /span 5;
    padding: 40px 0;
    position: relative;
}
.bc__uses .bc__grid > div:not(.bc__video_wrapper) p {
    text-align: left;
}
.bc__uses .bc__grid:nth-of-type(n+2) {
    --bc-columns: 12;
    --bc-rows: 2;
    --bc-col-height: 1fr;
}
.bc__video_wrapper {
    max-width: 100%;
}
.bc__uses .post__stats {
    align-self: end;
}
.bc__uses .section__title {
    grid-column: 3/span 8;
}
.bc__uses .bc__grid:last-of-type .bc__video_wrapper {
    grid-column: 7/span 5
}
.bc__uses .bc__grid:last-of-type > div:not(.bc__video_wrapper) {
    grid-column-start:2;
}
.bc__uses .bc__grid:last-of-type > div:not(.bc__video_wrapper) p {
    text-align: right;
}
.arrow__icon {
    width: 120px;
    height: 120px;
    background: url('../images/sprite-lightbg.svg') no-repeat;
    background-position: -480px -480px;
    background-size: 960px 2400px;
    position: absolute;
    left: -10px;
    bottom: -40px;
    transform: scale(0.8) rotate(-3deg);
}
.post__stats .arrow__icon {
    transform: scale(0.8) rotate(260deg);
    bottom: auto;
    top: -60px;
    left: 0px;
}
.bc__uses .bc__grid:last-of-type .arrow__icon {
    transform: scale(0.8) rotate(-20deg) scaleX(-1);
    left: auto;
    right: 0px;
    bottom: 0;
}
.bc__uses .bc__grid:last-of-type .post__stats .arrow__icon {
    transform: scale(0.8) rotate(100deg) scaleX(-1);
    right: 0px;
}
.bc__templates .section__title {
    width: 60%;
}
.testimonials__scroller {
    max-width: 720px;
    margin: 0 auto;
}
.testimonials__scroller_wrapper {
    width: 980%;
}
.bc__bottom_testimonials .block__wrapper.bc__grid {
    max-width: 100%;
}
.bc__bottom_testimonials .trustpilot__stat {
    grid-template-columns: repeat(2, auto);
    gap: 0 12px;
}
.bc__bottom_cta .section__title, .big.section__title {
    font-size: 38px;
    margin-bottom: 10px;
    max-width: 100%;
}
.bc__bottom_cta .bc__grid, .bc__faqs .bc__grid {
    max-width: 540px;
}
.bc__footer > .bc__grid:first-of-type {
    --bc-columns: 3;
    --bc-rows: 1;
}
.bc__legal {
    grid-template-columns: repeat(4, auto);
    gap: 0 20px;
}
span.bubble {
    display: inline-table;
}
}
@media (min-width:992px){
.bc__grid {
    max-width: 920px;
}
.bc__nav {
    border-bottom: none;
    padding-top: 16px;
    padding-bottom: 16px;
}
.bc__nav .bc__grid {
    --bc-gap-h: 3rem;
}
.bc__header h1 {
    font-size: 60px;
    line-height: 100%;
}
.bc__header h2 {
    font-size: 20px;
}
.bc__button a {
    font-size: 18px;
}
.section__title {
    font-size: 36px;
}
.bc__trust .section__title {
    grid-column: 1/span 5;
}
.bc__trust .number {
    font-size: 34px;
}
.bc__trust .number + span {
    font-size: 18px;
}
.bc__trust .bc__grid {
    --bc-columns: 11;
}
.trustpilot__stat {
    grid-column-start: 8;
}
.bc__ideas .section__title + p {
    grid-column: auto/span 12
}
.arrow__icon {
    bottom: 30px;
    left: -40px;
}
.post__stats .arrow__icon {
    top: -80px;
    left: -30px;
}
.bc__uses .bc__grid:last-of-type .arrow__icon {
    right: -20px;
    bottom: 50px;
}
.bc__uses .bc__grid:last-of-type .post__stats .arrow__icon {
    right: -20px;
}
.swiper--templates .swiper-slide div::after{
    background-size: 800px 1012px;
}
.swiper--templates .swiper-wrapper .swiper-slide {
    width: 160px
}
.bc__bottom_cta .section__title, .big.section__title {
    font-size: 60px;
}
.bc__bottom_cta .bc__grid, .bc__faqs .bc__grid {
    max-width: 640px;
}
.bc__footer > .bc__grid:first-of-type {
    --bc-columns: 5;
    display: grid;
    justify-content: space-between;
    --bc-gap-h: 40px;
}
.bc__widget:nth-child(2), .bc__widget:nth-child(3) {
    display: inline-table;
}
.platform {
    grid-column: auto / span 2;
}
.bc__platform .bc__grid {
    --bc-columns: 10;
}
.bc__platform .bc__button {
    grid-column: auto/span 10;
}
.bc__platform .section__title_wrapper {
    grid-column: auto/span 10;
}
.platform:nth-of-type(5) {
    grid-column-start: 7;
}
.platformList__wrapper span {
    grid-column-end: 1;
    margin-bottom: 0;
    grid-row-start: 1 !important;
    font-size: 18px;
}
.platformList__wrapper .platform__logo {
    grid-row-start: 1 !important;
}
}
@media (min-width:1200px){
body {
    font-size: 20px;
    line-height: 160%;
}
.bc__grid {
    --bc-gap-h: 40px;
    --bc-gap-v: 40px;
}
.ratio > * {
    border-radius: 28px;
}
.bc__video {
    border-radius: 30px;
}
.bc__grid {
    max-width: 1180px;
}
.bc__nav {
    padding-top: 20px;
    padding-bottom: 20px;
}
.bc__nav .bc__grid {
    --bc-gap-h: 4rem;
}
.bc__logo a {
    width: 160px;
    height: 40px;
}
.bc__menu a {
    font-size: 18px;
}
.bc__header {
    padding-top: 120px;
    padding-bottom: 0;
    padding-left: 0;
    padding-right: 0;
    gap: 20px;
}
.bc__header h1 {
    font-size: 100px;
    letter-spacing: -3px;
}
.bc__header h2 {
    font-size: 22px;
    margin-bottom: 20px;
}
.bc__button a {
    font-size: 20px;
}
.bc__button > span {
    font-size: 16px;
    margin-top: 10px;
}
.bc__header .bc__video_wrapper {
    grid-column-start: 4;
    grid-column: 6/span 5;
    grid-row-end: 4;
}
section {
    padding: 60px 0 80px;
}
.bc__trust .bc__grid {
    --bc-columns: 10;
}

.bc__testimonials .section__title {
    margin-bottom: 0;
}
.bc__trust .section__title {
    grid-column: 1/span 4;
    padding-right: 40px;
}
.trustpilot__stat {
    grid-column-start: 7;
}
.bc__trust .number {
    font-size: 36px;
}
.best__app span:first-child {
    height: 40px;
    width: 146px;
    background-size: 320px 800px;
    background-position: -160px -400px;
}
.bc__trust .bc__grid > div {
    gap: 4px 0;
}
.bc__step .slide__desc {
    padding: 0;
}
.bc__whoitfor .slide__desc {
    padding-left: 20px;
    padding-right: 20px;
}
.bc__ideas .section__title + p {
    padding: 0 40px;
}
.bc__howitworks .bc__grid, .bc__platform .bc__grid, .bc__uses .bc__grid, .bc__calendar .bc__grid {
    width: calc(9/12*1240px);
    width: 880px;
}
.bc__howitworks .section__title {
    margin-bottom: 20px;
}
.bc__howitworks .bc__button {
    margin-top: 30px;
}
.bc__video_wrapper {
    max-width: 100%;
}
.bc__whoitfor .section__title + div + .bc__video_wrapper {
    grid-column-start: 1;
}
.bc__whoitfor .section__title + div {
    grid-column: 3/span 8;
    margin-bottom: 30px;
}
.platform a > span:last-of-type {
    display: block;
    position: absolute;
    width: 100%;
    text-align: center;
    bottom: -50px;
    display: flex;
    align-items: center;
    gap: 4px;
    justify-content: center;
    font-size: 16px;
}
.bc__platform .bc__grid {
    --bc-columns: 10;
    --bc-gap-h: 30px;
    --bc-gap-v: 48px;
}
.platform:nth-of-type(1) {
    grid-column-start: 1;
}
.arrow__icon {
    bottom: -100px;
    left: -40px;
}
.post__stats .arrow__icon {
    top: -110px;
    left: -30px;
}
.bc__uses .bc__video img:first-of-type {
    border-radius: 26px 26px 0 0;
}
.bc__uses .bc__video img:last-of-type {
    border-radius: 0 0 26px 26px;
}
.bc__uses .bc__grid:last-of-type .arrow__icon {
    right: -20px;
    bottom: -90px;
}
.bc__uses .bc__grid:last-of-type .post__stats .arrow__icon {
    right: -20px;
}
.bc__uses .bc__grid {
    gap: 0 48px;
    margin-bottom: 48px;
}
.bc__uses .bc__video_wrapper {
    grid-column: 1/span 6;
}
.bc__uses .bc__grid:last-of-type .bc__video_wrapper {
    grid-column: 7/span 6;
}
.bc__uses .bc__grid > div:not(.bc__video_wrapper) {
    padding: 0;
    align-self: center;
}
.bc__uses .post__stats {
    justify-content: start;
    gap: 0 26px;
}
.bc__uses .bc__grid:last-of-type .post__stats {
    justify-content: end;
}
.post__stats_number {
    font-size: 30px;
}
.bc__testimonials .bc__grid {
    width: 800px;
    --bc-gap-v: 16px;
}
.quote__icon {
    width: 90px;
    margin-bottom: 20px;
}
.testimonials__scroller {
    max-width: 1050px;
}
.testimonials__scroller_wrapper {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0 30px;
    width: 496%;
    padding-bottom: 10px;
}
.bc__bottom_testimonials .block__wrapper.bc__grid {
    --bc-columns: 2;
    --bc-rows: 2;
    --bc-gap-h: 30px;
    --bc-gap-v: 30px;
}
.bc__testimonial_block {
    padding: 30px 34px;
}
.section__title_wrapper  .section__title {
    font-size: 38px;
    margin-bottom: 10px;
    max-width: 70%;
}
.bc__bottom_cta .section__title, .big.section__title {
    font-size: 70px;
    max-width: 100%;
}
.bc__ai .section__title {
    max-width: 78%;
}
.bc__bottom_cta p {
    font-size: 24px;
    max-width: 75%;
    margin: 0 auto 0px;
}
.bc__bottom_cta .bc__grid {
    max-width: 960px;
}
.bc__faqs .bc__grid {
    max-width: 780px;
}
.faq {
    padding-bottom: 24px;
    margin-bottom: 24px;
}
.bc__footer > .bc__grid:last-of-type {
    --bc-columns: 2;
    display: grid;
    justify-items: start;
    margin-top: 50px;
    padding-top: 30px;
}
.bc__legal {
    grid-column-start: 2;
    justify-self: flex-end;
    justify-items: end;
    gap: 0 40px;
}
.bc__footer {
    padding: 60px 0 40px;
}
.button__next, .button__prev {
    position: absolute;
    left: -70px;
    top: 50%;
    margin-top: -20px;
    
}
.button__next {
    margin-left: 0;
}
.button__prev {
    margin-left: 0;
    left: auto;
    right: -70px;
}
.testimonials__outer_wrapper {
    padding-bottom: 0;
}
.bc__bottom_testimonials > .bc__grid {
    margin-bottom: 40px;
}
.bc__header h1 span::after {
    width: 80px;
    height: 80px;
    top: -6px;
    left: -5px;
}
.bc__calendar .section__title + p {
    padding-left: 120px;
    padding-right: 120px;
}
.bc__brands {
    margin: 0;
    padding: 0;
}
.bc__brands .bc__grid {
    --bc-columns: 9;
    --bc-col-width: auto;
    justify-content: space-between;
    margin-top: 24px;
}
.bc__brands::before {
    display: none;
}
.bc__footer > .bc__grid:first-of-type {
    --bc-gap-h: 64px
}
}

@media
only screen and (-webkit-min-device-pixel-ratio: 2),
only screen and (   min--moz-device-pixel-ratio: 2),
only screen and (     -o-min-device-pixel-ratio: 2/1),
only screen and (        min-device-pixel-ratio: 2),
only screen and (                min-resolution: 192dpi),
only screen and (                min-resolution: 2dppx) {
.bc__testimonial_block .avatar {
    background-image: url('../images/avatar@2x.png');
    background-size: 92px 644px;
}
}

.light__or_dark {
    position: fixed;
    bottom: 86px;
    width: 60px;
    height: 60px;
    background: rgb(237 237 237);
    border-radius: 60px;
    right: 20px;
    cursor: pointer;
    z-index: 99;
}
.light__or_dark svg {
    width: 36px;
    height: 36px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.light__icon {
    display: none;
}
.light__or_dark:hover {
    background: rgb(204 204 204);
}

.bc__dark {
    color: #ffffff;
    background: #101010;
}
.bc__dark nav.bc__nav {
    background: rgb(16 16 16 / 60%);
    border-bottom: none;
}
.bc__dark .bc__logo svg path.color_def_scheme {
    fill: #fff
}
.bc__dark .bc__menu a {
    color: #fff;
}
.bc__dark .bc__menu a svg path {
    stroke: #b7b7b7;
}
.bc__dark .best__app span,
.bc__dark .bc__brands [class*="__brand"],
.bc__dark span[class*="icon"],
.bc__dark .arrow__icon,
.bc__dark .testimonial__logo,
.bc__dark .bc__social,
.bc__dark .button__next,
.bc__dark .button__prev{
    background-image: url('../images/sprite-darkbg.svg');
}
.bc__dark .bc__button a {
    background: #01A0C6;
    color: #fff;
}
.bc__dark .bc__nav.scrolled {
    border-color: transparent;
}
.bc__dark a {
    color: #fff;
}
.bc__dark .platform a span:last-of-type svg path {
    stroke: #b7b7b7;
}
.bc__dark .platform__box .ratio {
    background: #1b1b1b;
    z-index: 22;
    border-radius: 16px;
}
.bc__dark .quote__icon svg path {
    fill: #ffffff;
}
.bc__dark .platform {
    border: none;
    background: #1b1b1b;
}
.bc__dark .bc__templates .swiper-container::before {
    background: linear-gradient(90deg, rgb(16 16 16) 41%, rgba(16, 16, 16, 0.5102634803921569) 84%, rgba(16, 16, 16, 0) 100%);
}
.bc__dark .bc__templates .swiper-container::after {
    background: linear-gradient(-90deg, rgb(16 16 16) 41%, rgba(16,16,16,0.5102634803921569) 84%, rgba(16,16,16,0) 100%);  
}
.bc__dark .bc__testimonial_block {
    border: none;
    background: #1b1b1b;
}
.bc__dark .faq {
    border-color: #ffffff14;
}
.bc__dark .post__stats_number::after {
    background: #01A0C6;
}
.bc__dark .ask::after {
    border-color: #d4d4d4;
}
.bc__dark .bc__footer {
    background: #161616;
}
.bc__dark .bc__footer > .bc__grid:last-of-type {
    border-color: #ffffff0d;
}
.bc__dark span.bubble {
    color: #101010;
}
.bc__dark .light__or_dark {
    background: rgb(43 43 43);
}
.bc__dark .dark__icon {
    display: none;
}
.light__icon {
    display: none;
}
.bc__dark .light__icon {
    display: block;
}
.bc__dark .light__or_dark:hover {
    background: #484848;
}
.bc__dark .bc__brands .bc__grid {
    border-color: #191919;
}

/*! FakeBeacon */
.js-beacon,.js-beacon button {
    height: 60px;
    z-index: 999;
    cursor: pointer
}
.js-beacon {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px
}
.js-beacon button,.lds-dual-ring {
    appearance: none;
    bottom: 0;
    display: block;
    margin: 0;
    outline: 0;
    padding: 0;
    position: relative;
    user-select: none;
    color: #fff;
    min-width: 60px;
    transition: transform .2s linear;
    -webkit-tap-highlight-color: transparent;
    background-color: #05a0c7;
    transform-origin: calc(100% - 30px) center;
    animation-duration: 250ms;
    animation-fill-mode: forwards;
    backface-visibility: hidden
}
.js-beacon button {
    -webkit-box-align: center;
    align-items: center;
    border-radius: 200px;
    -webkit-box-pack: center;
    justify-content: center;
    border: none
}
.js-beacon button:hover {
    background-color: #0098bf;
    box-shadow: rgb(0 0 0 / 6%) 0 0 0 30px inset
}
.lds-dual-ring {
    width: 60px;
    height: 60px;
    -webkit-box-align: center;
    align-items: center;
    border-radius: 200px;
    justify-content: center;
    border: none
}
.lds-dual-ring:after {
    content: " ";
    position: absolute;
    top: 15px;
    left: 15px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 3px solid #fff;
    border-color: #fff transparent;
    animation: 1.2s linear infinite lds-dual-ring
}
.hsds-beacon .fbuCts {
    bottom: 20px !important;
}
.hsds-beacon .cXSNAR.BeaconContainer-enter-done {
    transform: translateY(-5px);
}
.js-beacon button span {
    width: 40px;
    height: 40px;
    display: inline-grid;
    justify-items: center;
    align-items: center;
}
@keyframes lds-dual-ring {
    0% {
        transform: rotate(0)
    }

    100% {
        transform: rotate(360deg)
    }
}
.calendar__wrapper img {
    margin: 0 auto;
}
#beacon-container .BeaconFabButtonFrame {
    bottom: 20px !important;
}
#beacon-container .BeaconContainer {
    --hs-beacon-window-v-offset: 90px !important;
}

/*! New added CSS */
.bc__introduction .bc__inner_wrapper {
    max-width: 1030px;
    margin: 0 auto;
}
.bc__introduction .bc__inner_wrapper .section__title_wrapper {
    max-width: 840px;
}
.bc__introduction .bc__inner_wrapper .section__title_wrapper:nth-child(2) {
    margin-top: 60px;
}
.bc__title_badge {
    background: #f5f5f5;
    display: inline-flex;
    padding: 6px 10px;
    margin-bottom: 10px;
    border-radius: 5px;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 130%;
    letter-spacing: -0.3px;
}
.bc__grid ul {
    grid-column: auto/span 12;
    gap: 16px;
    display: grid;
    margin-bottom: 10px;
}
.bc__grid ul li.list__rotated {
    display: block;
    justify-content: center;
    margin: 0 auto;
    gap: 30px;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 130%;
    padding: 8px 10px;
    border-radius: 10px;
    transform: rotate(-2deg);
    background: var(--bg, #F5f5f5);
}
.bc__grid ul li.list__rotated:nth-child(2) {
    transform: rotate(1deg);
}
.bc__grid ul li.list__rotated:nth-child(3n) {
    transform: rotate(-1deg);
}
.bc__introduction {
    padding-bottom: 0;
}
.bc__steps {
    grid-column: auto / span 12;
    grid-column-start: 1;
}
.bc__step {
    grid-column: auto / span 12;
    display: grid;
    gap: 6px;
    align-items: start;
    border: 4px solid #f7f7f7;
    padding: 20px 20px 14px;
    border-radius: 30px;
}
.bc__dark .bc__step {
    background: #ffffff05;
    border: none;
    padding-top: 10px;
    padding-bottom: 0;
}
.list__testimonial span {
    font-weight: 400;
}
.bc__step .bc__illustration {
    background: #f7f7f7;
    min-height: 180px;
    border-radius: 30px;
}
.slide__desc {
    height: auto;
    width: max-content;
    position: relative;
    transform: none;
    bottom: auto;
    left: auto;
}
.bc__button_next, .bc__button_prev {
    width: 48px;
    height: 48px;
    background: #ffffff;
    cursor: pointer;
    border-radius: 50%;
    z-index: 99;
    display: grid;
    justify-content: center;
    align-content: center;
}
.bc__slider_examples {
    position: relative;
    padding-left: 0;
    padding-right: 0;
    padding-top: 0px;
    padding-bottom: 0px;
    width: 100%;
    overflow: hidden;
}
.bc__button_prev svg path,
.bc__button_next svg path {
    stroke: #141414;
}
.bc__button_prev svg, .bc__button_next svg {
    width: 36px;
    height: 36px;
}
.slide__desc h4 {
    font-size: 20px;
}
.bc__bottom_cta .bc__grid .section__title_wrapper > .font__emoji {
    font-size: 44px;
    margin-bottom: 16px;
    display: block;
    line-height: 100%;
}
.bc__bottom_cta ul {
    display: grid;
    grid-template-columns: repeat(2, auto);
    gap: 10px;
}
.bc__bottom_cta ul li {
    background: var(--bg, #ebebeb);
    border-radius: 16px;
    padding: 16px;
    font-weight: 600;
    grid-column: auto / span 12;
}
.bc__bottom_cta ul li:nth-child(3) {
    grid-column: auto / span 12;
}
.bc__grid ul li.list__rotated.list__testimonial {
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 20px 50px;
    gap: 0px;
    border-radius: 30px;
    border: 4px solid hsl(0deg 0% 0% / 1%);
}
.list__testimonial p {
    font-weight: 400;
    margin-bottom: 10px;
}
.list__testimonial h5 {
    font-size: 20px;
    margin-bottom: 10px;
    line-height: 1.3;
}
.list__testimonial span {
    font-size: 16px
}
.bc__dark .bc__grid ul li.list__rotated.list__testimonial {
    background: #ffffff05;
    color: #fff;
}
.bc__dark .bc__title_badge {
    background: #ffffff12;
}
.bc__dark ul li.list__rotated {
    color: #000;
}
.bc__dark .bc__bottom_cta ul li {
    color: #000;
}
.bc__dark .bc__illustration {
    background: #ffffff08;
}
.bc__dark .bc__video {
    background: #ffffff05;
}
.bc__dark .bc__button_next, .bc__dark .bc__button_prev {
    background: #101010;
}
.bc__dark .bc__button_next svg path, .bc__dark .bc__button_prev svg path {
    stroke: #fff;
}
.swiper__navigation {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 10px;
}

@media (min-width:768px){
.bc__step {
    grid-column: auto / span 4;
    display: block;
}
.bc__dark .bc__step {
    padding-top: 30px;
    padding-bottom: 24px;
}
.bc__widget:nth-child(4) {
    display: none;
}
.bc__advantages {
    grid-template-columns: repeat(2, 1fr);
    align-items: start;
}
.bc__feat {
    grid-template-columns: repeat(2, 1fr);
}
.feat__details {
    text-align: left;
}
.feat__details p {
    padding-right: 30px;
}
.bc__feats {
    --bc-gap-v: 30px;
}
.order__first {
    order: -1;
}
.bc__grid ul li.list__rotated.list__testimonial {
    margin-bottom: 30px;
}
}
@media (min-width:992px) {
.bc__grid ul {
    gap: 50px;
    margin-bottom: 0;
}
.bc__bottom_cta .bc__grid ul {
    gap: 20px
}
.bc__testimonials .bc__grid {
    max-width: 640px;
}
.bc__bottom_cta ul li {
    grid-column: auto / span 6;
}
.slide__desc h4 {
    font-size: 24px;
}
.feat__details p {
    padding-right: 60px;
}
.bc__feats {
    margin-top: 10px;
    --bc-gap-v: 20px;
}
.bc__feat h4 {
    font-size: 28px;
    margin-bottom: 10px;
}
.bc__feat {
    padding: 40px !important;
    border-radius: 40px !important;
}
.bc__bottom_cta ul li:hover {
    transform: rotate(-1deg) scale(1.2);
    transition: all 0.3s linear;
}
.bc__bottom_cta ul li:nth-child(2n):hover {
    transform: rotate(1deg) scale(1.2);
}
.button__badge {
    gap: 0 20px;
    padding: 0 24px;
    flex-direction: row;
}
.bc__button {
    gap: 16px;
}
.platformList__wrapper {
    display: grid;
    grid-template-columns: repeat(5, auto);
    align-items: center;
    gap: 0 24px;
    justify-items: center;
    justify-content: center;
}
.platformList__wrapper img {
    max-height: 38px;
}
}
@media (min-width:1200px) {
.swiper__navigation {
    margin-top: 30px;
}
.slide__desc h4 {
    font-size: 38px;
    font-weight: 800;
}
.bc__step {
    text-align: left;
    display: grid;
    align-items: start;
}
.bc__steps.bc__grid {
    display: grid;
    align-items: start;
    max-width: 980px;
    --bc-gap-h: 30px;
}
.bc__step span {
    margin-top: 10px;
}
.bc__bottom_cta .bc__grid ul {
    grid-column: auto / span 10;
    grid-column-start: 2;
}
.bc__widget:nth-child(4) {
    display: block;
}
.bc__grid ul li.list__rotated {
    font-size: 20px;
}
.bc__grid ul li.list__rotated.list__testimonial {
    margin-bottom: 0;
}
.bc__advantages {
    grid-template-columns: repeat(2, 1fr);
    max-width: 940px;
    align-items: center;
}
.advantages + .bc__button {
    margin-top: 30px;
    margin-left: 0;
}
.section__title_wrapper .img__emoji {
    height: 72px;
    margin-bottom: 24px;
}
.bc__slider_examples .swiper-slide {
    margin-bottom: 50px;
}
#carousel1:not(.carousel__loaded)  {
    display: grid;
    grid-template-columns: repeat(8, 24%);
    gap: 30px;
    padding: 0 30px;
}
#carousel2 {
    display: grid;
    grid-template-columns: repeat(9, auto);
    justify-items: center;
    justify-content: space-evenly;
    max-width: 1180px;
    margin: 0 auto;
    gap: 0 30px;
}
ul#carousel2 li {
    padding: 0;
}
ul#carousel3 li {
    padding: 0 30px;
}
.bc__video {
    transition: all .15s linear
}
.bc__video:hover {
    background: #000;
    transform: scale(1.05);
    transition: all .15s linear
}
.bc__dark .bc__video:hover {
    background: #01A0C6;
}
.bc__video.cta__hovered:hover {
    background: var(--Border-color, linear-gradient(147deg, #01A0C6 8.41%, #480CAB 39.58%, #1F40B4 74.21%, #01C6BA 98.95%));
}
.bc__video .bc__button {
    bottom: -60px;
    opacity: 0;
    transition: all .2s ease;
    opacity: 1;
}
.bc__video:hover .bc__button {
    opacity: 1;
    bottom: 15px;
}
.bc__slider_examples .bx-viewport {
    padding-top: 60px;
    padding-bottom: 60px;
}
.bc__slider_examples + .bc__section {
    padding-top: 70px;
    padding-bottom: 60px;
}
}
@media (max-width: 1199px) {
#carousel2:not(.carousel__loaded) {
    display: grid;
    grid-template-columns: repeat(9, auto);
    justify-items: center;
    justify-content: space-evenly;
    max-width: 1180px;
    margin: 0 auto;
    gap: 0 30px;
}
}
@media (min-width:1600px) {
#carousel1:not(.carousel__loaded)  {
    display: grid;
    grid-template-columns: repeat(8, 20%);
    gap: 20px;
    padding: 0 30px;
}
}
.bc__slider_examples .bx-wrapper {
    max-width: 100% !important;
}

.bc__header + .bc__slider_examples .swiper-container.slider__loaded {
    padding: 0;
}

.bc__header + .bc__slider_examples .swiper-container {
    padding-top: 60px;
    padding-bottom: 60px;
}
.bc__step span {
    font-size: 90%;
}

.bc__step .ratio {
    margin-left: -3%;
    margin-right: -3%;
    width: auto;
}