html {
    --color-bg-1: #1B1B1B;
    --color-bg-2: #212020;

    --color-text-1: #FFFFFF;
    --color-text-2: #B5B5B5;

    --color-btn-1: #090DF5;
    --color-btn-2: #2225FF;

    scroll-behavior: smooth;
}

html, body {
    margin: 0;
    font-family: "Inter", sans-serif;
}

body {
    background-color: black;
}

/*GENERIC*/
section {
    width: 100%;
}

section .container, footer .container {
    max-width: 768px;
    width: calc(100% - 2em);
    padding: 1em;
    margin: 0 auto;
}

.bg-black {
    background-color: var(--color-bg-1);
}

.bg-gray {
    background-color: var(--color-bg-2);
}

.bg-full-black {
    background-color: black;
}

.container.logo {
    text-align: center;
}

.logo {
    width: 120px;
    margin: 0 auto;
}

h1 {
    color: var(--color-text-1);
    font-weight: 400;
}

h1.first {
    font-style: italic;
    font-weight: 300;
    font-size: 1.4em;
}

h2 {
    color: var(--color-text-1);
    margin: 2em 0 0 0;
}

p {
    color: var(--color-text-2);
}

.fake-video-container {
    position: relative;
}

.fake-player {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 15%;
}

.fake-video {
    width: 100%;
    opacity: 0.2;
    border-bottom: 4px solid white;
}

.description {
    font-size: 0.9em;
}

/*SWIPER*/
.swiper-wrapper {
    height: 400px !important;
}

.swiper-slide {
    position: relative;
}

.slide-card {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.slide-card-2 {
    display: flex;
    flex-direction: column;
    justify-content: center;    
    width: calc(100% - 4em - 4px);
    height: calc(100% - 10em - 4px);
    margin: 0 auto;
    border-radius: 50px;
    border: 2px solid var(--color-btn-1);
    background-color: var(--color-bg-2);
    padding: 5em 2em;
}

.slide-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.slide-card-2 img {
    height: 60px;
    width: 60px;
}

.slide-card-2 p {
    font-style: italic;
    color: var(--color-text-1);
}

.slide-card .overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60%;
    background: linear-gradient(to top, rgba(0, 0, 0, 1.5), transparent);
    z-index: 1;
}

.slide-card .slide-text {
    position: absolute;
    bottom: 10px;
    left: 0;
    width: 100%;
    padding: 0 5px;
    color: white;
    font-size: 14px;
    text-align: center;
    z-index: 2;
    text-transform: uppercase;
    font-style: italic;
}

.swiper-button-next, .swiper-button-prev  {
    color: var(--color-text-1) !important;
    padding: 1em;
    height: 20px !important;
    width: 20px !important;
    border-radius: 50%;
}

.swiper-button-next:after, .swiper-button-prev:after {
    font-size: 1.8em !important;
    font-weight: bold;
}

.swiper-button-next, .swiper-rtl .swiper-button-prev {
    right: var(--swiper-navigation-sides-offset, -5px) !important;
}

.swiper-button-prev, .swiper-rtl .swiper-button-next {
    left: var(--swiper-navigation-sides-offset, -5px) !important;
}

/*CTA*/
.container-btn {
    margin-top: -2em;
}

.center {
    text-align: center;
}
/*BOX CTA*/

.cta {
    margin: auto;
    width: 90%;
    display: grid;
    grid-gap: 2rem;
}

.btn {
    color: white !important;
    border-radius: 12px;
    background-color: var(--color-btn-1);
    border: 4px solid var(--color-btn-2);
    box-shadow: 0px 0px 20px var(--color-btn-1);
    padding: 15px 0;
    display: inline-block;
    font-size: 30px;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--color-text-1);
    font-family: Arial, Helvetica, sans-serif;
    position: relative;
    overflow: hidden;
    max-width: 300px;
    width: 100%;
    cursor: pointer;
    animation: bounce 2s infinite;
}

