/**
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) { ... }
*/

/** Reset some default styles due to stylesc.css */
body, h1, h2, h3, p, ul, li, a, span {
    margin: 0;
    padding: 0;
    list-style: none;
    text-decoration: none;
    text-transform: none;
    font-weight: normal;
}
h1 span, h2 span, h3 span, p span, a span {
    font-family: "Segoe-UI";
    font-weight: normal;
    font-style: normal;
    color: inherit;
    text-decoration: none;
    display: inline-block;
    line-height: 1.5;
    font-size: inherit;
}

/** Global Styles **/
body#paraphrasing-tool-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;
	text-transform: uppercase;
}

@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;
}
body #beeween-to-top {
    display: none !important;
}

/** 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;
}
.uppercase {
    text-transform: uppercase;
}

/** 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;
}
.relative {
    position: relative;
}
.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;
}
.flex-col-reverse {
    flex-direction: column-reverse;
}
.justify-center {
    justify-content: center;
}
.justify-start {
    justify-content: flex-start;
}
.items-center {
    align-items: center;
}
.flex-1 {
    flex: 1;
}
.gap-20 {
    gap: 20px;
}

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

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

/** 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%);
}
.hero .read-more {
    color: #e04343;
    font-weight: bold;
    border-bottom: 1px solid #e04343;
}
.hero .read-more--text {
    display: none;
}

@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 .read-more {
        display: none;
    }
    .hero .read-more--text {
        display: block;
    }
}

/** HERO-1 **/
.hero.hero-1 {
    height: auto;
    position: relative;
}
.hero.hero-1 .hero-content {
    /*min-height: 1200px;*/
    /*max-height: 1200px;*/
    background-color: #fafafa;
}
.hero.hero-1 .hero-title {
    margin-top: 80px;
    font-size: 20px;
    font-weight: 300;
    font-family: "Segoe-UI";
    background-color: #3e8cca;
    padding: 50px 0 70px 0;
    color: #fff;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.hero.hero-1 .hero-1--grid {
    gap: 10px;
    justify-content: center;
    background-color: #fafafa;
    padding-bottom: 30px;
}
.hero.hero-1 .hero-1--grid .side-col {
    min-width: 200px;
    overflow: hidden;
    /*display: flex;*/
    align-items: start;
    justify-content: center;
    padding: 25px 0;
    flex-basis: 15%;
    display: none;
}
.hero.hero-1 .hero-1--grid .middle-col {
    position: relative;
    max-width: 1300px;
    /*height: 100vh;*/
    transition: max-width .3s ease-in-out;
}
body.mode-abonne-premium .hero.hero-1 .hero-1--grid .middle-col {
    max-width: 90%;
}
.hero.hero-1 .hero-1--grid .middle-col .column-wrapper {
    background-color: #f8f8f8;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 0 10px rgba(0, 0, 0, .1);
    position: relative;
    z-index: 10;
    margin: -30px 15px 0 15px;
}
.hero.hero-1 .hero-1--grid .middle-col .column-wrapper #MainDiv {
    position: relative;
    height: 100vh;
    background-color: transparent;
    max-height: 950px;
}
.hero.hero-1 #ia-tools-left-panel .dual-container--panel-header .ia-tools-button[data-id="import-text"],
.hero.hero-1 #ia-tools-left-panel .dual-container--panel-header .ia-tools-custom-cell[data-id="selected-tone"],
.hero.hero-1 #ia-tools-left-panel .dual-container--panel-header .ia-tools-button[data-id="settings"] span,
.hero.hero-1 #ia-tools-right-panel .dual-container--panel-header .ia-tools-button[data-id="export-text"],
.hero.hero-1 #ia-tools-right-panel .dual-container--panel-header .ia-tools-button[data-id="print-text"],
.hero.hero-1 #ia-tools-right-panel .dual-container--panel-header .ia-tools-button[data-id="share-text"] span {
    display: none;
}
.hero.hero-1 #ia-tools-right-panel .dual-container--panel-header .ia-tools-button[data-id="share-text"] {
    flex-grow: 0;
    min-width: 50px;
}
.hero.hero-1 .hero-1--grid .middle-col .column-wrapper #MainDiv .dual-container {
    flex-direction: column;
    row-gap: 20px;
}

