
/*---------------------------------------/
#Contacts
/---------------------------------------*/

.contact {
    padding: 0px 80px 20px 80px;
    
}

.contact .contact-info .info {
    display: flex;
    gap: 10px;
    margin-top: 10px;
    align-items: center;
    -webkit-column-gap: 10px;
    width: 100%;
}

.contact .contact-info .info div {
    display: flex;
    flex-direction: column;
}

.contact .contact-info .info div a {
    color: #000;
    text-decoration: none;
}

.contact .contact-info .info i {
    padding: 12px 15px;
    color: #3498db;
    border-radius: 50%;
    background: #ffffff;
    box-shadow: inset 13px 13px 26px #e3e3e3, inset -13px -13px 26px #ffffff;
}

.contact .contact-container {
    display: flex;
    gap: 40px;
    -webkit-column-gap: 40px;
    margin-top: 40px;
}

.contact input,
textarea {
    
    background-color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    margin-top: 5px;
    margin-bottom: 6px;
    width: 100%;
    border: none;
    outline: none;
    box-shadow: 0px 1px 10px #dededee6;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;

}

.contact .contact-input {
    width: 100%;
}

.contact .contact-input div {
    display: flex;
    gap: 10px;
    -webkit-column-gap: 10px;
}

.contact .contact-input button {
    font-family: "Poppins", sans-serif;
    border: none;
    outline: none;
    background: unset;
    width: fit-content;
    color: #fff;
    margin: auto;
    margin-top: 10px;
    padding: 10px 15px;
    border-radius: 30px;
    background-color:  #3c8cc9;
    transition-delay: 0.4s;
    transition: 0.8s ease-in-out;
    cursor: pointer;
}

.contact .contact-input button:hover {
    opacity: 0.8;
}

/*-----------------------------------/
#Media query contact
/-----------------------------------*/
@media screen and (max-width: 980px){
    .contact {
        padding-left: 30px;
        padding-right: 30px;
    }
}

@media screen and (max-width: 780px){
    .contact .contact-container{
        display: flex;
        flex-direction: column;
    }
}
@media screen and (max-width: 512px){
    .contact .contact-input div{
        display: flex;
        gap: 0;
        -webkit-column-gap: 0px;

        flex-direction: column;
    }
}
@media screen and (max-width: 410px){
    .contact {
        padding-left: 15px;
        padding-right: 15px;
    }
}

@media screen and (max-width: 450px){
    .contact .contact-info .info .email {
        word-break: break-word;
    }

}