h2{
	font-family: "Lora",serif !important;
}
.left-box{
	font-family: "Lora",serif !important;
}
/* WRAPPER */
.contact-wrapper {
    display: flex;
    gap: 30px;
    align-items: stretch;
}

/* LEFT BOX */
.left-box {
    background: #e6b800;
    color: #fff;
    padding: 30px;
    width: 40%;
}

.left-box h5 {
    margin-top: 20px;
    font-weight: 600;
}

.left-box p {
    font-size: 14px;
    line-height: 1.6;
}

/* SOCIAL */
.social-icons i {
    /* border: 1px solid #fff; */
    padding: 10px;
    border-radius: 50%;
    /* margin-right: 8px; */
}

/* RIGHT FORM */
.right-box {
    width: 60%;
}

/* INPUT STYLE */
.custom-field {
    width: 100%;
    border: 1px solid #cfd4da;
    padding: 12px;
    font-size: 16px;
    border-radius: 0;
    outline: none;
}

/* TEXTAREA */
textarea.custom-field {
    height: 170px;
    resize: none;
}

/* ROW GAP */
.row-flex {
    display: flex;
    gap: 15px;
}

.row-flex input {
    width: 50%;
}

/* CAPTCHA */
.captcha {
    border: 1px solid #ddd;
    width: 320px;
    padding: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* BUTTON */
.submit-btn {
    background: #e6b800;
    color: #fff;
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
}.submit-btn:hover {
      background: #3cb815;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .contact-wrapper {
        flex-direction: column;
    }

    .left-box, .right-box {
        width: 100%;
    }

    .row-flex {
        flex-direction: column;
    }

    .row-flex input {
        width: 100%;
    }
}

.custom-field{
    display: block;
    width: 100%;
    padding: 1rem 0.75rem;
}
.top-lines {
    text-align: center;
    margin-bottom: 10px;
}

/* COMMON LINE STYLE */
.top-lines span {
    display: block;
    height: 2px;
}

/* TOP SMALL LINE */
.top-lines span:first-child {
    width: 60px;
    background: #2ecc71;
    margin: 0 auto;
}

/* BOTTOM BIG LINE */
.top-lines span:last-child {
    width: 90px;
    background: #e74c3c;
    margin: 5px auto 0;
}