:root {

    --azul-facorsa: #0B2341;
    --azul-oscuro-facorsa: #1C3888;
    --rojo-facorsa: #EB3338;
    --rojo-facorsa-oscuro: #c92d33;
    --gris-facorsa80: #FFFFFF80;
    --gris-facorsa: #ECECEC;
    --gris-celeste: #C9D1DE;
    --gris-claro: #FEFEFE;
    --gris-claro-2: #FAFAFA;
    --gris-oscuro: #333333;
    --just-white: #FFFFFF;
    --whatsapp: #25d366;
    --blueTransparency-facorsa: rgba(10, 14, 20, 0.3);
    --darkblue-facorsa: rgb(24, 36, 67);
    --darkblueTransparency-facorsa: rgba(24, 36, 67, 0.1);
}
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
html {
    font-size: 62.5%;
    font-family: 'Gantari', sans-serif;
    font-optical-sizing: auto;
    font-weight: 300;
    font-style: normal;
    font-variation-settings:
      "slnt" 0;
    scroll-behavior: smooth;
}
li {
    list-style: none;
}
body {
    font-size: 1.7rem;
    background-color: var(--gris-facorsa);
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 auto;
}
h1, h2, h3, h4, h5, h6 {
    font-family: "Khand", sans-serif;
    font-weight: 600;
}   
input,
textarea,
input.btnEnviar {
    font-family: 'Gantari', sans-serif;
    border-radius: 7px;
} 
/* WHATSAPP */
.float {
    position:fixed;
	width:70px;
	height:70px;
	bottom:40px;
	right:40px;
	background-color: var(--azul-oscuro-facorsa);
	color: var(--just-white);
	border-radius:50px;
	text-align:center;
  	font-size:48px;
    box-shadow: 2px 2px 3px #222;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
  	z-index:100;
    cursor: pointer;
}
.float:hover {
    background-color: var(--rojo-facorsa);
}
.my-float {
    margin-top: 0;
}
/* WHATSAPP */