/**
sm (640px)	@media (width >= 640px) { ... }
md (768px)	@media (width >= 768px) { ... }
lg (1024px)	@media (width >= 1024px) { ... }
xl (1280px)	@media (width >= 1280px) { ... }
2xl (1536px)	@media (width >= 1536px) { ... }
*/
body#app-landing-page {
    padding: 0;
    font-family: 'Segoe-UI';
    background-color: #fff;
}
main#content {
    display: flex;
    flex-direction: column;
    background-color: #fff;
}
.scribens-spinner {
    position: relative;
}
.scribens-spinner:before {
    background-color: #fff;
    opacity: 0.6;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    content: "";
    z-index: 6;
    transition: opacity .15s;
}
.scribens-spinner:after {
    content: "";
    border-radius: 50%;
    border-top: 2px solid #07d;
    animation: spinner-anim 1.8s linear infinite;
    position: absolute;
    top: calc(50% - 25px);
    left: calc(50% - 25px);
    width: 50px;
    height: 50px;
    z-index: 7;
}
.shake-margin {
    animation: shake-margin 0.5s ease-in-out;
}
#gest-conf {
    color: #e04343;
    cursor: pointer;
}

@keyframes spinner-anim {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(720deg);
    }
}
@keyframes shake-margin {
    0%, 100% { margin-left: 0; }
    20% { margin-left: -5px; }
    40% { margin-left: 5px; }
    60% { margin-left: -5px; }
    80% { margin-left: 5px; }
}

/** HEADER **/
#btn-mobile-app {
    column-gap: 5px;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}
#btn-mobile-app .icon {
    color: #e04343;
    display: flex;
    align-items: center;
    justify-content: center;
}
#btn-mobile-app:hover .icon {
    color: #fff;
}
/*.nav.navbar-nav .menu-delimeter {
    min-width: 50px;
}*/
.navbar-fixed-top .navbar-collapse {
    padding-left: 30px;
}
.navbar-fixed-top .navbar-collapse {
    height: 0;
    transition: height .3s ease-in-out;
}
.navbar-fixed-top .navbar-collapse.in {
    height: auto;
}
#btnreg {
    font-size: 16px;
}
nav.navbar > .navbar-collapse a[data-toggle="collapse"] {
    font-size: 14px;
}
ul#sub-btnout li a {
    text-transform: uppercase;
}
.sub-menu {
    display: none;
}
nav.navbar > .navbar-collapse a.has-sub-menu {
    font-size: 14px;
}
/* Sub menu */
.menu-header .nav > li .sub-menu {
    list-style: none;
    padding: 0;
    margin-left: 20px;
}
.menu-header .nav > li .sub-menu a:not(.btn) {
    padding-top: 12.8px;
    padding-bottom: 12.8px;
    line-height: 1.5;
    font-size: 14px;
    text-transform: none;
    font-weight: normal;
}
.menu-header .nav > li .sub-menu a:hover,
.menu-header .nav > li .sub-menu a:active,
.menu-header .nav > li .sub-menu a:focus {
    text-decoration: none;
}
.menu-header .nav > li .sub-menu > li .sub-menu {
    padding-left: 0;
}
.has-sub-menu:after {
    background: none;
    content: '\e95f';
    display: block;
    font-family: "custom-icons";
    font-size: 20px;
    height: 1px;
    position: relative;
    text-align: center;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1;
}
#global-wrapper>header ul#sub-btnout.sub-menu {
    position: absolute;
    top: 87px;
    left: 0;
    pointer-events: none;
    visibility: hidden;
    display: block;
    opacity: 0;
    transition: opacity .3s ease-in-out;
}
#global-wrapper>header a.has-sub-menu:hover + ul#sub-btnout.sub-menu,
#global-wrapper>header ul#sub-btnout.sub-menu:hover {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
}
/*.menu-header-landing {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background-color: #fff;
    border-color: rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-width: 0 0 1px;
    z-index: 100;
}
.menu-header-landing .navbar,
.menu-header-landing .navbar-brand {
    margin: 0;
}
.menu-header-landing .navbar-brand img {
    max-width: 184px;
}
.navbar-nav {
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.navbar-nav li {
    text-transform: uppercase;
    display: flex;
    align-items: center;
}
.navbar-nav li:nth-child(1) {
    width: 40%;
    justify-content: flex-end;
}
.navbar-nav li:nth-child(1) .cta-links {
    justify-content: flex-end;
}
.navbar-nav li:nth-child(2) {
    width: 20%;
    justify-content: center;
}
.navbar-nav li:nth-child(3) {
    width: 40%;
    justify-content: flex-start;
}
.navbar-nav li:nth-child(3) .cta-buttons {
    justify-content: flex-start;
}
.btn {
    padding: 10px 20px;
    transition: background-color 0.3s, color 0.3s;
    border-radius: 15px;
}
.btn-outline {
    border-style: solid;
    border-width: 1px;
}
.btn-outline.btn-red {
    background-color: #fff;
    border-color: #e04343;
    color: #e04343;
}
.btn-outline.btn-red:hover {
    background-color: #e04343;
    color: #fff;
}
.btn-fill.btn-red {
    background-color: #e04343;
    color: #fff;
}
.btn-fill.btn-red:hover {
    background-color: #f64343;
}
.cta-buttons,
.cta-links {
    display: flex;
    align-items: center;
    column-gap: 30px;
    font-size: 16px;
    text-align: center;
    width: 100%;
}
.cta-links a {
    color: #777;
}
.cta-links a:hover {
    color: #e04343;
}*/

