#body {
    background-color: var(--easynext-blue);
}

/* .spyral-bg {
    position: fixed;
    z-index: -500;
    top: 0;
    left: 0;
    opacity: 0.3;
    max-width: 300%;
} */

.page-bg {
    position: fixed;
    min-width: 100%;
    height: 100%;
    z-index: -500;
}

.bubbles {
    position: absolute;
    opacity: 0.3;
    top: 0;
    left: 0;
}

/***************
Titles and texts
****************/

h1 {
    text-transform: inherit;
    color: var(--white);
}

.hero-content .sect-title {
    color: var(--white);
    font-weight: bolder;
}

.hero-content p {
    color: var(--white);
    display: flex;
    align-items: end;
    opacity: 0;
    transform: translateX(-100%);
}

.heading-container h2 {
    margin-bottom: 0;
    color: var(--white);
}

p {
    color: var(--white);
}

/*******
BUTTONS
*******/

.proactive-button .button:after {
    background-color: #0cf;
}

.easynext-cta-btn {
    border: 3px solid var(--white);
}

.easynext-cta-btn:hover {
    background-color: var(--proactive-blue);
}


/*************
HERO SECTION
*************/

.hero,
.cham-ctr,
.hero-content,
.cham-1 {
    position: relative;
}

.hero .container-fluid,
.hero .row {
    height: 100%;
}

.hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.bg-circle {
    position: absolute;
    z-index: -100;
    left: -10%;
    height: auto;
}

.cham-1 {
    position: relative;
    height: auto;
    left: 0;
}

.easy-title {
    color: var(--white);
}

.eas-title-anim {
    height: 100%;
    display: flex;
    align-items: center;
}

.logo {
    opacity: 0;
    transform: translateX(100%);
}

.scroll-down button {
    border: 2px solid var(--white);
}

/*************
ABOUT SECTION
*************/

.about {
    position: relative;
}

.heading-container {
    border-radius: 0 60px 60px 0;
    background-color: var(--mid-blue);
}

.cta-section .overlay {
    background-color: rgba(26, 49, 80, 0.85);
}


/*************
PARTNER SECTION
*************/

.partner {
    position: relative;
    overflow: hidden;
}

.animated-circle-section {
    position: relative;
    height: 80vh;
}

