/*********************************
    IMPORT MAIN STYLE SHEET
**********************************/
@import "./main.css";


/*********************************
              NAV
**********************************/
nav{
    position:fixed;
    background-color:transparent;
}


/*********************************
            HEADER
**********************************/
header{
    height:100%;
    align-items:center;
}

header section{
    height:100%;
}

header .left_section{
    display:flex;
    align-items:center;
    padding-top:50px;
}

header section figure{
    max-height:140vh;
    overflow:hidden;
    pointer-events:none;
    background-color:var(--primary);
}

header section figure img{
    object-fit:cover;
    height:100%;
}

form{
    width:100%;
    display:flex;
    flex-wrap:wrap;
    flex-direction:column;
    gap:1rem;
}

form fieldset{
    padding:0;
    margin:0;
}

fieldset input{
    padding:1rem;
    width:100%;
    background-color:var(--white);
    border:1px solid rgba(1,1,1,0.4);
}

fieldset input:focus{
    border:1px solid rgba(1,1,1,0.8);
}

.checkbox label{
    display:inline-block;
}

.checkbox label input{
    display:inline-block;
    width:15px;
    height:15px;
}

fieldset label{
    margin-bottom:5px;
    display:block;
}

header form .btn{
    padding:1rem;
    height:auto;
    width:100%;
}

@media (max-width:920px){
    header{
        flex-wrap:wrap;
    }

    header .left_section{
        padding-top:80px;
    }

    header .right_section{
        display:none;
    }
}
