.contact-us-section1-ctn {
    max-width: 1920px;
    display: flex;
    margin: 0px auto;
    padding-right: 20px;
    gap: 130px;
    /* justify-content: space-between; */
    align-items: center;
    /* flex-wrap: wrap; */
}

.contact-us-section1-left {
    flex: 0 1 50%;
}

img.contact-us-left-img {
    max-width: 100%;
}

.contactUs-section1-right {
    flex: 1;
    padding: 35px 0px;
    max-width: 680px;
}

h2.contactUs-title {
    /* color: #101828; */
    color: #3E3E3F;
    font-family: 'Poppins';
    font-weight: 600;
    font-size: 64px;
    line-height: 80px;
    margin: 0px;
}

h3.contactUs-subtxt {
    margin: 32px 0px 64px;
    color: #4f4f4f;
    font-family: 'Poppins';
    font-weight: 500;
    font-size: 26.67px;
    line-height: 40px;
}

.contactUs-form-control {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 32px;
}

.contactUs-form-control>div {
    display: flex;
}

.contactUs-form-control>div {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.contactUs-form-wrapper label {
    color: #344054;
    font-family: 'Poppins';
    font-weight: 500;
    font-size: 18.67px;
    line-height: 26.67px;
    margin: 0px 0px 8px;
}

.contactUs-form-wrapper label.solns-txt {
    color: #344054;
    font-family: 'Poppins';
    font-weight: 500;
    font-size: 18.67px;
    line-height: 26.67px;
    margin: 0px 0px 24px 0px;
    display: block;
}

.err-msg {
    color: red;
    font-family: 'Poppins';
    font-weight: 500;
    font-size: 18.67px;
    line-height: 26.67px;
    margin: 08px 0px 0px;
    display: none;
}

.contactUs-form-control .contact-inps {
    /* background: #FFFFFF; */
    box-shadow: 0px 1.33px 2.67px 0px #1018280D;
    border: 1.33px solid #D0D5DD;
    width: 100%;
    height: 64px;
    box-sizing: border-box;
    padding-top: 16px;
    padding-right: 21.33px;
    padding-bottom: 16px;
    padding-left: 21.33px;
    border-radius: 10.67px;
    color: #909599;
    font-family: 'Poppins';
    font-weight: 400;
    font-size: 18px;
    line-height: 32px;
    outline: none;
}
.contactUs-form-control #solution.contact-inps {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url('../images/selectDownArrow.svg');
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 18px;
}

.contactUs-form-control-chk {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 0px;
}

.contactUs-form-control-chk>div {
    flex: 0 1 50%;
}


/*  */
.contactUs-sub-ctn {
    margin-top: 42px;
    text-align: center;
}

.contactUs-sub-btn {
    background: #14AE5c;
    width: 100%;
    border: 1.33px solid #14AE5c;
    /* box-shadow: 0px 1.33px 2.67px 0px #1018280D; */
    /* width: 640px; */
    height: 64px;
    border-radius: 160px;
    box-sizing: border-box;
    color: #FFFFFF;
    font-family: 'Poppins';
    font-weight: 600;
    font-size: 21.33px;
    line-height: 32px;
    cursor: pointer;
}

.required {
    color: red;
}

@media screen and (max-width:1536px) {
    .contact-us-section1-ctn {
        gap: 100px;
    }
}

@media screen and (max-width:1440px) {
    .contact-us-section1-ctn {
        gap: 70px;
    }

    .contact-inps {
        height: 50px;
    }
}

@media screen and (max-width:1366px) {
    h2.contactUs-title {
        font-size: 40px;
        line-height: 50px;
    }

    h3.contactUs-subtxt {
        margin: 20px 0px;
    }
}

@media screen and (max-width:1180px) {
    .contactUs-sub-ctn {
        text-align: center;
    }
    .contactUs-section1-right {
        padding: 50px;
        flex: 1 1 100%;
        max-width: 990px;
        margin: 0px auto;
    }
    .contact-us-section1-left {
        display: none;
    }
}

