
#contact {
    background-color: var(--white);
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    row-gap: 50px;
    padding-block: calc(2vw + 10px);
}

#contact .desc_contact {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    align-items: center;
    gap: 25px;
    width: 90%;
    max-width: 600px;
}
#contact .desc_contact div {
    width: 200px;
    flex: 0 0 auto;
}
@media screen and (max-width: 500px) {
    #contact .desc_contact div {
        width: 90%;
        text-align: center;
    }
}

#contact .desc_contact .left_text {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    text-align: center;
    line-height: 1.8;
}

#contact .desc_contact .info_contact ul li a {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    gap: 10px;
    line-height: 1.2;
}


#contact .desc_contact .info_contact h4 {
    margin: 15px 0 5px;
    font-size: var(--fs-18);
}

#contact .form_contact {
    --max-width: 600px;
    width: 90%;
    max-width: var(--max-width);
}

#contact .form_contact h3 {
    text-align: center;
}

#contact .form_contact form {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

#contact form input,
#contact form textarea {
    --padding: 10px;
    --border-size: 6px;
    --width: calc(100% - ((var(--padding) + var(--border-size)) *2));
	background: var(--white);
	border: 6px double #CfBfAf;
	font-family: 'Poppins', sans-serif;
	font-weight: 1;
	margin: 15px 0;
    min-width: var(--width);
    max-width: var(--width);
	outline: none;
	padding: 10px;
	border-radius: 2px;
}

#contact form button {
    font-size: var(--fs-16);
	padding: 10px 0;
	background: #D3C2B2;
	border: 6px double var(--white);
	border-radius: 4px;
	color: var(--white);
	outline: none;
	cursor: pointer;
	width: 150px;
	margin: 10px auto 10px;
	transition: .2s;
}