
.nav-menu li:nth-child(4) {
    text-decoration: underline;
}

#chat-girl {
    position: absolute;
    top: 0;
    display: flex;
    object-fit: cover;
    width: 100%;
    opacity: 0.5;
    z-index: -1;
}

.contact-us {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 200px 1fr;
    grid-template-areas:
    'contact'
    'form';
    height: 100%;
    width: 100%;
}

.contact-us h1 {
    grid-area: contact;
    display: flex;
    height: 200px;
    width: 100%;
    justify-content: center;
    position: relative;
    top: 160px;
    font-size: 2rem;
}

#glow-box {
    grid-area: form;
    display: flex;
    height: 100%;
    width: 100%;
    padding-left: 30px;
    padding-right: 30px;
}

.contact-us-box {
    grid-area: form;
    display: flex;
    width: 100%;
    padding: 40px;
}

.faq-text {
    display: flex;
    flex-direction: column;
    width: 50%;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 16px;
    padding: 20px;
}

.faq-text a {
    text-decoration: underline;
}

.contact-form {
    position: relative;
    display: grid;
    height: 100%;
    width: 100%;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr 1fr;
    padding: 40px 60px 40px 0;
    grid-template-areas:
    'your-name    msg'
    'email        msg'
    'phone        msg';
}

#name-form {
    grid-area: your-name;
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 8px;
}

#email-form {
    grid-area: email;
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 8px;
}

#phone-form {
    grid-area: phone;
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 8px;
}

#msg-box-form {
    grid-area: msg;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 8px;
}

#msg-box {
    height: 80%;
    width: 100%;
    border-radius: 24px;
    padding-left: 12px;
    background-color: rgba(255, 255, 255, 0.5);
}

#name,
#email,
#phone-number {
    border-radius: 24px;
    height: 40%;
    background-color: rgba(255, 255, 255, 0.5);
    width: 80%;
    padding-left: 12px;
}

#name,
#email,
#phone-number,
#msg-box:focus {
    outline: none;
    border: none;
}

.button-container {
    display: flex;
    width: 100%;
    height: 100px;
    justify-content: center;
    align-items: center;
}

.location {
    display: flex;
    gap: 4px;
    padding: 40px;
}

.location p, i{
    font-size: 1.5rem;
}

#submit {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: transparent;
    border: 2px solid white;
    border-radius: 50px;
    height: 40px;
    width: 140px;
    margin-top: 16px;
    cursor: pointer;
    transition: 100ms;
}

#submit:hover {
    border: 2px solid white;
    box-shadow: 0 0 15px aqua, inset 0 0 15px aqua;
}

@media (min-width: 786px) {

    .nav-menu li:nth-child(4) {
        text-decoration: none;
        background: url("assets/box-active.png") center/cover no-repeat;
    }
}
