header {
    padding: 100px 0px;
    position: relative;
}
header::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    background: var(--color-primary);
    animation: right 0.5s ease;
}
header::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 20px;
    height: 100%;
    background: linear-gradient(180deg, rgba(196, 196, 196, 0) 0%, #004A84 100%);
    animation: up 0.5s ease;
}
header h1 {
    font-size: 20px;
}

header h2 {
    color: var(--color-primary);
}

#form_product {
    background: #FFFFFF;
    box-shadow: 0px 4px 30px rgb(0 0 0 / 25%);
    border-radius: 10px;
    padding: 40px 15px;
    text-align: center;
}

header .col-lg-8 {
    display: flex;
    align-items: center;
    padding: 0;
    transform: translateX(-10%);
}
header img{
    object-fit: none;
}
header a{
    position: fixed;
    bottom: 0;
    width: 100%;
    height: 60px;
    background: var(--color-secondary);
    display: none;
    justify-content: center;
    align-items: center;
    color: #fff;
    z-index: 10;
}
@media(max-width: 991px){
    header::before {
        bottom: 0;
        width: 100%;
        height: 20%;
        top: auto;
    }
    header ul {
        padding-left: 15px;
    }
    header .col-lg-8 {
        display: flex;
        align-items: center;
        flex-direction: column;
        transform: translateX(0);
        padding-right: 15px;
        padding-left: 15px;
    }
    header::after {
        content: none
    }
    #form_product {
        margin-top: 2rem;
    }
    header a{
        display: flex;
    }
    #wpp{
        bottom: 65px;
    }
}

@keyframes up{
    from{
        height: 0;
    }
    to{
        height: 100%;
    }
}
@keyframes right{
    from{
        width: 0;
    }
    to{
        width: 40%;
    }
}