
*{
    margin: 0;
    padding: 0;
    font-family: 'Montserrat';
}

input::placeholder {
    font-family: 'Montserrat';
    font-style: italic;
}

.btn-green{
    background-color: green;
    color: white;
}

.btn-green:hover{
    background-color: rgb(0, 99, 0);
    color: white;
}
.activar{
    border-bottom: 2px solid transparent;
}
.activar:hover{
    border-bottom: 2px solid white;
}

.step-heading {
    height: 33px;
    padding-bottom: 50px;
    cursor: pointer;
}
.step:last-child .step-heading {
    padding-bottom: 0;
}
.step-heading > a:hover {
    text-decoration: none;
}
.step-heading .num {
    width: 32px;
    height: 32px;
}
.steps .step .line {
    border-left: 1px solid green;
    left: 16px;
    bottom: 0px;
    top: 32px;
}

.text-green{
    color: green;
}

.bg-green{
    background-color: green;
}

.btn-flotante {
	font-size: 16px; /* Cambiar el tamaño de la tipografia */
	text-transform: uppercase; /* Texto en mayusculas */
	font-weight: bold; /* Fuente en negrita o bold */
	color: #ffffff; /* Color del texto */
	border-radius: 5px; /* Borde del boton */
	letter-spacing: 2px; /* Espacio entre letras */
	background-color: green; /* Color de fondo */
	padding: 18px 30px; /* Relleno del boton */
	position: fixed;
	bottom: 40px;
	right: 40px;
	transition: all 300ms ease 0ms;
	box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.1);
	z-index: 1000;
}
.btn-flotante:hover {
	background-color: rgb(1, 83, 1); /* Color de fondo al pasar el cursor */
	box-shadow: 0px 15px 20px rgba(0, 0, 0, 0.3);
    color: aliceblue;
	transform: translateY(-7px);
}
@media only screen and (max-width: 600px) {
 	.btn-flotante {
        display: none;
		font-size: 14px;
		padding: 12px 20px;
		top: 30px;
        bottom: 92vh;
		right: 70px;
	}
}


.hover_cards:hover{
    background-color: rgba(0, 165, 27, 0.685);
    font-weight: bold;
    color: #ffffff;
    cursor: pointer;
}