.custom-contact-form {
  max-width: 800px;
  margin: 0 auto;
}

.form-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group.half {
  flex: 1 1 48%;
}

.form-group.full {
  flex: 1 1 100%;
}

.form-group label {
  /* font-size: 14px; */
  font-weight: 500;
  margin-bottom: 5px;
}

.required {
  color: red;
  margin-left: 2px;
}

.custom-input,
.custom-textarea {
  background: #f6f7fb;
  border: none;
  padding: 12px 15px;
  border-radius: 6px;
  /* font-size: 14px; */
  width: 100%;
}

.custom-textarea {
  min-height: 120px;
  resize: none;
}

.error-text {
  color: red;
  /* font-size: 13px; */
  margin-top: 5px;
  display: none; /* show only on validation fail */
}

.custom-submit-btn {
  background-color: #b29550;    
  color: #fff;
  font-weight: bold;
  border: none;
  padding: 14px 40px;
  border-radius: 50px;
  cursor: pointer;
  display: block;
  margin: 20px auto 0;
  transition: 0.3s ease;
}




.custom-contact-form input{
        background: #F3F4F8;
}

.custom-contact-form textarea{
        background: #F3F4F8;
}

.form-group.half label{
    color: #000;
}
.form-group.full label{
    color: #000;
}

.bg-white1{
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

input{
    font-weight: 300;
    font-size: 16px !important;
    padding: 12px !important;
}
label {
    font-size: 12px;
}

textarea{
  font-size: 16px;
  font-weight: 300;
   padding: 12px !important;
}

.maps iframe{
	    line-height: 1 !important;
    border: 0;
    width: 100%;
    height: 470px;
}


footer{
    overflow: hidden;
}

@media(min-width:992px) and (max-width: 1200px){


    .bg-cover1 {
    width: 400px;
  
}
}

@media(max-width:786px){

  .bg-cover1 {
    width: 100% !important;
   
    display: flex;
    justify-content: center;
    align-items: center;
}
}


.no-break{
  white-space: nowrap;
}

.mobile-class{
  display: none;
}

@media(max-width:576px){

  .mobile-class{
  display: block;
}


}