
@font-face {
    font-family: 'Helvetica Neue';
    src: url('fonts/HelveticaNeue-UltraLight.woff2') format('woff2'),
    url('fonts/HelveticaNeue-UltraLight.woff') format('woff');
    font-weight: 200;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Helvetica Neue';
    src: url('fonts/HelveticaNeue-Thin.woff2') format('woff2'),
    url('fonts/HelveticaNeue-Thin.woff') format('woff');
    font-weight: 100;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Helvetica Neue';
    src: url('fonts/HelveticaNeue-Roman.woff2') format('woff2'),
    url('fonts/HelveticaNeue-Roman.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Helvetica Neue';
    src: url('fonts/HelveticaNeue-Black.woff2') format('woff2'),
    url('fonts/HelveticaNeue-Black.woff') format('woff');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Helvetica Neue';
    src: url('fonts/HelveticaNeue-Medium.woff2') format('woff2'),
    url('fonts/HelveticaNeue-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Helvetica Neue';
    src: url('fonts/HelveticaNeue-Light.woff2') format('woff2'),
    url('fonts/HelveticaNeue-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Helvetica Neue';
    src: url('fonts/HelveticaNeue-Heavy.woff2') format('woff2'),
    url('fonts/HelveticaNeue-Heavy.woff') format('woff');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Helvetica Neue';
    src: url('fonts/HelveticaNeue-Bold.woff2') format('woff2'),
    url('fonts/HelveticaNeue-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

html.lenis,
html.lenis body {
    height: auto;
}

.lenis:not(.lenis-autoToggle).lenis-stopped {
    overflow: clip;
}

.lenis [data-lenis-prevent],
.lenis [data-lenis-prevent-wheel],
.lenis [data-lenis-prevent-touch] {
    overscroll-behavior: contain;
}

.lenis.lenis-smooth iframe {
    pointer-events: none;
}

.lenis.lenis-autoToggle {
    transition-property: overflow;
    transition-duration: 1ms;
    transition-behavior: allow-discrete;
}


body, html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    --main-dark-color: #d00200;
    --dark-red: #b30200;
    --light-gray: #f6f8f9;
    --black: #262626;
    --main-width: 65vw;
}

body {
    font-family: "Helvetica Neue", sans-serif;
    background-color: white;
    max-width: 100%;
}

button {
    cursor: pointer;
    transition: .2s;
}

button:hover{
    opacity: 0.8;
}

h1 {
    font-size: 60px;
    color: var(--black);
    font-weight: 500;
    max-width: 900px;
}

h2 {
    font-size: 22px;
    font-weight: 500;
    color: var(--black);
    margin-bottom: 20px;
    max-width: 700px;
}

h3 {
    font-size: 60px;
}

.container {
    width: 100%;
    max-width: var(--main-width);
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
}

.badge {
    background-color: #e8e8e8;
    color: #262626;
    font-weight: 500;
    font-size: 12px;
    padding: 4px 12px;
    border-radius: 100px;
    margin-bottom: 10px;
    display: inline-block;
}

.win-section {
    display: flex;
}

.win-section .img-div {
    background-color: #670d0d;
    flex: 1;
    border-radius: 15px 0 0 15px;
    display: flex;
    align-items: end;
    justify-content: center;
}

.win-section .img-div img {
    height: 100%;
}

.win-section .content-div {
    background-color: var(--light-gray);
    flex: 1.2;
    padding: 80px 80px 80px 150px;
    border-radius: 0 15px 15px 0;
}

.win-section .title {
    font-size: 38px;
}

.win-section .description {
    font-size: 20px;
    opacity: .6;
    margin: 20px 0;
    line-height: 150%;
}

.win-section button {
    background-color: var(--black);
    border: none;
    padding: 20px 25px;
    font-size: 20px;
    border-radius: 100px;
    color: white;
}

.numbers {
    display: flex;
    justify-content: space-between;
    gap: 100px;
    padding: 100px 0;
}

.numbers h2 {
    font-size: 45px;
    flex: 1;
}

.numbers-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    flex: 1;
}

.numbers-container > div {
    display: flex;
    flex-direction: column;
    margin-bottom: 100px;
}

.numbers-container > div > div {
    display: flex;
    align-items: start;
}

.numbers-container .number-plus {
    font-size: 36px;
}

.number {
    font-size: 65px;
    font-weight: bold;
    margin-bottom: 10px;
}

.number-desc {
    opacity: .6;
    font-size: 20px;
}

/* ///////////////////////////////////////////////////
                     HEADER
//////////////////////////////////////////////////// */

header {
    background-color: white;
    width: 100%;
    position: fixed;
    z-index: 10;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    border-bottom: .0625rem solid #f5f5f5;
    box-shadow: 0 6px 8px -6px hsla(0,0%,4%,.02);
}

header nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    max-width: 1800px !important;
}


header .move {
    transform: translateX(0) !important;
    display: flex;
}

header .menu_btn {
    width: 30px;
    height: 30px;
    background-color: transparent;
    border: none;
    appearance: none;
    display: none;
    outline: none;
    cursor: pointer;
}

header nav > ul {
    list-style-type: none;
    display: flex;
    align-items: center;
    gap: 20px;
    z-index: 1000;
    transition: .3s;
}

header .menu_btn span {
    width: 100%;
    height: 2px;
    background-color: #000000;
    border-radius: 5px;
}

header nav > ul a {
    text-decoration: none;
    color: #1c1c1c;
    font-size: 16px;
    font-weight: 500;
}

header ul a:hover {
    color: var(--black);
}

header .mainButton {
    background-color: var(--main-dark-color);
    color: white;
    padding: 12px 16px;
    border-radius: 100px;
    cursor: pointer;
}

header .mainButton:hover {
    opacity: .8;
    color: white;
}

.unfold-header {
    display: flex;
    gap: 3px;
    margin-right: 16px;
    align-items: center;
    position: relative;
}

.unfold-header img {
    height: 15px;
    width: auto;
}

.unfold-header img, .unfold-header span {
    cursor: pointer;
}

.unfold-header div {
    position: absolute;
    bottom: -165px;
    left: -30px;
}

.unfold-header div ul {
    display: none;
    flex-direction: column;
    gap: 15px;
    list-style: none;
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    border: 1px solid #e4e7ec;
}

.unfold-header div span {
    height: 20px;
    display: block;
}

.unfold-header div li {
    cursor: pointer;
}

.unfold-header:hover div {
    display: block;
}

.unfold-header:hover ul {
    display: flex;
}

.unfold-header:hover img {
    transform: rotate(-180deg);
    transition: .2s;
}

.unfold-header:not(:hover) img {
    transform: rotate(0deg);
    transition: .2s;
}

.header-top-bar {
    background-color: var(--main-dark-color);
    color: white;
    text-align: center;
    font-size: 14px;
    padding: 10px 0;
    font-weight: 500;
}

/* ///////////////////////////////////////////////////
                     HERO
//////////////////////////////////////////////////// */

.hero-container {
    background-color: #fafaf9;
    padding-top: 16vh;
    text-align: center;
}

.hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hero h2 {
    margin: 20px 0 40px;
}

.no-credit-card {
    margin-top: 10px;
    font-size: 14px;
    opacity: .5;
}

.hero-container .dashboard-img {
    border-radius: 20px 20px 0 0;
    margin-top: 80px;
    width: 100%;
}



.dashboard-img-container {
    position: relative;
    height: auto;
    margin-top: 15vh;
}

.dashboard-img-container img {
    width: 100%;
    rotate: 4deg;
    position: relative;
    z-index: 3;
    border-radius: 20px;
    scale: 101%;
}

.over1, .over2 {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    rotate: 4deg;
}

.over1 {
    z-index: 2;
    background: linear-gradient(180deg, #BB0200 0%, #BB0200 50%, #FFF 50%, #FFF 100%);
}

.over2 {
    z-index: 1;
    background: linear-gradient(180deg, #8D1111 0%, #8D1111 50%, #FFF 50%, #FFF 100%);
}

.startButton {
    background-color: var(--black);
    color: white;
    font-size: 20px;
    border-radius: 60px;
    padding: 22px 40px;
    border: none;
}

main .hero .slogan {
    height: 40px;
}

.top-banner {
    background-color: var(--dark-red);
    padding: 120px 0;
    position: relative;
    z-index: 4;
    transform: translateY(-34px);
}

.top-banner .container {
    display: flex;
    max-width: var(--main-width);
    align-items: center;
}

.top-banner .title {
    color: #E8C8C8;
    font-size: 60px;
    max-width: 700px;
    margin-bottom: 30px;
    font-weight: bold;
}

.top-banner .desc {
    color: #F3E2E2;
    font-size: 20px;
    max-width: 700px;
    margin-bottom: 30px;
    line-height: 1.4;
}

.top-banner .container > div {
    flex: 1;
}

.top-banner .container > div img {
    max-width: 300px;
}

.top-banner .container > img {
    max-height: 300px;
    flex: 1;
}

/* ///////////////////////////////////////////////////
                     FEATURES
//////////////////////////////////////////////////// */

.customers-feature {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 100px;
}

.customers-feature > div {
    flex: 1;
}

.customers-feature > .video {
    flex: 1.4;
    border-radius: 15px;
    box-shadow: 0 2px 6px #0000000f;
}

.features-section .video1, .features-section > div > img {
    width: 100%;
    display: block;
    height: auto;
    clip-path: fill-box;
    border-radius: 15px;
}

.feature-title {
    font-size: 45px;
}

.features-section > div {
    padding: 150px 0 150px;
}

.features-section > div:first-child {
    padding-top: 116px;
}

.features-section > div:nth-child(2) {
    background-color: #f6f4f1;
}

.features-section ul {
    margin-top: 40px;
}

.features-section li {
    font-size: 20px;
    font-weight: 500;
    display: flex;
    align-items: start;
    gap: 1rem;
}

.features-section li > div {
    margin-top: 2px;
    padding-bottom: 50px;
}

.features-section li > div > div {
    height: 0;
    overflow: hidden;
    position: relative;
    opacity: 0;
    -webkit-transition: .4s ease;
    -moz-transition: .4s ease;
    -o-transition: .4s ease;
    transition: .4s ease;
}

.features-section li > div > div.active {
    height: auto;
    opacity: 1;
}

.features-section li h3 {
    font-size: 20px;
    font-weight: 500;
    cursor: pointer;
    display: inline-block;
}

.features-section li h3:hover {
    text-decoration: underline;
}

.features-section .feature-description {
    font-size: 16px;
    margin: 10px 0;
    line-height: 150%;
    font-weight: 400;
    color: #51535B;
}

.features-section li img {
    width: 24px;
}

.progress {
    height: 2px;
}

.progress_bar {
    width: 0;
    height: 100%;
    background: #c1c1c1;
    animation: fill 10s linear forwards;
}

@keyframes fill {
    from { width: 0%; }
    to   { width: 100%; }
}








.bento-section > div {
    display: flex;
    gap: 20px;
}

.bento-section > div > div {
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 20px;
    height: 100%
}

.bento-section > div > div:nth-child(odd) {
    margin-top: 30px;
}

.bento-section > div > div > div {
    gap: 20px;
    width: 100%;
    background-color: red;
    display: block;
    border-radius: 20px;
    padding: 40px 30px 30px;
    font-size: 28px;
    line-height: 1.4;
    position: relative;
}

.bento-section .large-div {
    height: 450px;
}

.bento-section .small-div {
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}


.bento-section > div > div:nth-child(1) > div:nth-child(1) {
    background-color: #fdeaea;
}

.bento-section > div > div:nth-child(1) > div:nth-child(2) {
    background-color: #f48d89;
}

.bento-section > div > div:nth-child(2) > div:nth-child(1) {
    background-color: #f48d89;
}
.bento-section > div > div:nth-child(2) > div:nth-child(1) img {
    width: 80%;
    height: auto;
}

.bento-section > div > div:nth-child(2) > div:nth-child(2) {
    background-color: #bb0200;
    color: #E8C8C8;
}

.bento-section > div > div:nth-child(3) > div:nth-child(1) {
    background-color: #E8C8C8;
    font-weight: 500;
    color: #BB0200;
}

.bento-section > div > div:nth-child(3) > div:nth-child(2) {
    background-color: #f48d89;
}

.bento-section > div > div:nth-child(4) > div:nth-child(1) {
    background-color: #f48d89;
}

.bento-section > div > div:nth-child(4) > div:nth-child(2) {
    background-color: #bb0200;
    padding-bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    color: #E8C8C8;
}

.bento-section .small-div img {
    width: 80%;
    height: auto;
}










.features-section a {
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 20px;
    padding: 10px 15px;
    border-radius: 100px;
    margin-top: 20px;
    font-weight: bold;
    color: var(--black);
    text-decoration: none;
}

.features-section a img {
    height: 30px;
    width: auto;
}

.feature-win-section {
    display: flex;
}

.feature-win-section .img-div {
    background-color: #670d0d;
    flex: 1.1;
    border-radius: 20px 0 0 20px;
    display: flex;
    align-items: end;
}

.feature-win-section .content-div {
    background-color: var(--light-gray);
    flex: 1;
    border-radius: 0 20px 20px 0;
    padding: 40px;
    position: relative;
}

.feature-win-section .content-div .img {
    position: absolute;
    bottom: 0;
    right: 0;
    height: 300px;
    width: auto;
}

.feature-win-section .title {
    font-size: 40px;
}

.feature-win-section .description {
    font-size: 20px;
    opacity: .6;
    margin: 20px 0;
    line-height: 150%;
}

.video2 {
    width: 105%;
    display: block;
    height: auto;
    clip-path: fill-box;
    border-radius: 20px 0 0 20px;
}

video {
    cursor: pointer;
}

/* ///////////////////////////////////////////////////
                     PRICING
//////////////////////////////////////////////////// */

.pricing-section h2 {
    font-size: 60px;
    font-weight: 500;
}

.pricing-section > div {
    display: flex;
    gap: 200px;
}

.pricing-informations {
    flex: 1.2;
    font-size: 20px;
}

.pricing-informations ul {
    margin-left: 20px;
}

.pricing-informations li {
    margin: 10px 0;
}

.pricing-container {
    display: flex;
    gap: 20px;
    flex: 1;
}

.pricing-container > div {
    padding: 40px;
    border-radius: 15px;
    border: 2px solid #dbdee3;
    font-size: 20px;
    background-color: #f6f8f9;
}

.pricing-container .pricing-title {
    font-size: 40px;
    font-weight: 400;
}

.pricing-description {
    margin: 20px 0 0;
}

.pricing-price {
    margin: 35px 0;
    font-size: 45px;
}

.pricing-price span {
    font-size: 30px;
}

.pricing-container li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 10px 0;
}

.pricing-container li img {
    width: 15px;
}

.pricing-container button {
    width: 100%;
    background-color: var(--black);
    color: white;
    border: none;
    padding: 25px 0;
    font-size: 18px;
    border-radius: 100px;
    margin: 20px 0;
}

.pricing-info {
    display: flex;
    align-items: center;
    gap: 5px;
}

.pricing-info img {
    height: 22px;
    width: auto;
}

.pricing-section {
    padding: 100px 0;
    margin: 100px 0;
}

.pricing-section .features-section > div {
    padding: 0;
    margin: 0;
}

/* ///////////////////////////////////////////////////
                     TESTIMONIALS
//////////////////////////////////////////////////// */

.people {
    transform: translateX(calc(15px*4));
}

.people img {
    width: 50px;
    position: relative;
    border-radius: 100px;
    border: white 4px solid;
}

.people img:nth-child(2) {
    transform: translateX(calc(-15px*1.5));
}

.people img:nth-child(3) {
    transform: translateX(calc(-15px*3));
}

.people img:nth-child(4) {
    transform: translateX(calc(-15px*4.5));
}

.testimonials {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    grid-template-rows: auto;
    gap: 16px;
    margin-bottom: 20px;
}

.testimonial {
    padding: 40px 30px 30px;
    border-radius: 15px;
    border: #f0eeeb .15rem solid;
}

.testimonial-stars {
    display: flex;
    gap: 5px;
}

.testimonial-content {
    font-size: 18px;
    line-height: 130%;
}

.testimonial-stars img {
    width: 24px;
}

.author {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.author img {
    width: 45px;
    min-width: 45px;
}

.author .img-icon-div {
    position: relative;
}

.author img.icon {
    width: 23px;
    min-width: 23px;
    position: absolute;
    bottom: -2px;
    right: -5px;
    border: white 3px solid;
    border-radius: 100px;
}

.author-name {
    font-weight: bold;
    margin-bottom: 3px;
    font-size: 20px;
}

.author-job {
    font-size: 16px;
    opacity: .8;
    margin-top: 5px;
}

.testimonial-header {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 20px;
}

.testimonial-header p {
    margin-left: 5px;
}

.testimonial-user {
    text-align: center;
    max-width: 500px;
    margin: 0 auto 50px auto;
    display: flex;
    align-items: center;
    flex-direction: column;
}

.testimonial-user > p {
    font-size: 25px;
    margin: 10px 0 20px
}

.testimonial-user .author {
    text-align: left;
}

.trusted-section {
    padding: 75px 0 130px;
}

.trusted-section p {
    text-align: center;
    font-size: 20px;
    margin-bottom: 15px;
    opacity: .5;
    color: var(--black);
}

.trusted-section > div {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
}

.trusted-section .trusted-logo img {
    width: auto;
    height: 40px;
    filter: brightness(.6);
}

.trusted-section .trusted-logo img:nth-child(1) {
    margin-bottom: 15px;
}

.trusted-section .trusted-logo img:nth-child(3) {
    height: 30px;
}

/* ///////////////////////////////////////////////////
                     FAQ
//////////////////////////////////////////////////// */

.faq {
    color: #000000;
    display: flex;
    justify-content: space-between;
    gap: 50px;
    text-align: left;
    padding: 160px 0;
}

.article .faq {
    display: block;
}

.article .faq p {
    margin-bottom: 20px;
}

.article .faq h2 {
    margin-top: 100px;
}

.faq > div:nth-child(1) {
    flex: 1;
}

.faq > div:nth-child(2) {
    flex: 1.8;
}

.faq h2 {
    font-size: 47px;
    color: var(--black);
    line-height: 1.3;
}

.faq-content {
    margin: 0 auto;
    position: relative;
}

.faq-question {
    border-top: 1px solid #E2E8F0FF;
}

.faq-question:last-child {
    border-bottom: 1px solid #E2E8F0FF;
}

.panel-title {
    font-size: 24px;
    width: 100%;
    position: relative;
    margin: 0;
    display: block;
    cursor: pointer;
    padding: 25px 40px 25px 25px;
    user-select: none;
}

.panel-content {
    font-size: 20px;
    padding: 0 14px;
    margin: 0 14px;
    height: 0;
    overflow: hidden;
    position: relative;
    opacity: 0;
    -webkit-transition: .4s ease;
    -moz-transition: .4s ease;
    -o-transition: .4s ease;
    transition: .4s ease;
    color: #000000;
}

.panel:checked ~ .panel-content {
    height: auto;
    opacity: 1;
    padding-bottom: 20px;
}

.plus {
    height: 25px;
    width: auto;
    fill: white;
    position: absolute;
    margin-top: 25px;
    right: 20px;
    font-size: 42px;
    line-height: 100%;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -o-user-select: none;
    user-select: none;
    -webkit-transition: .2s ease;
    -moz-transition: .2s ease;
    -o-transition: .2s ease;
    transition: .2s ease;
    pointer-events: none;
}

.panel:checked ~ .plus {
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    transform: rotate(180deg);
}

.panel {
    display: none;
}

.panel-section {
    position: relative;
    margin-top: 100px;
}

/* ///////////////////////////////////////////////////
                      FOOTER
//////////////////////////////////////////////////// */

footer {
    background-color: var(--dark-red);
    padding: 100px 0 50px;
}

.footer-main {
    display: flex;
    justify-content: space-between;
}

.footer-nav {
    display: flex;
    gap: 50px;
}

footer .footer-social {
    display: flex;
    gap: 20px;
}

footer .footer-social img {
    width: 35px;
    height: auto;
}

footer button {
    background-color: #ffffff !important;
    color: #720808 !important;
}

footer hr {
    margin: 80px 0 50px;
    opacity: .3;
    border: none;
    height: 1px;
    background-color: white;
}

footer .footer-content > img {
    width: 200px;
}

.footer-nav span {
    color: white;
}

footer li {
    list-style: none;
    margin: 10px 0;
}

footer ul {
    margin-top: 20px;
}

footer a  {
    text-decoration: none;
    color: #e8cad4;
}

footer a:hover {
    color: white;
    text-decoration: underline;
}

.footer-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    text-align: center;
}

.footer-header h2 {
    color: white !important;
    font-size: 72px;
    letter-spacing: -0.5px;
    font-weight: 400;
    max-width: 1000px;
}

.footer-header h3 {
    color: white;
    font-size: 20px;
    font-weight: 400;
    margin: 0 0 40px;
    max-width: 700px;
}

footer .copyright {
    color: white;
    padding: 20px 0 0;
}

.footer-mail {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 20px 0 30px;
}

.footer-mail a {
    color: white;
}

.footer-mail img {
    height: 20px;
    width: auto;
}

/* ///////////////////////////////////////////////////
                      TERMS
//////////////////////////////////////////////////// */

.terms {
    background-color: white;
}

.terms main :is(p, span) {
    color: var(--black);
}

.terms main {
    line-height: 35px;
    padding-bottom: 100px;
    margin-top: 150px;
}

.terms main h1 {
    font-size: 30px;
    margin-bottom: 50px;
}

.terms main img {
    margin: 0 auto;
    max-width: 400px;
    height: auto;
}

.terms main span {
    font-weight: bold;
    margin: 20px 0 0;
    display: inherit;
    font-size: 22px;
}

.terms main a {
    color: dodgerblue;
}

.terms main .title-bar {
    width: 500px;
    margin-top: 460px;
    position: fixed;
    top: -300px;
    left: 6%;
    z-index: 10;
}

.terms .title-bar a {
    text-decoration: none;
    display: block;
    text-align: left;
    color: #ccc;
}

.terms main .container {
    display: flex;
    justify-content: space-between;
    position: relative;
}

.terms .container-text {
    margin: 0 auto;
    text-align: center;
    max-width: 700px;
}

.terms .container-termes p, span {
    text-align: left;
}

.terms .container-termes p {
    margin: 10px 0 80px 0;
}

.terms .title-bar a.active {
    color: #000;
}

































/* ///////////////////////////////////////////////////
                   RESPONSIVE
//////////////////////////////////////////////////// */

@media screen and (max-width: 992px) {

    h1 {
        font-size: 35px;
    }

    h2 {
        font-size: 18px;
        max-width: 85vw;
    }


    .win-section {
        flex-direction: column;
    }

    .win-section .img-div {
        border-radius: 15px 15px 0 0;
        height: 200px;
        flex: unset;
    }

    .win-section .content-div {
        padding: 20px;
        border-radius: 0 0 15px 15px ;
    }






    /* ///////////////////////////////////////////////////
                         HEADER
    //////////////////////////////////////////////////// */

    header {
        padding: 0;
    }

    header .container {
        padding: 16px;
    }

    .container {
        max-width: 100%;
    }

    header nav {
        padding-inline: 20px;
    }

    .header-top-bar {
        display: none;
    }

    header ul {
        flex-direction: column;
        justify-content: flex-start;
        background-color: #ffffff;
        width: 250px;
        height: 100vh;
        display: none;
        position: fixed;
        right: 0;
        top: 0;
        z-index: 1;
        transform: translateX(140%);
        padding-top: 100px;
        transition: 0.3s;
    }

    header .menu_btn {
        z-index: 1000;
        display: block;
    }

    header .menu_btn > span {
        z-index: 1000;
        display: block;
        margin-top: 5px;
    }

    header .menu_btn.activeMenu > span:nth-child(2) {
        display: none;
    }

    header .menu_btn.activeMenu > span:nth-child(3) {
        width: 100%;
        transform: rotate(45deg) translateY(-5px);
    }

    header .menu_btn.activeMenu > span:nth-child(1) {
        transform: rotate(-45deg) translateY(5px);
    }

    header .nav_list img {
        height: 20px;
        width: auto;
    }

    header ul li:last-child > div {
        padding: 0;
    }

    /* ///////////////////////////////////////////////////
                         HERO
    //////////////////////////////////////////////////// */

    .hero-container {
        background-color: #ffffff;
        padding-top: 120px;
        text-align: center;
    }

    .hero {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .no-credit-card {
        margin-top: 10px;
        font-size: 14px;
        opacity: .5;
    }

    .dashboard-img-container {
        margin-top: 10vh;
    }

    .startButton {
        font-size: 18px;
        border-radius: 100px;
        padding: 18px 26px;
        border: none;
    }

    main .hero .slogan {
        height: 35px;
    }

    .top-banner {
        background-color: var(--main-dark-color);
        padding: 20px 0 50px;
        position: relative;
        overflow: hidden;
    }

    .top-banner .container {
        display: flex;
        align-items: center;
        margin: 0;
        max-width: none;
    }

    .top-banner .title {
        font-size: 36px;
        max-width: 100%;
        margin-bottom: 20px;
    }

    .top-banner .desctop-banner p {
        font-size: 40px;
        width: 100%;
    }

    .top-banner .container > div img {
        max-width: 130px;
    }

    .top-banner .container > img {
        max-height: 150px;
        position: absolute;
        bottom: 0;
        right: 0;
    }

    /* ///////////////////////////////////////////////////
                         FEATURES
    //////////////////////////////////////////////////// */

    .customers-feature {
        flex-direction: column;
        align-items: center;
        gap: 50px;
        margin: 0;
    }

    .customers-feature > div {
        flex: 1;
    }

    .features-section > div {
        padding: 40px 0;
    }

    .features-section .video1, .features-section > div > img {
        width: 100%;
        display: block;
        height: auto;
        clip-path: fill-box;
        border-radius: 20px;
    }

    .feature-title {
        font-size: 30px;
    }

    .feature-description {
        font-size: 18px;
        margin: 20px 0;
    }

    .features-section li {
        font-size: 18px;
    }

    .features-section hr {
        margin: 100px 0 50px;
        opacity: .3;
        border: none;
        height: 1px;
        background-color: #9a9a9f;
    }

    .features-section a {
        display: flex;
        align-items: center;
        gap: 20px;
        font-size: 20px;
        padding: 10px 15px;
        border-radius: 100px;
        margin-top: 20px;
        font-weight: bold;
        color: var(--black);
        text-decoration: none;
    }

    .features-section a img {
        height: 30px;
        width: auto;
    }

    .feature-win-section {
        display: flex;
        flex-direction: column;
    }

    .feature-win-section .img-div {
        border-radius: 15px 15px 0 0;
        display: flex;
        align-items: end;
    }

    .feature-win-section .content-div {
        border-radius: 0 0 15px 10px;
        padding: 20px 20px 200px;
    }

    .feature-win-section .content-div .img {
        position: absolute;
        bottom: 0;
        right: 0;
        height: 220px;
        width: auto;
    }

    .feature-win-section .title {
        font-size: 40px;
    }

    .feature-win-section .description {
        font-size: 20px;
        opacity: .6;
        margin: 20px 0;
        line-height: 150%;
    }

    .video2 {
        width: 100%;
        border-radius: 15px 15px 0 0;
    }

    /* ///////////////////////////////////////////////////
                         PRICING
    //////////////////////////////////////////////////// */

    .pricing-section h2 {
        font-size: 60px;
        font-weight: 600;
    }

    .pricing-section > div {
        display: unset;
        gap: 200px;
    }

    .pricing-informations {
        flex: 1.2;
        font-size: 20px;
    }

    .pricing-informations ul {
        margin-left: 20px;
    }

    .pricing-informations li {
        margin: 10px 0;
    }

    .pricing-container {
        display: flex;
        gap: 20px;
        flex: 1;
    }

    .pricing-container > div {
        padding: 20px;
        border-radius: 15px;
        border: 2px solid #dbdee3;
        font-size: 18px;
    }

    .pricing-section {
        padding: 20px;
        margin: 0;
    }


    /* ///////////////////////////////////////////////////
                         TESTIMONIALS
    //////////////////////////////////////////////////// */

    .people {
        transform: translateX(calc(15px*4));
    }

    .people img {
        width: 50px;
        position: relative;
        border-radius: 100px;
        border: white 4px solid;
    }

    .people img:nth-child(2) {
        transform: translateX(calc(-15px*1.5));
    }

    .people img:nth-child(3) {
        transform: translateX(calc(-15px*3));
    }

    .people img:nth-child(4) {
        transform: translateX(calc(-15px*4.5));
    }

    .testimonials {
        display: flex;
        flex-direction: column;
        gap: 16px;
        margin-bottom: 20px;
    }

    .testimonial {
        padding: 40px 30px 30px;
        border-radius: 15px;
        background-color: var(--light-gray);
    }

    .testimonial-stars {
        display: flex;
        gap: 5px;
    }

    .testimonial-content {
        font-size: 18px;
        margin-bottom: 25px;
        line-height: 150%;
        opacity: .7;
    }

    .testimonial-stars img {
        width: 24px;
    }

    .author {
        display: flex;
        gap: 10px;
    }

    .author img {
        width: 50px;
    }

    .author-name {
        font-weight: bold;
        margin-bottom: 3px;
        font-size: 18px;
    }

    .author-job {
        font-size: 16px;
    }

    .testimonial-header {
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 20px;
        margin-bottom: 20px;
    }

    .testimonial-header p {
        margin-left: 5px;
    }

    .testimonial-user {
        text-align: center;
        max-width: 500px;
        margin: 0 auto 50px auto;
        display: flex;
        align-items: center;
        flex-direction: column;
    }

    .testimonial-user > p {
        font-size: 25px;
        margin: 10px 0 20px
    }

    .testimonial-user .author {
        text-align: left;
    }

    .trusted-section {
        padding: 75px 0 130px;
    }

    .trusted-section p {
        text-align: center;
        font-size: 20px;
        margin-bottom: 15px;
        opacity: .5;
        color: var(--black);
    }

    .trusted-section > div {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
        gap: 40px;
    }

    .trusted-section .trusted-logo img {
        width: auto;
        height: 20px;
        filter: brightness(.6);
    }

    .trusted-section .trusted-logo img:nth-child(1) {
        margin-bottom: 15px;
    }

    .trusted-section .trusted-logo img:nth-child(3) {
        height: 20px;
    }

    .numbers h2 {
     font-size: 35px;
    }

    .numbers {
        display: block;
    }

    .number {
        font-size: 30px;
    }

    .number-desc {
        font-size: 20px;
    }

    .numbers-container > div {
        margin-bottom: 30px;
    }

    /* ///////////////////////////////////////////////////
                         FAQ
    //////////////////////////////////////////////////// */

    .faq {
        flex-direction: column;
        gap: 50px;
        padding: 50px 20px;
    }


    .panel-title {
        font-size: 18px;
        padding: 25px 50px 25px 0;
    }

    .panel-content {
        font-size: 18px;
        margin: 0 0 0 10px;
        padding: 0;
    }

    .faq h2 {
        font-size: 25px;
    }


    /* ///////////////////////////////////////////////////
                      FOOTER
    //////////////////////////////////////////////////// */

    .footer-main {
        flex-direction: column;
        gap: 30px;
    }

    .footer-header h2 {
        font-size: 30px;
    }

    .footer-header h3 {
        font-size: 18px;
        max-width: 85vw;
    }

    footer {
        padding: 40px 0 0;
    }

    footer hr {
        margin: 40px 0 40px;
    }

    .cookie-consent-popup {
        max-width: 400px;
        width: calc(100% - 40px);
    }

    .present-section h2 {
        font-size: 25px !important;
        text-align: center;
    }

    .present-div {
        display: flex !important;
        gap: 20px;
        flex-direction: column;
    }


}















.white-case-section {
    display: flex;
    gap: 16px;
}

.white-case-section > div {
    padding: 48px 24px;
    border: #c6c5d0 1px solid;
    border-radius: 16px;
    width: 100%;
}

.white-case-section > div > div {

}

.white-case-section span {
    font-size: 48px;
    font-weight: 700;
}

.white-case-section p {
    font-size: 20px;
    font-weight: 400;
    color: #45464f;
    margin-top: 25px;
}

.phone-section {
    display: flex;
    gap: 60px;
    background-color: #ffe4db;
    border-radius: 10px;
}

.phone-section > div {
    flex: 1;
    padding: 80px;
}

.phone-section > div:last-child {
    display: flex;
    justify-content: center;
    padding: 40px 0 0;
}

.phone-section h2 {
    font-size: 50px;
}

.phone-section p {
    line-height: 1.4;
    font-size: 20px;
    font-weight: 500;
    margin: 25px 0 40px;
}

.phone-section button {
    background-color: black;
    border-radius: 100px;
    color: white;
    padding: 20px 20px;
    border: none;
    font-size: 16px;
}

.phone-img-section {
    max-width: 80%;
    margin: 0 auto;
}

.phone-img-section img {
    width: 100%;
    border-radius: 15px;
}


#title {
    border: 2px rgba(255, 255, 255, 0.5) dashed;
    border-radius: 10px;
    line-height: 1;
    display: inline-block;
    padding: 0 10px;
}


/* ///////////////////////////////////////////////////
                       Cookie
//////////////////////////////////////////////////// */

.cookie-consent-popup {
    position: fixed;
    bottom: -300px;
    left: 20px;
    max-width: 400px;
    background-color: white;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    z-index: 1000;
    display: none;
    border-radius: 20px;
}

.cookie-consent-popup p:first-of-type {
    font-size: 25px;
    font-weight: 500;
    margin-bottom: 5px;
}

.cookie-consent-popup p {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 10px;
}

.cookie-consent-popup button {
    margin: 10px 0;
    border: none;
    cursor: pointer;
    padding: 10px 20px;
    font-size: 18px;
    border-radius: 10px;
}

.cookie-consent-popup .accept-btn {
    background-color: var(--black);
    color: #ffffff;
}

.cookie-consent-popup .decline-btn {
    background-color: #fce5e8;
    color: #97112A;
}


/* ///////////////////////////////////////////////////
                       Contact
//////////////////////////////////////////////////// */

.contact {
    display: flex;
    justify-content: space-between;
    gap: 100px;
    padding: 23vh 0;
    align-items: center;
}

.contact > * {
    flex: 1;
    width: 50%;
}

.contact h1 {
    font-size: 50px;
    color: var(--black);
    font-weight: 500;
    max-width: 900px;
}

.contact > div h2 {
    font-size: 20px;
    font-weight: 500;
    color: var(--black);
    margin: 20px 0 20px;
    max-width: 700px;
}

.contact .contact-infos {
    margin-top: 40px;
}

#contactForm {
    width: 100%;
    padding: 0 30px;
}

#contactForm > div {
    margin-bottom: 20px;
}

.contact-form-container {
    position: relative;
}

.contact-form-container :is(input, textarea) {
    width: 100%;
    height: 40px;
    border-radius: 10px;
    border: #727272 1px solid;
    font-size: 16px;
    padding-left: 10px;
}

.contact-form-container textarea {
    height: 100px;
    resize: vertical;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    padding-top: 10px;
}

.contact-form-container label {
    display: block;
    margin-bottom: 5px;
}

.contact button {
    background-color: var(--black);
    padding: 16px;
    display: flex;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 100px;
    align-items: center;
    gap: 16px;
    position: relative;
    justify-content: center;
    color: white;
    width: 100%;
    border: none;
    margin-top: 30px;
}

.contact-infos img {
    filter: invert(1);
    height: 24px;
}

.contact-infos li {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}

.contact-infos a {
    color: black;
}

#contactForm h2 {
    margin-bottom: 20px !important;
    text-align: center;
    font-size: 1.3rem;
}


