.contact_section {
    padding: 10%;
    background: #cdcdcd;
}

.contact_section .contact_contain {
    display: grid;
    grid-template-columns: repeat(2, 50%);
}

.contact_section h1 {
    color: #d50606;
    font-size: 50px;
}

.contact_section ul {
    list-style: none;
    margin: 10px 0;
}

.contact_section li {
    color: #d50606;
    font-size: 20px;
    font-weight: 600;
}

.contact_section a {
    color: #484848;
    transition: .25s;
}

.contact_section a:hover {
    color: #ffb000;
}

.contact_section h2 {
    color: #d50606;
    font-size: 25px;
}

.contact_section p {
    color: #484848;
    font-size: 20px;
    font-weight: 600;
}

.contact_section .form_contain {
    margin-top: 20px;
}

.contact_section .row_contain {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

.contact_section ::placeholder {
    color: #00000045;
    font-weight: 600;
}

.contact_section .input_contain {
    display: flex;
    flex-direction: column;
    margin-bottom: 15px;
}

.contact_section .row_contain .input_contain:first-child {
    margin-right: 10px
}

.contact_section .input_contain input {
    width: 100%;
    padding: 5px 10px;
    border: 0;
    border-radius: 5px;
    background: white;
}

.contact_section .input_contain input:focus-visible {
    outline: 0;
    background: #ffffff94;
}

.contact_section .input_contain label {
    display: none;
    color: #c30000;
    font-size: 14px;
    font-weight: 600;
    margin-top: 5px;
}

.contact_section .textarea_contain {
    margin-bottom: 15px;
}

.contact_section textarea {
    max-width: 100%;
    min-width: 100%;
    max-height: 150px;
    min-height: 80px;
    padding: 5px 10px;
    border: 0;
    border-radius: 5px;
    background: white;
}

.contact_section textarea:focus-visible {
    outline: 0;
    background: #ffffff94;
}

.contact_section .button_contain {
    display: flex;
}

.contact_section .button_contain button {
    color: white;
    width: 200px;
    font-weight: 500;
    padding: 8px;
    border: 0;
    border-radius: 10px;
    background: #c30000;
    transition: .25s;
}

.contact_section .button_contain button:hover {
    color: #c30000;
    background: white;
    cursor: pointer;
}

.contact_section .send_contain {
    display: flex;
    justify-content: space-between;
}

.contact_section #contact_loader {
    display: none;
}

.contact_section .form_notify {
    display: none;
    font-size: 18px;
}

.contact_section .media_contain {
    display: flex;
    justify-content: center;
    align-items: center;
}

@media (max-width: 996px) {
    .contact_section .contact_contain {
        grid-template-columns: 100%;
    }
    .contact_section h1 {
        font-size: 30px;
    }
    .contact_section li {
        font-size: 18px;
    }
    .contact_section h2 {
        font-size: 22px;
    }
    .contact_section p {
        font-size: 18px;
    }
    .contact_section .row_contain {
        grid-template-columns: 1fr;
    }
    .contact_section .row_contain .input_contain:first-child {
        margin-right: 0;
    }
    .contact_section .button_contain button {
        color: white;
        width: 200px;
        font-weight: 500;
        padding: 8px;
        border: 0;
        border-radius: 10px;
        background: #c30000;
        transition: .25s;
    }
    .contact_section .send_contain {
        flex-direction: column;
    }
    .contact_section .loading_contain {
        margin-top: 20px;
    }
    .contact_section .media_contain {
        margin-top: 50px;
    }
}








/* From uiverse.io by @Mike11jr */
.spinner {
    flex-direction: row;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dot1, .dot2, .dot3 {
    width: 10px;
    height: 10px;
    border: double;
    border-color: #cdcdcd;
    border-radius: 50%;
    margin: 10px;
}

.dot1 {
    animation: jump765 1.6s -0.32s linear infinite;
    background: #c30000;
}

.dot2 {
    animation: jump765 1.6s -0.16s linear infinite;
    background: #c30000;
}

.dot3 {
    animation: jump765 1.6s linear infinite;
    background: #c30000;
}

@keyframes jump765 {
    0%, 80%, 100% {
        -webkit-transform: scale(0);
        transform: scale(0);
    }

    40% {
        -webkit-transform: scale(2.0);
        transform: scale(2.0);
    }
}


