#section_contact{
    width: 100%;
    max-width: 120em;
    margin: 0 auto 10vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 10vh 0;
}


#section_contact .title_container{
    width: 100%;
    max-width: 60em;
    margin: auto;
    margin-bottom: 3em;
    padding: 1em;
    text-align: center;
}

#section_contact .title_container .title{
    font-size: min(3em, 7vw);
    font-weight: 100;
}



#section_contact .contact_form{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1em 2em;
}




#section_contact .contact_form .alert_success{
    width: 100%;
    padding: 0.5em;
    margin-bottom: 3em;
    color: green;
    fill: green;
    text-align: center;
    font-size: 1.25em;
    font-weight: 100;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 0.5em;
    animation: animateSuccessMessage 0.5s ease-in-out forwards;
}

@keyframes animateSuccessMessage {
    from{
        opacity: 0;
        transform: translateX(-20vw);
    }
    to{
        opacity: 1;
        transform: translateX(0);
    }
}

#section_contact .contact_form .alert_success .app_icon{
    min-width: 1.5em;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    background: green;
    fill: white;
    padding: 0.35em;
}













#section_contact .contact_form .data_container{
    width: 100%;
    max-width: 80em;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3em 2em;
}





#section_contact .contact_form .data_container .contact_info_container{
    flex-grow: 4;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 1.5em;
    align-self: stretch;
}


#section_contact .contact_form .data_container .contact_info_container .form_group{
    align-self: stretch;
    width: 100%;
}








#section_contact .contact_form .data_container .message_container{
    flex-grow: 6;
    align-self: stretch;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
}


#section_contact .contact_form .data_container .message_container textarea{
    width: 100%;
    max-width: 100%;
    min-width: 20em;
    flex-grow: 1;
    min-height: 15em;
    resize: none;
}






#section_contact .contact_form .btn_submit{
    width: 100%;
    background: #464646;
    color: white;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding: 0.5em 1em;
    margin-top: 3em;
    border-radius: 0.25em;
    font-size: 1em;
    box-shadow: 0 2px 5px -2px #434343;
}


#section_contact .contact_form .btn_submit:hover{
    background: black;
}


#section_contact .contact_form .btn_submit .loader{
    width: 1.5em;
    aspect-ratio: 1/1;
    border-radius: 50%;
    border: 0.2em solid white;
    background: transparent;
    clip-path: polygon(0 0, 10% 0, 50% 50%, 90% 0, 100% 0, 100% 100%, 0 100%, 0 0);
    animation: animateButtonLoader 1s linear infinite;
}

@keyframes animateButtonLoader {
    from{
        transform: rotate(0deg);
    }
    to{
        transform: rotate(360deg);
    }
}
















@media screen and (min-width: 900px){

    #section_contact .contact_form .data_container{
        flex-direction: row;
    }


    #section_contact .contact_form .btn_submit{
        width: 15em;
    }

}
