.contact {
    min-height: 600px;
    max-height: fit-content;
    background-image: url('../../images/city.png');
}
.contact:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(68, 67, 67, 0.845);
}
.contact .container header {
    text-transform: uppercase;
    font-size: 40px;
}
.contact .container p {
    width: 40%;
    margin: 20px auto;
    line-height: 1.4;
    font-size: 18px;
}
.contact .container form {
    text-align: center;
}

.contact .container form > div:first-child {
    flex-wrap: wrap;
    justify-content: center;
}
.contact .container form > div:first-child input,
.contact .container form textarea {
    border-radius: 14px;
    border: none;
}
.contact .container form > div:first-child input {
    width: 30%;
    margin: 10px;
    height: 40px;
    padding-left: 10px;
    outline: none;
}
.contact .container form textarea {
    width: 61.5%;
    resize: none;
    height: 200px;
    outline: none;
}
.contact .container > div:last-child {
    height: 40px;
    width: 60%;
    margin: 20px auto 0;
}
.contact .container > div:last-child > span {
    border: 1px solid white;
    padding: 10px 25px;
    border-radius: 10px;
    transition: .2s;
}
.contact .container > div:last-child > span:hover {
    background-color: var(--main-color);
}
.contact .container > div:last-child .social-icon span {
    display: inline-block;
    width: 40px;
    height: 40px;
    font-size: 25px;
    border-radius: 50%;
    overflow: hidden;
    align-content: center;
}
.contact .container > div:last-child .social-icon span:not(:last-of-type) {
    margin-right: 10px;
}
.contact .container > div:last-child .social-icon span:first-child {
    background-color: #1877f2;
}
.contact .container > div:last-child .social-icon span:nth-child(2) {
    background-color: #1da1f2;
}
.contact .container > div:last-child .social-icon span:last-child {
    background-color: #0a66c2;
}

/* Start Responsive */
@media (max-width: 767px) {
    .contact .container p {
        width: 90%;
    }
    .contact .container form > div:first-child input,
    .contact .container form textarea {
        width: 100%;
        margin: 0 0 20px;
    }
    .contact .container > div:last-child {
        width: 100%;
    }
}