@import url("font/burbankbigcondensed_black.otf");
@import url("font/burbankbigcondensed_black.otf");
@import url("font/Simpsonfont.otf");

@font-face {
    font-family: 'Burbank Big Condensed Black';
    src: url('../font/burbankbigcondensed_black.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: "Burbank Big Condensed Bold";
    src: url("font/burbankbigcondensed_bold.otf");
}
@font-face {
    font-family: "Simpsonfont";
    src: url("font/Simpsonfont.otf");
}

:root{
    --bg-color-dark: #0D0E0F;
    --bg-color-menu: #151617;
    --white: #ffff;
    --para-color: #cdcdcd;
    --text-color-menu: #ffff;
    --main-color: #2460da;
    --main-color-dark: #0f2c65;
    --main-color-disable: #435d70;
    --title-color: #151a1d;
}
*{
    scroll-behavior: smooth;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Open Sans', sans-serif;
    letter-spacing: 0.4px;
    word-spacing: 2px;
}
body{
    background-color: var(--bg-color-dark);
    height: max-content;
}

.hiding{
    opacity: 0;
    font-family: 'Burbank Big Condensed Black', serif;
}

.main-link{
    color: #ffffff;
    margin-bottom: 5px;
}
.main-link:hover{
    color: var(--main-color);
}



/* TITRE */



.titre-1{
    color: var(--white);
    font-family: 'Burbank Big Condensed Black', serif;
    font-size: 5rem;
    text-shadow: rgba(21, 26, 29, 1) 0 4px 10px;
    letter-spacing: 3px;
}
.titre-2{
    color: var(--white);
    font-family: 'Burbank Big Condensed Bold', serif;
    letter-spacing: 3px;
    font-size: 3rem;
    padding: 15px 0;
}



/* BOUTTON */



.btn-main{
    text-decoration: none;
    margin-right: 50px;
    color: #fff;
    border: none;
    background-color: var(--main-color);
    padding: 10px;
    position: relative;
    border-radius: 10px;
    transition: background 0.2s ease-out, color 0.2s ease-out, transform 0.2s ease-out;
}
.btn-main:hover{
    background-color: var(--main-color-dark);
    cursor: pointer;
}
.btn-main:active{
    transform: scale3d(0.9, 0.9, 1);
}
.btn-main i{
    margin-right: 10px;
}

.btn-secondary{
    text-decoration: none;
    margin-right: 50px;
    color: var(--main-color-dark);
    border: none;
    background-color: var(--white);
    padding: 10px;
    position: relative;
    border-radius: 10px;
    transition: background 0.2s ease-out, color 0.2s ease-out, transform 0.2s ease-out;
}
.btn-secondary:hover{
    background-color: var(--main-color-dark);
    color: var(--white);
    cursor: pointer;
}
.btn-secondary:active{
    transform: scale3d(0.9, 0.9, 1);
}
.btn-secondary i{
    margin-right: 10px;
}

.btn-main-disable{
    text-decoration: none;
    margin-right: 50px;
    color: #2a2c2f;
    border: none;
    background-color: var(--main-color-disable);
    padding: 10px;
    position: relative;
    border-radius: 10px;
    pointer-events: none;
}
.btn-main-disable i{
    margin-right: 10px;
    color: #3e4241;
}






/*Nav barre*/
nav {
    position: fixed;
    width: 100%;
    height: 60px;
    top: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--bg-color-menu);
}
.logo{
    display: flex;
    align-items: center;
    text-decoration: none;
}
.logo svg{
    fill: var(--text-color-menu);
    width: 50px;
    height: 50px;
}
.logo .icon{
    margin: 13px;
}
.logo:hover svg{
    fill: var(--main-color);
    transition: all 0.20s ease-in;
}
.logo:hover  span{
    color: var(--main-color);
    transition: all 0.20s ease-in;
}
.logo span{
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--text-color-menu);
}
.navbar{
    display: flex;
    list-style: none;
    padding-right: 150px;
}
.navbar a{
    color: var(--text-color-menu);
    font-size: 1.4rem;
    font-weight: 500;
    padding: 5px 0;
    margin: 0px 30px;
    text-decoration: none;
}
.navbar a.active{
    color: var(--main-color);
}
.navbar a:hover{
    color: var(--main-color);
    transition: all 0.20s ease-in;
}
.main{
    display: flex;
    align-items: center;
}
.main a{
    margin-right: 25px;
    margin-left: 10px;
    color: var(--text-color-menu);
    font-size: 1.4rem;
    font-weight: 500;
    text-decoration: none;
}
.user {
    display: flex;
    align-items: center;
}
.user i{
    color: var(--main-color);
    font-size: 40px;
    margin-right: 13px;
}
.main a:hover{
    color: var(--main-color);
    transition: all 0.20s ease-in;
}
#menu-icon{
    font-size: 60px;
    color: var(--main-color);
    cursor: pointer;
    z-index: 10001;
    display: none;
}

