* {
    font-family: "Poppins", sans-serif;
}

.logo {
    width: 280px;
}

.hero-main {
    position: relative;
    background-image: url("/assets/images/line-bg.png");
    background-color: #041C66;
    box-shadow: inset 0 -180px 70px -60px rgba(255,255,255,0.50);
}

.hero {
    background-color: #eeeeee;
}


.hero-main::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(4, 28, 102, 0.6);
    z-index: 1;
}


.hero-main > * {
    position: relative;
    z-index: 2;
}


.number {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 24px;
    height: 24px;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
}

.number.active {
    background-color: #041C66;
    color: white;
}

.number.active-2 {
    background-color: white;
    color: #041C66;
}

.title h1 {
    font-size: 48px;
}

.form-control {
    border: 1px solid #041C66 !important;
    font-size: 16px;
}

.btn-primary {
    background-color: #041C66 !important;
    color: white !important;
    border: unset !important;
    font-weight: bold !important;
}

.fs-14 {
    font-size: 14px;
}

.text-sky {
    color: #041C66;
}

.text-sky-dark {
    color: #337AB7
}

h2 {
    font-size: 40px;
    font-weight: 900;
}

.text-italic {
    font-style: italic;
}

.icon {
    height: 95px;
}


.testimonial {
    background-color: #f6fafa;
}

.avatar {
    width: 80px;
}


.footer-card {
    background-color: #041C66;
    border-radius: 30px 30px 0 0;
}

.f-logo {
    min-width: 280px;
    width: 280px;
}

.form-error-large {
    color: red;
    font-size: 1.5rem;
    text-align: center;
    width: 100%
}

.form-error {
    color: darkred;
    font-size: 1rem;
}


@media screen and (max-width:767px) {
    .header-flex {
        flex-direction: column;
        gap: 20px;
    }

    .title h1 {
        font-size: 36px;
    }

    h2 {
        font-size: 30px;
        font-weight: 900;
    }

    .footer-card.p-5 {
        padding: 20px !important;
    }

    .footer-card .d-flex.justify-content-between.align-items-start.gap-5 {
        flex-direction: column;
    }

    .footer .container-fluid.px-4 {
        padding: 0 10px !important;
    }

    .f-logo,
    .logo {
        min-width: 200px;
        width: 200px;
        display: block;
        margin: auto;
    }

    .lead {
        font-size: 1rem;
        font-weight: 300;
    }
}