/** TYPOGRAPHY **/
.text-bold {
    font-weight: bold;
    font-family: "Segoe-UI-Bold";
}
.text-italic {
    font-style: italic;
}
.text-red {
    color: #e04343;
}
.text-blue {
    color: #1b8fcf;
}
.text-white {
    color: #fff;
}
.text-gray {
    color: #878787;
}
.text-sm {
    font-size: 85%;
}
.text-center {
    text-align: center;
}
.text-left {
    text-align: left;
}
.text-right {
    text-align: right;
}
.text-lg {
    font-size: 18px;
}

/** BACKGROUND COLORS **/
.bg-red {
    background-color: #e04343;
}
.bg-blue {
    background-color: #1b8fcf;
}
.bg-gray {
    background-color: #bbb;
}
.bg-light-gray {
    background-color: #f6f5f3;
}
.bg-white {
    background-color: #fff;
}

/** POSITIONING **/
.absolute {
    position: absolute;
}
.inset-0 {
    inset: 0;
}
.top-0 {
    top: 0;
}
.bottom-0 {
    bottom: 0;
}
.z-1 {
    z-index: 1;
}
.z-2 {
    z-index: 2;
}
.z-3 {
    z-index: 3;
}


/** DISPLAY **/
.d-none {
    display: none;
}
@media screen and (min-width: 640px) {
    .sm\:block {
        display: block;
    }
}

/** FLEXBOX **/
.flex {
    display: flex;
}
.flex-col {
    flex-direction: column;
}
.justify-center {
    justify-content: center;
}
.justify-start {
    justify-content: flex-start;
}
.items-center {
    align-items: center;
}
.flex-1 {
    flex: 1;
}

/** SIZING **/
.w-full {
    width: 100%;
}

@media screen and (min-width: 640px) {
    .sm\:flex-row {
        flex-direction: row;
    }
}
@media screen and (min-width: 1024px) {
    .lg\:flex {
        display: flex;
    }
}
@media screen and (min-width: 1280px) {
    .xl\:flex {
        display: flex;
    }
}

/** PHONE EMULATOR **/
.phone-emulator-container {
    position: absolute;
    top: 120px;
    right: 240px;
    transition: transform .3s;
}
.phone-emulator {
    position: absolute;
    top: 0;
    right: 70px;
    z-index: 1;
    width: 320px;
    height: 660px;
    background-color: #fff;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 0 13px 0 rgb(0 0 0 / 10%);
}
.phone-emulator .phone-emulator-speaker {
    position: relative;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 5px;
}
.phone-emulator .phone-emulator-speaker div:first-child {
    width: 75px;
    background-color: #c4c4c4;
    height: 3px;
    border-radius: 10px;
}
.phone-emulator .phone-emulator-speaker div:last-child {
    width: 5px;
    background-color: #c4c4c4;
    height: 5px;
    border-radius: 50%;
}
.phone-emulator .phone-emulator-screen {
    height: calc(100% - 45px);
    padding: 0 20px 30px 20px;
}
.phone-emulator .phone-emulator-screen video,
.phone-emulator .phone-emulator-screen img {
    max-width: 100%;
    max-height: 100%;
}
.phone-emulator .phone-emulator-bottom {
    position: absolute;
    width: 100%;
    height: 5px;
    background-color: #fff;
    left: 0;
    bottom: 32px;
}
.phone-emulator.phone-emulator-behind {
    position: absolute;
    top: 25px;
    right: -180px;
    height: 592px;
    z-index: auto;
}
.phone-emulator.phone-emulator-behind .phone-emulator-bottom-line {
    width: 74px;
    background-color: #c4c4c4;
    height: 3px;
    position: absolute;
    bottom: 25px;
    left: calc(50% - 37px);
    border-radius: 10px;
}

/** HERO **/
.hero {
    height: 95vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
}
.hero span.bg-red,
.hero span.bg-blue {
    border-radius: 20px;
    padding: 5px 10px;
}
.hero-content {
    height: 100%;
    width: 100%;
}
h1.hero-title {
    margin: 0
}
h1.hero-title,
h1.hero-title span {
    font-weight: bold !important;
    font-size: 2rem;
    font-family: "Segoe-UI-Bold";
    line-height: 1;
    margin: 0;
}
h1.hero-title {
    text-transform: uppercase;
}
h1.hero-title span {
    display: inline-block;
}
h1.hero-title span.absolute {
    top: 0;
    left: 0;
    text-align: center;
    width: 100%;
}
h1.hero-title span.absolute > span.bg-red {
    box-shadow: 0 2px 10px rgb(0 0 0 / 30%);
}

@media screen and (min-width: 640px) {
    h1.hero-title,
    h1.hero-title span {
        font-size: 3rem;
    }
}
@media screen and (min-width: 1024px) {
    h1.hero-title,
    h1.hero-title span {
        font-size: 4rem;
    }
}

