form {
    padding-top: 20px;
    width: 350px;
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
    position: relative;
}

form div {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    gap: 10px;
    background: rgba(141, 14, 57, 0.103);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    padding: 5px;
}

form div:hover {
    border: 1px solid rgba(255, 255, 255, 0.2);
}

form img {
    height: 25px;
}

form input {
    width: 100%;
    background: transparent;
    border: none;
    outline: none;
    color: white;
}



form textarea {
    width: 100%;
    background: rgba(141, 14, 57, 0.103);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    padding: 5px;
    height: 80px;
    color: white;
    outline: none;
}

form textarea:hover {
    border: 1px solid rgba(255, 255, 255, 0.2);
}

form button {
    padding: 5px;
    text-transform: uppercase;
    font-size: 18px;
    background: linear-gradient(33deg, rgba(201, 64, 10, 0.678), rgb(194, 13, 43) 80%);
    border: none;
    color: white;
    border-radius: 3px;
    transition: .3s ease;
}

form button:hover {
    transform: translateY(-2px);
    box-shadow: 0px 0px 20px rgb(194, 13, 43);
}

.hide{
    display: none;
}

.nameError,
.emailError,
.numberError{
    color: red;
    font-size: 10px;
}
.section7 {
    width: 100%;
    position: relative;
    margin-top: 40px;
    padding: 40px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 30px;
}

.section7::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.568), transparent);
}

.section7::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.568), transparent);
}

.address {
    color: rgb(184, 184, 184);
    font-size: 14px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
}

.address h1,
.map h1,
.follow h1 {
    color: white;
    font-weight: 400;
    font-size: 20px;
}

.address img {
    height: 20px;
}

.address p {
    display: flex;
    align-items: flex-start;
    gap: 5px;
}

.vericaldivider {
    height: 200px;
    width: 1px;
    background: linear-gradient(to bottom, transparent, white, transparent);
}

.map {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.map iframe {
    height: 134px;
    width: 270px;
    border-radius: 5px;
    filter: invert();
}

.follow {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.follow p {
    color: rgb(180, 180, 180);
    font-size: 13px;
}

.socialLinks {
    display: flex;
    align-items: center;
    gap: 20px;
}

.socialLinks i {
    color: white;
    font-size: 20px;
    transition: all .3s ease;
}

.fa-instagram:hover {
    color: rgb(156, 22, 22);
    text-shadow: 0px 0px 10px rgba(75, 6, 18, 0.692);
}

.fa-facebook:hover {
    color: rgb(22, 58, 156);
    text-shadow: 0px 0px 10px rgba(6, 36, 75, 0.692);
}

.fa-twitter:hover {
    color: rgb(22, 114, 156);
    text-shadow: 0px 0px 10px rgba(6, 55, 75, 0.692);
}

.fa-whatsapp:hover {
    color: rgb(22, 156, 44);
    text-shadow: 0px 0px 10px rgba(6, 75, 23, 0.692);
}


@media(max-width:850px) {
    .section7 {
        flex-direction: column;
        align-items: center;
    }

    .vericaldivider {
        width: 100%;
        height: 1px;
        background: linear-gradient(to right, transparent, white, transparent);
    }
}

@media (max-width: 400px) {
    form {
        width: 300px;
    }
}