*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    scroll-behavior: smooth;
}

body{
    background-color: #050e0f;
    color: white;
    font-family: "Inter", sans-serif;
}



/* %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
HEADER */

.logo img, .nav-logo img{
    width: 160px;
    transition: 0.3s ease-in-out;
}

.logo img:hover{
    transform: scale(1.2);
}

nav{
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    outline: 1px solid #3F3F3F;
    padding: 0 2rem;
    height: 80px;
    background-color: #3f3f3f79;
    backdrop-filter: blur(9px);
    z-index: 10000;
}

.navigation-container{
    position: relative;
}

.navigation-container .fa-xmark{
    display: none;
}

.navigation-container .nav-logo{
    display: none;
}

.navigation{
    display: flex;
    align-items: center;
    gap: 20px;
}

.navigation i{
    display: none;
}


.navigation a{
    color: white;
    font-size: 18px;
    position: relative;
    transition: 0.3s ease-in-out;
}

.navigation a.active{
    color: #6FD3B7;
    font-weight: 600;
}

.navigation a:hover{
    color: #6FD3B7;
}

.navigation a::after{
    content: "";
    position: absolute;
    left: 0;
    top: 25px;
    width: 0;
    height: 2px;
    background-color: #6FD3B7;
    transition: 0.3s ease-in-out;
}

.navigation a:hover::after{
    width: 100%;
}

nav .menu-icon{
    display: none;
}



/* %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
WHATSAPP ICON */

.whatsapp-icon img{
    width: 60px;
}

.whatsapp-icon{
    position: fixed;
    bottom: 20px;
    right: 30px;
    transition: 0.3s ease-in-out;
    animation: pulse 3s linear infinite;
    z-index: 99999;
}

@keyframes pulse{
    0%, 100%{
        transform: scale(1);
    }
    50%{
        transform: scale(1.2);
    }
}



/* %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
HOME */

.home{
    margin-top: 80px;
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: 2rem;
    padding: 2rem 3rem;
    min-height: 600px;
}

.home-content{
    max-width: 600px;
}

