.one_element {
    text-align: center;
    margin: auto;
}

.container1 {
    margin: 0 auto 5px auto;
    text-align: center;
    /* width: 20vw; */
}

.container2 {
    margin: 0 auto 5px auto;
    width: 20vw;
}

.container1 img,
.container2 img {
    width: 100%;
    /* height: 100%; */
    vertical-align: middle;
    object-fit: cover;
    border-radius: 10px;
    background-color: white;
}

.carte-vizita-it {
    /* width: 40%; */
    padding: 1% 3%;
    margin: auto;
    /* margin-top: 0; */
    position: relative;
    overflow: hidden;
    outline: 2px solid #B9C2C9;
    box-shadow: 0 5px 10px 0 rgb(0 0 0 / 40%), 0 7px 20px 0 rgb(0 0 0 / 20%);
}

.carte-vizita-it img {
    width: 40%;
    float: left;
}

.carte-vizita-it p {
    text-align: center;
    text-indent: 0;
}

.two_elements {
    display: grid;
    text-align: center;
}

.trei-elemente {
    display: grid;
    gap: 10px;
    text-align: center;


}

.patru-elemente {
    display: grid;
    gap: 10px;
    text-align: center;
}

.img-membru {
    height: 43vh;
    margin-bottom: 5px;

}

/* CALCULTATOR */
@media (min-width:981px) {

    .one_element,
    .container1,
    .container2 {
        width: 20vw;
    }

    .two_elements {
        grid-template-columns: repeat(2, 1fr);
    }

    .carte-vizita-it {
        /* height: 20vh; */
        width: 40%;
    }

    .carte-vizita-it p {
        font-size: 1em;
    }

    .carte-vizita-it h3 {
        font-size: 1.4em;
    }

    .patru-elemente {
        grid-template-columns: repeat(4, 1fr);

    }

    .trei-elemente {
        grid-template-columns: repeat(3, 1fr);
    }

    .carte-vizita-it img {
        width: 15vw;
    }
}

/* TABLETA */
@media (max-width:980px) and (min-width:641px) {

    .one_element,
    .container1,
    .container2 {
        width: 30vw;
    }

    .two_elements {
        grid-template-columns: repeat(2, 1fr);
    }

    .carte-vizita-it {
        /* height: 18vh; */
        width: 50%;
    }

    .carte-vizita-it p {
        font-size: 0.8em;
    }

    .carte-vizita-it h3 {
        font-size: 1em;
    }

    .patru-elemente {
        grid-template-rows: repeat(2, 1fr);
        grid-template-columns: repeat(2, 1fr);
    }

    .trei-elemente {
        grid-template-columns: repeat(3, 1fr);
    }

    .carte-vizita-it img {
        width: 20vw;
    }
}

/* TELEFON */
@media (max-width:640px) {

    .one_element,
    .container1,
    .container2 {
        width: 40vw;
    }

    .two_elements {
        grid-template-rows: repeat(2, 1fr);
    }

    .carte-vizita-it {
        /* height: 15vh; */
        line-height: 20px;
        width: 60%;
    }

    .carte-vizita-it img {
        margin: 0;
    }

    .carte-vizita-it p {
        font-size: 0.6em;
    }

    .carte-vizita-it h3 {
        font-size: 0.8em;
    }

    .patru-elemente {
        justify-content: center;
        grid-template-rows: repeat(4, 1fr);
    }

    .trei-elemente {
        justify-content: center;
        grid-template-rows: repeat(3, 1fr);
    }

    .carte-vizita-it img {
        width: 30vw;
    }


}