#contact_us .container, #partner_type {
    background: linear-gradient(0deg,rgba(12, 48, 47, 1) 0%, rgba(39, 250, 203, 0.250) 100%);
    padding: 2.5em;
    border-radius: 10px;
}

.contact_form {
    border: dashed 1.5px #38494B;
    padding: 1em;
    border-radius: 10px;
}

#partner_type .contact_form {
    border: 0;
}

#contact_us .contact_form {
    background: linear-gradient(0deg,rgba(40, 254, 208, 0.07) 0%, rgba(40, 254, 208, 0.03) 100%);
    border: solid 1.5px;
    border-image-slice: 1;
	border-image-source: linear-gradient(to right, rgba(40, 254, 208, 0.47), rgba(23, 55, 55, 1) 100%);
    padding: 1em;
}

.tit_bt {
    background: linear-gradient(90deg,rgba(31, 146, 126, 1) 0%, rgba(25, 84, 77, 1) 100%);
    padding: 0.4em 1.2em;
}

.form label {
    font-family: "Kode Mono", monospace;
}

.form select {
    -webkit-appearance: none;  /* Safari/Chrome */
    -moz-appearance: none;     /* Firefox */
    appearance: none;      
}

.form input, .form textarea, .form select {
    width: 100%;
    max-height: 85px;
    background: rgba(255, 255, 255, 0.05);
    padding: 0.7em;
    margin-bottom: 0.8em;
    border: 0px;
    border-bottom: solid 1.5px rgba(255, 255, 255, 0.17);
    color: #fff!important;
}

.contact_form input::placeholder, .contact_form textarea::placeholder, .contact_form select {
    color: rgba(255, 255, 255, 0.17);
}

.contact_form .wpcf7-submit {
    width: 100%;
    background: #fff;
    border: 0px;
    border-radius: 6px;
    color: #070E14!important;
    margin-bottom: 0;
    padding: 0.7em;
}

.contact_form p {
    margin-bottom: 0;
}

.wpcf7-spinner {
    position: absolute;
}

.wpcf7-acceptance, .wpcf7-acceptance label {
    font-family: "Plus Jakarta Sans", sans-serif;
    display: block;
    font-size: 0.87em;
    font-weight: 300;
    margin-bottom: 0.8em;
}

.wpcf7-acceptance label {
    position: relative;
    padding-left: 25px;
    cursor: pointer;
}

.custom-checkbox {
    display: flex;
}

.custom-checkbox input[type="checkbox"] {
    position: absolute;
    opacity: 0;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 1.5px solid #fff;
    border-radius: 1px;
    display: inline-block;
    position: relative;
    margin-left: -0.7em;
}

.checkbox-text {
    font-size: 0.9em;
    margin-left: 1em;
}

.checkbox-text br {
    display: none;
}

.custom-checkbox:has(input:checked) .checkmark {
    background: #000;
    border-color: #000;
}

.checkmark::after {
    content: "";
    position: absolute;
    display: none;
}

.custom-checkbox:has(input:checked) .checkmark::after {
    display: block;
    left: 6px;
    top: 2px;
    width: 5px;
    height: 10px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

@media (max-width: 991px) {
    #contact_us .container, #partner_type {
        padding: 1em;
    }

    div.contact_col {
        background: #173737;
        margin-left: 0.95em;
        margin-bottom: 1em;
    }

    div.contact_col:first-child {
        padding-right: 1em;
    }
}