* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #000000;
    height: 100vh;
    font-family: 'Jost', sans-serif;
}

section {
    width: 100%;
}

::placeholder {
    /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: #bc9313;
    opacity: 1; /* Firefox */
}

:-ms-input-placeholder {
    /* Internet Explorer 10-11 */
    color: #bc9313;
}

::-ms-input-placeholder {
    /* Microsoft Edge */
    color: #bc9313;
}

div.container {
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

h1 {
    color: #bc9313;
}


form {
    text-align: center;
    padding: 30px;
}

label {
    display: none;
    padding-top: 30px;
    text-align: center;
}

label.is-visible {
    display: block;
}

label.label-heading p {
    font-size: 21px;
    color: #bc9313;
}


label .label-text {
    color: #bc9313;
    cursor: text;
    font-size: 15px;
    line-height: 20px;
    text-transform: uppercase;
    -moz-transform: translateY(-34px);
    -ms-transform: translateY(-34px);
    -webkit-transform: translateY(-34px);
    transform: translateY(-34px);
    transition: all 0.3s;
}


label input {
    background-color: transparent;
    border: 0;
    border-bottom: 2px solid #bc9313;
    color: #bc9313;
    font-size: 25px;
    outline: 0;
    padding: 5px 20px;
    text-align: center;
    transition: all 0.3s;
    width: 200px;
}



label input:focus {
    max-width: 100%;
    width: 400px;
}

label input:focus + .label-text {
    color: #bc9313;
    font-size: 13px;
    margin-top: 10px;
    -moz-transform: translateY(-74px);
    -ms-transform: translateY(-74px);
    -webkit-transform: translateY(-74px);
    transform: translateY(-74px);
}



label input:valid + .label-text {
    font-size: 13px;
    -moz-transform: translateY(-74px);
    -ms-transform: translateY(-74px);
    -webkit-transform: translateY(-74px);
    transform: translateY(-74px);
}

input:-internal-autofill-selected {
    background-color: transparent;
}


button {
    background: transparent;
    color: #bc9313;
    border: 2px solid #bc9313;
    font-size: 15px;
    padding: 20px 75px;
    text-transform: uppercase;
    cursor: pointer;
    display: inline-block;
    margin: 15px 30px;
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    transition: all 0.4s;
}

button:hover,
button:focus {
    background-color: #bc9313;
    color: #333333;
}

select {
    width: 240px;
    font-size: 18px;
    min-height: 40px;
    padding: 5px 20px;
    background-color: transparent;
    color: #bc9313;
}

button:hover,
button:focus {
    background-color: #151515;
    color: #bc9313;
    outline: none;
}

select.multiple {
    min-height: 220px;
}

select.multiple option {
    margin-top: 4%;
}

#validate {
    color: #333333;
    font-weight: 700;
}

i {
    color: #bc9313;
    cursor: pointer;
}

.fa-arrow-up:before {
    position: absolute;
    bottom: 22%;
    right: 10%;
}

.fa-arrow-down:before {
    position: absolute;
    bottom: 22%;
    right: 7%;
}

select[name='availability-days'] {
    min-height: 100px;
}

label.label-heading {
    display: block;
    padding: 5px 20px;
    font-size: 30px;
    margin: 3%;
    color: #bc9313;
    text-align: center;
}

.nav-btn-div {
    margin-top: 2rem;
    color: #bc9313;
    font-size: 0.8em;
}

.nav-button {
    background: transparent;
    color: #bc9313;
    border: 2px solid #bc9313;
    font-size: 1em;
    padding: 5px 25px;
    text-transform: uppercase;
    cursor: pointer;
    display: inline-block;
    margin: 0;
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    transition: all 0.4s;
}

@media (max-width: 1024px) {
    label.label-heading {
        font-size: 35px;
    }
}

@media (max-width: 670px) {
    section {
        width: 100%;
        position: absolute;
        top: 30%;
    }

    label.label-heading {
        font-size: 18px;
        margin-bottom: 11%;
    }

    h1 {
        padding: 30px;
        text-align: center;
        position: absolute;
        top: 15%;
    }

    label input:focus {
        width: 250px;
    }

    .fa-arrow-up:before {
        bottom: 16%;
        right: 16%;
    }

    .fa-arrow-down:before {
        position: absolute;
        bottom: 16%;
        right: 7%;
    }

    .select.multiple {
        min-height: 180px;
    }
}

@supports (-webkit-touch-callout: none) {
    /*  */
}
