body{
    background: #aaa;
}

#contact{
    padding-top: 8rem;
}

#contact .container{
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #eee4;
    padding: 3rem 0;
}

.contact-left{
    align-self: flex-start;
}

.contact-left h3{
    font-size: 2rem;
    font-weight: bold;
}

.contact-left small{
    font-size: 1rem;
    font-weight: bold;
    width: 300px;
    max-width: 70%;
}


.infos{
    margin-top: 2rem;
}

.infos p{
    display: flex;
    gap: 1rem;
}

.infos p i{
    font-size: 1.2rem;
}

.contact-socials ul{
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-top: 1.5rem;
}

.contact-socials li a{
    background: var(--white);
    border-radius: 50%;
    padding: 0.6rem 0.8rem;
    transition: var(--transition);
}

.contact-socials li a:hover{
    background: #5554;
}

.contact-form input,
.contact-form textarea{
    padding: 1rem;
    width: 100%;
    resize: none;
    margin-bottom: 1rem;
}

.name-input{
    display: flex;
    gap: 1rem;
}

.contact-form textarea{
    height: 7rem;
}