/*
* {
    box-sizing: border-box;
}
    */
/*
body {
    margin: 0;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgb(49 22 0);
}
*/
.card_fundador {
    width: 460px;
    height: 390px;
    position: relative;
    perspective: 900px;
    margin: 0 10px 20px 10px;
    background: transparent;
    border: none;
    box-shadow: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    overflow: visible;
}
.card_fundador__container {
    transition: all 0.5s;
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    overflow: visible;
}
.card_fundador__background {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 5px;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
    transition: all 0.5s;
}
.card_fundador__image {
    width: 97%;
    height: 97%;
    opacity: 0;
    transition: all 0.5s;
    position: absolute;
    left: 1.5%;
    top: 1.5%;
    z-index: 2;
    object-fit: contain;
}
.card_fundador:hover .card_fundador__container {
    transform: translateY(-5%) rotateX(50deg);
    box-shadow: 2px 35px 32px -8px rgba(0, 0, 0, 0.75);
}
.card_fundador:hover .card_fundador__image {
    opacity: 1;
    transform: translate3d(0%, -25%, 100px);
}
.card_fundador__container::before,
.card_fundador__container::after {
    content: "";
    opacity: 0;
    width: 100%;
    height: 80px;
    transition: all 0.5s;
    position: absolute;
    left: 0;
    border-radius: 5px;
}
.card_fundador__container::before {
    top: 0;
    height: 100%;
    background-image: linear-gradient(
        to top,
        transparent 30%,
        rgba(0, 17, 253, 0.75),
        rgb(0, 1, 87) 98%
    );
}
.card_fundador__container::after {
    bottom: 0;
    background-image: linear-gradient(
        to bottom,
        transparent 30%,
        rgba(0, 17, 153, 0.75),
        rgba(0, 1, 87) 98%
    );
}
.card_fundador:hover .card_fundador__container::before,
.card_fundador:hover .card_fundador__container::after {
    opacity: 1;
}
.card_fundador:nth-child(1):hover .card_fundador__background {
    content: url('escudo__.png');
}
.card_fundador:nth-child(2):hover .card_fundador__background {
    content: url('escudo__.png');
}
.card_fundador:nth-child(3):hover .card_fundador__background {
    content: url('escudo__.png');
}
@media (max-width: 991.98px) {
    .card_fundador {
        width: 400px;
        height: 340px;
    }
}
@media (max-width: 575.98px) {
    .card_fundador {
        width: 270px;
        height: 210px;
    }
}