@keyframes spin {
    to {
        transform: rotate(1turn)translate(calc(var(--h)/2))rotate(-1turn)
    }
}

@-webkit-keyframes carousel-animate-vertical {
    0% {
        opacity: 0;
        visibility: hidden;
        transform: translateY(100%)scale(.5)
    }

    16.6667%,3% {
        opacity: .4;
        visibility: visible;
        transform: translateY(100%)scale(.7)
    }

    19.6667%,33.3333% {
        opacity: 1;
        visibility: visible;
        transform: translateY(0)scale(1)
    }

    36.3333%,50% {
        opacity: .4;
        visibility: visible;
        transform: translateY(-100%)scale(.7)
    }

    53% {
        opacity: 0;
        visibility: visible;
        transform: translateY(-100%)scale(.5)
    }

    to {
        opacity: 0;
        visibility: hidden;
        transform: translateY(-100%)scale(.5)
    }
}

@keyframes carousel-animate-vertical {
    0% {
        opacity: 0;
        visibility: hidden;
        transform: translateY(100%)scale(.5)
    }

    16.6667%,3% {
        opacity: .4;
        visibility: visible;
        transform: translateY(100%)scale(.7)
    }

    19.6667%,33.3333% {
        opacity: 1;
        visibility: visible;
        transform: translateY(0)scale(1)
    }

    36.3333%,50% {
        opacity: .4;
        visibility: visible;
        transform: translateY(-100%)scale(.7)
    }

    53% {
        opacity: 0;
        visibility: visible;
        transform: translateY(-100%)scale(.5)
    }

    to {
        opacity: 0;
        visibility: hidden;
        transform: translateY(-100%)scale(.5)
    }
}

@keyframes tweet-run-right {
    0% {
        left: 0;
        transform: translate(-456px)
    }

    to {
        left: 100%
    }
}

@keyframes tweet-run-left {
    0% {
        right: 0;
        transform: translate(456px)
    }

    to {
        right: 100%
    }
}

.modal-content {
    background-color: #0000;
    border: 0
}

.modal-header {
    border: 0
}

.modal .btn-close {
    background-color: var(--blu-colors-white);
    border-radius: 50%;
    margin-top: 30px;
    margin-right: 30px
}

.blu-color-background {
    background-color: #4980e0
}

.blu-color-text {
    color: #4980e0
}

.btn-outline-primary,.btn-primary {
    --bs-btn-border-color: #4980e0;
    --bs-btn-disabled-border-color: #4980e0
}

.btn-outline-primary {
    --bs-btn-color: #4980e0;
    --bs-btn-hover-bg: #4980e0;
    --bs-btn-hover-border-color: #4980e0;
    --bs-btn-active-bg: #4980e0;
    --bs-btn-active-border-color: #4980e0;
    --bs-btn-disabled-color: #4980e0
}

.btn-primary {
    --bs-btn-color: var(--blu-colors-white);
    --bs-btn-bg: #4980e0;
    --bs-btn-hover-color: var(--blu-colors-white);
    --bs-btn-hover-bg: #0b5ed7;
    --bs-btn-hover-border-color: #0a58ca;
    --bs-btn-focus-shadow-rgb: 49,132,253;
    --bs-btn-active-color: var(--blu-colors-white);
    --bs-btn-active-bg: #0a58ca;
    --bs-btn-active-border-color: #0a53be;
    --bs-btn-active-shadow: inset 0 3px 5px #00000020;
    --bs-btn-disabled-color: var(--blu-colors-white);
    --bs-btn-disabled-bg: #4980e0
}

.navbar-toggler {
    border: 0
}

nav {
    color: #2c2c2c;
    border-bottom: 1px solid #f5f5f5;
    font-weight: 700;
    padding-bottom: 0!important
}

.navbar .megamenu {
    padding: 1rem
}

.navbar-brand {
    padding-bottom: 15px
}

.navbar li {
    padding: 0 15px
}

.navbar li a {
    padding: 15px 0
}

