/* START CONTACT */
#contact{
    background-color: rgba(4, 36, 49);
   
    padding: 20px 0;
}
#contact h2{
    color: #d2d0d0;
}

form label {
    color: #fff;
}
.block_contact p{
    font-size: 0.9rem;
}
.block_contact h3,
.block_contact p{
    color: #dddde6;
    font-family: 'Noto Sans SC', sans-serif !important;
}
.block_contact {
    border: #7c7fa3 1px solid;
    border-radius: 50px 50px 0 0;
    text-align: center;
    width: 80%;
    padding: 2rem;
    margin: 30px auto;
    margin-bottom: 30px;
    max-width: 330px;
    background: linear-gradient(rgba(255, 101, 132, 0.2), rgba(18, 184, 184, 0.2));
}

#contact h2 {
    /* margin-bottom: 30px; */
    margin-top: 50px;
}

form {
    display: flex;
    flex-direction: column;
}

input, select{
    text-align: center;
}

input,
textarea,
select {
    width: 100%;
    margin-bottom: 20px;
    background-color: #ffffff00;
    border: none;
    border-bottom: 2px solid #fff;
    color:#fff;
}

.security-input {
    display: none;
}


/* alert */
.alert {
    position: relative;
    top: 10;
    left: 0;
    width: auto;
    height: auto;
    padding: 10px;
    margin: 10px;
    line-height: 1.8;
    border-radius: 5px;
    cursor: hand;
    cursor: pointer;
    font-family: sans-serif;
    font-weight: 400;
}

.alertCheckbox {
    display: none;
}

:checked+.alert {
    display: none;
}

.alertText {
    display: table;
    margin: 0 auto;
    text-align: center;
    font-size: 16px;
}

.alertClose {
    float: right;
    padding-top: 5px;
    font-size: 10px;
}

.clear {
    clear: both;
}

.success {
    background-color: rgb(207, 249, 207);
    border: 1px solid #DED;
    color: rgb(50, 135, 50);
}

.error {
    background-color: rgb(245, 173, 173);
    border: 1px solid rgb(113, 25, 25);
    color: rgb(113, 25, 25) !important;
}

.in-line {
    display: flex;
    justify-content: end;
    align-items: baseline;
}
.captcha{
    width: 50%;
    background : yellow;
    text-align: center;
    font-size: 24px;
    font-weight: 700;
}
@media screen and (width >=768px) {

    .name-input,
    .email-input {
        width: 45%;
        display: inline;
    }

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

}

@media screen and (width >=992px) {
    #contact .all_block {
        margin-left: 10%;
        margin-right: 10%;
    }

    .parent_contact {
        display: flex;
        align-items: start;
        justify-content: space-between;
    }

    .block_contact {
        width: 35%;
        margin-bottom: 0;
    }

    form {
        margin: 50px auto;
        width: 60%;
    }
}

/* END CONTACT */