@media screen and (min-width: 640px) {
    .hero.hero-1 #ia-tools-left-panel .dual-container--panel-header .ia-tools-button[data-id="import-text"],
    .hero.hero-1 #ia-tools-right-panel .dual-container--panel-header .ia-tools-button[data-id="export-text"],
    .hero.hero-1 #ia-tools-right-panel .dual-container--panel-header .ia-tools-button[data-id="print-text"],
    .hero.hero-1 #ia-tools-left-panel .dual-container--panel-header .ia-tools-custom-cell[data-id="selected-tone"] {
        display: flex;
    }
    .hero.hero-1 #ia-tools-left-panel .dual-container--panel-header .ia-tools-button[data-id="settings"] span,
    .hero.hero-1 #ia-tools-right-panel .dual-container--panel-header .ia-tools-button[data-id="share-text"] span {
        display: inline-block;
    }
    .hero.hero-1 #ia-tools-right-panel .dual-container--panel-header .ia-tools-button[data-id="share-text"] {
        flex-grow: 1;
    }
}
@media screen and (min-width: 1024px) {
    body:not(.mode-abonne-premium) .hero.hero-1 .hero-1--grid .side-col {
        display: flex;
    }
    .hero.hero-1 .hero-1--grid .middle-col .column-wrapper {
        left: 0;
        right: 0;
    }
    .hero.hero-1 .hero-1--grid .middle-col .column-wrapper {
        margin: -30px 0 0 0;
    }
}
@media screen and (min-width: 1400px) {
    .hero.hero-1 .hero-1--grid .middle-col .column-wrapper #MainDiv .dual-container {
        flex-direction: row;
        column-gap: 20px;
    }
}

/** HERO-2 **/
.hero.hero-2 {
    height: auto;
    background-color: #fafafa;
}
.hero.hero-2 .hero-content {
    /*align-items: center;*/
    justify-content: center;
    padding: 70px 0;
    column-gap: 50px;
}
.hero.hero-2 .hero-2--grid {
    gap: 10px;
    justify-content: center;
}
.hero.hero-2 .hero-2--grid .side-col {
    min-width: 50px;
    overflow: hidden;
    padding: 25px 0;
    flex-basis: 15%;
}
.hero.hero-2 .hero-2--grid .middle-col {
    position: relative;
    display: flex;
    max-width: 1300px;
}
.hero.hero-2 .hero-content .hero-2--text {
}
.hero.hero-2 .hero-content .hero-2--text h2 {
    margin-left: 150px;
    margin-bottom: 20px;
    min-height: 100px;
}
.hero.hero-2 .hero-content .hero-2--text h2 span {
    margin: 0;
}
.hero.hero-2 .hero-content .hero-2--text-wrapper {
    text-align: left;
    display: flex;
    justify-content: right;
    color: #878787;
}
.hero.hero-2 .hero-2--image-wrapper {
    position: absolute;
}
.hero.hero-2 .hero-2--image {
    position: absolute;
    top: 0;
    left: 10px;
}
.hero.hero-2 .hero-2--image img {
    max-width: 100px;
}
.hero.hero-2 strong {
    color: #747474;
}

@media screen and (min-width: 1024px) {
    .hero.hero-2 .hero-2--text h2 {
        margin-left: 0;
        min-height: 50px;
    }
    .hero.hero-2 .hero-2--text-wrapper {
        flex-basis: 60%;
    }
    .hero.hero-2 .hero-2--image-wrapper {
        display: block;
        position: relative;
        flex-basis: 40%;
    }
    .hero.hero-2 .hero-2--image {
        position: absolute;
        top: 0;
        right: 0;
        left: auto;
        width: 325px;
    }
    .hero.hero-2 .hero-2--image img {
        max-width: 325px;
    }
    .hero.hero-2 .hero-2--grid .side-col {
        min-width: 100px;
    }
    .hero.hero-2 .hero-content .hero-2--text h2 {
        margin-left: 0;
        min-height: auto;
    }
}