.nav-item-underline:after {
    content: "";
    border-bottom: 4px solid #437be3;
    border-radius: 5px 5px 0 0;
    transition: transform .3s ease-in-out;
    display: block;
    transform: scaleX(0)
}

.nav-item-underline:hover:after {
    transform: scaleX(1)
}

.dropdown-menu {
    border: 1px solid #f9f9f9;
    border-radius: 2rem;
    box-shadow: 1px 1px 30px #f5f5f5
}

.text-bg-success {
    color: var(--blu-colors-white);
    background-color: #44ac85
}

.btn-success {
    background-color: #44ac85;
    border: 0
}

.nav-item-list li {
    color: #2c2c2c;
    padding: .75rem 1rem;
    font-weight: 400
}

.nav-item-list li:hover {
    background-color: #edf4fc;
    border-radius: 10px
}

.nav-item-list li:hover a:after {
    content: "←";
    float: left;
    color: var(--blu-colors-blue);
    font-size: 25px;
    font-weight: bolder;
    line-height: 1.5rem
}

.nav-item-list li a {
    color: #2c2c2c;
    text-decoration: none
}

.nav-item-description li {
    background-color: #f7f9fa;
    border-radius: 10px;
    padding-top: 1rem;
    padding-bottom: 1rem
}

.nav-item-icon {
    padding: 0 10px
}

.nav-description {
    color: #718e9c;
    font-weight: 400
}

.sticky-top {
    background: var(--blu-colors-white)
}

#blu-features-circles {
    --n: 13;
    --d: 60s;
    --w: 100vh;
    --h: 100vh;
    width: var(--w);
    height: var(--w);
    z-index: -1;
    border: 1px solid #f6f6f6;
    border-radius: 50%;
    grid-template-rows: 30px;
    grid-template-columns: 30px;
    place-content: center;
    margin: 40px auto;
    display: grid;
    position: absolute;
    top: -50%;
    left: calc(588px - 50vh)
}

.features-icon {
    text-align: center;
    animation: spin var(--d)linear infinite;
    transform: rotate(0)translate(calc(var(--h)/2))rotate(0);
    border-radius: 50%;
    grid-area: 1/1;
    line-height: 30px
}

.features-icon:first-child {
    animation-delay: calc(0*var(--d)/var(--n))
}

.features-icon:nth-child(2) {
    animation-delay: calc(-1*var(--d)/var(--n))
}

.features-icon:nth-child(3) {
    animation-delay: calc(-2*var(--d)/var(--n))
}

.features-icon:nth-child(4) {
    animation-delay: calc(-3*var(--d)/var(--n))
}

.features-icon:nth-child(5) {
    animation-delay: calc(-4*var(--d)/var(--n))
}

.features-icon:nth-child(6) {
    animation-delay: calc(-5*var(--d)/var(--n))
}

.features-icon:nth-child(7) {
    animation-delay: calc(-6*var(--d)/var(--n))
}

.features-icon:nth-child(8) {
    animation-delay: calc(-7*var(--d)/var(--n))
}

.features-icon:nth-child(9) {
    animation-delay: calc(-8*var(--d)/var(--n))
}

.features-icon:nth-child(10) {
    animation-delay: calc(-9*var(--d)/var(--n))
}

.features-icon:nth-child(11) {
    animation-delay: calc(-10*var(--d)/var(--n))
}

.features-icon:nth-child(12) {
    animation-delay: calc(-11*var(--d)/var(--n))
}

.features-icon:nth-child(13) {
    animation-delay: calc(-12*var(--d)/var(--n))
}

#back-circles {
    --header-height: 148px;
    --container-size: 1176px;
    --box-size: 100vh;
    --circle-diameter: 100px;
    --grow-factor: 1.25;
    width: var(--box-size);
    height: calc(var(--box-size) - var(--header-height));
    top: -35%;
    left: calc((var(--container-size) - var(--box-size))/2);
    z-index: -1;
    position: absolute;
    overflow: hidden
}

.back-circle-item {
    z-index: -1;
    opacity: .9;
    border: 1px solid #f6f6f6;
    border-radius: 50%;
    position: absolute
}