.contact-status-div {
    text-align: center;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.contact-status-div img {
    width: 80px;
    height: auto;
    margin-bottom: 20px;
}

.contact-status-div .title {
    font-size: 25px;
    font-weight: bold;
}

.contact-status-div .text {
    font-size: 18px;
    opacity: .7;
    margin-top: 10px;
}

#success-contact-div, #error-contact-div {
    display: none;
}

#error-contact-div a {
    text-decoration: none;
    color: #0C70DF;
}


.button-loading span {
    visibility: hidden;
    opacity: 0;
}

.button-loading:after {
    content: "";
    position: absolute;
    width: 16px;
    height: 16px;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    border: 4px solid transparent;
    border-top-color: white;
    border-radius: 50%;
    animation: button-loading 1s ease infinite;
}

@keyframes button-loading {
    from {
        transform: rotate(0turn);
    }

    to {
        transform: rotate(1turn);
    }
}


.present-section {
    text-align: center;
    margin: 100px auto 100px;
}

.present-section h2 {
    font-size: 4.2rem;
    font-weight: 500;
    color: var(--black);
    margin: 0 auto;
}

.present-text {
    max-width: 800px;
    margin: 0 auto 50px;
}

.present-text p {
    font-size: 1.2rem;
    line-height: 1.5;
    margin-top: 20px;
    color: #51535B;
}

.present-div {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    width: 100%;
    grid-gap: 20px;
}

.present-div .badge {
    display: block;
}


.present-div > div {
    background-color: #ffe3e1;
    min-height: 150px;
    border-radius: 20px;
    color: #1C1C1C;
    position: relative;
    text-align: left;
    display: flex;
    gap: 20px;
}

.present-div > div > div:first-child {
    padding: 40px 0 40px 30px;
}


.present-div img {
    height: auto;
    object-fit: contain;
    display: block;
    padding: 40px 20px 0 0;
    align-self: flex-end;
    border-radius: 0 20px 20px 0;
    width: 45%;
}

.integrations-div {
    background-color: var(--dark-red) !important;
    color: white !important;
}

.integrations-div img {
    margin-bottom: 10px;
}

.customers-div img {
    padding: 0 !important;
    object-fit: cover !important;
    height: 100% !important;
    object-position: left;
}

.present-div > div p {
    opacity: .9;
    line-height: 1.3;
    position: relative;
    z-index: 1;
    font-size: 1.1rem;
}

.present-div h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.present-section > img {
    width: 100%;
    border-radius: 20px;
    margin-top: 20px;
}