.hero {
    width: 100%;
    min-height: 100vh;
    position: relative;
    padding: 120px 0 60px;
    display: flex;
    align-items: center;
    margin-top: 0;
    background: #004b9c17;
    overflow: hidden;
}

.hero img {
    position: absolute;
    inset: 100px 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero .container,
.hero .container-fluid {
    z-index: 3;
    position: relative;
}

.hero h1 {
    margin: 0;
    font-size: 3rem;
    font-weight: 700;
}

.hero blockquote {
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    padding-left: 20px;
    border-left: 2px solid var(--accent-color);
    margin: 40px 0;
}

.hero .btn-get-started {
    color: var(--contrast-color);
    background: var(--accent-color);
    font-family: var(--heading-font);
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    transition: 0.5s;
}

.hero .btn-get-started:hover {
    background: color-mix(in srgb, var(--accent-color) 90%, white 15%);
}

.hero .btn-watch-video {
    font-size: 16px;
    transition: 0.5s;
    margin-left: 25px;
    color: var(--default-color);
    font-weight: 600;
}

.hero .btn-watch-video i {
    color: color-mix(in srgb, var(--default-color), transparent 50%);
    font-size: 32px;
    transition: 0.3s;
    line-height: 0;
    margin-right: 8px;
}

.hero .btn-watch-video:hover {
    color: var(--default-color);
}

.hero .btn-watch-video:hover i {
    color: var(--default-color);
}

.hero .form-floating{
    width: calc(100% - 42px);
}
/*
.header-area{
    background: none !important;
    box-shadow: none !important;
}*/

.hero form li{
    color: #dc3545 !important;
}

.hero p{
    font-size: 16px;
}

.box-check-email{
    padding: 1rem 1.75rem;
    background: white;
    border-radius: .25em;
    box-shadow: 0 4px 14px rgba(67, 97, 238, 0.4);
}

@media (max-width: 640px) {
    .hero h1 {
        font-size: 28px;
        line-height: 36px;
    }

    .hero .btn-get-started,
    .hero .btn-watch-video {
        font-size: 13px;
    }
}