.back-circle-item:first-child {
    --circle-size: calc(1*var(--grow-factor)*var(--circle-diameter))
}

.back-circle-item:first-child,.back-circle-item:nth-child(2),.back-circle-item:nth-child(3) {
    height: var(--circle-size);
    width: var(--circle-size);
    top: calc((100% - var(--circle-size))/2);
    left: calc((100% - var(--circle-size))/2)
}

.back-circle-item:nth-child(2) {
    --circle-size: calc(2*var(--grow-factor)*var(--circle-diameter))
}

.back-circle-item:nth-child(3) {
    --circle-size: calc(3*var(--grow-factor)*var(--circle-diameter))
}

.back-circle-item:nth-child(4) {
    --circle-size: calc(4*var(--grow-factor)*var(--circle-diameter))
}

.back-circle-item:nth-child(4),.back-circle-item:nth-child(5),.back-circle-item:nth-child(6) {
    height: var(--circle-size);
    width: var(--circle-size);
    top: calc((100% - var(--circle-size))/2);
    left: calc((100% - var(--circle-size))/2)
}

.back-circle-item:nth-child(5) {
    --circle-size: calc(5*var(--grow-factor)*var(--circle-diameter))
}

.back-circle-item:nth-child(6) {
    --circle-size: calc(6*var(--grow-factor)*var(--circle-diameter))
}

.blue-back {
    background: url(../icons/Orbit.svg) 70% 0 no-repeat;
    background-color: var(--blu-colors-blue);
    color: var(--blu-colors-white)
}

.blue-back li {
    cursor: pointer
}

.blu-line-chat-group {
    max-height: 500px;
    list-style: none;
    overflow: hidden
}

.blu-line-chat-item {
    width: 328px;
    margin-top: 2rem;
    transition: all .3s;
    transform: translateY(50px)
}

.blu-line-chat-item:nth-child(2n) {
    direction: ltr;
    margin-right: 40%
}

.bluLine_chat {
    opacity: 0;
    will-change: transform,opacity;
    align-items: center;
    width: 100%;
    padding: 0 12px;
    -webkit-animation: 30s linear infinite carousel-animate-vertical;
    animation: 30s linear infinite carousel-animate-vertical;
    display: flex;
    position: absolute
}

.bluLine_chat-body {
    border-radius: 8px;
    width: 100%;
    padding: 1rem
}

.bluLine_chat-body p {
    color: var(--blu-colors-white);
    margin-top: 10px;
    font-size: 14px
}

.bluLine_chat-body p.title {
    font-size: 12px
}

.blu-line-chat-item:nth-child(odd) .bluLine_chat-body,.bluLine_chat:nth-child(odd) .bluLine_chat-body {
    color: var(--blu-colors-white);
    background-color: #185eb5;
    border-radius: 1rem 5px 1rem 1rem
}

.blu-line-chat-item:nth-child(2n) .bluLine_chat-body p.title,.blu-line-chat-item:nth-child(odd) .bluLine_chat-body p.title,.bluLine_chat:nth-child(2n) .bluLine_chat-body p.title,.bluLine_chat:nth-child(odd) .bluLine_chat-body p.title {
    color: #8caeda
}

.blu-line-chat-item:nth-child(2n) .bluLine_chat-body,.bluLine_chat:nth-child(2n) .bluLine_chat-body {
    background-color: var(--blu-colors-white);
    color: var(--blu-colors-blue);
    border-radius: 5px 1rem 1rem
}

.blu-line-chat-item:nth-child(2n) .bluLine_chat-body p,.bluLine_chat:nth-child(2n) .bluLine_chat-body p {
    color: var(--blu-colors-blue);
    text-align: left
}

.bluLine_chat:first-child {
    -webkit-animation-delay: -5s;
    animation-delay: -5s
}

.bluLine_chat:nth-child(2) {
    -webkit-animation-delay: 0s;
    animation-delay: 0s
}

