section.technology {
    min-height: 40dvh; 
    width: 100%;

    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;

    margin: 25px 0;

    .techno {
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;

        width: 1140px;
        margin: 50px 0;

        gap: 25px;

        .explication {
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;

            h2 {
                text-align: center;
                width: 80%;
            }

            p {
                text-align: justify;
                font-weight: lighter;
            }
        }

        .info-cards {

            display: flex;
            flex-direction: row;

            gap: 25px;

            .card {
                position: relative;
                display: flex;
                flex-direction: column;
                align-items: center;

                width: 220px;
                height: 390px;

                .content {
                    position: relative;
                    display: flex;
                    flex-direction: column;
                    align-items: center;

                    z-index: 2;

                    color: white;

                    h4 {
                        text-align: center;

                        display: flex;
                        flex-direction: column;
                        align-items: center;
                        justify-content: center;

                        gap: 10px;

                        margin-top: 50px;
                        margin-left: 40px;
                        margin-right: 40px;

                        i {
                            font-size: 35px;
                        }
                    }

                    p {
                        text-align: center;
                        margin: 0 25px;
                        color: white;
                    }
                }

                .bg {
                    position: absolute;
                    top: 0;
                    left: 0;
                    right: 0;
                    bottom: 0;
                    z-index: 1;

                    background-color: black;

                    img {
                        width: 100%;
                        height: 100%;
                        object-fit: cover;
                        object-position: center right;
                        opacity: 0.5;
                        filter: blur(1px);
                    }
                }
            }
        }
    }
}

@media screen and (max-width: 715px) {
    section.technology {
        margin: 0 auto;
        width: 80%;
        .techno {
            width: 100%;
            flex-direction: column;

            .info-cards {
                flex-direction: column;

                .card {
                    width: 100%;
                    min-height: 230px;
                    height: fit-content;

                    padding-bottom: 25px;
                }
            }
        }
    }
}

@media screen and (min-width: 715px) and (max-width: 1140px) {
    section.technology {
        margin: 0 auto;
        width: 80%;
        .techno {
            width: 100%;
            flex-direction: column;
        }
    }
}