.home-content h2{
    color: white;
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.home-content h2 span{
    color: #6FD3B7;
}

.home-content p{
    font-size: 25px;
    margin-bottom: 3rem;
    font-weight: 600;
}

.Resaux-sociaux{
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 1.5rem;
}

.Social-icon{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 17px;
    height: 17px;
    padding: 20px;
    border: 2px solid #6FD3B7;
    border-radius: 50%;
    color: #6FD3B7;
    cursor: pointer;
    transition: 0.3s ease-in-out;
}

.Social-icon:hover{
    background-color: #6FD3B7;
    color: #3F3F3F;
    box-shadow: 0 0 20px #6FD3B7;
    transform: scale(1.3);
}

.Social-icon:active{
    background-color: #6FD3B7;
    color: #3F3F3F;
    box-shadow: 0 0 20px #6FD3B7;
    transform: scale(1.3);
}

.cta{
    display: inline-flex;
}

.cta a{
    background-color: #6FD3B7;
    border-radius: 20px;
    padding: 10px;
    color: #3F3F3F;
    font-weight: 700;
    font-size: 20px;
    transition: 0.3s ease-in-out;
    box-shadow: 0 0 15px #6FD3B7;
}

.cta a:hover{
    background-color: #5db69d;
}

.cta a:active{
    transform: scale(0.9);
}

.home-image img{
    width: 300px;
    height: 300px;
    object-fit: cover;
    border-radius: 50%;
    box-shadow: 0 0 25px #6FD3B7;
    transition: 0.3s ease-in-out;
}

.home-image img:hover{
    box-shadow: 0 0 40px #6FD3B7;
    border: 2px solid #6FD3B7;
}



/* %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
ABOUT */

.about{
    padding: 2rem 1rem;
    text-align: center;
    background-color: black;
}

.section-title{
    display: inline-block;
    text-align: center;
    color: #6FD3B7;
    border: 1px solid #6FD3B7;
    border-radius: 25px;
    padding: 5px 10px;
    margin-bottom: 2rem;
}

.about-me{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    padding: 3rem;
    background-color: #161616;
    border-radius: 15px;
    width: 80%;
    margin: auto;
}

.about-image img{
    width: 300px;
    height: 320px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 3px 3px 7px rgba(0, 0, 0, 0.466);
    transition: 0.3s ease-in-out;
}

.about-image img:hover{
    box-shadow: 0 0 40px #6FD3B7;
    border: 2px solid #6FD3B7;
}

.about-content{
    text-align: start;
}

.about-content .about-question{
    margin-bottom: 2rem;
    font-size: 30px;
}

.about-content p{
    line-height: 1.5;
    font-weight: 530;
    font-size: 17px;
}



/* %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
SERVICES */

.services{
    padding: 2rem 1rem;
    text-align: center;
}

.section-question{
    font-size: 35px;
    margin-bottom: 0.7rem;
}

.section-description{
    font-size: 20px;
    width: 50%;
    margin: 0 auto 2rem;
}

.service-content{
    width: 80%;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card{
    width: 100%;
    background: linear-gradient(to top, black, #3F3F3F);
    border: 2px solid #3F3F3F;
    min-height: 250px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    transition: 0.3s ease-in-out;
}
.hide-service-card{
    display: none;
}
.hide-service-card.show-cards{
    display: flex;
}

.service-card i{
    font-size: 18px;
    background-color: #6FD3B7;
    border-radius: 5px;
    padding: 10px;
    width: 40px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    box-shadow: 0 0 15px #6FD3B7;
}

.service-card h4{
    font-size: 23px;
    margin-bottom: 1rem;
    font-weight: 800;
    line-height: 1.1;
}

.service-card p{
    font-weight: 530;
    line-height: 1.4;
    font-size: 17px;
}

.service-card:hover{
    border: 2px solid white;
    box-shadow: 0 0 20px white;
    transform: scale(1.1);
}

.services button, .project button{
    margin-top: 2rem;
    background: none;
    border: none;
    color: #6FD3B7;
    border-bottom: 1px solid #6FD3B7;
    cursor: pointer;
    font-size: 16px;
}



/* %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
PROCESS */

.process{
    padding: 2rem 1rem;
    text-align: center;
    border-top: 1px solid #3F3F3F;
    border-bottom: 1px solid #3F3F3F;
}

.process-content{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    margin-top: 3rem;
}

.process-card{
    width: 100%;
    padding-left: 1rem;
    border-left: 2px solid #6FD3B7;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
    text-align: start;
}

.process-card h4{
    font-size: 24px;
    margin-bottom: 1rem;
    border-left: 4px solid #6FD3B7;
    padding-left: 1rem;
}

.process-card p{
    font-weight: 450;
    line-height: 1.5;
    font-size: 17px;
}



/* %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
PROJECT */

.project{
    padding: 2rem 1rem;
    text-align: center;
}

.project .section-question{
    max-width: 600px;
    margin: auto;
}

.project-cards{
    width: 80%;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    align-items: center;
    justify-content: center;
    justify-items: center;
    margin-top: 2rem;
}

.project-card{
    width: 100%;
    /* max-width: 300px; */
    min-height: 350px;
    background: linear-gradient(to top, black, #3F3F3F);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    border: 2px solid #3F3F3F;
    transition: 0.3s ease-in-out;
    padding: 0.5rem;
}
.hide-project-card{
    display: none;
}
.hide-project-card.show-cards{
    display: block;
}

.project-card:hover{
    transform: scale(1.1);
    box-shadow: 0 0 25px white;
    border: 2px solid white;
}

.project-card img{
    width: 100%;
    border-radius: 10px 10px 0 0;
    aspect-ratio: 19 / 13;
    object-fit: cover;
    object-position: top;
    margin-bottom: 1rem;
}

.project-content{
    text-align: start;
}

.project-content h4{
    font-size: 18px;
    margin-bottom: 1rem;
}

.project-card p{
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    overflow: hidden;
    color: rgb(224, 224, 224);
    font-weight: 500;
    line-height: 1.4;
    font-size: 15px;
    cursor: pointer;
}
.project-card p.fullText{
    -webkit-line-clamp: none;
    line-clamp: none;
}

.btn-sapp a{
    color: white;
    background-color: #3F3F3F;
    border: 1px solid #5e5d5d;
    display: inline-flex;
    padding: 20px;
    margin-top: 2rem;
    border-radius: 8px;
    font-weight: 600;
}



/* %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
TESTIMONIAL */

.testimonial{
    padding: 2rem 1rem;
    text-align: center;
    border-top: 1px solid #3F3F3F;
    background-color: #161616;
}

.swiper{
    width: 100%;
    max-width: 1150px;
    margin-top: 2rem;
    /* z-index: 0; */
}

.card-wrapper{
    margin: 0 40px;
    padding: 14px;
    overflow: hidden;
}

.testi-cards{
    margin-bottom: 1rem;
}

.swiper-pagination-bullet{
    background: #3F3F3F !important;
    opacity: 1 !important;
}
.swiper-pagination-bullet-active{
    background: #6FD3B7 !important;
}

.swiper-button-prev, .swiper-button-next{
    background-color: #636363;
    border-radius: 50%;
    width: 40px !important;
    height: 40px !important;
}
.swiper-button-prev::after, .swiper-button-next::after{
    font-size: 25px !important;
    color: black;
    font-weight: 900;
}



.testimonial-card {
    /* width: 300px; */
    user-select: none;
    background-color: #3F3F3F;
    border-radius: 12px;
    padding: 10px;
    /* pointer-events: none; */
}

.testimonial-card .top-card{
    height: 150px;
    background-color: #161616;
    text-align: left;
    padding: 20px;
    border-radius: inherit;
}

.testimonial-card .top-card .stars{
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 5px;
}
.testimonial-card .top-card .stars i{
    color: #6FD3B7;
    font-size: 10px;
}
.testimonial-card .top-card p{
    font-size: 13px;
    margin-top: 1rem;
    line-height: 1.4;
}

.user{
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 10px;
    margin: 1rem 0 0.5rem;
}

.user img{
    width: 45px;
    height: 45px;
    object-fit: cover;
    border-radius: 50%;
    border: 2px solid #6FD3B7;
}

.name-profession{
    text-align: left;
}
.name-profession h4{
    color: #6FD3B7;
}
.name-profession span{
    font-size: 13px;
    color: rgb(211, 211, 211);
    pointer-events: none;
}




/* %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
SERVICES */

.faq{
    padding: 2rem 1rem;
    text-align: center;
    border-top: 1px solid #3F3F3F;
    border-bottom: 1px solid #3F3F3F;
}

.faq-content{
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: 2rem;
}

.faq-intro{
    width: 40%;
    text-align: start;
}

.faq-intro h2{
    font-size: 35px;
    color: #6FD3B7;
    margin-bottom: 2rem;
}

.faq-intro div{
    font-size: 28px;
    margin-bottom: 1rem;
    font-weight: 600;
}

.faq-intro p{
    font-size: 18px;
    font-weight: 600;
    line-height: 1.4;
}

.faq-list{
    width: 40%;
}

.faq-items{
    background: linear-gradient( #122221, #0e0d0d);
    border-left: #6FD3B7 2px solid;
    border-radius: 8px;
    padding: 0 1rem;
    margin: 1rem 0;
    text-align: start;
}

.faq-question{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.7rem 0;
    cursor: pointer;
}

.faq-question h4{
    font-size: 1.2rem;
    color: #6FD3B7;
}

.icons{
    color: #6FD3B7;
    display: flex;
    font-size: 1.5rem;
}

.icons .fa-chevron-up{
    display: none;
}

.faq-réponse{
    line-height: 1.6;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-in-out;
}

.faq-réponse p{
    padding-bottom: 0.7rem;
}



/* %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
CONTACT */

.contact{
    padding: 2rem 1rem;
    text-align: center;
    background-color: #0e0d0d;
}

form{
    width: 80%;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5rem;
    padding: 2rem;
    background-color: black;
    border-radius: 10px;
}

.contact-image{
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 1rem;
}

.contact-image div{
    font-size: 18px;
    font-weight: 600;
    line-height: 1.4;
    text-align: start;
    max-width: 400px;
}

.contact-image img{
    width: 350px;
    height: 270px;
    object-fit: cover;
    border-radius: 10px;
}

.contact-form{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    background-color: #0e0d0d;
    border-radius: 10px;
    padding: 1rem;
    box-shadow: 3px 3px 6px black;
}

.contact-info{
    display: flex;
    flex-direction: column;
    align-items: start;
}

.contact-info input{
    background-color: #3F3F3F;
    border: 2px solid #6FD3B7;
    border-radius: 8px;
    color: white;
    padding: 10px;
    width: 300px;
    margin: 0.5rem 0 1rem 0;
}

.contact-info input:focus{
    outline: none;
}

.contact-info label{
    font-weight: 500;
}

.contact-message{
    display: flex;
    flex-direction: column;
    align-items: center;
}

.message-area{
    display: flex;
    flex-direction: column;
    align-items: start;
}

.contact-message .message-area label{
    font-weight: 600;
}

.contact-message .message-area textarea{
    background-color: #3F3F3F;
    border: 2px solid #6FD3B7;
    border-radius: 8px;
    color: white;
    padding: 10px;
    width: 300px;
    height: 120px;
    resize: none;
    margin-top: 0.5rem;
    margin-bottom: 1rem;
}

.contact-message textarea:focus{
    outline: none;
}

.contact-message button{
    background-color: #6FD3B7;
    border: none;
    font-weight: 800;
    padding: 5px 10px;
    border-radius: 6px;
    cursor: pointer;
}



/* %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
CONTACT POPUP*/

.popUp-Bg{
    position: fixed;
    top: 0;
    width: 100%;
    height: 100vh;
    background-color: #000000ab;
    backdrop-filter: blur(7px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999999;
    visibility: hidden;
    padding: 2rem;
}

.popUp-Bg.pop{
    visibility: visible;
}

.popUp-card{
    width: 100%;
    max-width: 400px;
    background-color: white;
    color: #3F3F3F;
    padding: 2rem 1rem;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-family: "Inter", sans-serif;
}

.popUp-card i{
    font-size: 2.4rem;
    background-color: #6FD3B7;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.473);
}

.popUp-card h1{
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.popUp-card h2{
    font-size: 16px;
    font-weight: 750;
    color: #535353;
}

.popUp-card button{
    background-color: #6FD3B7;
    color: white;
    padding: 5px 10px;
    border: none;
    cursor: pointer;
    font-size: 19px;
    border-radius: 5px;
    margin-top: 1.7rem;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.473);
}



/* %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
FOOTER */

footer{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: black;
}

.Ernse-description{
    display: flex;
    align-items: center;
    justify-content: center;
    /* gap: 1rem; */
    margin-top: 2rem;
    padding: 0 2rem;
}

.Ernse-description .sc{
    margin: 0 1rem;
    padding: 0 1rem;
    border-left: 2px solid white;
    border-right: 2px solid white;
}

.footer-icons{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.footer-icons a{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    padding: 8px;
    line-height: 1;
    border: 2px solid #6FD3B7;
    border-radius: 50%;
    color: #6FD3B7;
    margin-top: 1rem;
    transition: 0.3s ease-in-out;
}

.footer-icons a:hover{
    background-color: #6FD3B7;
    color: #3F3F3F;
    box-shadow: 0 0 5px #6FD3B7;
    transform: scale(1.1);
}

.copyright{
    font-size: 15px;
    margin-top: 1rem;
    font-style: italic;
}

.Traap-scroll{
    width: 100%;
    background-color: white;
    overflow: hidden;
    color: #3F3F3F;
    padding: 10px 0;
    animation: blindBg 5s linear infinite;
    margin-top: 1rem;
}

@keyframes blindBg {
    0%{
        background-color: white;
    }
    50%{
        background-color: #6FD3B7;
    }
    100%{
        background-color: white;
    }
}

.Traap-scroll .Traap{
    display: flex;
    width: max-content;
    animation: scroll 40s linear infinite;
}

.Traap-scroll .Traap span{
    font-size: 13px;
    font-weight: 600;
    padding-right: 10px;
}

@keyframes scroll {
    0%{
        transform: translateX(0);
    }
    100%{
        transform: translateX(-50%);
    }
}











/* %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
BLOG PAGE STYLE
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% */

/* %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
HOME BLOG*/

.home-blog{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    text-align: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    animation: slider 20s ease infinite;
}

@keyframes slider{
    0%{
        background-image: url(blog\ image/home\ images/dev.jpg);
    }
    25%{
        background-image: url(blog\ image/home\ images/dev.jpg);
    }
    75%{
        background-image: url(blog\ image/home\ images/graph.jpg);
    }
    100%{
        background-image: url(blog\ image/home\ images/graph.jpg);
    }
}

.home-blog-content{
    width: 60%;
    margin-top: 50px;
}

.home-blog-content h1{
    color: #6FD3B7;
    font-size: 3.3rem;
    margin-bottom: 2rem;
}

.home-blog-content p{
    font-size: 25px;
    font-weight: 600;
    line-height: 1.4;
}



/* %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
BLOG WEB TITLE && BLOG GRAPHIC TITLE */

.blog-web-title h2, .blog-graphic-title h2{
    text-align: center;
    background-color: #6FD3B7;
    color: #3F3F3F;
    font-size: 29px;
    font-weight: 800;
    padding: 8px;
}



/* %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
BLOG WEB && BLOG GRAPHIC SECTION*/

.blog-web, .blog-graphic{
    padding: 3rem 2rem;
    text-align: center;
}

.web-cards, .graphic-cards{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    justify-items: center;
}

.web-card, .graphic-card{
    width: 100%;
    max-width: 350px;
    background-color: #2c2c2ca4;
    padding: 10px;
    border-radius: 10px;
    border: 2px solid transparent;
    box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.562);
    transition: 0.3s ease-in-out;
}

.web-card, .graphic-card:hover{
    border: 2px solid #3F3F3F;
}

.web-card img, .graphic-card img{
    width: 100%;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.web-card h3, .graphic-card h3{
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    overflow: hidden;
    color: #6FD3B7;
    margin: 13px 0 10px;
    text-align: start;
    cursor: pointer;
    transition: 0.3s ease-in-out;
}

.web-card h3.full{
    -webkit-line-clamp: none;
    line-clamp: none;
}
.graphic-card h3.full{
    -webkit-line-clamp: none;
    line-clamp: none;
}

.web-card p, .graphic-card p{
    font-size: 17px;
    font-weight: 600;
    text-align: start;
    margin-bottom: 25px;
}

.btn-seeMore{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    background-color: #3F3F3F;
    color: white;
    width: fit-content;
    padding: 5px 10px;
    border-radius: 50px;
    box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.562);
    cursor: pointer;
    transition: 0.3s ease-in-out;
}

.btn-seeMore:hover{
    background-color: #6FD3B7;
    color: #3F3F3F;
}

.btn-seeMore a{
    transition: 0.3s ease-in-out;
    color: white;
    font-size: 15px;
}
.btn-seeMore:hover a{
    color: #3F3F3F;
}





/* %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
ARTICLE PAGE STYLE
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% */

/* %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
HOME ARTICLE*/

.home-article{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    padding-top: 80px;
    border-bottom: 2px solid #3F3F3F;
}

.home-article-container{
    width: 95%;
    height: 90%;
    margin: auto;
    background: linear-gradient(rgba(0, 0, 0, 0.658), rgb(0, 0, 0, 0.658)), url(blog\ image/web\ images/article-web1.jpg) ;
    background-position: center;
    background-size: cover;
    border-radius: 30px;

    display: flex;
    align-items: center;
    justify-content: center;
}

.home-article-content{
    width: 100%;
    max-width: 800px;
    text-align: center;
}

.home-article-content h1{
    font-size: 3.5rem;
    color: #6FD3B7;
    margin-bottom: 2rem;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.479);
}

.home-article-content .cat-time{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.644);
}

.cat-time span{
    font-size: 1.5rem;
}

.cat-time span i{
    margin-right: 5px;
}



/* %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
ARTICLE*/

.article{
    padding: 2rem;
}

.article-container{
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 1rem;
}

.article-question h3{
    max-width: 550px;
    color: #6FD3B7;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.article-content{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

.article-content img{
    width: 350px;
    border-radius: 20px;
}

.article-content .contents p{
    font-size: 21px;
    line-height: 1.5;
}

.btn-article{
    margin-top: 4rem;
}

.btn-article a{
    background-color: #3F3F3F;
    color: white;
    padding: 10px 20px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 18px;
}



/* %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
SIMILAR ARTICLES*/

.similar{
    padding: 3rem 1rem 2rem;
}

.similar-title, .project-title{
    position: relative;
    margin: 0 0 2rem;
    width: 100%;
    border: 1px solid #6FD3B7;
}

.similar h3, .article-project h3{
    position: absolute;
    left: -1px;
    bottom: 0;
    background-color: #6FD3B7;
    width: fit-content;
    padding: 8px 30px 8px 8px;
    color: #3F3F3F;
    clip-path: polygon(86% 0%, 93% 50%, 100% 99%, 0% 100%, 0% 50%, 0% 0%);
    font-size: 15px;
    text-transform: uppercase;
    font-weight: 800;
    font-size: 13px;
}

.similar-articles{
    width: 100%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    justify-items: center;
    gap: 20px;
    margin-top: 1rem;
}

.similar-article{
    background-color: #2c2c2ca4;
    border-radius: 10px;
    border-left: 4px solid #6FD3B7;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    max-width: 400px;
    max-height: 200px;
    padding: 10px 10px;
    box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.452);
    transition: 0.3s ease-in-out;
}

.similar-article:hover {
    border: 2px solid #6FD3B7;
    box-shadow: 0 0 15px #6FD3B7;
}

.similar-article img{
    width: 170px;
    height: 100%;
    object-fit: cover;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
}

.similar-article h4{
    color: #6FD3B7;
    font-size: 18px;
    line-height: 1.3;
}



/* %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
ARTICLE PROJECT*/

.article-project{
    padding: 3rem 1rem 2rem;
    border-bottom: 1px solid #3F3F3F;
}

/* .article-project .wrapper{
    position: relative;
    padding: 1rem;
    width: 80%;
    margin: auto;
}

.skipBtns{
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 12px;
    margin-top: 2rem;
}

.wrapper .skipBtns button{
    background-color: #3F3F3F;
    box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.479);
    border-radius: 5px;
    border: none;
    color: white;
    font-size: 15px;
    padding: 5px 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    cursor: pointer;
}

.project-carousel{
    display: flex;
    gap: 14px;
    overflow: hidden;
}

.project-carousel img{
    width: 100px;
    flex: 0 0 calc((100% - 28px) / 3);
} */


.article-project .wrapper{
    text-align: center;
    position: relative;
    margin: auto;
    width: 60%;
}

.project-carousel{
    display: flex;
    overflow: hidden;
    gap: 14px;
    padding: 1rem 0;
}

.project-carousel img{
    flex: 0 0 calc((100% - 28px) / 3);
    width: 200px;
    box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.349);
    object-fit: cover;
}

.skipBtns {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-top: 1rem;
}

.skipBtns button{
    border: none;
    background-color: #3F3F3F;
    color: white;
    font-size: 17px;
    padding: 3px 6px;
    font-weight: 550;
    border-radius: 3px;
    transition: 0.1s ease-in-out;
    cursor: pointer;
}

.skipBtns button:hover{
    background-color: #474747;
}

#prev.noScroll{
    background-color: #6e6e6e56;
    color: rgba(223, 223, 223, 0.38);
}
#next.noScroll{
    background-color: #6e6e6e56;
    color: rgba(223, 223, 223, 0.38);
}


/* %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
ARTICLE CTA*/

.article-cta{
    padding: 5rem 0;
}

.article-cta-bg{
    width: 100%;
    height: 400px;
    margin: auto;
    background: linear-gradient(rgba(0, 0, 0, 0.849), rgba(0, 0, 0, 0.849)), url(blog\ image/web\ images/article-cta-bg.jpg) ;
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    border-top: 1px solid #6FD3B7;
    border-bottom: 1px solid #6FD3B7;
    box-shadow: 0 0 50px #6FD3B7;
}

.graph-bg{
    background: linear-gradient(rgba(0, 0, 0, 0.849), rgba(0, 0, 0, 0.849)), url(blog\ image/graphique\ images/article-cta-bg2.jpg) ;
    background-position: center;
}

.article-cta-content{
    max-width: 600px;
    text-align: center;
}

.article-cta-content p{
    font-size: 22px;
    margin-bottom: 6rem;
    line-height: 1.5;
}

.article-cta-content a{
    display: inline-flex;
    color: #3F3F3F;
    background-color: #6FD3B7;
    border-radius: 7px;
    box-shadow: 0 0 10px #6FD3B7;
    padding: 10px 20px;
    font-weight: bold;
    transition: 0.3s ease-in-out;
}

.article-cta-content a:hover{
    background-color: #53b499;
}





/* %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
ARTICLE 2 PAGE STYLE
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% */

.home-article-container2{
    width: 95%;
    height: 90%;
    margin: auto;
    background: linear-gradient(rgba(0, 0, 0, 0.658), rgb(0, 0, 0, 0.658)), url(blog\ image/web\ images/article-web2.jpg) ;
    background-position: center;
    background-size: cover;
    border-radius: 30px;

    display: flex;
    align-items: center;
    justify-content: center;
}





/* %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
ARTICLE 3 PAGE STYLE
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% */

.home-article-container3{
    width: 95%;
    height: 90%;
    margin: auto;
    background: linear-gradient(rgba(0, 0, 0, 0.658), rgb(0, 0, 0, 0.658)), url(blog\ image/web\ images/article-web3.png) ;
    background-position: center;
    background-size: cover;
    border-radius: 30px;

    display: flex;
    align-items: center;
    justify-content: center;
}





/* %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
ARTICLE 4 PAGE STYLE
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% */

.home-article-container4{
    width: 95%;
    height: 90%;
    margin: auto;
    background: linear-gradient(rgba(0, 0, 0, 0.658), rgb(0, 0, 0, 0.658)), url(blog\ image/web\ images/article-web4.png) ;
    background-position: center;
    background-size: cover;
    border-radius: 30px;

    display: flex;
    align-items: center;
    justify-content: center;
}





/* %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
ARTICLE 5 PAGE STYLE
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% */

.home-article-container5{
    width: 95%;
    height: 90%;
    margin: auto;
    background: linear-gradient(rgba(0, 0, 0, 0.658), rgb(0, 0, 0, 0.658)), url(blog\ image/web\ images/article-web5.jpg) ;
    background-position: center;
    background-size: cover;
    border-radius: 30px;

    display: flex;
    align-items: center;
    justify-content: center;
}






/* %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
ARTICLE 6 PAGE STYLE
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% */

.home-article-container6{
    width: 95%;
    height: 90%;
    margin: auto;
    background: linear-gradient(rgba(0, 0, 0, 0.658), rgb(0, 0, 0, 0.658)), url(blog\ image/web\ images/article-web6.jpg) ;
    background-position: center;
    background-size: cover;
    border-radius: 30px;

    display: flex;
    align-items: center;
    justify-content: center;
}




/* %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
ARTICLE PAGE GRAPHIC STYLE
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% */

.homeGraph-article-container{
    width: 95%;
    height: 90%;
    margin: auto;
    background: linear-gradient(rgba(0, 0, 0, 0.658), rgb(0, 0, 0, 0.658)), url(blog\ image/graphique\ images/article-graph1.jpg) ;
    background-position: center;
    background-size: cover;
    border-radius: 30px;

    display: flex;
    align-items: center;
    justify-content: center;
}




/* %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
ARTICLE PAGE GRAPHIC 2 STYLE
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% */

.homeGraph-article-container2{
    width: 95%;
    height: 90%;
    margin: auto;
    background: linear-gradient(rgba(0, 0, 0, 0.658), rgb(0, 0, 0, 0.658)), url(blog\ image/graphique\ images/article-graph2.jpg) ;
    background-position: center;
    background-size: cover;
    border-radius: 30px;

    display: flex;
    align-items: center;
    justify-content: center;
}




/* %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
ARTICLE PAGE GRAPHIC 3 STYLE
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% */

.homeGraph-article-container3{
    width: 95%;
    height: 90%;
    margin: auto;
    background: linear-gradient(rgba(0, 0, 0, 0.658), rgb(0, 0, 0, 0.658)), url(blog\ image/graphique\ images/article-graph3.jpg) ;
    background-position: center;
    background-size: cover;
    border-radius: 30px;

    display: flex;
    align-items: center;
    justify-content: center;
}




/* %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
ARTICLE PAGE GRAPHIC 4 STYLE
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% */

.homeGraph-article-container4{
    width: 95%;
    height: 90%;
    margin: auto;
    background: linear-gradient(rgba(0, 0, 0, 0.658), rgb(0, 0, 0, 0.658)), url(blog\ image/graphique\ images/article-graph4.jpg) ;
    background-position: center;
    background-size: cover;
    border-radius: 30px;

    display: flex;
    align-items: center;
    justify-content: center;
}




/* %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
ARTICLE PAGE GRAPHIC 5 STYLE
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% */

.homeGraph-article-container5{
    width: 95%;
    height: 90%;
    margin: auto;
    background: linear-gradient(rgba(0, 0, 0, 0.658), rgb(0, 0, 0, 0.658)), url(blog\ image/graphique\ images/article-graph5.jpg) ;
    background-position: center;
    background-size: cover;
    border-radius: 30px;

    display: flex;
    align-items: center;
    justify-content: center;
}




/* %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
ARTICLE PAGE GRAPHIC 5 STYLE
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% */

.homeGraph-article-container6{
    width: 95%;
    height: 90%;
    margin: auto;
    background: linear-gradient(rgba(0, 0, 0, 0.658), rgb(0, 0, 0, 0.658)), url(blog\ image/graphique\ images/article-graph6.jpg) ;
    background-position: center;
    background-size: cover;
    border-radius: 30px;

    display: flex;
    align-items: center;
    justify-content: center;
}