/** HERO-1 **/
.hero.hero-1 {
    background-color: #1b8fcf;
    color: #fff;
    min-height: 890px;
    padding-top: 87px;
}
.hero.hero-1 .hero-title {
    position: relative;
    height: 110px;
    width: 100%;
    margin-top: 10px;
}
.hero.hero-1 .hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    row-gap: 15px;
    padding-bottom: 300px;
}
.hero.hero-1 .app-stores-buttons {
    align-items: center;
    justify-content: center;
    row-gap: 20px;
    column-gap: 20px;
}
.hero.hero-1 .app-stores-buttons img {
    height: 60px;
    width: 200px;
}
.hero.hero-1 span.bg-red {
    padding: 5px 10px 13px 10px;
}
.hero.hero-2 span.bg-blue {
    border-radius: 10px;
}
.hero.hero-1 span.absolute.z-1 {
    top: 73px;
}
.hero.hero-1 span.absolute.z-2 {
    top: 37px;
}
.hero-1 .fake-player-wrapper {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    height: 345px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero.hero-1 .fake-player {
    position: relative;
    height: 100%;
    width: 90%;
    border-top-left-radius: 50px;
    border-top-right-radius: 50px;
    background-color: #fff;
    background-image: url(../images/logo/logo-scribens.png);
    background-position: center calc(50% + 50px);
    background-repeat: no-repeat;
    background-size: 300px;
}
.hero.hero-1 .text-lg {
    font-size: 20px;
}
.video-play-container {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    cursor: pointer;
    z-index: 1;
    border-top-left-radius: 50px;
    border-top-right-radius: 50px;
}
.video-play-container .video-play-backdrop {
    position: absolute;
    width: 100%;
    height: calc(100% - 30px);
    background-color: #fff;
    opacity: .7;
    border-top-left-radius: 50px;
    border-top-right-radius: 50px;
}
.video-play-container .fa-play {
    font-size: 40px;
    color: #039ad7;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    box-shadow: 0 0 10px rgb(0 0 0 / 10%);
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    margin-top: 90px;
}
.video-play-container .fa-play:before {
    position: relative;
    left: 6px;
    transition: .3s transform, .3s color;
}
#real-player {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100000;
    visibility: hidden;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s, visibility 0.3s, transform 0.3s;
    transform: scale(0);
}
#real-player.visible {
    visibility: visible;
    pointer-events: auto;
    opacity: 1;
    transform: scale(1);
}
.real-player--inner {
    position: relative;
    width: 80%;
    max-height: 90%;
    box-shadow: 0px 0 10px 10px rgba(0, 0, 0, 0.1);
    border-radius: 15px;
}
.real-player--inner video {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 15px;
}
.real-player--close {
    position: absolute;
    top: -15px;
    right: -15px;
    font-size: 2rem;
    color: #1b8fcf;
    cursor: pointer;
    z-index: 1;
    background-color: #fff;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0px 0 5px 5px rgba(0, 0, 0, 0.1);
}

@media screen and (min-width: 640px) {
    .hero.hero-1 .hero-title {
        height: 155px;
        margin-top: 0;
    }
    .hero.hero-1 .hero-content {
        justify-content: center;
        row-gap: 25px;
    }

    .hero.hero-1 span.absolute.z-1 {
        top: 91px;
    }
    .hero.hero-1 span.absolute.z-2 {
        top: 46px;
    }
    .hero.hero-1 .fake-player {
        width: 70%;
    }
}

@media screen and (min-width: 1024px) {
    .hero.hero-1 span.absolute.z-1 {
        top: 106px;
    }
    .hero.hero-1 span.absolute.z-2 {
        top: 54px;
    }
}

/** HERO-2 **/
.hero.hero-2 {
    height: auto;
    box-shadow: 0px -5px 10px 0 rgba(0, 0, 0, 0.1);
}
.hero-2--row {
    display: flex;
    width: 100%;
    padding: 20px 10px;
    font-size: 1.5rem;
    justify-content: center;
}
.hero-2--row .img-container {
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero-2--row .img-container img {
    width: 75px;
}
.hero-2--row .text-container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-transform: uppercase;
    row-gap: 10px;
}
.hero-2--row .text-container .text-promo {
    font-weight: 700;
}
.hero.hero-2--row-content {
    column-gap: 20px;
    row-gap: 20px;
}
.hero-2--row-content {
    column-gap: 20px;
    row-gap: 20px;
}

@media screen and (min-width: 640px) {
    .hero-2--row .text-container {
        align-items: flex-start;
    }
    .hero-2--row {
        justify-content: flex-start;
        padding: 20px;
    }
    .hero-content .hero-2--row:nth-child(3) {
        height: 825px;
        justify-content: flex-start;
    }
    .hero-content .hero-2--row:nth-child(3) .hero-2--row-content {
        align-items: flex-start;
    }
    .hero-content .hero-2--row .hero-2--row-content .text-container {
        font-size: 2rem;
    }
    .hero-content .hero-2--row:nth-child(1) .hero-2--row-content .text-container {
        align-items: flex-start;
    }
    .hero.hero-2 .phone-emulator-container {
        top: 380px;
        left: 0;
        right: 0;
    }
    .hero.hero-2 .phone-emulator-container .phone-emulator {
        position: absolute;
        top: 0;
        left: 50%;
        transform: translateX(-75%);
    }
    .hero.hero-2 .phone-emulator-container .phone-emulator-behind {
        top: 0;
        left: 50%;
        transform: translate(10px, 35px);
    }
}
@media screen and (min-width: 768px) {
    .hero-2--row {
        justify-content: flex-start;
        padding: 30px;
    }
    .hero.hero-2 .phone-emulator-container {
        top: 420px;
    }
}
@media screen and (min-width: 1024px) {
    .hero.hero-2 .hero-content .hero-2--row {
        padding: 30px 5%;
        height: 245px;
    }
    .hero-content .hero-2--row:nth-child(3) .hero-2--row-content {
        flex-direction: row;
    }
    .hero-content .hero-2--row:nth-child(3) .hero-2--row-content .text-container {
        align-items: flex-start;
    }
    .hero.hero-2 .phone-emulator-container {
        top: 20px;
        left: auto;
        right: 15%;
        transform: scale(1);
    }
    .hero.hero-2 .phone-emulator-container .phone-emulator {
        position: absolute;
        top: 25px;
        left: auto;
        transform: translateX(0);
    }
    .hero.hero-2 .phone-emulator-container .phone-emulator-behind {
        top: 25px;
        left: auto;
        transform: translate(0, 35px);
    }
    .hero-content .hero-2--row:nth-child(3) .hero-2--row-content {
        align-items: center;
    }
}
@media screen and (min-width: 1280px) {
    .hero.hero-2 .hero-content .hero-2--row {
        padding: 30px 7%;
    }
}
@media screen and (min-width: 1536px) {
    .hero.hero-2 .hero-content .hero-2--row {
        padding: 30px 10%;
    }
}

