#contact {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 0 70px;
}

.contact_content_container .footer_contact_list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

.contact_content_container .footer_contact_icon {
    width: 40px;
    height: 40px;
}

.contact_content_container .footer_contact_item {
    margin-bottom: 40px;
}

.contact_header {
    color: #3D3D3D;
    font-weight: 700;
    font-size: 50px;
}

.contact_content {
    margin: 40px 0;

    color: #5A7184;
    font-size: 20px;
    line-height: 32px;
}

.contact_input_container {
    margin-bottom: 30px;

    display: flex;
    flex-direction: column;
    row-gap: 15px;
}

.contact_input_container:last-of-type {
    margin-bottom: 50px;
}

.contact_form label {
    color: #6F7775;
    font-size: 18px;
}

.contact_form input, textarea {
    padding: 10px 15px;

    font-size: 18px;

    border: 1px solid #DDDDDD;
    border-radius: 5px;

    outline-color: #33304C;
}

.contact_form textarea {
    height: 150px;
    line-height: 30px;
    resize: none;
}

.contact_form input[type="submit"] {
    width: 100%;    
    padding: 18px 0;

    color: #fff;    
    font-weight: 600;
    font-size: 20px;

    border-color: transparent;
    background-color: #33304C;

    cursor: pointer;

    transition: all 0.3s ease;
}

.contact_form input[type="submit"]:hover {
    color: #33304C;

    border-color: #33304C;
    background-color: #fff;
}

/* Responsive */
@media (max-width: 950px) {
    .contact_content_container .footer_contact_list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    #contact {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .contact_header {
        font-size: 40px;
        text-align: center;
    }

    .contact_content {
        font-size: 18px;
        line-height: 28px;
    }

    .contact_content_container .footer_contact_list {
        display: none;
    }
}

@media (max-width: 480px) {
    .contact_header {
        font-size: 30px;
    }

    .contact_content {
        font-size: 16px;
        line-height: 24px;
    }

    .contact_form input, textarea {
        font-size: 16px;
    }

    .contact_form input[type="submit"] {
        font-size: 18px;
    }
}