.bluLine_chat:nth-child(3) {
    -webkit-animation-delay: 5s;
    animation-delay: 5s
}

.bluLine_chat:nth-child(4) {
    -webkit-animation-delay: 10s;
    animation-delay: 10s
}

.bluLine_chat:nth-child(5) {
    -webkit-animation-delay: 15s;
    animation-delay: 15s
}

.bluLine_chat:last-child {
    -webkit-animation-delay: 20s;
    animation-delay: 20s
}

.circle-icon {
    background-color: var(--blu-colors-white);
    text-align: center;
    vertical-align: middle;
    border: 2px solid #0000;
    border-radius: 50%;
    width: 22px;
    height: 22px;
    margin: 0 5px 0 10px;
    padding: 2px;
    line-height: 0;
    display: inline-block
}

.bluline-description {
    display: none
}

.show {
    display: block
}

.visible {
    visibility: visible
}

button.circle-icon {
    border: 0;
    position: relative
}

button.circle-icon:after,button.circle-icon:before {
    box-sizing: inherit;
    content: "";
    width: 100%;
    height: 100%;
    position: absolute
}

.spin {
    width: 22px;
    height: 22px
}

.spin:after,.spin:before {
    background-color: var(--blu-colors-white);
    top: 0;
    left: 0
}

.spin:before {
    border: 2px solid #185eb5;
    border-left-color: #0000;
    transition: border-top-color .15s linear,border-right-color .15s linear 3.3s,border-bottom-color .15s linear 6.6s
}

.spin:after {
    border: 2px solid #0000;
    border-top-color: #185eb5;
    border-bottom-width: 0;
    transition: -webkit-transform 9.5s linear,transform 9.5s linear,border-left-width 0s linear 9.45s;
    transform: rotate(270deg)
}

.circle svg {
    z-index: 9999;
    position: relative
}

.circle {
    box-shadow: none
}

.circle,.circle:after,.circle:before {
    border-radius: 100%
}

.card-section {
    background: #eef4fc;
    border-radius: 24px;
    position: relative;
    overflow: hidden
}

.card-colors-selection {
    z-index: 999;
    position: absolute;
    top: 30%
}

.card-colors-selection ul {
    padding: 0
}

.color-selection-item {
    text-align: center;
    vertical-align: middle;
    cursor: pointer;
    border: 2px solid #4980e0;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    margin-bottom: 1rem;
    list-style: none
}

.color-selection {
    background: #4980e0;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    margin: 2px
}

@media (width<=575.98px) {
    .card-video-section {
        padding-bottom: 10%
    }

    .card-colors-selection {
        text-align: center;
        width: 100%;
        top: 80%;
        bottom: 0
    }

    .card-colors-selection ul {
        width: 100%
    }

    .card-colors-selection ul li {
        display: inline-block
    }

    .blu-line-chat {
        height: 300px;
        margin-top: 100px
    }

    .teaser-content {
        padding-bottom: 350px!important
    }
}

.purple-box {
    background-color: #f2f1f9
}

.green-box {
    background-color: #e8f7f4
}

.red-box {
    background-color: #faf2f4
}

.rounded-box {
    border-radius: 24px;
    padding-left: 1rem;
    margin: .25rem!important
}

.rounded-box h2 {
    line-height: 3rem!important
}

.rounded-box img {
    float: left
}

.rounded-box-btn {
    cursor: pointer;
    background: var(--blu-colors-white);
    border-radius: 50%;
    justify-content: center;
    align-items: center;
    width: 56px;
    height: 56px;
    transition: all .3s;
    display: flex
}

.rounded-box:hover .btn-flip {
    transform: scaleX(-1)
}

.btn-animated {
    padding: 0 5px;
    transition: all .3s;
    overflow: hidden
}

.btn-icon {
    font-size: 14px
}

.rounded-box-btn:hover,.rounded-box:hover .rounded-box-btn {
    background: #0a53be
}

.btn-animated-text {
    white-space: nowrap;
    color: var(--blu-colors-white);
    padding-left: 15px;
    display: none;
    transform: translate(100px)
}

