

/* Add your custom styles here */
/* Force a specific weight regardless of the reset */
b, strong {
    font-weight: 700 !important;
}
/*custom-form*/

.custom-form .row p {
  display: flex;
  justify-content: space-between;
	flex-wrap: wrap;
	    gap: 6px;
}

.custom-form{
	display: flex;
	flex-direction: column;
	gap: 6px;
	max-width: 800px;
  margin: auto;
}

.custom-form .row span.wpcf7-form-control-wrap{
	display: block;
	flex: 1 1 0;
    min-width: 280px;
}

.custom-form br{
    display: none;
}

.custom-form .row input{
    padding: 16px;
}

.custom-form .row.single span{
	display: block;
	width: 100%;
}

.custom-form .row.single {
  flex-direction: column;
}

.custom-form input,
.custom-form select,
.custom-form textarea {
  width: 100%;
  padding: 16px;
  border-radius: 10px !important;
  border: none !important;
  background: #FFFF;
  font-size: 16px;
  outline: none;
  color: gray;
}

/* Textarea height */
.custom-form textarea {
  height: 150px;
  resize: none;
}

/* Button styling */
.custom-form input[type="submit"] {
  background: #0b2d44;
  color: #fff;
  border-radius: 30px !important;
  padding: 16px;
  font-size: 18px;
  cursor: pointer;
  transition: 0.3s;
}

.custom-form input[type="submit"]:hover {
  background: #092437;
}

/* Responsive */
@media (max-width: 768px) {
  .custom-form .row {
    flex-direction: column;
  }
}


/*contact-us-form*/
.modern-form {
  max-width: 700px;
  margin: auto;
}

.field {
  position: relative;
  /*margin-bottom: 15px;*/
}

/* Inputs */
.field input,
.field textarea {
  width: 100% !important;
  padding: 14px 16px 14px 45px !important;
  border-radius: 10px !important;
  border: none !important;
  background: #f2f2f2;
  font-size: 15px;
  outline: none;
  height: 66px;
}

/* Textarea fix */
.textarea-field .icon {
  top: 20px;
  transform: none;
}

.field textarea {
  height: 179px;
  resize: none;
}

/* ICONS (FA4) */
.field .icon {
  position: absolute;
  left: 15px;
  top: 56px;
  transform: translateY(-50%);
  color: #9aa0a6;
  font-size: 14px;
	z-index: 1;
}

/* Changes the background when the user is typing the date */
input[type="date"]:focus {
    outline: 2px solid #your-hex-code;
    background-color: #f0f8ff; /* Light highlight background */
}

/* 1. Target the field when it is clicked (focused) */
.custom-date-field:focus {
    color: #000000 !important; /* Changes the main text color to yellow */
}

/* 2. Target the specific dd, mm, and yyyy segments inside the field on focus */
.custom-date-field:focus::-webkit-datetime-edit-text,
.custom-date-field:focus::-webkit-datetime-edit-day-field,
.custom-date-field:focus::-webkit-datetime-edit-month-field,
.custom-date-field:focus::-webkit-datetime-edit-year-field {
    color: #000000 !important;
}

.textarea-field .icon {
	top: 24%
}

/* Checkbox */
.checkbox {
  margin: 10px 0 20px;
  font-size: 14px;
  color: #777;
}

.checkbox input {
  margin-right: 8px;
}

/* Button */
.modern-form input[type="submit"] {
  width: 100%;
  background: #0b2d44;
  color: #fff;
  border-radius: 40px;
  padding: 14px;
  font-size: 16px;
  cursor: pointer;
  border: none;
  transition: 0.3s;
}

.modern-form input[type="submit"]:hover {
  background: #092437;
}

/* Remove CF7 spacing */
.wpcf7-form p {
  margin: 0;
}

/*.wpcf7-not-valid-tip{*/
/*	position: absolute;*/
/*}*/

.wpcf7-spinner {
    visibility: hidden;
    display: inline-block !important;
    background-color: #23282d;
    opacity: 0.75;
    width: 24px !important;
    height: 24px;
    border: none;
    border-radius: 100%;
    padding: 0;
    margin: 0 24px;
    position: relative;
}

/*subscribe-form*/
.subscribe-form {
  max-width: fit-content;
}

.subscribe-wrap .wpcf7-form-control-wrap{
    width: 480.02px;
}

.subscribe-wrap p {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

/* Input */
.subscribe-wrap input[type="email"] {
  flex: 1;
  padding: 18px 20px;
  border-radius: 40px;
  border: 1px solid rgba(255,255,255,0.4);
  background: transparent;
  color: #fff;
  font-size: 16px;
  outline: none;
}

/* Placeholder */
.subscribe-wrap input::placeholder {
  color: rgba(255,255,255,0.7);
}

/* Button */
.subscribe-wrap input[type="submit"] {
    width: 216px;
  padding: 18px 30px;
  border-radius: 40px;
  border: none;
  background: #e6e6e6;
  color: #000;
  font-size: 16px;
  cursor: pointer;
  white-space: nowrap;
  transition: 0.3s;
}

.subscribe-wrap input[type="submit"]:hover {
  background: #d5d5d5;
}

/* Remove CF7 spacing */
.wpcf7-form p {
  margin: 0;
}

#subscribe-form .wpcf7-response-output{
    color: white;
}

/* Mobile Responsive */
@media (max-width: 600px) {
  .subscribe-wrap {
    flex-direction: column;
  }

  .subscribe-wrap input[type="submit"] {
    width: 100%;
  }
}