form#form_contactus input, form#form_contactus textarea {
    border-radius: var(--small-border, 24px);
    border: 1px solid rgba(255, 255, 255, 0.30);
    background: #FFF;
    box-shadow: 0px 1px 10px 0px rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(50px);
    display: flex;
    height: 60px;
    padding: 15px;
    justify-content: flex-end;
    align-items: center;
    gap: 10px;
    align-self: stretch;
}

form#form_contactus textarea {
    height: 194px;
}


form#form_contactus {
    display: flex;
    flex-direction: column;
    row-gap: 10px;
}

@media (min-width: 780px) {
    form#form_contactus {
        width: 60%;
        margin: auto;
    }
}


h3.webform-title {
    font-weight: bold;
    font-size: var(--font-size-xxxxl);
}

form#form_contactus input::placeholder, form#form_contactus textarea::placeholder {
    font-weight: bold;
}

form#form_contactus button {
    background-color: var(--primary-red);
    color: white;
    font-size: var(--font-size-xl);
    font-weight: var(--font-weight-xxxl);
    transition: background-color 0.3s;
    border: 0;
    padding: 10px;
    border-radius: 2px 24px;
    width: 100px;
}

form#form_contactus .form_btn {
    margin-right: auto;
}

.bi-send::before {
    content: "\f6c0";
    transform: rotate(222deg);
}