/** HERO-3 **/
.hero.hero-3 {
    height: 550px;
}
.hero.hero-3 .bg-design {
    overflow: hidden;
}
.hero.hero-3 .bg-design div.bg-red {
    border-top-left-radius: 700px;
    border-bottom-left-radius: 700px;
    position: absolute;
    top: 0;
    left: -55px;
    height: 550px;
    width: 2000px;
    z-index: 2;
    transition: width 0.3s, left 0.3s, height 0.3s;, top 0.3s;
}
.hero.hero-3 .bg-design div.bg-blue {
    overflow: hidden;
    border-top-left-radius: 700px;
    border-bottom-left-radius: 700px;
    position: absolute;
    top: 0;
    left: 20px;
    width: 2000px;
    height: 350px;
    z-index: 6;
    box-shadow: -3px 13px 0 8px #fff, inset 5px -5px 10px 3px rgba(0, 0, 0, 0.1);
    transition: width 0.3s, left 0.3s, height 0.3s;, top 0.3s;
}
.hero.hero-3 .phone-emulator-container {
    inset: 0;
    max-width: calc(100vw - 30px);
    display: flex;
    align-items: flex-end;
    justify-content: center;
}
.hero.hero-3 .phone-emulator-container img {
    width: 100%;
    transition: width 0.3s;
}
.hero.hero-3 .phone-emulator-container .phone-emulator-inner {
    max-width: 180px;
    transition: max-width 0.3s;
}
.hero.hero-3 .phone-emulator-container .phone-emulator-inner--content {
    width: 162px;
    height: 265px;
    margin: 0 9px;
    display: flex;
    flex-direction: column;
    row-gap: 7px;
    box-shadow: inset 0 -10px 10px 0 rgba(0, 0, 0, 0.1);
    border-top-right-radius: 0;
    border-top-left-radius: 0;
}
.hero.hero-3 .phone-emulator-container .phone-emulator-inner .view-1,
.hero.hero-3 .phone-emulator-container .phone-emulator-inner .view-2 {
    color: #1b8fcf;
    padding: 15px 0;
    font-size: 1rem;
}
.hero.hero-3 .phone-emulator-container .phone-emulator-inner .view-1 {
    text-transform: uppercase;
    border-radius: 0 0 3px 3px;
    box-shadow: 0 0 10px rgb(0 0 0 / 10%);
}
.hero.hero-3 .phone-emulator-container .phone-emulator-inner .view-2 {
    row-gap: 15px;
    flex: 1;
}
.hero.hero-3 .phone-emulator-container .phone-emulator-inner .view-2 > span {
    border: 1px solid #1b8fcf;
    border-radius: 7px;
    padding: 0 20px;
}
.hero.hero-3 #hero-3-overlay-blue-text {
    display: none;
    position: absolute;
    z-index: 100;
    text-align: right;
    align-items: flex-end;
    text-transform: uppercase;
}
.hero.hero-3 #hero-3-overlay-blue-text > div {
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
    padding: 0 10px;
    box-shadow: 0 0 10px rgb(0 0 0 / 10%);
}
.hero.hero-3 #hero-3-overlay-white-text {
    position: absolute;
    right: 20px;
    bottom: 32px;
    z-index: 100;
    display: flex;
}
.hero.hero-3 #hero-3-overlay-white-text sup {
    margin-left: 3px;
}
.hero.hero-3 #hero-3-overlay-white-text span.bg-blue {
    padding: 0 5px;
    border-radius: 5px;
}
.hero.hero-3 #hero-3-overlay-white-text > div:first-child {
    text-transform: uppercase;
}
.hero.hero-3 #homme {
    display: none;
    z-index: 10;
    position: absolute;
    width: 160px;
    height: auto;
    bottom: 0;
    left: 100px;
}
.hero.hero-3 #femme {
    position: absolute;
    width: 300px;
    left: 55vw;
    bottom: -620px;
    z-index: 10;
}
.hero.hero-3 #homme img,
.hero.hero-3 #femme img {
    width: 100%;
}
.hero.hero-3 #app-icons,
.hero.hero-3 #app-icons-lines {
    visibility: hidden;
    position: absolute;
    top: 0;
    left: 0;
    /* fill the entire section so icons can move freely */
    width: 100%;
    height: 100%;
    z-index: 20; /* above the phone image if needed */
    pointer-events: none; /* optional, if you don't want them blocking clicks */
}
.hero.hero-3 #app-icons.in-view,
.hero.hero-3 #app-icons-lines.in-view {
    visibility: visible;
}
.hero.hero-3 #app-icons > div {
    position: absolute; /* each icon or line is absolutely placed */
    z-index: 10;
    will-change: transform;
}
.hero.hero-3 #app-icons > div {
    width: 45px;
    height: 45px;
}
.hero.hero-3 #app-icons div#logo-fb img {
    width: 55px;
    height: 55px;
}
.hero.hero-3 #app-icons > div#logo-signal img,
.hero.hero-3 #app-icons > div#logo-messenger img {
    width: calc(100% - 10px);
    background-color: #fff;
    border-radius: 50%;
    padding: 4px;
    box-shadow: 0 0 10px rgb(0 0 0 / 10%);
}
.hero.hero-3 #app-icons > div#logo-whatsapp {
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero.hero-3 #app-icons > div#logo-whatsapp img {
    width: 100%;
    z-index: 3;
}
.hero.hero-3 #app-icons > div#logo-whatsapp:after {
    content: '';
    position: absolute;
    border-radius: 50%;
    background-color: red;
    width: calc(100% - 13px);
    height: calc(100% - 13px);
    z-index: 1;
    box-shadow: 0 0 10px rgb(0 0 0 / 10%);
}
div#logo-x {
    padding: 3px;
}
div#logo-x img {
    margin: 3px;
}
.hero.hero-3 #app-icons-lines .line {
    position: absolute;
    background-color: #fff;
    height: 2px;
    transform-origin: 0 50%; /* rotate around its left-center */
    z-index: 5;
}
.hero.hero-3b {
    height: auto;
}
.hero.hero-3b .premium-promos {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    /*border-bottom: 7px solid #1b8fcf;*/
    padding-bottom: 200px;
}
.hero.hero-3b .premium-promos > div.premium-promos--item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 25px;
}
.hero.hero-3b .premium-promos > div.premium-promos--item:nth-child(1),
.hero.hero-3b .premium-promos > div.premium-promos--item:nth-child(2) {
    width: 50%;
}
.hero.hero-3b .premium-promos > div.premium-promos--item:nth-child(3) {
    width: 100%;
}
.hero.hero-3b .premium-promos .premium-promos--item-icon {
    width: 110px;
}
.hero.hero-3b .premium-promos .premium-promos--item-text {
    display: flex;
    flex-direction: column;
    row-gap: 2px;
	text-transform: uppercase;
}
#point-anchor-container {
    position: absolute;
    top: 40%;
    left: 50%;
    width: 2px;
    height: 2px;
}