.btn-animated:hover,.rounded-box:hover .btn-animated {
    background: var(--blu-colors-white);
    border-radius: 35px;
    width: 180px;
    transition: all .3s
}

.btn-animated:hover .btn-animated-text,.rounded-box:hover .btn-animated .btn-animated-text {
    transition: all .3s;
    display: block;
    position: relative;
    transform: translate(0)
}

.scaleUp {
    margin: 0 auto;
    padding: 50px
}

.scaleUp img {
    transition: transform .3s ease-in-out
}

.scaleUp:hover img {
    transform: scale(1.07)
}

.blu-card-colors-first-text {
    height: 200px
}

.blu-card-colors {
    color: #718e9c;
    font-size: 40px;
    font-weight: 700
}

.blu-card-other-colors {
    width: 400px;
    height: 200px;
    max-height: 10rem;
    padding-right: .5rem;
    position: relative;
    overflow: hidden
}

.blu-cards-colors-to-top {
    margin-top: 100px;
    transition: all .8s
}

.blu-card-colors-animate {
    text-align: right
}

.text-fade {
    -webkit-mask: linear-gradient(to top,var(--blu-colors-white),var(--t,var(--blu-colors-white)))top/100% 40%,linear-gradient(var(--blu-colors-white),var(--blu-colors-white))center/100% 30%,linear-gradient(to bottom,var(--blu-colors-white),var(--b,var(--blu-colors-white)))bottom/100% 40%;
    -webkit-mask-repeat: no-repeat;
    mask: linear-gradient(to top,var(--blu-colors-white),var(--t,var(--blu-colors-white)))top/100% 40%,linear-gradient(var(--blu-colors-white),var(--blu-colors-white))center/100% 30%,linear-gradient(to bottom,var(--blu-colors-white),var(--b,var(--blu-colors-white)))bottom/100% 40%;
    mask-repeat: no-repeat
}

.text-fade-top {
    --t: transparent
}

.text-fade-bottom {
    --b: transparent
}

.text-fade-blu-line {
    -webkit-mask: linear-gradient(to top,var(--blu-colors-white),var(--t,var(--blu-colors-white)))top/100% 10%,linear-gradient(var(--blu-colors-white),var(--blu-colors-white))center/100% 80%,linear-gradient(to bottom,var(--blu-colors-white),var(--b,var(--blu-colors-white)))bottom/100% 10%;
    -webkit-mask-repeat: no-repeat;
    mask: linear-gradient(to top,var(--blu-colors-white),var(--t,var(--blu-colors-white)))top/100% 10%,linear-gradient(var(--blu-colors-white),var(--blu-colors-white))center/100% 80%,linear-gradient(to bottom,var(--blu-colors-white),var(--b,var(--blu-colors-white)))bottom/100% 10%;
    mask-repeat: no-repeat
}

.blu-card-colors li {
    list-style: none
}

.dark-mode {
    cursor: pointer;
    z-index: -2;
    background: url(../icons/pattern_dot_Light.svg);
    position: relative
}

.dark-mode-background {
    z-index: -1;
    opacity: 0;
    background-color: #1c2028;
    width: 100%;
    height: 100%;
    position: absolute;
    background-image: url(../icons/pattern_dot_Dark.svg)!important
}

.dark-mode p {
    color: #afafaf
}

.dark-mode-active .btn {
    background: 0 0;
    border: 0;
    color: #4980e0!important
}

.dark-mode-active h2,.dark-mode-active p {
    color: #eaeaea
}

.blu-dark-mode-images-section {
    height: 538px
}

.blu-dark-mode-image {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0
}

.dark-mode-icons {
    width: 72px;
    height: 72px;
    margin: 0 auto;
    position: relative
}

.dark-mode-icon {
    position: absolute;
    left: 0
}

.dark-mode-animate {
    transition: all .5s
}