@media screen and (min-width: 1280px) {
    .hero.hero-2 .hero-2--grid .side-col {
        min-width: 200px;
    }
}

/** HERO-3 **/
.hero.hero-3 {
    height: 400px;
    background-color: #fafafa;
}
.hero.hero-3 .bg-design {
    overflow: hidden;
}
.hero.hero-3 span.bg-red {
    border-radius: 15px;
    box-shadow: 0 2px 10px rgb(0 0 0 / 30%);
}
.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: 400px;
    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: 300px;
    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 #homme {
    display: none;
    z-index: 10;
    position: absolute;
    width: 160px;
    height: auto;
    bottom: 0;
    left: 100px;
}
.hero.hero-3 #femme {
    position: absolute;
    width: 150px;
    left: 25vw;
    bottom: 0;
    z-index: 10;
}
.hero.hero-3 #femme > img {
    display: none;
}
.hero.hero-3 #femme-in {
    position: absolute;
    width: 150px;
    bottom: 10px;
    left: 10vw;
}
.hero.hero-3 #femme-in img {
    width: 100%;
}
.hero.hero-3 #homme img,
.hero.hero-3 #femme img {
    width: 100%;
}
.hero.hero-3 .hero-3--overlay-text-grid {
    display: flex;
    gap: 10px;
    justify-content: center;
    position: absolute;
    inset: 0;
    z-index: 15;
}
.hero.hero-3 .hero-3--overlay-text-grid .side-col {
    min-width: 200px;
    overflow: hidden;
    padding: 25px 0;
    flex-basis: 15%;
}
.hero.hero-3 .hero-3--overlay-text-grid .middle-col {
    position: relative;
    display: flex;
    max-width: 1300px;
    height: 250px;
    text-align: left;
    padding: 70px 0;
    color: #fff;
}
.hero.hero-3 .hero-3--overlay-text-grid .middle-col .hero-3--overlay-text-wrapper {
    text-align: left;
    flex-basis: 60%;
    /*display: flex;*/
    flex-direction: column;
    row-gap: 20px;
    display: none;
}
.hero.hero-3 .hero-3--overlay-text-grid .middle-col .hero-3--overlay-image-wrapper {
    position: relative;
    flex-basis: 40%;
}
.hero.hero-3 .hero-3--overlay-text-header {
    font-size: 24px;
    font-weight: bold;
    font-family: "Segoe-UI-Bold";
    margin-bottom: 20px;
}
.hero.hero-3 #femme .hero-3--icons-wrapper {
    position: relative;
}
.hero.hero-3 #femme .hero-3--icons-wrapper div {
    position: absolute;
    width: 35px;
    height: 35px;
    transition: width 0.3s, left 0.3s, height 0.3s;, top 0.3s;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    color: #fff;
    font-size: 12px;
}
.hero.hero-3 #femme .hero-3--icons-wrapper div > img.hero-3--icon {
    width: 100%;
}
.hero-3--overlay-mobile-wrapper {
    position: absolute;
    width: 100vw;
    z-index: 10;
    top: 0;
    left: 0;
    bottom: 15px;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
}
.hero-3--overlay-mobile {
    color: #fff;
    font-weight: bold;
    font-family: "Segoe-UI-Bold";
}
.hero-3--overlay-mobile span.bg-blue {
    box-shadow: 0 2px 10px rgb(0 0 0 / 30%);
    border-radius: 12px;
}
.hero.hero-3 #femme .hero-3--icons-wrapper div[data-icon="angry"] {
    top: -175px;
    left: -25px;
}
.hero.hero-3 #femme .hero-3--icons-wrapper div[data-icon="persuasive"] {
    top: -300px;
    left: 70px;
}
.hero.hero-3 #femme .hero-3--icons-wrapper div[data-icon="informal"] {
    top: -345px;
    left: 130px;
}
.hero.hero-3 #femme .hero-3--icons-wrapper div[data-icon="educative"] {
    top: -365px;
    left: 30px;
}
.hero.hero-3 #femme .hero-3--icons-wrapper div[data-icon="optimistic"] {
    top: -270px;
    left: 180px;
}
.hero.hero-3 #femme .hero-3--icons-wrapper div[data-icon="professional"] {
    top: -300px;
    left: -60px;
}
.hero.hero-3 #femme .hero-3--icons-wrapper div[data-icon="friendly"] {
    top: -200px;
    left: 150px;
}
.hero.hero-3b {
    height: auto;
    background-color: #fafafa;
    padding: 40px;
    text-align: left;
}
.hero.hero-3b .read-more--container {
    display: flex;
    flex-direction: column;
    row-gap: 20px;
}
.hero.hero-3b#anchor-adapt-text {
    position: relative;
    z-index: 20;
}
.hero.hero-3b#anchor-adapt-text .hero-3--overlay-text-wrapper {
    position: absolute;
    top: -65px;
    right: 20px;
    color: #fff;
}
.hero.hero-3b#anchor-adapt-text .hero-3--overlay-text-wrapper .bg-red {
    background-color: #1b8fcf;
    box-shadow: 0 0px 5px rgb(0 0 0 / 30%);
    border-radius: 10px;
    padding: 3px 7px;
    letter-spacing: -10px;
    transition: letter-spacing 1s;
}
.hero.hero-3b#anchor-adapt-text .hero-3--overlay-text-wrapper .hero-3--overlay-text-header-2nd-row .bg-red {
    transition-delay: .5s;
}
.hero.hero-3b#anchor-adapt-text .hero-3--overlay-text-wrapper .bg-red.intersecting {
    letter-spacing: 0;
}
.hero.hero-3b#anchor-adapt-text .hero-3--overlay-text-wrapper .hero-3--overlay-text-header {
    font-weight: bold;
    font-family: "Segoe-UI-Bold";
    margin: 0;
}
.hero.hero-3b#anchor-adapt-text .hero-3--overlay-text-wrapper .hero-3--overlay-text-header span {
    line-height: 1;
    margin: 0;
}
.hero-3-group-section {
    position: relative;
}
.hero.hero-3b#anchor-adapt-text .read-more--container {
    opacity: 0;
    transition: opacity 0.3s;
}
.hero.hero-3b#anchor-adapt-text .read-more--container.intersecting {
    opacity: 1;
}