@media screen and (min-width: 640px) {
    .hero.hero-3 {
        height: 750px;
    }
    .hero.hero-3 .bg-design div.bg-red {
        top: 0;
        left: -55px;
        height: 750px;
        width: 2000px;
        box-shadow: inset 5px -5px 10px 3px rgba(0, 0, 0, 0.1);
    }
    .hero.hero-3 .bg-design div.bg-blue {
        left: 30px;
        height: 550px;
        width: 2000px;
        box-shadow: -3px 13px 0 8px #fff, inset 5px -5px 10px 3px rgba(0, 0, 0, 0.1);
    }
    .hero.hero-3 #hero-3-overlay-blue-text {
        display: flex;
        top: 30px;
        right: 20px;
    }
    .hero.hero-3 #homme {
        display: block;
        left: 300px;
    }
    .hero.hero-3 #femme {
        display: block;
        width: 250px;
        left: 77vw;
        bottom: 180px;
    }
    .hero.hero-3 .phone-emulator-container .phone-emulator-inner {
        max-width: 290px;
    }
    .hero.hero-3 #app-icons > div {
        width: 60px;
        height: 60px;
    }
    .hero.hero-3 #app-icons div#logo-fb img {
        width: 70px;
        height: 70px;
    }
    .hero.hero-3 #app-icons > div#logo-signal img,
    .hero.hero-3 #app-icons > div#logo-messenger img {
        padding: 6px;
    }
    .hero.hero-3 .phone-emulator-container .phone-emulator-inner--content {
        width: 260px;
        height: 427px;
        margin: 0 15px;
        display: flex;
        flex-direction: column;
        row-gap: 7px;
        box-shadow: inset 0 -10px 10px 0 rgba(0, 0, 0, 0.1);
        border-top-right-radius: 15px;
        border-top-left-radius: 15px;
    }
    .hero.hero-3 .phone-emulator-container .phone-emulator-inner .view-1 {
        border-radius: 15px 15px 3px 3px;
    }
    .hero.hero-3 .phone-emulator-container .phone-emulator-inner .view-1,
    .hero.hero-3 .phone-emulator-container .phone-emulator-inner .view-2 {
        font-size: 2rem;
    }
    .hero.hero-3 .phone-emulator-container .phone-emulator-inner .view-2 {
        row-gap: 25px;
    }
    .hero.hero-3b .premium-promos {
        padding-bottom: 0;
    }
    .hero.hero-3b .premium-promos > div.premium-promos--item:nth-child(1),
    .hero.hero-3b .premium-promos > div.premium-promos--item:nth-child(2),
    .hero.hero-3b .premium-promos > div.premium-promos--item:nth-child(3) {
        width: 33.3%;
    }
    .hero.hero-3b .premium-promos {
        padding: 50px 0;
    }
}
@media screen and (min-width: 1024px) {
    .hero.hero-3 {
        height: 850px;
    }
    .hero.hero-3 .bg-design div.bg-red {
        top: 0;
        left: -55px;
        height: 850px;
        width: 3000px;
    }
    .hero.hero-3 .bg-design div.bg-blue {
        top: 0;
        left: 30px;
        height: 600px;
        width: 3000px;
        box-shadow: 0 20px 0 16px #fff, inset 5px -5px 10px 3px rgba(0, 0, 0, 0.1);
    }
    .hero.hero-3 #hero-3-overlay-blue-text {
        font-size: 2.75rem;
    }
    .hero.hero-3 #hero-3-overlay-white-text {
        font-size: 2.2rem;
        right: 3vw;
    }
    .hero.hero-3 #hero-3-overlay-white-text span.bg-blue {
        padding: 0 10px;
        border-radius: 7px;
    }
    .hero.hero-3 #homme {
        left: 350px;
        width: 200px;
    }
    .hero.hero-3 #femme {
        width: 350px;
        left: 77vw;
        bottom: 220px;
    }
    .hero.hero-3 #app-icons > div {
        width: 75px;
        height: 75px;
    }
    .hero.hero-3 #app-icons div#logo-fb img {
        width: 85px;
        height: 85px;
    }
    .hero.hero-3 #app-icons > div#logo-signal img,
    .hero.hero-3 #app-icons > div#logo-messenger img {
        padding: 8px;
    }
    .hero.hero-3 .phone-emulator-container .phone-emulator-inner {
        max-width: 315px;
        margin-right: 10vw;
    }
    .hero.hero-3 .phone-emulator-container .phone-emulator-inner--content {
        width: 270px;
        height: 442px;
        row-gap: 10px;
        padding-bottom: 12px;
    }
}

