body {
    font-family: "Mona Sans", sans-serif !important;
    transition: all ease 1s;
}

button:focus {
    box-shadow: none !important;
    outline: none !important;
}

textarea:focus,
select:focus,
input:focus {
    box-shadow: none !important;
    outline: none !important;
}

.absolute-inline-center {
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
}

.absolute-block-center {
    top: 50% !important;
    transform: translate(-50%, -50%) !important;
}

.cursor-pointer {
    cursor: pointer;
}

.card-footer,
.card-header {
    border-radius: 20px !important;
}

.text-hero {
    font-size: 50px;
    line-height: inherit;
}
.text-hero-2 {
    font-size: 46px;
    line-height: inherit;
}
.text-hero-3 {
    font-size: 40px;
    line-height: inherit;
}
.text-banner {
    font-size: 36px;
    line-height: inherit;
}
.text-banner-2 {
    font-size: 32px;
    line-height: inherit;
}
.text-banner-3 {
    font-size: 28px;
    line-height: inherit;
}

.ellipsis-1 {
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
}

.ellipsis-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
}

.ellipsis-3 {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
}

.ellipsis-4 {
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
}

.collapse-button.collapsed .collapse-icon {
    transform: rotate(0deg);
    transition: all 0.2s ease-in-out;
}

.collapse-icon {
    transform: rotate(180deg);
    transition: all 0.2s ease-in-out;
}

label.required::after{
    content: "*";
    color: red;
    margin-left: 4px;
}

label.error {
    color: var(--bs-form-invalid-color);
    font-size: .75rem;
}

@media only screen and (max-width: 992px) {
    .text-hero {
        font-size: 46px;
        line-height: normal;
    }
    .text-hero-2 {
        font-size: 40px;
        line-height: normal;
    }
    .text-hero-3 {
        font-size: 36px;
        line-height: normal;
    }
    .text-banner {
        font-size: 24px;
        line-height: normal;
    }
}

@media only screen and (max-width: 576px) {
    .text-hero {
        font-size: 42px;
        line-height: normal;
    }
    .text-hero-2 {
        font-size: 32px;
        line-height: normal;
    }
    .text-hero-3 {
        font-size: 30px;
        line-height: normal;
    }
    .text-banner {
        font-size: 28px;
        line-height: normal;
    }
    .text-banner-2 {
        font-size: 24px;
        line-height: normal;
    }
}
