header {
    position: relative !important;
}

main {
    width: 100%;
    height: 100vh;
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;

    img {
        width: 100%;
        height: auto;
        position: absolute;
        filter: brightness(0.8);
    }

    .filter-banner {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: #021318;
        opacity: 0.90;
        pointer-events: none;
    }

    section {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        position: absolute;
        z-index: 999;
        gap: 170px;

        article {
            max-width: 370px;

            h1 {
                color: #FFF;
                font-size: 24px;
                line-height: 30px;

                span {
                    font-weight: 700;
                }
            }

            p {
                color: #FFF;
                font-size: 16px;
                line-height: 20px;
                font-weight: 400;
            }
        }
    }
}

form {
    input {
        width: 100% !important;
        color: #D9D8D6;
        border: 1px solid #D9D8D6;
        border-radius: 10px;
        background-color: transparent;
    }

    textarea {
        color: #D9D8D6;
        border: 1px solid #D9D8D6;
        border-radius: 10px;
        background-color: transparent;
    }

    button {
        color: #FFF;
        background-color: #8AC440;
        font-size: 16px;
        font-weight: 600;
        width: 150px;
        height: 33px;
        border-radius: 10px;
        border: none;
        margin-top: 15px;
    }

    .col-12,
    .col-6 input {
        margin-bottom: 10px;
    }
}

.footer {
    margin-top: 0px !important;
}

@media  (max-width: 775px){
    main{
        section{
            flex-direction: column;
            gap: 20px;

            article{
                padding: 0px 20px;
            }
        }

        img{
            height: 100%;
        }
    }

    form{
        padding: 0px 20px;
    }
}