    .contact-wraper {
    width: 100%;
    max-width: 70%;
}

.contact-title {
    margin-bottom: 40px;
    position: relative;
    color: var(--c-1F915A);
    font-size: var(--fs-38);
    font-style: normal;
    font-weight: 300;
    line-height: var(--lh-57);
}

.contact-title::after {
    content: '';
    display: block;
    width: 180px;
    height: 1px;
    background: var(--c-1F915A);
    margin-top: 8px;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 20px;align-items: flex-end;
}

.form-field {
    width: 100%;
}

.form-field label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    position: relative;
    color: #459867;
    font-weight: 400;
}

.required {
    color: rgb(255, 0, 0);
    margin-left: 2px;
}

.form-field input,
.form-field textarea {
    width: 100%;
    padding: 12px;
    color: #459867;
    border: 1px solid #eee;
    border-radius: 0;
    background: transparent;
    font-size: var(--fs-14);
    height: 45px;
    vertical-align: middle;
    font-family: 'Poppins';
}

.form-field textarea, .form-field input::placeholder, .form-field textarea::placeholder {
    color: #459867;
    font-family: 'Poppins';
}

.form-field input[type="number"] {
    color: #459867;
    font-size: var(--fs-14);
    font-family: 'Poppins';
}
.form-field input[type="date"] {
    color: #459867;
    font-size: var(--fs-14);
    font-family: 'Poppins';
}

.phone-input {
    display: flex;
    align-items: center;
    position: relative;
}

.country-select {
    
    display: flex;
    align-items: center;
    padding: 11px;
    background: transparent;
    border: 1px solid #eee;
    /* border-radius: 4px;
    margin-right: 8px;
    width: 90px; */
    border-right: none;
    color: #459867;
    font-size: var(--fs-14);
    font-family: 'Poppins';
}

.flag img{
    max-width: 15px;
    margin-right: 5px;
}

.phone-input input {
    flex: 1;
    border-left: none;
    font-family: 'Poppins';
}

.message-field {
    grid-column: span 3;
}

.message-field textarea {
    height: 150px;
    resize: none;
}

.char-count {
    text-align: right;
    color: #666666;
    font-size: 12px;
    margin-top: 5px;
}

.submit-btn {
    border-radius: 50px;
    border: 1px solid var(--c-1F915A);
    padding: 10px 26px;
    display: inline-block;
    color: var(--c-1F915A);
    font-size: var(--fs-14);
    font-style: normal;
    font-weight: 300;
    line-height: var(--lh-18);
    transition: 0.3s;
    background: transparent;
    font-family: 'Poppins';
}

.submit-btn:hover {
    background-color: var(--c-459867);
    color: var(--c-FFFFFF);
}

/* officess address css start */
.our-offices-main .tailored-content-right h3, .contact-wraper .tailored-content-right h3 {
    color: var(--c-1F915A);
    font-size: var(--fs-38);
    font-style: normal;
    font-weight: 300;
    line-height: var(--lh-38);
    letter-spacing: 0;
}
.our-offices-main .tailored-content-right, .contact-wraper .tailored-content-right  {
    padding: 0;
}


section.our-offices-head {
    padding-bottom: 0;
}

.our-offices-wrap {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    column-gap: 70px;
    row-gap: 70px;
}
.tailored-content-right {
    padding: 0;
}
.office-noida {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 300px;
}
.office-noida h6 {
    color: #1F915A;
    font-family: Poppins;
    font-size: 31px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    letter-spacing: -1.76px;
    margin-bottom: 10px;
}
.office-noida span {
    color: #1F915A;
    font-family: Poppins;
    font-size: 21px;
    font-style: normal;
    font-weight: 500;
    line-height: 29px;
}
.office-noida p {
    color: var(--c-0C0C0C);
    font-size: var(--fs-14);
    font-style: normal;
    font-weight: 300;
    line-height: var(--lh-21);
}
.office-noida a {
    color: var(--c-0C0C0C);
}
.get-btn.office-btn {
    padding-block: 12px;
}
.get-btn.office-btn a {
    color: var(--c-1F915A);
}

/* officess address css end */

.flag_list{
    position: absolute;
    top: 100%;
    left: 0;
    transform: scaleY(0);
    transform-origin: top;
    transition: 0.3s;
    z-index: 1;
    opacity: 0;
    width: 100%;
    padding: 10px;
    background: var(--c-FFFFFF);
    border: 1px solid #eee;
    border-top: none;
    & ul li:not(:last-child){
        margin-bottom: 10px;
    }
    & img{
        display: inline-block;
        max-width: 15px;
    }
}

.flag_list.show{
    transform: scaleY(1);
    opacity: 1;
}

.form-field {
    width: 100%;
    position: relative;
}

.form-field .error {
    position: absolute;
    top: 100%;
    font-size: 10px;
}
/* Responsive Design */
@media screen and (max-width:767px) {
    .form-grid {
        grid-template-columns: 1fr;
    }

    .message-field {
        grid-column: span 1;
    }
    .contact-wraper {
        max-width: 100%;
    }
    .contact-title {
        margin-bottom: 20px;
    }
    .form-grid {
        gap: 10px;
        margin-bottom: 10px;    
    }
    .our-offices-wrap {
        grid-template-columns: auto;
        row-gap: 20px;
    }
    .our-offices-main .tailored-content-right h3, .contact-wraper .tailored-content-right h3 {
        font-size: 30px;
        line-height: 37px;
        letter-spacing: -1.44px;
        margin: 15px 0;
    }
    .our-offices-main .tailored-content-right, .contact-wraper .tailored-content-right  {
        padding: 0;
    }
    .office-noida h6 {
        font-size: 22px;
        margin-bottom: 5px;
    }
    .office-noida span {
        font-size: 18px;
    }
    section.our-offices-head {
        padding-bottom: 0 !important;
    }
        .form-grid {
            gap: 20px;
        }
}

.get-btn.office-btn{
    flex-grow: 1;
align-content: end;
}

@media screen and (max-width:767px){
  
    .office-noida {
        height: auto;
}

}