.hero.hero-4 {
    height: auto;
}
.hero.hero-4 .hero-4--content {
    display: flex;
    flex-direction: column;
    row-gap: 50px;
    padding: 100px 50px;
    width: 100%;
}
.hero.hero-4 .premium-tiers {
    display: flex;
    flex-direction: column;
    row-gap: 25px;
}
.hero.hero-4 .premium-tiers .premium-tier--item {
    display: flex;
    flex-direction: column;
    row-gap: 10px;
    background-color: #fff;
    padding: 25px;
    border-radius: 20px;
    box-shadow: 0 0 10px rgb(0 0 0 / 10%);
    position: relative;
}
.hero.hero-4 .premium-tiers .premium-tier--item-duration {
    color: #959595;
}
.hero.hero-4 .premium-tiers .premium-tier--item-price {
    font-size: 2.2rem;
}
.hero.hero-4 .premium-tiers .premium-tier--item-badge {
    position: absolute;
    top: -20px;
    right: -20px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 85%;
}
.hero.hero-4 .premium-tiers .premium-tier--item-badge.text-blue {
    font-size: 3rem;
    top: -15px;
    right: -19px;
}

@media screen and (min-width: 640px) {
    .hero.hero-4 .premium-tiers {
        width: 100%;
        flex-direction: row;
        justify-content: space-evenly;
    }
    .hero.hero-4 .hero-4--content .premium-tiers--note {
        text-align: right;
    }
}

@media screen and (min-width: 1024px) {
    .hero.hero-4 .premium-tiers .premium-tier--item {
        padding: 25px 50px;
        font-size: 2rem;
    }
    .hero.hero-4 .premium-tiers .premium-tier--item-price {
        font-size: 3.3rem;
    }
    .hero.hero-4 .premium-tiers .premium-tier--item-badge {
        top: -23px;
        right: -23px;
        width: 46px;
        height: 46px;
        font-size: 15px;
    }
}


