@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500&display=swap');
/*  font-family: 'Poppins', sans-serif;
    font-weight: Cambiar por el ancho descargado preferido;
    font-size: 40px;
    color: rgb(73, 79, 83);*/


.icon_conten {
    color: rgb(151, 151, 151);
    transition: 1s;
    font-size: 60px;
}

.icon_conten:hover {
    color: rgb(0, 0, 0);
}

.icon_conten_txt {
    color: rgb(0, 0, 0);
    font-size: 20px;
}

.iconos_index {
    text-decoration: none;
}

.videotxt_div {
    background-color: transparent;
}

.txt_1 {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 35px;
    color: rgb(73, 79, 83);
}

.txt_2 {
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
    font-size: 35px;
    color: rgb(73, 79, 83);
}

.icon_modal {
    font-size: 40px;
}

.tel_num {
    color: blue;
    text-decoration: underline;
}

.sombra {
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    background-color: white;
}

.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 1s ease-in-out, transform 1s ease-in-out;
}

.fade-in-active {
    opacity: 1;
    transform: translateY(0);
}

/* comportamiento en screen < 576px*/
@media screen and (max-width: 576px) {
    .sombra {
        box-shadow: none;
        background-color: white;
    }

    .icon_conten {
        color: rgb(151, 151, 151);
        transition: 1s;
        font-size: 40px;
    }

    .icon_conten:hover {
        color: rgb(151, 151, 151);
    }

    .icon_conten_txt {
        color: rgb(0, 0, 0);
        font-size: 14px;
    }

    .videotxt_div {
        background-color: mistyrose;
    }

    .txt_1 {
        font-family: 'Poppins', sans-serif;
        font-weight: 400;
        font-size: 20px;
        color: rgb(73, 79, 83);
    }

    .txt_2 {
        font-family: 'Poppins', sans-serif;
        font-weight: 300;
        font-size: 20px;
        color: rgb(73, 79, 83);
    }
}