@import url('https://fonts.googleapis.com/css2?family=Abril+Fatface&display=swap');

:root {
    --red: #9A1920;
    --yellow: #F3B237;
    --black: #1C1C1C;
    --wpforms-button-background-color: #9A1920;
    --wpforms-button-border-color: #9A1920;
    --wpforms-page-break-color: #9A1920;
}

.abril {
    font-family: "Abril Fatface", serif;
}

#mobile-menu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

#mobile-menu.open {
    max-height: 500px;
}

.header-link {
    position: relative;
    display: inline-block;
}

.header-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: -8px;
    width: calc(100% + 16px);
    height: 25px;
    z-index: -1;
    background-image: url('/static/subrayado.svg');
    background-repeat: no-repeat;
    background-size: 100% 100%;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.header-link:hover::after,
.header-link.current::after {
    opacity: 1;
}


@media (max-width: 1023px) {

    .header-link::after,
    .header-link.current::after {
        display: none;
    }
}

body {
    overflow-x: hidden;
}

.badge span {
    color: var(--red);
}

.badge2 span {
    color: var(--red) !important;
}

.badge3 span {
    color: var(--yellow) !important;
}

.wpforms-field-large::placeholder,
textarea::placeholder {
    color: #eca012 !important;
}

.wpforms-field-large,
textarea {
    background-color: #FCD488 !important;
}