.skills {
    width: 100%;
    height: 40vw;
    max-height: 600px;
    display: flex;
    justify-content: center;
    box-sizing: border-box;
    background-color: rgba(19,19,19,1);
    background-size: cover;
    background-position: center;
    padding: 0;
}
.skills h2 {
    color: #FFFFFF;
}
.section.skills h3 {
    margin-left: 10px;
    color: #FFFFFF;
}
.section.skills p {
    color: #FFFFFF;
    margin-top: 7.5px;
    margin-left: 10px;
    margin-right: 10px;
}
.skills .container {
    flex-flow: column;
    box-sizing: border-box;
    width: 100%;
    height: 40vw;
    max-height: 600px;
    background-color: rgba(19,19,19,1);
    
}
.skills-container {
    display: flex;
    justify-content: center;
    flex-flow: row nowrap;
    padding: 40px 9.905vw 0 9.905vw;
    gap: 15px;
    box-sizing: border-box;
}
.skills .bloc-img {
    display: flex;
    justify-content: flex-start;
    margin-bottom: 10px;
    width: 100%;
    box-sizing: border-box;
    align-items: flex-start;
    transition: background 0.4s ease-in-out;
}
.skills .bloc-img img {
    background-color:transparent;
    padding: 7.5px;
    transition: background 0.4s ease-in-out;
    width: 60px;
}
.skills .box:hover .bloc-img img {
    filter: brightness(1) invert(0);
    transition: background 0.4s ease-in-out;
}
.skills .box {

    justify-content: center;
    align-items: flex-start;
    flex-flow: column;
    padding: 30px;
    box-sizing: border-box;
    background-color: rgba(0, 23, 39, 0.2);
    border: solid 2px #FFBB99;
    width: calc(100% / 3);
    height: 18.667vw;
    max-height: 280px;

}
.skills .box:hover {
    transition-delay: 0s !important;
    background-color: #FFBB99;
    transition: background 0.4s ease-in-out;
    cursor: pointer;
}
.skills .box:hover p {
    color: rgba(0, 23, 39, 1);
    transition: color 0.4 ease-in-out;
}
.skills .box:hover h3 {
    color: rgba(0, 23, 39, 1);
    transition: color 0.4 ease-in-out;
}

@media screen and (max-width: 1069px) {
    .skills {
        max-height: none;
        height: auto;
    }

    .skills .container {
        width: 100%;
        max-height: none;
        height: auto;
    }
    .skills-container {
        width: 100%;
        flex-flow: column;
        padding: 40px 6vw;
    }
    .skills .box {
        width: 100%;
        padding: 2vw;
        min-height: 220px;
    }
    .skills h2 {
        margin-top: 40px;
    }
    .skills .btn {
        min-width: calc(100% - 12vw);
        margin-bottom: 40px;
        margin-top: 0;
    }

}

@media screen and (min-width: 2200px) {
    .skills .box {
        width: 570px;
        height: 280px;
    }
}