@media (max-width: 1280px){
    nav{
        padding: 14px 2%;
        transition: .2s;
    }
    .navbar a{
        padding: 5px 0;
        margin: 0px 20px;
        font-size: 2.5rem;
    }
}

@media (max-width: 1090px){
    header{
        margin-top: 150px;
    }
    nav{
        height: 150px;
    }
    .logo svg {
        width: 100px;
        height: 100px;
    }
    .logo span {
        font-size: 3rem;
    }
    #menu-icon{
        display: block;
    }
    .bannerbox2{
        display: none;
    }
    .navbar{
        position: absolute;
        top: 100%;
        right: -100%;
        width: 270px;
        height: max-content;
        background: var(--main-color);
        display: none;
        flex-direction: column;
        justify-content: flex-start;
        border-radius: 10px;
        transition: all .50s ease;
        padding: 5px;
    }
    .navbar a{
        display: block;
        margin: 12px 0;
        padding: 0 25px;
        transition: all .50s ease;
    }
    .navbar a.active{
        color: var(--title-color);
    }
    .navbar a:hover{
        color: var(--title-color);
        transform: translateX(7px);
    }
    .navbar.open{
        right: 2%;
        display: flex;
    }

}

@media (max-width: 500px){
    .navbar{
        height: 35vh;
    }
}

.alert{
    background-color: #e72e2e;
    position: fixed;
    top: 0;
    margin-top: 60px;
    height: 60px;
    width: 100%;
    z-index: 999;
    border-radius: 0 0 10px 10px;
    display: none;
    align-items: center;
    justify-content: center;
    text-align: center;
    transform: translatey(-60px);
    transition: all 0.3s ease-out;
}
@media (max-width: 1090px){
    .alert{
        margin-top: 149px;
    }
    .alert h3{
        font-size: 1.9rem;
    }
}
.alert-anti-vol{
    background-color: #e72e2e;
    position: fixed;
    top: 0;
    margin-top: 60px;
    height: 60px;
    width: 100%;
    z-index: 999;
    border-radius: 0 0 10px 10px;
    display: none;
    align-items: center;
    justify-content: center;
    text-align: center;
    transform: translatey(-60px);
    transition: all 0.3s ease-out;
}
@media (max-width: 1090px){
    .alert-anti-vol{
        margin-top: 149px;
    }
    .alert-anti-vol h3{
        font-size: 1.9rem;
    }
}
.mouv-up-btn{
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 50px;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    color: var(--text-color-menu);
    text-decoration: none;
    background-color: var(--main-color);
    box-shadow: rgba(21, 26, 29, 0.6) 0 0 10px;
    position: fixed;
    bottom: 0;
    right: 0;
    z-index: 999;
    transition: background 0.2s ease-out,color 0.2s ease-out, transform 0.2s ease-out;
}
.mouv-up-btn i{
    transition: transform 0.2s ease-in;
}
.mouv-up-btn:hover{
    background-color: var(--main-color-dark);
}
.mouv-up-btn:hover > i{
    transform: translateY(-3px);
}
@media(max-width: 1090px) {
    .mouv-up-btn{
        width: 80px;
        height: 80px;
        font-size: 4rem;
        border-radius: 15px;
    }
}



/*header Banner*/