@media screen and (min-width: 640px) {
    .hero.hero-3 {
        height: 600px;
    }
    .hero.hero-3 .bg-design div.bg-red {
        top: 0;
        left: -55px;
        height: 550px;
        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: 450px;
        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-text-grid .middle-col {
        height: 450px;
    }
    .hero.hero-3 #femme-in {
        width: 200px;
        left: 15vw;
    }
    .hero.hero-3 #femme .hero-3--icons-wrapper div {
        width: 45px;
        height: 45px;
        font-size: 14px;
    }
    .hero.hero-3 #femme .hero-3--icons-wrapper div[data-icon="angry"] {
        top: -230px;
        left: 0;
    }
    .hero.hero-3 #femme .hero-3--icons-wrapper div[data-icon="persuasive"] {
        top: -320px;
        left: 130px;
    }
    .hero.hero-3 #femme .hero-3--icons-wrapper div[data-icon="informal"] {
        top: -440px;
        left: 155px;
    }
    .hero.hero-3 #femme .hero-3--icons-wrapper div[data-icon="educative"] {
        top: -490px;
        left: 30px;
    }
    .hero.hero-3 #femme .hero-3--icons-wrapper div[data-icon="optimistic"] {
        top: -355px;
        left: 230px;
    }
    .hero.hero-3 #femme .hero-3--icons-wrapper div[data-icon="professional"] {
        top: -380px;
        left: -60px;
    }
    .hero.hero-3 #femme .hero-3--icons-wrapper div[data-icon="friendly"] {
        top: -250px;
        left: 200px;
    }
    .hero.hero-3b#anchor-adapt-text .hero-3--overlay-text-wrapper {
        top: -113px;
    }
}