.hero.hero-5 {
    height: auto;
    overflow: visible;
    box-shadow: 0px -5px 10px 0 rgba(0, 0, 0, 0.1);
}
.hero.hero-5 .hero-5--header {
    position: absolute;
    top: -12px;
    left: 0;
    right: 0;
    text-align: center;
}
.hero.hero-5 .hero-5--header span {
    padding: 7px 23px;
    box-shadow: 0 5px 5px 0px rgb(0 0 0 / 15%);
}
.hero.hero-5 .hero-5--content {
    display: flex;
    column-gap: 10px;
    background-color: #fff;
    border-top-left-radius: 150px;
    justify-content: center;
    flex-direction: column;
    padding: 50px 0;
    row-gap: 50px;
}
.hero.hero-5 .hero-5--faq-outer {
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 1;
    padding: 0 15px;
}
.hero.hero-5 .hero-5--faq {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 20px 10px;
    flex: 1;
    row-gap: 10px;
}
.hero.hero-5 .hero-5--faq-title {
    font-size: 4rem;
    text-align: left;
}
.hero.hero-5 .hero-5--faq-subtitle {
    text-align: left;
}
.hero.hero-5 .hero-5--faq-badge {
    padding: 5px 10px;
    border-radius: 10px;
}
.hero.hero-5 .hero-5--faq-list {
    display: flex;
    flex-direction: column;
    padding-top: 50px;
}
.hero.hero-5 .hero-5--faq-list-item {
    display: flex;
    flex-direction: column;
    border-bottom: 1px solid #ddd;
    padding: 15px 0;
}
.hero.hero-5 .hero-5--faq-list-item.hero-5--faq-list-item--open .hero-5--faq-list-item--question img {
    transform: rotate(-90deg);
}
.hero.hero-5 .hero-5--faq-list-item.hero-5--faq-list-item--open .hero-5--faq-list-item--answer {
    max-height: 2000px;
    padding-top: 15px;
    padding-bottom: 15px;
    opacity: 1;
}
.hero.hero-5 .hero-5--faq-list-item--question,
.hero.hero-5 .hero-5--faq-list-item--answer  {
    text-align: left;
}
.hero.hero-5 .hero-5--faq-list-item--question {
    cursor: pointer;
    color: #1b8fcf;
    font-weight: bold;
    font-family: "Segoe-UI-Bold";
    display: flex;
    justify-content: space-between;
    column-gap: 15px;
}
.hero.hero-5 .hero-5--faq-list-item--question img {
    transform: rotate(90deg);
    width: 14px;
    max-width: 14px;
    transition: transform 0.3s;
}
.hero.hero-5 .hero-5--faq-list-item--answer {
    padding-left: 15px;
    word-break: break-word;
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s cubic-bezier(0, 0, 0, 1), padding-top .45s, padding-bottom .45s, opacity 0.3s;
    opacity: 0;
}
.hero.hero-5 .hero-5--faq-list-item--answer ol {
    padding: 20px;
}
.hero.hero-5 .hero-5--contact {
    flex-basis: auto;
    padding: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    height: 600px;
}
.hero.hero-5 .hero-5--contact-outer {
    box-shadow: 0 0 10px rgb(0 0 0 / 10%);
    border-radius: 20px;
    width: 230px;
    position: relative;
    z-index: 10;
    background-color: #fff;
    transform: translateY(-100px);
}
.hero-5--contact-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 70px 20px 30px 20px;
    row-gap: 20px;
}
.hero.hero-5 .hero-5--contact-icon {
    width: 100px;
    position: absolute;
    top: -50px;
    left: calc(50% - 40px);
    text-align: center;
}
.hero.hero-5 .hero-5--contact-button {
    border-radius: 20px;
    padding: 5px 14px;
    cursor: text;
    white-space: nowrap;
    color: rgb(117, 117, 117);
    box-shadow: 0 0 5px 0px rgb(0 0 0 / 15%);
}
.hero.hero-5 .hero-5--contact-image {
    position: absolute;
    top: 175px;
    left: 120px;
    z-index: 10;
}
.hero.hero-5 .hero-5--contact-image img {
    width: 200px;
}
.hero.hero-5 .hero-5--contact-inner-separator {
    background-color: #ddd;
    width: 150px;
    height: 1px;
}
.hero-5--contact-circle.bg-red {
    position: absolute;
    z-index: 0;
    top: -100px;
    right: -400px;
    width: 900px;
    height: 900px;
}
.hero-5--contact-circle.bg-blue {
    position: absolute;
    z-index: 0;
    box-shadow: 0 20px 0 8px #fff, inset 5px -5px 10px 3px rgba(0, 0, 0, 0.1);
    top: 0;
    right: -100px;
    width: 900px;
    height: 800px;
}
.hero-5--contact-background {
    position: absolute;
    top: -55px;
    left: 1px;
    z-index: 7;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
}
.hero-5--contact-background img {
    max-width: 350px;
}

@media screen and (min-width: 640px) {

}
@media screen and (min-width: 768px) {
    .hero.hero-5 .hero-5--content {
        flex-direction: row;
        padding: 0;
        row-gap: 0;
    }
    .hero.hero-5 .hero-5--faq-outer {
        padding: 40px 20px;
    }
    .hero.hero-5 .hero-5--contact {
        justify-content: flex-start;
        align-items: flex-start;
        padding: 70px 20px 20px 20px;
        flex-basis: 40%;
        height: auto;
    }
    .hero.hero-5 .hero-5--contact-outer {
        transform: translateY(0);
    }
}
@media screen and (min-width: 1024px) {
    .hero.hero-5 .hero-5--faq-outer {
        padding: 70px;
    }
    .hero-5--contact-background img {
        max-width: 350px;
    }

}
@media screen and (min-width: 1536px) {

}


