.container_plan{
    max-width: 1160px;
    margin: 0 auto;
}

.tag{
    display: flex; 
    justify-content: center ;
    align-items: center;
    gap: 8px;
    width: max-content;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    padding: 8px 16px;
    border: 1px solid var(--white);
    border-radius: 50px;
    background: var(--light-white);
}

/* section hero */
    .hero {
        padding: 100px 0 0;
        position: relative;
    }
    
    .hero h1 {
        font-size: 50px;
        font-weight: 900;
        margin: 16px 0;
        text-transform: uppercase;
        line-height: 1.3;
    }
    
    .hero_sub {
        max-width: 650px;
        line-height: 1.3;
        margin-bottom: 25px;
    }
    
    .hero .flexBtn {
        justify-content: flex-start;
    }
/* section hero */

/* section garantie */
    .garantie_row {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 32px;
        flex-wrap: wrap;
    }
    
    .g_item {
        display: flex;
        align-items: center;
        gap: 8px;
    }
    
    .g_icon {
        width: 46px;
        height: 46px;
        border-radius: 13px;
        background: var(--light-white);
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        i{
            font-size: 1.25rem;
            color: var(--second);
        }
    }
    
    .g_text h4 {
        font-size: 0.85rem;
        font-weight: 700;
        margin-bottom: 2px;
    }
    
    .g_text p {
        font-size: 0.76rem;
    }
/* section garantie */

/* section CTA FINAL */
    .cta_final {
        padding: 32px 16px;
        text-align: center;
        background: var(--light-white);
        border-radius: 20px;
    }
    
    .cta_final h2 {
        font-size: 40px;
        font-weight: 900;
        margin: 16px 0;
        position: relative;
        text-transform: uppercase;
        span {
            color: var(--second);
            font-size: 40px;
            font-weight: 900;
            text-transform: uppercase;
        }
    }
    
    .cta_final > div > p {
        margin-bottom: 16px;
        position: relative;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
/* section CTA FINAL */

/* section plan */
    .container_voir_plan{
        width: 100%; height: 100dvh;
        position: fixed;
        top: 0; left: 0;
        z-index: 1000000;
        backdrop-filter: blur(30px);
        display: flex;
        justify-content: center;
        align-items: center;
        clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
    }
    
    .container_voir_plan.active{
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    }
    
    .close_plan{
        position: absolute;
        top: 16px; right: 16px;
        i{
            font-size: 25px;
        }
    }
    
    .close_plan i:hover{
        cursor: pointer;
        scale: 1.05;
        color: var(--second);
    }
/* section plan */

/* responsive */
    /* section hero */
        @media screen and (max-width: 900px){
            .hero .container_plan{
                display: flex;
                flex-direction: column;
                align-items: center;
            }
            
            .hero h1, .hero_sub{
                text-align: center;
            }
            
            .hero .flexBtn {
                justify-content: center;
                flex-wrap: wrap;
            }
        }
        
        @media screen and (max-width: 700px){
            .hero h1{
                font-size: 40px;
            }
        }
        
        @media screen and (max-width: 560px){
            .hero h1{
                font-size: 32px;
            }
        }
        
        @media screen and (max-width: 450px){
            .hero h1{
                font-size: 25px;
            }
        }
    /* section hero */
    
    /* section garantie */
        @media screen and (max-width: 900px){
            .garantie_row{
                display: grid;
                grid-template-columns: repeat(auto-fit, minmax(300px,1fr));
                gap: 8px;
            }
            
            .g_item{
                background: var(--light-white);
                padding: 8px;
                padding-right: 16px;
                border-radius: 8px;
            }
        }
    /* section garantie */
    
    /* section CTA FINAL */
        @media screen and (max-width: 700px){
            .cta_final h2{
                font-size: 35px;
                span{
                    font-size: 35px;
                }
            }
        }
        
        @media screen and (max-width: 450px){
            .cta_final h2{
                font-size: 30px;
                span{
                    font-size: 30px;
                }
            }
        }
    /* section CTA FINAL */
/* responsive */