@media screen and (min-width: 768px) {
    .hero.hero-3 .bg-design div.bg-red {
        height: 600px;
    }
    .hero.hero-3 #femme {
        width: 300px;
        left: 300px;
        bottom: 0;
    }
    .hero.hero-3 #femme > img {
        display: block;
    }
    .hero.hero-3 #femme > img.intersecting {
        animation-delay: 1s;
        animation: skating 20s linear infinite;
    }
    .hero.hero-3 #femme-in {
        display: none;
    }
    .hero-3--overlay-mobile-wrapper {
        display: none;
    }
    .hero.hero-3 #femme .hero-3--icons-wrapper img {
        width: 65px;
        height: 65px;
    }
    .hero.hero-3 #femme .hero-3--icons-wrapper div[data-icon="angry"] {
        top: -280px;
        left: -50px;
    }
    .hero.hero-3 #femme .hero-3--icons-wrapper div[data-icon="persuasive"] {
        top: -365px;
        left: 290px;
    }
    .hero.hero-3 #femme .hero-3--icons-wrapper div[data-icon="informal"] {
        top: -540px;
        left: 155px;
    }
    .hero.hero-3 #femme .hero-3--icons-wrapper div[data-icon="educative"] {
        top: -490px;
        left: 30px;
    }
    .hero.hero-3 #femme .hero-3--icons-wrapper div[data-icon="optimistic"] {
        top: -455px;
        left: 230px;
    }
    .hero.hero-3 #femme .hero-3--icons-wrapper div[data-icon="professional"] {
        top: -380px;
        left: -60px;
    }
    .hero.hero-3 #femme .hero-3--icons-wrapper div[data-icon="friendly"] {
        top: -265px;
        left: 250px;
    }
    .hero.hero-3b#anchor-adapt-text .hero-3--overlay-text-wrapper {
        top: -92px;
    }
    .hero.hero-3b#anchor-adapt-text .hero-3--overlay-text-wrapper .bg-red {
        box-shadow: 0 0px 5px rgb(0 0 0 / 30%);
        border-radius: 10px;
        padding: 5px 7px 8px 5px;
        display: inline-block;
        line-height: 24px;
    }
    .hero.hero-3b .hero-3--overlay-text-header-2nd-row {
        top: -6px;
        position: relative;
    }
}
@media screen and (min-width: 1024px) {
    .hero.hero-3 {
        height: 700px;
    }
    .hero.hero-3 .bg-design div.bg-red {
        top: 0;
        left: -55px;
        height: 700px;
        width: 3000px;
    }
    .hero.hero-3 .bg-design div.bg-blue {
        top: 0;
        left: 30px;
        height: 500px;
        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-text-grid .middle-col {
        height: 500px;
    }
    .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 .hero-3--overlay-text-grid .middle-col .hero-3--overlay-text-wrapper {
        display: flex;
        flex-basis: 80%;
    }
    .hero.hero-3 .hero-3--overlay-text-grid .middle-col .hero-3--overlay-image-wrapper {
        flex-basis: 20%;
    }
    .hero.hero-3 .hero-3--overlay-text-grid .middle-col {
        padding: 30px 0;
    }
    .hero.hero-3 #femme {
        width: 300px;
        left: 70vw;
        bottom: 0;
    }
    .hero.hero-3b#anchor-adapt-text {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        row-gap: 20px;
        width: 60%;
        background-color: transparent;
        position: relative;
        top: -695px;
        left: 130px;
        transform: none !important;
        opacity: 1 !important;
    }
    .hero.hero-3b#anchor-adapt-text .hero-3--overlay-text-wrapper {
        position: relative;
        top: auto;
        right: auto;
        transform: none !important;
        opacity: 1 !important;
        font-size: 20px;
    }
    .hero.hero-3b#anchor-adapt-text .hero-3--overlay-text-wrapper .bg-red {
        background-color: #e04343;
    }
    .hero.hero-3b#anchor-adapt-text .read-more--container {
        color: #fff;
    }
    .hero-3-group-section {
        max-height: 700px;
    }
}
@media screen and (min-width: 1536px) {
    .hero.hero-3 #femme .hero-3--icons-wrapper div {
        width: 65px;
        height: 65px;
        font-size: 14px;
    }
    .hero.hero-3 .hero-3--overlay-text-grid .middle-col {
        padding: 70px 0;
    }
    .hero.hero-3 .hero-3--overlay-text-grid .middle-col .hero-3--overlay-text-wrapper {
        flex-basis: 60%;
    }
    .hero.hero-3 .hero-3--overlay-text-grid .middle-col .hero-3--overlay-image-wrapper {
        flex-basis: 40%;
    }
    .hero.hero-3 #femme .hero-3--icons-wrapper div[data-icon="angry"] {
        top: -300px;
        left: 320px;
    }
    .hero.hero-3 #femme .hero-3--icons-wrapper div[data-icon="persuasive"] {
        top: -300px;
        left: -110px;
    }
    .hero.hero-3 #femme .hero-3--icons-wrapper div[data-icon="informal"] {
        top: -430px;
        left: -30px;
    }
    .hero.hero-3 #femme .hero-3--icons-wrapper div[data-icon="educative"] {
        top: -550px;
        left: 130px;
    }
    .hero.hero-3 #femme .hero-3--icons-wrapper div[data-icon="optimistic"] {
        top: -470px;
        left: 280px;
    }
    .hero.hero-3 #femme .hero-3--icons-wrapper div[data-icon="professional"] {
        top: -600px;
        left: 0px;
    }
    .hero.hero-3 #femme .hero-3--icons-wrapper div[data-icon="friendly"] {
        top: -630px;
        left: 250px;
    }
    .hero.hero-3b#anchor-adapt-text {
        row-gap: 50px;
        top: -665px;
    }
}

