.contact_form {
    width: 85%;
    background-color: #fff;
    margin: -90px auto 0;
    padding: 35px 10% 80px;
    box-sizing: border-box;
}

.contact_form h2 {
    text-align: center;
    color: var(--second-color);
    font-weight: 500;
    font-size: 36px;
    margin-bottom: 36px;
}

.contact_form h2 strong {
    font-weight: 800;
}

.contact_form_boxes {
    display: flex;
    justify-content: space-between;
}

.contact_form_fields {
    width: 48%;
}

.contact_form input,
.contact_form textarea {
    color: #3C3C3A;
    border: 1px solid #3C3C3A;
    width: 100%;
    padding: 18px;
    box-sizing: border-box;
    margin-bottom: 35px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 16px;
}

.contact_form textarea {
    height: 241px;
    margin-bottom: 15px;
}

.contact_form input::placeholder,
.contact_form textarea::placeholder {
    color: #3C3C3A;
    opacity: 1;
    /* Firefox */
}

.contact_form button {
    color: #fff;
    background-color: var(--second-color);
    font-weight: 600;
    font-size: 16px;
    padding: 20px 30px;
    transition: all 0.3s ease-in-out;
    cursor: pointer;
    float: right;
    border: none;
}

.contact_form button:hover {
    background-color: var(--primary-color);
    color: #fff;
}


.social_contacts {
    display: flex;
    padding: 50px 0;
}


.social_contacts h4 {
    text-align: center;
    color: var(--second-color);
    font-weight: 500;
    font-size: 24px;
    margin-bottom: 35px;
}

.social_contacts h4 strong {
    font-weight: 800;
}

.social_network {
    width: 65%;
}

.social_network ul {
    display: flex;
}

.social_network ul li {
    margin-right: calc(25% - 130px);
}

.social_network ul li a {
    display: flex;
    align-items: center;
    color: var(--second-color);
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
}

.social_network ul li a:hover {
    color: #fff;
}

.social_network ul li a:hover .social_logo {
    filter: invert(100%) sepia(100%) saturate(0%) hue-rotate(303deg) brightness(103%) contrast(101%);
}

.social_network .social_logo {
    width: 52px;
    margin-right: 7px;
    transition: all 0.3s ease-in-out;
}

.download_apps {
    width: 378px;
}

.download_apps_buttons {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.download_apps_buttons img {
    height: 22px;
}

.download_apps_buttons a {
    border: 2px solid var(--second-color);
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45%;
    transition: all 0.3s ease-in-out;
}

.download_apps_buttons a:hover {
    background-color: #fff;
}

.btn-whatsapp {
    display: block;
    width: 438px;
    margin: -55px auto 0;
    transition: all 0.3s ease-in-out;
}

.btn-whatsapp:hover {
    transform: scale(1.05);
}

@media (max-width: 992px) {
    .social_contacts {
        flex-direction: column;
        align-items: center;
    }

    .social_network {
        margin-bottom: 50px;
        width: 90%;
    }
}

@media (max-width: 768px) {
    .contact_form_boxes{
        flex-direction: column;
    }
    .contact_form_fields {
        width: 98%;
    }
    .btn-whatsapp {
        width: 70%;
        margin: -55px auto 0;        
    }
}

@media (max-width: 576px) {
    .contact_form {
        width: 100%;
        padding: 35px 5% 80px;
    }

    .social_network ul {
        flex-wrap: wrap;
        align-items: center;
        justify-content: space-around;
    }

    .social_network ul li {
        width: 35%;
        margin: 8px 0;
    }
    
}

@media (max-width: 425px) {
    .download_apps{
        width: 100%;
    }
    .download_apps_buttons{
        flex-direction: column;
    }
    .download_apps_buttons a {
        width: 85%;
        margin-bottom: 20px;
    }
    .contact_form {
        padding: 35px 5% 100px;
    }
    .btn-whatsapp {
        width: 85%;
        margin: -85px auto 0;
    }

    .contacts .container {
        padding: 0 20px;
    }
}