/*@import "tailwindcss";*/
@import "./font.css";
@import "./../bootstrap/css/bootstrap.min.css";
@source '../../vendor/laravel/framework/src/Illuminate/Pagination/resources/views/*.blade.php';
@source '../../storage/framework/views/*.php';
@source '../**/*.blade.php';
@source '../**/*.js';

:root {
    --hf-background-color: #f2f7f8;
    --hf-primary-color: #388E3C;

    --hf-primary-50: #F0F5EC;
    --hf-primary-700: #15803D;

    --hf-neutral-700: #374151;
}

html,
body {
    background-color: var(--hf-background-color);
    font-family: "Lato";
    padding: 0px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Montserrat";
    font-weight: bold;
}

* {
    font-family: "Lato", ui-sans-serif, system-ui, sans-serif;
}
.text {
    font-size: 1.5rem;
}

.text-secondary {
    color: var(--hf-neutral-700);
}



.btn {
    min-width: 100px;
    padding-left: 1rem;
    padding-right: 1rem;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    cursor: pointer;
    text-align: center;
    border-radius: 0px;
}

.btn-lg {
    font-size: 16px;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    padding-top: .75rem;
    padding-bottom: .75rem;
}

.btn-primary {
    background-color: var(--hf-primary-color);
    border:  solid 1px var(--hf-primary-color);
    color: white;
}



.btn-primary:hover {
    background-color: var(--hf-primary-700);
    border-color: var(--hf-primary-700);
    color: white;
}

.btn-secondary {
    background-color: white;
    border:  solid 1px var(--hf-primary-700);
    color: var(--hf-primary-color);
}

.btn-secondary:hover {
    background-color: var(--hf-primary-50);
    color: var(--hf-primary-700);
}



/* Animaciones de scroll */
.slide-in-left {
    opacity: 0;
    transform: translateX(-100px);
    transition: opacity 1s ease-out, transform 1s ease-out;
}

.slide-in-left.active {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(100px);
    transition: opacity 1s ease-out, transform 1s ease-out;
}

.slide-in-right.active {
    opacity: 1;
    transform: translateX(0);
}

.fade-in-up {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 1s ease-out, transform 1s ease-out;
}

.fade-in-up.active {
    opacity: 1;
    transform: translateY(0);
}
.text-body-default {
    font-size: 1.3rem; /* 18px */
}

.text-df {
    font-size: 1.3rem; /* 18px */
}
.text-primary {
    color: var(--hf-primary-color) !important;
}
.text-bold {
    font-weight: bold;
}
.text-rq-lg {
    font-size: 2rem; /* 18px */
}