.hero.hero-4 {
    height: auto;
    background-color: #fafafa;
}
.hero.hero-4 strong {
    color: #747474;
}
.hero.hero-4 .hero-4--content {
    display: flex;
    flex-direction: column;
    row-gap: 50px;
    padding: 100px 0;
    width: 100%;
}
.hero.hero-4 .hero-4--grid {
    display: flex;
    flex-direction: row;
    gap: 10px;
    justify-content: center;
}
.hero.hero-4 .hero-4--grid .side-col {
    min-width: 50px;
    overflow: hidden;
    padding: 25px 0;
    flex-basis: 15%;
}
.hero.hero-4 .hero-4--grid .middle-col {
    position: relative;
    display: flex;
    max-width: 1300px;
    color: #878787;
}
.hero.hero-4 .middle-col {
    display: flex;
    flex-direction: column;
    row-gap: 60px;
}
.hero.hero-4 .middle-col--header {
    display: flex;
    flex-direction: column;
    row-gap: 20px;
    align-items: center;
}
.hero.hero-4 .middle-col--header-title {
    font-size: 24px;
}
.hero.hero-4 .middle-col--header-subtitle {
    max-width: 630px;
}
.hero.hero-4 .middle-col--options-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}
.hero.hero-4 .options-block {
    display: flex;
    column-gap: 20px;
}
.hero.hero-4 .options-col {
    display: flex;
    flex-direction: column;
    row-gap: 20px;
    flex: 1;
    width: 100%;
}
.hero.hero-4 .options-block .options-block--icon {
    background-color: #1b8fcf;
    border-radius: 50%;
    padding: 20px;
    width: 65px;
    height: 65px;
}
.hero.hero-4 .options-block .options-block--icon img {
    width: 100%
}
.hero.hero-4 .options-block .options-block--content {
    display: flex;
    flex-direction: column;
    row-gap: 10px;
    align-items: flex-start;
    justify-content: center;
}
.hero.hero-4 .options-block .options-block--title {
    font-weight: bold;
    text-transform: uppercase;
    /*white-space: nowrap;*/
    color: #000;
    display: flex;
    column-gap: 15px;
    text-align: left;
}
.hero.hero-4 .options-block .options-block--title > div {
    display: inline-block;
    width: 20px;
    height: 20px;
    background-image: url('../images/rewriting/chevron-blue.svg');
    background-repeat: no-repeat;
    background-size: contain;
    transition: transform 0.2s;
    transform: rotate(90deg);
}
.hero.hero-4 .options-block .options-block--description {
    text-align: left;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s;
}
.hero.hero-4 .options-block.active .options-block--icon {
    background-color: #e04343;
}
.hero.hero-4 .options-block.active .options-block--title > div {
    background-image: url('../images/rewriting/chevron-red.svg');
    transform: rotate(-90deg);
}
.hero.hero-4 .options-block.active .options-block--description {
    max-height: 200px;
}
.hero.hero-4 .advanced-options--footer {
    background-color: #fff;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, .1);
    border-radius: 15px;
    font-weight: bold;
    font-size: 20px;
}

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

}
@media screen and (min-width: 1024px) {
    .hero.hero-4 .hero-4--grid .side-col {
        min-width: 100px;
    }
}

