@import 'https://fonts.googleapis.com/css?family=Rubik+One';
@import 'https://fonts.googleapis.com/css?family=Dosis';

.bloqueTermo{
    background: linear-gradient(to left, rgb(182, 182, 182), rgb(233, 233, 233),rgb(138, 138, 138));
    width: 95%;
    margin: auto;
    margin-top: 10px;
    margin-bottom: 10px;
    padding: 10px 20px 20px 20px;
    border-radius: 20px;
    border: 1px solid rgb(59,59,59);
    box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.3);
}

.tituloTermo{
    color:rgb(67, 67, 67);
    font-size: 35px;
    width: 30%;
    margin: auto;
    text-align: center;
    margin-bottom: 10px;
}

.hijoTermo{
    display:flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
}

.txtTermo1{
    background-color: rgb(230, 12, 38);
    width: 27%;
    color:white;
    font-size: 15px;
    padding: 10px 20px 10px 20px;
    box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.3);
}

.txtTermo2{
    background-color: rgb(230, 12, 38);
    color:white;
    width: 20%;
    padding: 10px 20px 10px 20px;
    box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.3);
}

.imgTermo1{
    width: 350px;
    box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    transition: all 300ms;
}
.imgTermo1:hover{
    transform: scale(1.2);
    box-shadow: none;
}

.imgTermo2{
    width: 250px;
    box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    transition: all 300ms;
}
.imgTermo2:hover{
    transform: scale(1.2);
    box-shadow: none;
}

@media only screen and (max-width : 600px) {
    .hijoTermo{
        flex-direction: column;
    }
    .tituloTermo{
        width: 90%;
    }
    .txtTermo1{
        width: 100%;
        margin-bottom: 10px;
    }
    .txtTermo2{
        width: 95%;
        margin-bottom: 10px;
    }
    .imgTermo1{
        margin-bottom: 10px;
        width: 90%;
    }
    .imgTermo2{
        margin-bottom: 10px;
        width: 90%;
    }
}    