body {

    width: 90%;
    max-width: 1200px;
    margin: auto;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    min-width: 323px;

}

a {

    text-decoration: none;
    color: #000;

}



header {

    margin-top: 100px;
    position: relative;

}



.logo {

    display: flex;
    align-items: center;

}

.logo div {

    background: #2171B1;
    color: #ffffff;
    width: auto;
    padding: 15px 0 12px 0;
    border-radius: 4px;
    width: 200px;
    text-align: center;
    font-family: 'Times New Roman', Times, serif;
    font-size: 32px;

}

.logo div span {

    font-size: 40px;

}

.logo img {

    width: 65px;
    height: 65px;
    margin-left: 20px;

}



.title {

    font-size: 40px;
    color: #5b5b68;
    margin-top:10px;
    line-height: 50px;
    font-weight: normal;

}



.features {

    position: absolute;
    right: 0px;
    top: 0px;
    list-style: none;
    color: #5b5b68;
    margin: 0;

}



.features li {

    position: relative;
    text-align: center;
    display: inline-block;
    width: 9em;
    font-size: 1.25em;
    letter-spacing: -0.5px;
    line-height: 27px;

}



.icon {

    border: solid 1px #bbbbd4;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin: auto;
    margin-bottom: 15px;

}



.icon-responsive { background: url(icon/responsive.jpg); background-size: contain; }

.icon-intelligence { background: url(icon/intelligence.jpg); background-size: contain; }

.icon-customize { background: url(icon/customize.jpg); background-size: contain; }



section {

    margin-top: 40px;

}


.intro {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #5b5b68;
    margin-top: 90px;
}

.documentation a {
    padding: 10px;
    border: solid 1px #bbbbd4;
    color: #5b5b68;
    font-weight: bold;
    border-radius: 4px;
    margin-left: 10px;
}


article {

    width: 100%;
    height: auto;
    position: relative;
    margin-top: 40px;

}



article img {
    
    width: 100%;
    height: auto;
    border-radius: 8px;

}


.black {
    border-color: #000;
    color: #000;
}

.white {
    border-color: #FFF;
    color: #FFF;
}


.theme-color {

    position: absolute;
    top: 12px;
    left: 12px;
    display: flex;
    gap: 6px;
    z-index: 1;

}

.theme-color div {

    width: 18px;
    height: 18px;
    border: solid 2px #000;
    border-radius: 4px;

}



.theme-block {

    position: absolute;
    right: 8%;
    top: 130px;

}



.theme-title {

    font-size: 26px;
    font-weight: bold;
    margin-bottom: 20px;

}



.theme-button {

    border-style: solid;
    border-width: 1px;
    padding: 12px;
    border-radius: 4px;
    font-weight: bold;
    cursor: pointer;
    float: left;

}

.theme-button:hover {

    background: #00000010;

}



.theme-buy {

    border: solid 1px #000;
    padding: 12px;
    border-radius: 4px;
    color: #FFF;
    background: #000;
    cursor: pointer;
    float: left;
    margin-left: 10px;

}

.theme-buy:hover {

    background: #222;  

}

.theme-buy span {
    
    color: #DDD;

}



.blog {
    padding: 20px 65px;
    border: solid 1px #5b5b68;
    border-radius: 8px;
    color: #5b5b68;
}

.blog article {
    margin: 10px 0;
}



footer {
    display: flex;
    justify-content: center;
    color: #87879b;
    margin-top: 80px;
    margin-bottom: 20px;
    font-size: 14px;
}

footer a { color: #87879b; }

#visit-counter { font-weight: bold; color:#7a7a8b; }





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

    header {
        text-align: center;
    }

    .logo {
        justify-content: center;
    }

    .logo img {
        display: none;
    }

    .features {
        position: static;
    }

    ul {
        padding-inline-start: 0px;
    }

    .theme-block {
        top: auto;
        bottom: 0px;
        width:calc(100% - 22px);
        padding: 0 10px;
        height: 75px;
        right: auto;
        display: flex;
        justify-content: space-between;
        align-items: center;
        border-bottom: solid 1px #ceceeb;
        border-left: solid 1px #ceceeb;
        border-right: solid 1px #ceceeb;
        border-bottom-left-radius: 4px;
        border-bottom-right-radius: 4px;
    }
    .theme-title {
        margin-bottom: 1px;
        margin-left: 10px;
        color: #5b5b68;
    }
    
    article {
        height: 375px;
    }

    article img {
        border-bottom-left-radius: 0px;
        border-bottom-right-radius: 0px;
    }

    .image-wrapper {
        overflow: hidden; /* Assure que l’image ne déborde pas */
        width: 100%;
        height: 300px; /* Ajustez la hauteur selon vos besoins */
        position: relative;
        border-radius: 4px;
        border-bottom-left-radius: 0;
        border-bottom-right-radius: 0;
    }

    .image-wrapper img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover; /* L’image couvre entièrement le conteneur */
        object-position: left; /* L’image est positionnée à droite */
        border-bottom-left-radius: 0;
        border-bottom-right-radius: 0;
    }

    .theme-button {

        border: solid 1px #5b5b68;
        color: #4f4f5a;
    
    }
    
    .theme-button:hover {
    
        background: #00000010;
    
    }
    
    
    
    .theme-buy {
    
        border: solid 1px #4f4f5a;
        background: #4f4f5a;

    
    }
    
    .theme-buy:hover {
    
        background: #5b5b68;  
    
    }
    
    .theme-buy span {
        
        color: #dfdfdf;
    
    }

}

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

    body {
        width: 94%;
    }


    .title {

        font-size: 34px;

    }

    .theme-button {

        display: none;

    }

    .theme-title {

        font-size: 20px;

    }

    .features li {

        width: 8rem;
        font-size: 1rem;

    }

    .icon {

        width: 80px;
        height: 80px;

    }

    .theme-block {
        height: 55px;
    }

    .theme-buy {
        padding: 6px;
    }

    .image-wrapper {
        overflow: hidden; /* Assure que l’image ne déborde pas */
        width: 100%;
        height: 240px; /* Ajustez la hauteur selon vos besoins */
    }

    article {
        height: 296px;
    }

}

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

    header, section, footer {

        margin-top: 50px;

    }

    .logo div {
        padding: 8px 0px;
    }

    .title {

        font-size: 28px;

    }

    .features {
        display: block;
    }

    .features li {

        display: flex;
        align-items: center;
        margin: auto;
        margin-bottom: 15px;
        width: 220px;

    }

    .icon {

        width: 40px;
        height: 40px;
        margin: 0 15px 0 0;

    }

    .documentation {

        display: block;
        text-align: center;

    }
    .documentation a {
        display: block;
        width: 50%;
        margin: auto;
        margin-top: 20px;
    }

    .theme-buy {

        font-size: 14px;

    }

    .theme-buy span {

        display: none;

    }

    .theme-title {

        font-size: 16px;

    }

    article {
        height: 256px;
    }

    .image-wrapper {
        overflow: hidden; /* Assure que l’image ne déborde pas */
        width: 100%;
        height: 200px; /* Ajustez la hauteur selon vos besoins */
    }

    .image-wrapper img {
        width: calc(100% + 65px);
        left: -65px;
    }

}