header {
    background-image: url("/fond/S1C7/bg-banner.png");
    backdrop-filter: opacity(10);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 100vh;
    display: grid;
    justify-content: center;
    align-content: center;
    align-items: center;
    clip-path: polygon(0 0, 100% 0%, 100% 80%, 50% 100%, 0 80%);
    overflow: hidden;
}
header .titre-site{
    align-content: center;
    display: grid;
    clip-path: inset(-100px -100px -100px 860px);
    transition: all 1.2s ease-in-out;
    z-index: 0;
}
header .header-content{
    display: flex;
    width: 100%;
}
header p{
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--text-color-menu);
    text-shadow: rgba(21, 26, 29, 1) 0 4px 10px;
}
header .logo-site{
    transform: translateX(900px) scale3d(0, 0, 1);
    height: 250px;
    align-items: center;
    text-shadow: rgba(21, 26, 29, 1) 0 4px 10px;
    transition: transform 0.3s ease-out;
    z-index: 1;
;
}
header .fond{
    filter: blur(5px);
    z-index: -1;
    position: absolute;
    left: 0;
    top: -80px;
    width: 100%;
}
header .header-btn-cta{
    height: 50px;
    display: flex;
    align-content: center;
    align-items: center;
    padding-left: 250px;
    transform: translatey(50px);
    opacity: 0;
    transition: opacity 1s ease-out, transform 1s ease-out;
}
header .header-btn-cta .btn-extra{
    animation: lueur_extra 4s linear infinite;
}
header .header-btn-cta .btn-extra:hover{
    animation: lueur_extra_hover 4s linear infinite;
}
header .describ-phone{
    display: none;
}
@keyframes lueur_extra {
    0%{
        filter: drop-shadow(1px 0px 6px #5cb7ee);
    }
    40%{
        filter: drop-shadow(5px 0px 15px #5cb7ee);
    }
    100%{
        filter: drop-shadow(1px 0px 6px #5cb7ee);
    }
}
@keyframes lueur_extra_hover {
    0%{
        filter: drop-shadow(1px 0px 12px #5cb7ee);
    }
    40%{
        filter: drop-shadow(5px 0px 20px #5cb7ee);
    }
    100%{
        filter: drop-shadow(1px 0px 12px #5cb7ee);
    }
}
@media (max-width: 1500px){
    .sec5{
        height: 600px;
        margin: 0;
    }
    header .logo{
        height: 100px;
        position: absolute;
        left: 20px;
        top: 70px;
    }
    header h1 {
        font-size: 6.5rem;
    }
    header p {
        font-size: 2.5rem;
        width: 70%;
        margin: auto;
    }
    .title{
        font-size: 5rem;
    }
}
@media (max-width: 1090px){
    header{
        clip-path: none;
        width: 100vw;
    }
    header .logo-site{
        height: 300px;
    }
    header .titre-site p{
        display: none;
    }
    header .describ-phone{
        display: flex;
        font-size: 3rem;
        width: 90%;
        margin: 50px auto;
        transform: translateX(1000px);
        opacity: 0;
        transition: transform 1.5s ease-in-out, opacity 1.5s ease-in-out;
    }
    header .titre-site h1{
        font-size: 9rem;
    }
    header .header-content{
        margin: 50px auto;
        width: 100%;
    }
    header .header-btn-cta{
        margin: 50px;
        padding: 0;
        display: grid;
        height: max-content;
    }
    header .header-btn-cta a{
        font-size: 2.5rem;
        margin-bottom: 50px;
        width: max-content;
        padding: 20px;
        border-radius: 20px;
    }
}

footer a{
    text-decoration: none;
    color: #ffffff;
    margin-bottom: 5px;
}
footer a:hover{
    color: var(--main-color);
}
footer .mail {
    text-decoration-line: none;
}
footer .mail:hover {
    text-decoration-line: underline;
}
footer i{
    margin: 10px;
    color: #ffffff;
    font-size: 1.5rem;
}
footer i:hover{
    cursor: pointer;
    color: var(--main-color);
}
.contact{
    display: grid;
    align-content: start;
    text-align: start;
}
.soutien{
    display: grid;
    align-content: start;
    text-align: start;
}
.soutien p{
    margin-bottom: 10px;
}
.about-site{
    width: 40%;
    text-align: start;
}
.footer-tow-title .link{
    text-align: left;
    display: flex;
    flex-direction: column;
}
.footer-tow-title{
    justify-content: space-between;
    display: flex;
    width: 1200px;
}
footer hr {
    width: 90%;
    margin: 10px auto 5px auto;
}
footer{
    display: grid;
    padding: 20px;
    width: 100%;
    background-color: var(--bg-color-menu);
    height: 300px;
    justify-content: center;
    text-align: center;
}
footer h2, footer p{
    color: #ffffff;
}
footer h2{
    margin-bottom: 10px;
    margin-top: 10px;
}
@media (max-width: 1090px){
    footer {
        height: max-content;
        display: grid;
        padding-bottom: 100px;
    }
    .footer-tow-title{
        width: 100%;
        display: grid;
    }
    .about-site{
        width: 100%;
        text-align: start;
        justify-items: center;
    }
    footer p, footer a{
        font-size: 0.7rem;
    }
    footer h2 {
        font-size: 1.8rem;
        margin: 20px 0;
    }
    footer hr {
        border: 2px solid #fff;
        width: 80%;
        margin: 50px auto 30px auto;
    }
    footer i{
        margin: 30px;
        color: #ffffff;
        font-size: 3rem;
    }
}


/*===== Main =====*/

main{
    position: relative;
    display: grid;
    width: 100%;
}
.title{
    color: var(--text-color-menu);
    font-size: 3rem;
    text-shadow: rgba(21, 26, 29, 0.6) 0 0 10px;
    font-family: 'Burbank Big Condensed Black';
    letter-spacing: 3px;
    padding: 15px;
}
.title span{
    font-size: 1.5rem;
    font-family: 'Burbank Big Condensed Black';
}
@media (max-width: 1500px){
    .title{
        font-size: 5rem;
        letter-spacing: 5px;
        margin-left: 10px;
    }
}

/*===== Section 1 =====*/

.generator input[type=range]{
    accent-color: var(--main-color-dark);
    width: 60%;
    height: 15px;
    border-radius: 10px;
    background-color: #fff;
} 

.generator .sec1{
    width: 50%;
    padding: 20px;
    margin: 100px auto;
}
.generator .sec1 .onglet{
    display: flex;
    border-radius: 0 20px 0 0;
    background-color: var(--main-color);
    width: max-content;
    overflow: hidden;
}
.generator .sec1 .onglet a{
    text-decoration: none;
    color: var(--bg-color-menu);
    padding: 10px;
}
.generator .sec1 .onglet a:hover{
    text-decoration: none;
    color: var(--text-color-menu);
}
.generator .sec1 .onglet .active{
    padding: 10px 30px 10px 30px;
    width: max-content;
    background-color: var(--bg-color-menu);
    color: var(--main-color);;
}
.generator .sec1 .onglet .active-s{
    border-radius: 0 20px 0 0;
    padding: 10px 30px 10px 10px;
    width: max-content;
    background-color: var(--bg-color-menu);
    color: var(--main-color);;
}
.generator .sec1 .onglet-content{
    border-radius: 0 10px 10px 10px;
    background-color: var(--bg-color-menu);
    display: flex;
    flex-direction: column;
    align-items: center;
}
.generator .sec1 .content{
    display: flex;
    color: var(--text-color-menu);
    width: 100%;
    justify-content: space-evenly;
}
.generator .sec1 .content h3{
    font-size: 1.6rem;
    margin: 15px 0;
}
.generator .canvas-pdp{
    position: absolute;
    border-radius: 10px;
    box-shadow: rgba(21, 26, 29, 0.6) 0 0 10px;
    width: 300px;
    transition: transfrom 1.3s ease-in-out, border-radius 0.3s ease-out;
}

.generator #pdp-element-test{
    border-radius: 10px;
    box-shadow: rgba(21, 26, 29, 0.6) 0 0 10px;
    width: 300px;
    transition: transfrom 1.3s ease-in-out, border-radius 0.3s ease-out;
}

.generator .canvas-result{
    width: 300px;
    height: 300px;
}
.generator .sec1 .content .left{
    width: 50%
}
.generator .sec1 .content .right .result{
    display: flex;
    flex-direction: column;
    align-items: center;
}
.generator .sec1 .content .right .result label{
    margin-left: 10px;
}
.generator .sec1 .content .right .result div{
    margin: 15px 0;
}
.generator .sec1 .content .right{
    width: 300px;
}
.generator .sec1 .content .right .input-initial{
    margin: auto ;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}
.generator .sec1 .content .right input[type=text]:focus-visible{
    border: 2px var(--main-color-dark) solid;
}
.generator .sec1 .content .right input[type=text]{
    background-color: var(--bg-color-menu);
    padding: 10px 15px;
    width: 11rem;
    color: var(--main-color);
    border-radius: 10px;
    border: 2px var(--main-color) solid;
    margin-right: 10px;
    text-align: center;
}
.generator .sec1 .content .right .input-initial button{
    color: #fff;
    border: none;
    background-color: var(--main-color);
    padding: 10px;
    position: relative;
    border-radius: 10px;
    transition: background 0.2s ease-out,color 0.2s ease-out,transform 0.2s ease-out;
}
.generator .sec1 .content .right .input-initial button:hover{
    background-color: var(--main-color-dark);
    color: var(--title-color);
    cursor: pointer;
}
.generator .sec1 .content .left button:active{
    transform: scale3d(0.9,0.9,1);
}
.generator .sec1 .content .left .fond p {
    font-size: 1.2rem;
}
.generator .sec1 .content .option{
    background-color: var(--main-color);
    padding: 10px;
    border-radius: 10px;
    box-shadow: rgba(21, 26, 29, 0.6) 0 0 10px;
}
.generator .sec1 .content .right .option{
    margin-top: 15px;
}
.generator .sec1 .content .right .option .color .color-radio{
    appearance: none;
    width: 25px;
    height: 25px;
    background-color: var(--main-color-dark);
    border-radius: 50%;
    border: 3px var(--main-color-dark) solid;
    transition: border 0.2s ease-out;
}
.generator .sec1 .content .right .option .color .color-radio:hover{
    cursor: crosshair;
}
.generator .sec1 .content .right .option .color .color-radio:checked{
    border: 5px var(--main-color-dark) solid;
}
.generator .sec1 .content .right .option .color-title{
    margin-top: 0;
}
.generator .sec1 .content .right input[type=checkbox]{
    appearance: none;
    width: 15px;
    height: 15px;
    border-radius: 2px;
    background-color: var(--main-color-disable);
    border: 2px var(--main-color-dark) solid;
    transition: border 0.1s ease-out, background-color 0.2s ease-out;
}
.generator .sec1 .content .right input[type=checkbox]:checked{
    appearance: none;
    width: 15px;
    height: 15px;
    border-radius: 2px;
    background-color: var(--main-color);
    border: 4px var(--main-color-dark) solid;
}
.generator .sec1 .content .right input[type=color]::-webkit-color-swatch-wrapper{
    padding: 0;
}
.generator .sec1 .content .right input[type=color]::-webkit-color-swatch{
    border-radius: 100%;
    border: 3px var(--main-color-dark) solid;
}
.generator .sec1 .content .right input[type=color]{
    height: 25px;
    width: 25px;
    border-radius: 100%;
    cursor: pointer;
    background-color: transparent;
    margin: 5px 5px 5px 0;
}
.generator .sec1 .content .right .color .color-input{
    display: flex;
    align-items: center;
}
.generator .sec1 .content .right .color label{
    cursor: pointer;
}
.generator .sec1 .content button{
    margin: 5px 0;
    border: none;
    padding: 10px;
    position: relative;
    border-radius: 10px;
    transition: background-color 0.2s ease-out, transform 0.2s ease-out, color 0.2s ease-out;
}
.generator .sec1 .content button:hover{
    transform: scale3d(1.05, 1.05, 1);
}
.generator .sec1 .download{
    margin: 30px 0;
}
.generator .sec1 h2 i {
    margin-right: 15px;
}
@media (max-width: 1090px){
    .generator .sec1{
        margin-top: 150px;
        background: none;
        width: 100vw;
        padding: 0;
    }
    .generator .canvas-result{
        height: 400px;
        width: 400px;
    }
    .generator .canvas-pdp{
        width: 400px;
        border-radius: 20px;
    }
    .generator .sec1 .content .right{
        width: 400px;
    }
    .generator .sec1 .content .left{
        width: 40%;
    }
    .generator .sec1 .title{
        font-size: 6rem;
    }
    .generator .sec1 .content h3{
        font-size: 3rem;
        margin: 15px 0;
    }
    .generator .sec1 .content .fond .option p{
        font-size: 2.2rem;
    }
    .generator .sec1 .content button{
        font-size: 1.8rem;
        margin: 10px;
    }
    .generator .sec1 .content .right label{
        font-size: 2.2rem;
        margin-left: 10px;
    }
    .generator .sec1 .content .right input[type="text"]{
        width: 24rem;
        font-size: 2.2rem;
        border: 3px var(--main-color) solid;
    }
    .generator .sec1 .content .right input[type=checkbox]{
        width: 30px;
        height: 30px;
        border-radius: 4px;
        border: 4px var(--main-color-dark) solid;
    }
    .generator .sec1 .content .right input[type=checkbox]:checked{
        appearance: none;
        width: 30px;
        height: 30px;
        border-radius: 4px;
        border: 8px var(--main-color-dark) solid;
    }
    .generator .sec1 .content .right input[type=color] {
        height: 40px;
        width: 40px;
        margin: 5px;
    }
    .generator .sec1 .content .right .option .color .color-radio{
        width: 40px;
        height: 40px;
        margin: 5px;
    }
    .generator .sec1 .download a{
        font-size: 2.5rem;
        border-radius: 20px;
        padding: 20px;
    }
    .generator .sec1 .download{
        margin: 50px;
    }
}

/*===== Section 2 =====*/

.ancresec5{
    width: 100%;
    height: 100px;
}
.test{
    width: 250px;
    height: 250px;
    border-radius: 10px;
    background-color: #151a1d;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    animation: diapo_ex 20s linear infinite;
    transition: background-image 0.3s ease-out;
    box-shadow: rgba(21, 26, 29, 0.6) 0 0 10px;
}
@keyframes diapo_ex {
    0%{
        background-image: url("exemple/1.webp");
    }
    15%{
        background-image: url("exemple/1.webp");
    }
    20%{
        background-image: url("exemple/2.webp");
    }
    35%{
        background-image: url("exemple/2.webp");
    }
    40%{
        background-image: url("exemple/3.webp");
    }
    55%{
        background-image: url("exemple/3.webp");
    }
    60%{
        background-image: url("exemple/4.webp");
    }
    75%{
        background-image: url("exemple/4.webp");
    }
    80%{
        background-image: url("exemple/5.webp");
    }
    95%{
        background-image: url("exemple/5.webp");
    }
    100%{
        background-image: url("exemple/1.webp");
    }
}

.sec5 .ancreultra{
    width: 100%;
    height: 100px;
}

.sec5{
    display: flex;
    flex-direction: column;
    width: 50%;
    padding: 20px;
    margin: 0 auto 100px auto;
    align-items: center;
    animation: lueur_extra_hover 4s linear infinite;
}
.sec5 h2 {
    color: #fff;
    text-shadow: #5cb7ee 0 5px 20px;
}
.sec5 .describ{
    width: 80%;
}
.sec5 .content{
    background-color: var(--main-color);
    color: var(--text-color-menu);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.sec5 .content .bottom{
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: space-evenly;
    padding: 15px 0;
}
.sec5 .content .offre a{
    text-decoration: none;
    border: none;
    padding: 10px 20px;
    position: relative;
    border-radius: 10px;
    transition: background 0.2s ease-out,color 0.2s ease-out, transform 0.2s ease-out;
    margin: auto;
    display: flex;
    width: max-content;
}
.sec5 .content .offre a i{
    margin-right: 10px;
}
.sec5 .content .offre span{
    position: absolute;
    font-family: 'Burbank Big Condensed Black';
    color: #fff;
    font-size: 2rem;
    transform: translateX(300px) translatey(-10px) rotateZ(20deg);
    z-index: 5;
    letter-spacing: 2px;
    text-shadow: var(--main-color) 0 5px 20px;
}
.sec5 .content .offre{
    margin: 20px;
}
.sec5 .content ul li{
    display: flex;
    margin: 5px 0;
}
.sec5 .content p{
    font-size: 1.2rem;
}
.sec5 .content ul li i{
    margin-right: 10px;
    font-size: 1.3rem;
}

@media (max-width: 1090px){
    .sec5{
        margin: auto;
        width: 95vw;
        height: max-content;
    }
    .sec5 .content .bottom {
        flex-direction: column-reverse;
        padding: 30px 0;
    }
    .sec5 .content .bottom .left{
        margin-top: 20px;
    }
    .sec5 .bottom .test{
        width: 400px;
        height: 400px;
    }
    .sec5 h2{
        font-size: 6rem;
    }
    .sec5 p{
        font-size: 1.8rem;
    }
    .sec5 .bottom h3{
        font-size: 3rem;
    }
    .sec5 .content .bottom .left ul li p,.sec5 .content .bottom .left ul li i{
        font-size: 3rem;
    }
    .sec5 .offre a{
        font-size: 2.5rem;
        border-radius: 20px;
        padding: 20px;
    }
    .sec5 .offre{
        margin: 50px;
    }
    .sec5 .content .offre span{
        transform: translateX(720px) translatey(-30px) rotateZ(20deg);
        font-size: 4rem;
    }
}

.sec7{
    margin: 60px auto;
    height: max-content;
    display: grid;
    justify-content: center;
}
.sec7 img{
    height: 500px;
    margin-right: 120px;
}
.sec7 h2{
    margin: 10px auto;
    color: #fff;
    width: 70%;
    text-align: center;
}
@media (max-width: 1090px){
    .sec7 h2{
        font-size: 2.5rem;
        width: 100%;
    }
    .sec7{
        margin: 150px 0;
    }
    .sec7 img{
        height: 700px;
    }
}

.color-2-input {
    display: none;
    align-items: center;
}




.home-pdp .sec1{
    width: 60%;
    padding: 20px;
    margin: 50px auto 20px auto;
}
.home-pdp .sec1 .right img{
    width: 160px;
    position: relative;
    z-index: 2;
}
.home-pdp .sec1 .container-para{
    height: 800px;
    width: 100%;
    position: absolute;
    right: 0;
    top: -50px;
}
.home-pdp .sec1 .right .ex-left{
    transform: translateY(-10px) translateX(-40px) rotate(-10deg) scale(0.9)
}
.home-pdp .sec1 .right .ex-right{
    transform: translateY(-10px) translateX(50px) rotate(10deg) scale(0.9);
}
.home-pdp .sec1 .right .ex{
    position: absolute;
    z-index: 1;
}
.home-pdp .sec1 .content{
    display: flex;
    width: 100%;
    justify-content: space-evenly;
    align-items: center;
}
.home-pdp .sec1 .content .left{
    width: 60%
}
.home-pdp .sec1 .content .left p{
    color: var(--para-color);
}
.home-pdp .sec1 .content .left p{
    color: var(--para-color);
    font-size: 1.1rem;
}



.home-pdp .sec2{
    width: 60%;
    padding: 20px;
    margin: 20px auto 50px auto;
}
.home-pdp .sec2 .content{
    display: flex;
    width: 100%;
    justify-content: space-evenly;
    align-items: center;
}
.home-pdp .sec1 .content .right{
    width: 50%;
    display: flex;
    justify-content: center;
}
.home-pdp .sec1 .content .right .ex-left{
    transform: rotatez(330deg) translateX(-100px) translateY(-70px);
}
.home-pdp .sec1 .content .right .ex-right{
    transform: rotatez(40deg) translateX(90px) translateY(-90px);
}
.home-pdp .sec1 .content .right .ex-center{
    transform: scale(1.2);
}
.home-pdp .sec2 .content .right{
    width: 50%;
    display: flex;
    justify-content: center;
    flex-direction: column;
}
.home-pdp .sec2 .content .left img{
    width: 200px
}
.home-pdp .sec2 .content .right p{
    color: var(--para-color);
    font-size: 1.1rem;
}
.home-pdp .cta{
    background-color: var(--bg-color-menu);
    width: 100%;
    margin: 50px auto;
    padding: 80px 30px;
    display: flex;
    align-items: center;
}
.home-pdp .cta .content{
    width: 60%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
    margin: auto;
    text-align: center;
    gap: 20px;
}
.home-pdp .sec6{
    width: 50%;
    padding: 20px;
    margin: 20px auto 50px auto;
}
.home-pdp .sec6 .faq{
    margin: 20px 0;
    padding: 20px;
    background-color: var(--bg-color-menu);
    border-radius: 10px;
    transition: transform 0.2s ease-in-out;
}
.home-pdp .sec6 .faq:hover{
    cursor: pointer;
    transform: scale(105%);
}
.home-pdp .sec6 .faq:hover .question h3, .home-pdp .sec6 .faq:hover .question i{
    color: var(--main-color);
}
.home-pdp .sec6 .faq .question{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.home-pdp .sec6 .faq .question h3{
    color: var(--white);
    font-family: 'Burbank Big Condensed Bold', sans-serif;
    letter-spacing: 3px;
    font-size: 2rem;
    padding: 15px 0;
    transition: color 0.2s ease-in-out;
}
.home-pdp .sec6 .faq .question i{
    color: var(--white);
    letter-spacing: 3px;
    font-size: 1.5rem;
    padding: 15px 0;
    transition: color 0.2s ease-in-out;
}
.home-pdp .sec6 .faq .reply{
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.7s;
}
.home-pdp .sec6 .faq.active .reply{
    max-height: 300px;
}
.home-pdp .sec6 .faq .reply p{
    color: var(--para-color);
    font-size: 1.1rem;
}
.home-pdp .sec6 .faq .reply ul{
    margin: 10px 0;
    list-style: inside;
    color: var(--white);
    font-size: 1.1rem;
}




.generator .loading-pdp{
    display: block;
    position: absolute;
    border-radius: 10px;
    box-shadow: rgba(21, 26, 29, 0.6) 0 0 10px;
    width: 300px;
    z-index: 1;
}




.legal .sec1{
    height: 100%;
    background-color: var(--main-color);
    clip-path: polygon(0 20%, 100% 0, 100% 90%, 0% 80%);
    padding: 155px;
    display: flex;
    align-items: center;
}
.legal .sec1 article {
    display: flex;
    align-items: center;
    margin: 40px 0;
}
.legal .sec1 article .content{
    width: 70%;
}
.legal .sec1 article i{
    font-size: 3rem;
    margin: 30px;
    color: var(--text-color-menu);
}
.legal .sec1 .art2{
    flex-direction: row-reverse;
}
.legal .sec1 .art2 .content{
    text-align: right;
}
.legal .sec1 .contenu{
    z-index: 5;
    width: 70%;
    margin: auto;
}
.legal .sec1 .title {
    text-shadow: none;
    color: #fff;
}
.legal .sec1 .contenu h3 {
    color: #fff;
    margin-top: 10px;
    font-family: 'Burbank Big Condensed Black';
    font-size: 1.6rem;
    letter-spacing: 1px;
}
.legal .sec1 .contenu p {
    color: #fff;
    font-size: 1.1rem;
    margin-top: 10px;
}
@media (max-width: 1090px){
    .legal .sec1 .contenu p{
        font-size: 1.8rem;
    }
    .legal .sec1 .contenu h2{
        font-size: 6rem;
    }
    .legal .sec1 .contenu h3{
        font-size: 3rem;
    }
    .legal .sec1 .contenu p{
        font-size: 2rem;
    }
    .legal .sec1 .contenu i{
        font-size: 5rem;
    }
    .legal .sec1{
        margin-top: 50px;
        padding: 100px 0;
        clip-path: none;
    }
    .legal .sec1 .contenu{
        width: 90%;
    }
}

.suggestion .titre-2{
    margin: 80px auto;
}
.suggestion .content{
    padding: 20px;
    margin: 50px auto 20px auto;
}

.header-suggestion{
    height: 50vh;
}