/*Nos points fort*/
/*Nos points fort*/
/*Nos points fort*/
.point-section {
    background-color: var(--colorBlack);
    padding: 75px 0px 115px 0px;
}

.point-list {
    display: flex;
    gap: 25px;
    list-style: none;
}

.point-title {
    color: var(--colorWhiteSmoke);
    margin-bottom: 25px;
}

.point-subtitle-text {
    font-family: var(--fontFamily_title);
    color: var(--colorSecondary);
    font-size: 25px;
    font-weight: 300;
}

.point-paragraph-text {
    color: var(--colorWhiteSmoke);
    font-weight: 300;
}

/*domaines*/
/*domaines*/
/*domaines*/
.domaine-section,
.domaine-container,
.domaine-list,
.domaine-image {
    height: 230px;
}

.domaine-list {
    display: flex;
    gap: 20px;
}

.domaine-item {
    list-style: none;
    width: 100%;
    cursor: pointer;
}

.domaine-link {
    text-decoration: none;
    cursor: pointer;
}

.domaine-image {
    width: 100%;
    overflow: hidden;
}

.domaine-image-src {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.electrotechnique-image-src {
    width: 120%;
    bottom: 0;
    object-position: 0% 85%;
}

.domaine-title {
    transform: matrix(1, 0, 0, 1, 0, -40);
}

.domaine-title-text {
    font-family: var(--fontFamily_title);
    font-size: 30px;
    opacity: 0.8;
    font-weight: 400;
    color: var(--colorWhiteSmoke);
    padding-left: 10px;
}



/* contact */
/* contact */
/* contact */
 
.contact-paragraph {
    margin-bottom: 50px;
}


@media screen and (max-width:992px) {
    .point-list {
        flex-direction: column;
        gap: 60px;
    }

    .domaine-list {
        flex-direction: column;

    }

    .domaine-section {
        display: flex;
        align-items: center;
    }

    .domaine-section,
    .domaine-container,
    .domaine-list {
        height: auto;
    }

    .domaine-list {
        gap: 0px;
    }

    .domaine-image {
        height: 230px;
    }


}