.btn::before {
    content: "";
    position: absolute;
    top: 0;
    width: 100px;
    height: 100%;
    background: linear-gradient(120deg, transparent 20%, #ffffff48 40%, #ffffff48 60%, transparent 80%);
    animation: shine 3s ease-in-out infinite;
}

@keyframes shine {
    0% {
        left: -110%;
        transition-property: left;
    }
    100% {
        left: 110%;
        transition-property: left;
    }
}

@keyframes bounce {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0px 0px 40px var(--color-btn-1);
    }

    70% {
        transform: scale(0.9);
        box-shadow: 0px 0px 20px var(--color-btn-1);
    }
}

.step1 {
    display: grid;
    justify-items: center;
    grid-gap: 1rem;
}

.tarif {
    font-size: 12px;
    margin: 10px auto !important;
    width: 100%;
    color: var(--color-text-2);
    font-family: Arial, sans-serif;
}

/*FAQ*/
.faq {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

#faq {
    text-align: center;
    margin: 0 auto;
    color: var(--color-text-1);
}

.faq p {
    font-size: 10px;
    font-style: italic;
    font-family: 'Poppins', sans-serif;
}

.toggle-section {
    color: var(--color-text-2);
    border-bottom: 1px solid;
    margin-bottom: 10px;
}

.toggle-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
}

.toggle-header h2 {
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    text-align: left;
    letter-spacing: 0;
    margin: 0;
}

.toggle-content {
    max-height: 0;
    margin: 5px 0;
    overflow: hidden;
    transition: max-height 0.2sease -out;
    text-align: left;
}


.toggle-icon {
    transition: transform 0.2sease-out;
    width: 13px;
}

.toggle-icon.expanded {
    transform: rotate(180deg);
    transition: transform 0.2s ease-out;
}

/*FOOTER*/
footer {
    position: relative;
    color: var(--color-text-1);
}

footer .pictos {
    display: flex;
    align-items: center;
    justify-content: space-around;
}

footer .pictos svg {
    width: 30px;
    fill: rgba(255, 255, 255, 0.2);
}

footer .pictos:not(.pictos) {
    grid-template-rows: repeat(3, 1fr);
}

footer .pictos:not(.pictos) {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding: 5px 0px;
}

footer .pictos:not(.pictos) a {
    font-size: 10px;
    text-transform: uppercase;
}

.site-footer {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.site-footer img {
    width: 90%;
}

.menu-footer a {
    color: var(--color-text-2);
    font-size: 10px;
    padding: 20px 0;
    font-weight: bold;
    text-transform: capitalize;
    width: 100%;
}

.menu-footer a:nth-child(2) {
    border-top: solid .01rem #000;
    border-bottom: solid .01rem #000;
}

.menu-footer {
    color: white;
    display: grid;
    grid-gap: 20px;
    width: 80%;
    margin: auto;
    padding: 20px 0;
    list-style: none;
}

.menu-footer li {
    margin: 0 auto;
}

.separator {
    display: none;
}

.menu-footer p {
    font-size: 10px;
    color: var(--color-text-1);
    padding: 1vh 0;
}

.sub-footer {
    display: flex;
    flex-direction: column;
    border-top: solid .01rem #000;
}

.menu-footer p#services {
    font-size: 10px;
    padding: 10px 0;
}

.menu-footer a {
    font-size: 12px;
    padding: 20px 0;
    font-weight: bold;
    text-transform: capitalize;
    text-decoration: none;
}

.menu-footer a:nth-child(2) {
    border-top: solid .01rem #000;
    border-bottom: solid .01rem #000;
}

.menu-footer a:nth-child(3) {
    border-bottom: solid .01rem #000;
}

.cobranding {
    font-size: 12px !important;
    color: white;
    font-family: Arial;
    text-align: center;
    margin: 1rem auto;
}

/* Medium devices (landscape tablets) */
@media only screen and (min-width: 768px) {
    .slide-card-2 {
        width: calc(100% - 10em - 4px);
        height: calc(100% - 10em - 4px);
        padding: 5em;
    }

    .swiper-button-next, .swiper-rtl .swiper-button-prev {
        right: var(--swiper-navigation-sides-offset, 10px) !important;
    }
    
    .swiper-button-prev, .swiper-rtl .swiper-button-next {
        left: var(--swiper-navigation-sides-offset, 10px) !important;
    }
}

/* Large devices (laptops/desktops) */
@media only screen and (min-width: 1280px) {
}