/*
* Prefixed by https://autoprefixer.github.io
* PostCSS: v8.4.14,
* Autoprefixer: v10.4.7
* Browsers: last 4 version
*/

.section-notre-methode-container {
    background-color: #F3F3FF;
    padding: 96px 0;
}

.section-notre-methode-container>.container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}

.section-notre-methode-title * {
    color: #1700FF;
    font-family: "ClashDisplay-SemiBold";
    font-size: 40px;
    line-height: 48px;
    margin-bottom: 16px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.section-notre-methode-subtitle * {
    color: #000;
    font-family: "ClashDisplay-Medium";
    font-size: 20px;
    line-height: 24px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    
}

.section-notre-methode-cards {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 16px;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}

.section-notre-methode-card {
    background-color: #fff;
    padding: 24px;
    border-radius: 12px;
    width: 260px;
    max-width: 800px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    border: 2px solid white;
    -webkit-box-shadow: 0 4px 20px rgba(23, 0, 255, 0.15);
            box-shadow: 0 4px 20px rgba(23, 0, 255, 0.15);
}

.section-notre-methode-card:hover {
    -webkit-transform: scale(1.05);
        -ms-transform: scale(1.05);
            transform: scale(1.05);
    border: 2px solid #1700FF;
    cursor: pointer;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.section-notre-methode-card-title {
    color: #1700FF;
    font-family: "ClashDisplay-Medium";
    font-size: 20px;
    line-height: 24px;
    margin-bottom: 16px;
    text-align: center;
}

.section-notre-methode-card-texte-secondaire {
    color: #000;
    font-family: "ClashDisplay-Light";
    margin-top: auto;
}

@media all and (max-width:750px) {
    .section-notre-methode-container {
        padding: 48px 0;
    }
}

@media all and (max-width:587px) {
    .section-notre-methode-card {
        width: 100%;
    }
}

@media all and (max-width:550px) {
    .section-notre-methode-title * {
        font-size: 32px;
        line-height: 1.2;
    }
}

@media all and (max-width:400px) {
    .section-notre-methode-title * {
        font-size: 28px;
        line-height: 1.2;
    }
}