.tweets {
    overflow: hidden;
    mask-image: linear-gradient(#0000,#000 20% 80%,#0000 100%)
}

.tweets-items {
    height: 170px;
    position: relative
}

.tweet-item {
    background: #eaeaea;
    border-radius: 1rem;
    width: 456px;
    height: 167px;
    margin: 0 .5rem;
    padding: 2rem 2rem 1rem;
    font-size: 12px;
    transition: all .5s
}

.tweet-go-left {
    transform: translate(1100px)
}

.tweet-icon {
    margin: 10px
}

.tweet-name p {
    margin: 0;
    padding: 0;
    font-weight: 700
}

.tweet-name p.small {
    color: #939393;
    font-size: 10px
}

.teaser-content {
    color: var(--blu-colors-white);
    background: url(../icons/teaser-background.svg) 0 0/cover no-repeat;
    border-radius: 1rem;
    margin-top: 10rem;
    position: relative
}

.teaser-text {
    max-width: 50%
}

.teaser-image {
    position: absolute;
    bottom: 0;
    left: 20px
}

.btn {
    border-radius: 1rem!important
}

.btn-minimal {
    box-shadow: none;
    color: var(--blu-colors-blue);
    background-color: #0000;
    border: 0
}

.btn-minimal:hover {
    color: var(--blu-colors-blue);
    background-color: #eff4fd
}

.btn-white,.btn-white:hover {
    background-color: var(--blu-colors-white);
    color: #4980e0
}

.btn-white:hover {
    color: #2865d0;
    font-weight: 700
}

.btn-rounded,.filter-button {
    padding-left: 1rem;
    padding-right: 1rem
}

.btn-rounded {
    border-radius: 50%;
    margin: 1rem .5rem
}

.filter-button {
    border-radius: 1rem;
    margin-left: .1rem;
    margin-right: .1rem
}

.accordion-button.collapsed {
    border-bottom: 1px solid #f5f5f5;
    border-radius: 10px
}

.accordion-body {
    border-right: 2px solid #598de3;
    margin: 1rem 2rem;
    padding-right: 10rem
}

.accordion-button:after {
    background-image: none
}

.accordion-button {
    box-shadow: inset 0 -1px #f1f1f1
}

.accordion-button:not(.collapsed) {
    color: var(--blu-colors-white);
    background-color: #0000
}

.accordion-button:not(.collapsed):before {
    transform-origin: 50%;
    content: url(../icons/faq-plus-white.svg);
    transition: all .2s;
    transform: rotate(-45deg)
}

.accordion-button:not(.collapsed):after {
    background-image: none
}

.accordion-button:before {
    color: var(--blu-colors-blue);
    transform-origin: 50%;
    content: url(../icons/faq-plus.svg);
    padding: 0 10px;
    line-height: 1rem;
    transition: all .2s;
    transform: rotate(0)
}

footer {
    color: #718e9c;
    background-color: #f7f9fa
}

footer li {
    line-height: 1.7rem
}

footer .nav-item-circle li a {
    color: #718e9c;
    font-size: 14px
}

footer .nav-item-circle li a:before {
    content: "";
    opacity: 0;
    width: 1rem;
    transition: all .3s;
    transform: translate(5px)
}

footer .nav-item-circle li:hover a {
    color: #307fe2;
    transition: all .3s;
    transform: translate(-2px)
}

footer .nav-item-circle li:hover a:before {
    content: "•";
    color: #307fe2;
    opacity: 1;
    width: 1rem;
    font-weight: 700;
    transition: all .3s;
    display: inline-block;
    transform: translate(0)
}

.footer-icon-item-white {
    background-color: var(--blu-colors-white);
    border-radius: 5px;
    width: 75px;
    height: 75px;
    margin: 0 10px;
    padding: 15px
}

@media (width>=992px) {
    .navbar .has-megamenu {
        position: static!important
    }

    .navbar .megamenu {
        width: 100%;
        left: 0;
        right: 0;
        margin: 0 auto!important
    }
}

@media (width<=991px) {
    .navbar.fixed-top .navbar-collapse,.navbar.sticky-top .navbar-collapse {
        max-height: 90vh;
        margin-top: 10px;
        overflow-y: auto
    }
}