@media screen and (min-width: 1280px) {
    .hero.hero-4 .middle-col--options-container {
        flex-direction: row;
        row-gap: 20px;
    }
    .hero.hero-4 .hero-4--grid .side-col {
        min-width: 200px;
    }
    .hero.hero-4 .options-block .options-block--title {
        text-align: center;
    }
    .hero.hero-4 .options-block .options-block--title > div {
        display: none;
    }
    .hero.hero-4 .options-block .options-block--description {
        overflow: visible;
        max-height: none;
    }
    .hero.hero-4 .options-col {
        row-gap: 50px;
    }
}

/** HERO-4b **/
.hero.hero-4b {
    height: auto;
    background-color: #fafafa;
}
.hero.hero-4b .hero-content {
    /*align-items: center;*/
    justify-content: center;
    padding: 70px 0;
    column-gap: 50px;
    background-color: #fff;
    border-top-left-radius: 150px;
}
.hero.hero-4b .hero-4b--grid {
    gap: 10px;
    justify-content: center;
}
.hero.hero-4b .hero-4b--grid .side-col {
    min-width: 200px;
    overflow: hidden;
    padding: 25px 0;
    flex-basis: 15%;
}
.hero.hero-4b .hero-4b--grid .middle-col {
    position: relative;
    display: flex;
    max-width: 1300px;
}
.hero.hero-4b .hero-content .hero-4b--text {
}
.hero.hero-4b .hero-content .hero-4b--text h2 {
    margin-left: 150px;
    margin-bottom: 20px;
    min-height: 100px;
}
.hero.hero-4b .hero-content .hero-4b--text-wrapper {
    text-align: left;
    display: flex;
    justify-content: right;
    color: #878787;
}
.hero.hero-4b .hero-4b--image-wrapper {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
}
/*.hero.hero-4b .hero-4b--image {
    position: absolute;
    top: 0;
    right: 0;
}*/
.hero.hero-4b .hero-4b--image img {
    max-width: 100px;
}
.hero.hero-4b strong {
    color: #747474;
}
.hero.hero-4b .premium-benefits--item {
    display: flex;
    column-gap: 20px;
}
.hero.hero-4b .premium-benefits--icon div {
    background-color: #e04343;
    border-radius: 50%;
    padding: 20px;
    width: 65px;
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero.hero-4b .premium-benefits--icon div img {
    width: 100%;
}
.hero.hero-4b .premium-benefits--text {
    display: flex;
    flex-direction: column;
    row-gap: 10px;
}
.hero.hero-4b .premium-benefits--title {
    font-weight: bold;
    text-transform: uppercase;
    white-space: nowrap;
}
.hero.hero-4b .premium-version-discover {
    background-color: #e04343;
    color: #fff;
    padding: 15px 20px;
    letter-spacing: 2px;
    font-weight: lighter;
    text-transform: uppercase;
    text-align: center;
}
@media screen and (min-width: 640px) {

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

}
@media screen and (min-width: 1024px) {
    .hero.hero-4b .hero-content .hero-4b--text-wrapper {
        flex-basis: 60%;
    }
    .hero.hero-4b .hero-content .hero-4b--image-wrapper {
        flex-basis: 40%;
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .hero.hero-4b .hero-4b--image img {
        max-width: 325px;
    }
    .hero.hero-4b .hero-content .hero-4b--text h2 {
        margin-left: 0;
        min-height: 50px;
    }
}


/** HERO-4c **/
.hero.hero-4c {
    height: auto;
}
.hero.hero-4c .hero-4c--content-outer {
    display: flex;
    flex: 1;
    justify-content: center;
    align-items: center;
}
.hero.hero-4c .hero-4c--content-outer > .bg-blue {
    height: 300px;
    width: 105vw;
    position: absolute;
    top: 0;
    border-top-right-radius: 450px;
    border-bottom-right-radius: 50px;
}
.hero.hero-4c .hero-4c--content-outer > .bg-white {
    height: 300px;
    width: 106vw;
    position: absolute;
    top: 100px;
    border-top-right-radius: 300px;
    border-bottom-right-radius: 50px;
}
.hero.hero-4c .hero-4c--content-inner {
    display: flex;
    flex: 1;
    justify-content: center;
    align-items: center;
    z-index: 15;
    padding: 150px 0 70px 0;
}
.hero.hero-4c .hero-content {
    /*align-items: center;*/
    justify-content: center;
    padding: 70px 0;
    column-gap: 50px;
    background-color: #fff;
    border-top-left-radius: 150px;
}
.hero.hero-4c .hero-4c--content {
    padding: 0 20px;
}
.hero.hero-4c .hero-4c--header {
    text-align: left;
}
.hero.hero-4c .faq-list {
    display: flex;
    flex-direction: column;
    padding-top: 50px;
}
.hero.hero-4c .faq-list--item {
    display: flex;
    flex-direction: column;
    border-bottom: 1px solid #ddd;
    padding: 15px 0;
}
.hero.hero-4c .faq-list--item.faq-list--item-open .faq-list--item-question div {
    transform: rotate(-90deg);
    background-image: url('../images/rewriting/chevron-red.svg');
}
.hero.hero-4c .faq-list--item.faq-list--item-open .faq-list--item-answer {
    max-height: 2000px;
    padding-top: 15px;
    padding-bottom: 15px;
    opacity: 1;
}
.hero.hero-4c .faq-list--item-question,
.hero.hero-4c .faq-list--item-answer  {
    text-align: left;
}
.hero.hero-4c .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-4c .faq-list--item-question div {
    transform: rotate(90deg);
    width: 14px;
    max-width: 14px;
    transition: transform 0.3s;
    background-image: url('../images/rewriting/chevron-blue.svg');
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
}
.hero.hero-4c .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-4c .hero-4c--faq-list--item-answer ol {
    padding: 20px;
}

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

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

}
@media screen and (min-width: 1024px) {
    .hero.hero-4c .hero-4c--header {
        text-align: center;
    }
}
@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;
    }
}

@keyframes skating {
    0% {
        transform: translateX(0) scaleX(1);
    }
    50% {
        transform: translateX(-40vw) scaleX(1);
    }
    51% {
        transform: translateX(-40vw) scaleX(-1);
    }
    100% {
        transform: translateX(0) scaleX(-1);
    }
}
