/* =========================
   CONTACT PAGE
========================= */

.contact-intro {
    max-width: 600px;
    margin-bottom: 60px;
}

/* FORM */
.contact-form {
    max-width: 500px;
}

.form-group {
    position: relative;
    margin-bottom: 30px;
}

/* Inputs */
.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 10px;
    background: transparent;
    border: none;
    border-bottom: 1px solid #333;
    color: #fff;
    outline: none;
}

/* Labels */
.form-group label {
    position: absolute;
    top: 12px;
    left: 10px;
    color: #777;
    font-size: 14px;
    pointer-events: none;
    transition: all 0.3s ease;
}

/* Floating label */
.form-group input:focus+label,
.form-group input:not(:placeholder-shown)+label,
.form-group textarea:focus+label,
.form-group textarea:not(:placeholder-shown)+label {
    top: -10px;
    font-size: 12px;
    color: #C8A96A;
}

/* SELECT FIX */
.form-group select {
    color: #aaa;
}

/* INFO */
.contact-info h3 {
    margin-bottom: 20px;
}

.contact-info p {
    margin-bottom: 10px;
}

.contact-note {
    margin-top: 40px;
    padding: 20px;
    border: 1px solid #1a1a1a;
    background: rgba(255, 255, 255, 0.02);
}

.contact-hero {
    height: 35vh;
    background: linear-gradient(rgba(13, 13, 13, 0.7), rgba(13, 13, 13, 0.9)),
        url('../../img/profile/wef_panel.jpg') center/cover no-repeat !important;
}