.center-image-container {
    position: relative;
    z-index: -1;
    width: 100%;
    height: 100%;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cameleon-basket {
    width: 20rem;
    height: auto;
}

.letters-container {
    position: absolute;
    z-index: 10;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.letter {
    position: absolute;
    cursor: pointer;
    opacity: 0.7;
    font-family: 'Marvel';
    font-size: 90px;
    background-color: var(--white);
    width: 120px;
    height: 120px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.letter:hover {
    transform: scale(1.1);
    opacity: 1;
}

.letter.left,
.letter.right {
    color: var(--red);
}

/* Ajout du style de texte à afficher */
.letter-text {
    position: absolute;
    width: 200px;
    padding: 10px;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 8px;
    color: var(--dark);
    font-size: 20px;
    text-align: center;
    pointer-events: none;
    white-space: normal;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.letter:hover .letter-text {
    opacity: 1;
    /* Affichage du texte sur hover */
}

/* Positionnement des lettres */
.letter.left:nth-child(1) {
    transform: translate(-230px, -230px);
}

.letter.left:nth-child(2) {
    transform: translate(-320px, -80px);
}

.letter.left:nth-child(3) {
    transform: translate(-320px, 80px);
}

.letter.left:nth-child(4) {
    transform: translate(-230px, 230px);
}

.letter.right:nth-child(5) {
    transform: translate(230px, -230px);
}

.letter.right:nth-child(6) {
    transform: translate(320px, -80px);
}

.letter.right:nth-child(7) {
    transform: translate(320px, 80px);
}

.letter.right:nth-child(8) {
    transform: translate(230px, 230px);
}

/* Conteneur de texte associé */
.letter.left .letter-text {
    right: 140px;
}

.letter.right .letter-text {
    left: 140px;
}

/*************
PARTICULIERS AND PRO SECTION
*************/

.particuliers .row:nth-child(2),
.pro .row:nth-child(2) {
    margin-bottom: 3rem;
}

.particuliers .col-12,
.pro .col-12 {
    padding: 0;
}

.particuliers h3,
.pro h3 {
    color: var(--proactive-blue);
    margin-top: 1rem;
}

/* Slider */

.slick-slider {
    gap: 30px;
    background-color: rgba(0, 0, 0, 0.3);
    padding: 20px;
    border-radius: 20px 0 0 20px;
}

.slick-card {
    position: relative;
    border-radius: 20px;
    border: 2px solid var(--white);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 5px;
}

.slick-card img {
    padding: 5px;
}

.slide-axa-icon {
    position: absolute;
    bottom: 0;
    right: 0;
}

.slick-card span {
    color: var(--white);
    font-size: 17px;
    text-decoration: underline;
}

.slick-dots,
.slick-next,
.slick-prev {
    color: var(--white) !important;
}

.slick-dots li button:before {
    font-size: 12px !important;
    color: var(--white) !important;
}

.pro .content-paragraph {
    margin-bottom: 3rem;
}

/**
  FAQ SECTION
*/

.faq-wrapper {
    display: flex;
    justify-content: center;
}

.accordion {
    width: 82%;
}

.accordion-button {
    border-radius: 20px;
    background-color: transparent;
}

.accordion-item {
    background-color: rgba(0, 0, 0, 0.5);
}

.accordion-body,
.accordion-button {
    color: var(--white);
}

/***************
11. RESPONSIVE
****************/

/* Mobile */
@media screen and (max-width: 429px) {

    /* Global */

    .about,
    .partner,
    .particuliers,
    .pro {
        margin: 1.5rem 0;
    }

    .faq,
    .partner,
    .pro {
        margin-top: 1.5rem;
        margin-bottom: 1.75rem;
    }

    /* Titles and texts */
    
    .heading-container {
        padding: 10px 25px 10px 25px;
    }

    .heading-container h2 {
        margin-right: 0;
        font-size: 16px;
    }

    h1 {
        font-size: 20px;
        margin-bottom: 0.5rem;
    }
    
    /* Hero Section */

    .hero {
        margin-top: var(--mobile-header-height);
        height: 100vh;
    }

    .bg-circle {
        top: 5%;
        width: 90%;
    }

    .cham-1 {
        top: 20%;
        width: 100%;
    }

    .hero .mainTitle-anim {
        display: none;
    }

    .hero-content {
        position: relative;
        bottom: 0;
        padding: 20px;
    }

    .hero .cta-container {
        margin-top: 3rem;
    }

    .scroll-down {
        right: 2%;
        bottom: 15%;
    }

    /* About */

    .about p {
        margin-bottom: 3rem;
    }

}

/* Tablett */
@media screen and (min-width: 430px) and (max-width: 768px) {

    /* Global */
    .about,
    .partner,
    .particuliers,
    .pro {
        margin: 1.5rem 0;
    }

    .faq,
    .partner,
    .pro {
        margin-top: 1.5rem;
        margin-bottom: 1.75rem;
    }

    /* Titles and texts */
    
    .heading-container {
        padding: 0 25px 10px 25px;
        width: fit-content;
    }

    .heading-container h2 {
        margin-right: 0;
    }

    h1 {
        font-size: 30px;
        margin-top: 3rem;
    }

    .hero-content h2 {
        font-size: 14px;
    }

    .hero-content h3 {
        font-size: 22px;
        margin-bottom: 1rem;
    }

    .hero-content p {
        font-size: 32px;
        margin-bottom: 1rem;
    }

    /* Hero */

    .hero {
        margin-top: var(--mobile-header-height);
        height: 93vh;
    }

    .hero .row {
        display: flex;
        flex-direction: column;
    }

    .hero .col-md-7 {
        width: 100%;
    }

    .hero .cta-container {
        margin-top: 3rem;
    }

    .hero-content {
        width: 100%;
        height: 100%;
        position: relative;
        bottom: 0;
        padding: 40px 20px 20px 20px;
    }

    .bg-circle {
        top: 2%;
        width: 130%;
    }

    .cham-1 {
        top: 0;
        width: 180%;
    }

    .mainTitle-anim {
        display: none;
    }

    .scroll-down {
        right: 2%;
        bottom: 10%;
    }
    
}

/* LapTop 14 inches */
@media screen and (min-width: 769px) and (max-width: 1519px) {
    
    /* Titles and texts */
    h1 {
        font-size: 20px;
        margin-bottom: 1rem;
        width: 80%;
    }

    .hero-content .sect-title {
        font-size: 30px;
    }
    .hero-content .sect-title div {
        margin-bottom: 2rem;
    }

    .hero-content p {
        font-size: 52px;
        margin-bottom: -2.5rem;
    }

    .about,
    .partner,
    .particuliers,
    .pro {
        margin: 3rem 0;
    }
    
    /* Hero Section */
    .hero {
        margin-top: var(--laptop-header-height);
        height: 80vh;
    }
    
    .hero .col-md-7 {
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .bg-circle {
        top: 7%;
        width: 110%;
    }

    .cham-1 {
        top: 15%;
        width: 120%;
    }

    .mainTitle-anim {
        display: flex;
        align-items: center;
        margin-bottom: 3rem;
    }

    .hero-content {
        padding: 40px;
    }

    .logo {
        width: 30%;
        padding-left: 10px;
        margin-left: 20px;
    }

    .scroll-down {
        left: 30%;
        bottom: 10%;
    }

    .faq-wrapper {
        padding: 50px;
    }
}

/* LapTop 17 inches */
@media screen and (min-width: 1520px) and (max-width: 1899px) {

    /* Titles and texts */

    .hero-content h1 {
        font-size: 25px;
        margin-bottom: 1rem;
    }
    
    .hero-content .sect-title {
        font-size: 30px;
        margin-bottom: 3rem;
    }


    .hero-content p {
        font-size: 52px;
        margin-bottom: -2.5rem;
    }

    .about,
    .partner,
    .particuliers,
    .pro {
        margin: 3rem 0;
    }

    /* Hero Section */
    .hero {
        margin-top: var(--laptop-header-height);
        height: 80vh;
    }

    .bg-circle {
        top: 2%;
        width: 90%;
    }

    .cham-1 {
        top: 5%;
        width: 100%;
    }
    
    .mainTitle-anim {
        display: flex;
        align-items: center;
        margin-bottom: 3rem;
    }

    .hero-content {
        padding: 40px;
    }

    .logo {
        width: 30%;
        padding-left: 10px;
        margin-left: 20px;
    }

    .scroll-down {
        left: 30%;
        bottom: 10%;
    }


    .cta-container:not(.topbar .cta-container) {
     margin-bottom: 3rem; 
    }

}

/* Desktop and more */
@media screen and (min-width: 1900px) {
    
    /* Titles and texts */

    .hero-content h1 {
        font-size: 50px;
        margin-bottom: 1rem;
    }

.hero-content .sect-title {
    font-size: 30px;
}

    .hero-content h3 {
        font-size: 25px;
        margin-bottom: 3rem;
    }

    .hero-content p {
        font-size: 20px;
        margin-bottom: -2.5rem;
    }

    .about,
    .partner,
    .particuliers,
    .pro {
        margin: 3rem 0;
    }

    /* Hero Section */
    .hero {
        margin-top: var(--laptop-header-height);
        height: 80vh;
    }

    .hero .col-md-7 {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: start;
    }

    /* hero */

    .bg-circle {
        top: 5%;
        width: 90%;
    }

    .cham-1 {
        top: 15%;
        width: 100%;
    }
    
    .mainTitle-anim {
        display: flex;
        align-items: center;
        margin-bottom: 3rem;
    }

    .hero-content {
        padding: 40px;
    }

    .logo {
        width: 30%;
        padding-left: 10px;
        margin-left: 20px;
    }

    .scroll-down {
        left: 30%;
        bottom: 10%;
    }

}

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


    /* Navigation */
    .mobile-nav {
        background-color: var(--easynext-blue);
        background-image: linear-gradient(160deg, var(--easynext-blue) 0%, #4089e8 150%);
    }

    /* About */

    .about {
        margin: 0;
    }

    /* Partner */
    .partner {
        display: none;
    }

    .content-paragraph {
        padding: 20px;
    }

    /* sliders */

    .slider-container h3 {
        overflow: hidden;
        text-align: center;
        margin-bottom: 16px;
    }

    .slick-slider {
        left: 0px;
        margin-bottom: 6rem;
    }

    .slick-slider,
    .slick-slide,
    .slick-list,
    .slick-track {
        overflow: hidden;
    }

    .card-icon {
        width: 75px;
    }

    .particuliers .cta-container,
    .pro .cta-container {
        margin: 1rem 0;
    }

    .slick-card {
        height: 150px;
        width: 150px;
        margin: 0.5rem;
    }

    .slide-axa-icon {
        width: 30%;
        height: auto;
    }
}

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

    /* Global */
    .about,
    .partner,
    .particuliers,
    .pro,
    .faq {
        margin: 3rem 0;
    }

    /* Titles and texts */
    .heading-container {
        padding: 25px 25px 25px 130px;
    }

    .particuliers p,
    .pro p {
        width: 70%;
        padding-left: 10rem;
    }

    .particuliers h3,
    .pro h3 {
        font-size: 22px;
    }

    /* about */
    .about {
        margin-top: 7.5rem;
        margin-bottom: 3.75rem;
    }

    .about .container {
        padding: 0 4rem;
    }

    /* services */
    .slider-container {
        padding-right: 0;
    }

    .slider-container h3 {
        padding-left: 12.5rem;
    }

    .slick-slider {
        left: 200px;
    }

    .card-icon {
        width: 95px;
    }

    .slick-card {
        height: 200px;
        width: 200px;
        margin: 2rem;
    }
}