.contactUs {
    margin-top: 40px;
}

.section2 {
    grid-template-columns: repeat(2, 1fr);
    padding: 40px;
}
.row-one {
    display: flex;
    flex-direction: column;
    justify-content: left;
    text-align: left;
    gap: 40px;
    margin-top: 25px;
}
.row-two {
    margin: 0 !important;
    width: 100%;
}
.part {
    width: 100%;
    max-width: 420px;
    text-align: left;
    align-items: flex-start;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

#cloudflare-captcha {
    position: absolute !important;
    left: 0;
    right: 30px;
}
.heading {
    font-weight: var(--font-weight-semi-bold);
    font-size: 38px;
    line-height: 24px;
    color: var(--color-primary);
    text-align: left;
    width: 100%;
}

.formqout {
    font-weight: var(--font-weight-regular);
    color: var(--color-heading);
    font-size: 18px;
    line-height: 28px;
    text-align: left;
    width: 100% !important;
}
.heading-2 {
    color: var(--color-primary);
    font-weight: var(--font-weight-semi-bold);
    font-size: 26px;
    line-height: 32px;
}
.mail {
    display: flex;
    align-items: center;
    gap: 12px;
}
.part a span {
    font-weight: var(--font-weight-regular);
    color: var(--color-primary);
    font-size: 18px;
    line-height: 28px;
}
.social {
    display: flex;
    align-items: center;
    gap: 12px;
    justify-content: flex-start;
}
.social-img {
    background: white;
    box-shadow: 10px 10px 50px 0px #00000014;
    border-radius: 80px;
    padding: 11px;
    height: 46px;
}

.social-img:hover {
    background-color: var(--color-primary);
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

.social-img:hover img {
    filter: brightness(0) invert(1);
}
.contactUs .row-two .formMain {
    padding: 24px;
    background: white;
    box-shadow: 10px 10px 50px 0px #00000014;
    border-radius: 10px;
    width: 100%;
    position: relative;
}
.innerFormContact {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.innerFormRow {
    display: flex;
    width: 100%;
    gap: 24px;
}

.innerFormRow div,
#fname,
#lname,
#emailC,
.contact_submitBtn {
    width: inherit !important;
}
.input-row {
    width: 100%;
    display: flex;
    flex-direction: column;
}
label {
    font-family: Quicksand;
    font-weight: 600;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0%;
    vertical-align: middle;
    color: var(--color-heading);
    margin-bottom: 4px;
}
.contactForm {
    width: 100%;
}
.form_msg {
    display: none;
    width: 100%;
    background: #EEFAF6;
    gap: 8px;
    align-items: center;
    padding: 10px 12px;
    border-radius: 8px;
    color: #49607d;
    font-size: 14px;
    font-weight: 600;
    line-height: 18px;
}
.form_msg p {
    color: #1c385c;
    font-size: 14px;
    font-weight: 700;
    line-height: 18px;
}
.form_msg_error {
    display: none;
    width: 100%;
    background: #ff9595;
    gap: 8px;
    align-items: center;
    padding: 10px 12px;
    border-radius: 8px;
    color: #090d11;
    font-size: 14px;
    font-weight: 600;
    line-height: 18px;
}
.form_msg_error p {
    color: #0d131b;
    font-size: 14px;
    font-weight: 700;
    line-height: 18px;
}
        
.gc-query-dropdown-wrapper {
    position: relative;
    width: 100%;
    margin-bottom: 15px;
}

.gc-query-dropdown-header {
    outline: navajowhite;
    border: navajowhite;
    background: #f9fafe;
    padding: 10px 15px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.gc-query-dropdown-header .arrow {
    border: solid #333;
    border-width: 0 2px 2px 0;
    display: inline-block;
    padding: 3px;
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    transition: transform 0.3s ease;
}

.gc-query-dropdown-header.active .arrow {
    transform: rotate(-135deg);
    -webkit-transform: rotate(-135deg);
}

.gc-query-dropdown-list {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #fff;
    border: 1px solid #ddd;
    border-top: none;
    border-radius: 0 0 5px 5px;
    z-index: 10;
    max-height: 200px;
    overflow-y: auto;
    display: none;
}

.gc-query-dropdown-list.active {
    display: block;
}

.gc-query-dropdown-list-item {
    padding: 10px 15px;
    cursor: pointer;
}

.gc-query-dropdown-list-item:hover {
    background-color: #f5f5f5;
}
@media (max-width: 768px) {
    .section2 {
        grid-template-columns: repeat(1, 1fr);
    }
    .row-one {
        margin-top: unset !important;
        margin-bottom: 10px;
    }
}