/** FOOTER **/
.footer--outer {
    position: relative;
    display: flex;
    justify-content: space-between;
    column-gap: 20px;
    padding: 0;
    flex-direction: column;
}
.footer--outer a {
    color: #808488;
}
.footer--outer .footer--left {
    display: flex;
    flex-direction: column;
    row-gap: 25px;
    flex: 1;
}
.footer--outer .footer-cols {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    row-gap: 25px;
}
.footer--outer .footer--right {
    flex-basis: 30%;
    margin: 50px 0 0 0;
    z-index: 10;
    border-top-left-radius: 80px;
    box-shadow: 0 0 13px 10px rgb(0 0 0 / 15%);
    position: relative;
}
.footer--outer .website-logo {
    display: flex;
    column-gap: 35px;
    align-items: center;
    padding: 20px;
    flex-direction: column;
}
.footer--outer .website-logo img {
    min-width: 180px;
    max-width: 180px;
}
.footer--outer .footer-col {
    flex: 1;
}
.footer--outer .footer-col .list-unstyled {
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    row-gap: 15px;
    margin: 0;
}
.footer--outer .footer-col--header {
    /*border-bottom: 1px solid #fff;*/
    padding: 0 20px 10px 20px;
}
.footer--outer .noir-button-apps {
    display: flex;
    column-gap: 10px;
    margin-bottom: 15px;
}
.footer--outer .website-logo .noir-button-apps img {
    min-width: 140px;
    max-width: 140px;
}
.footer--right-buttons {
    display: flex;
    flex-direction: column;
    row-gap: 5px;
    padding: 30px 50px;
}
.footer--right-buttons img {
    min-width: 165px;
    max-width: 165px;
}
.footer-right-title {
    font-size: 3rem;
    line-height: 1;
    color: #fff;
    padding: 40px 50px;
    border-bottom: 1px solid #fff;
}
.footer--right-arrow {
    position: absolute;
    top: 75px;
    left: 235px;
    width: 35px;
}
.footer--right-phone {
    position: absolute;
    bottom: 0;
    right: 30px;
    width: 80px;
}
#anchor-support-form {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100000;
    visibility: hidden;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s, visibility 0.3s, transform 0.3s;
}
#anchor-support-form.visible {
    visibility: visible;
    pointer-events: auto;
    opacity: 1;
}
.form--support-outer {
    width: 95%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.form--support-inner {
    display: flex;
    flex-direction: column;
    row-gap: 20px;
    background-color: #fff;
    border-radius: 20px;
    box-shadow: 0 0 10px rgb(0 0 0 / 10%);
    width: 500px;
    max-width: 95%;
}
.form--support-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background-color: #1b8fcf;
    color: #fff;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    position: relative;
}
.form--support-header--close {
    position: absolute;
    top: calc(50% - 15px);
    right: 20px;
    cursor: pointer;
}
.form--support-header--title {
    text-transform: uppercase;
    text-align: center;
    width: 100%;
}
.form--support-content {
    padding: 0 20px;
}
.form--support-content form {
    display: flex;
    flex-direction: column;
    row-gap: 20px;
}
.form--support-content--textarea {
    display: flex;
    flex-direction: column;
    row-gap: 10px;
    resize: none;
    width: 100%;
    padding: 20px;
    outline: none;
}
input.form--support-content--input {
    width: 100%;
    padding: 5px 10px;
    outline: none;
}
.form--support-footer {
    display: flex;
    justify-content: center;
    padding: 20px 0;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    column-gap: 20px;
}
.form--support-footer--button {
    border-radius: 20px;
    padding: 10px 20px;
    cursor: pointer;
}
.form--support-footer--button.btn-submit.scribens-spinner:after {
    width: 20px;
    height: 20px;
    top: calc(50% - 10px);
    left: calc(50% - 10px);
}
.form--support-alert-layout {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 0 20px;
    row-gap: 10px;
}
.form--support-alert-layout:empty {
    display: none;
}
.form--support-alert-layout> .alert {
    position: relative;
    padding: 20px 40px 20px 20px;
    border-radius: 10px;
    width: 100%;
    text-align: left;
}
.form--support-alert-layout > .alert .alert-closebtn {
    position: absolute;
    top: calc(50% - 10px);
    right: 10px;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.form--support-alert-layout > .alert.alert-danger {
    background-color: #e04343;
    color: #fff;
}
.form--support-alert-layout > .alert.alert-success {
    background-color: #4caf50;
    color: #fff;
}
.form--support-alert-layout > .alert.alert-info {
    background-color: #1b8fcf;
    color: #fff;
}
#footer-rights {
    padding: 24px 0;
    text-align: center;
    background-color: #fff;
    color: #999;
}
#footer-rights p.small {
    margin: 0;
}
.footer--outer ul.social-icons.dark-color {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    column-gap: 5px;
    margin: 0;
    padding-left: 20px;
}
.footer--outer ul.social-icons.dark-color > li > a.tooltipBWN {
    background-color: transparent;
    border: 1px solid #ddd;
    display: flex;
    justify-content: center;
    align-items: center;
    line-height: 1;
}
.footer--outer ul.social-icons.dark-color > li > a.tooltipBWN:hover {
    background-color: transparent;
    border: 1px solid #393837;
}
.footer--outer ul.social-icons.dark-color > li > a.tooltipBWN i {
    background-color: #393837;
    border-radius: 50%;
    width: 25px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.footer--outer ul.social-icons.dark-color > li > a img {
    width: calc(100% - 10px);
}

@media screen and (min-width: 640px) {
    .footer--outer .website-logo {
        flex-direction: row;
    }
    .form--support-outer {
        width: 500px;
        max-width: 100%;
    }
}


@media screen and (min-width: 768px) {
    .footer--outer {
        padding: 30px 0 70px 30px;
        column-gap: 10px;
        flex-direction: row;
    }
    .footer-right-title {
        font-size: 3rem;
        padding: 40px 30px;
    }
    .footer--right-buttons {
        padding: 30px 15px;
    }
    .footer--right-arrow {
        top: 120px;
        left: 180px;
        width: 30px;
    }
    .footer--outer .website-logo {
        padding: 0 20px;
    }
    .footer--outer .footer--right {
        margin: -60px 0 -137px 0;
    }
    .footer--right-phone {
        right: 30px;
        width: 110px;
    }
}

@media screen and (min-width: 1024px) {
    .footer--outer {
        column-gap: 20px;
        padding: 30px 0 70px 70px;
    }
    .footer-right-title {
        font-size: 3rem;
        padding: 40px 50px;
    }
    .footer--right-buttons {
        padding: 30px 50px;
    }
    .footer--right-arrow {
        top: 75px;
        left: 235px;
        width: 35px;
    }
}

@media screen and (min-width: 1280px) {
    .footer--outer .footer--right {
        flex-basis: 25%;
    }
}

@media screen and (min-width: 1536px) {
    .hero.hero-5 .hero-5--faq-outer {
        padding: 70px 70px 70px 200px;
    }
    .footer--outer .footer--right {
        flex-basis: 20%;
    }
    .footer--outer .footer--right-arrow {
        top: 75px;
        left: 225px;
        width: 35px;
    }
}
