/* WPForms fixes */
/* Initial field looks */
.wpforms-container input[type=date],
.wpforms-container input[type=datetime],
.wpforms-container input[type=datetime-local],
.wpforms-container input[type=email],
.wpforms-container input[type=month],
.wpforms-container input[type=number],
.wpforms-container input[type=password],
.wpforms-container input[type=range],
.wpforms-container input[type=search],
.wpforms-container input[type=tel],
.wpforms-container input[type=text],
.wpforms-container input[type=time],
.wpforms-container input[type=url],
.wpforms-container input[type=week],
.wpforms-container select,
.wpforms-container textarea {
    background: #fff;
    border-width: 0 0 1px 0;
    color: var(--ast-global-color-1);
}
/* On focus */
.wpforms-container input:focus,
.wpforms-container select:focus,
.wpforms-container textarea:focus {
    outline: none;
    opacity: 1;
    border-color: var(--ast-global-color-0);
}
/* Don't allow resizing the Message box */
.wpforms-container textarea {
    resize: none;
}
/* Message box fixed height */
.wpforms-container .wpforms-field-textarea textarea.wpforms-field-medium {
    height: 136px;
}
/* Button size & font size */
.wpforms-container button {
    padding: 34 0 15px 34px;
    font-size: 24px;
}
.wpforms-form input[type=submit], 
.wpforms-form button[type=submit] {
		text-align: center;
    background-color: #0170B9; /* royal blue background */
    border: 3px solid #fff; /* White border */
    color: #fff; /* White text color */
    font-size: 18; /* Size of text */
    padding: 15px 20px; /* Distance between text and border */
}
.wpforms-form .wpforms-submit-container { text-align: center;
}

.wpforms-form .wpforms-field-label {
    display: block;
    font-weight: 700;
    font-size: 20px;
    float: none;
    line-height: 1.3;
    margin: 0 0 4px 0;
    padding: 0;
}
.wpforms-form .wpforms-field-description {
    font-size: 18px;
    line-height: 1.3;
    margin: 8px 0 0 0;
}

.wpforms-fbad .wpforms-field-label { 
	font-size: 24px;
}
.wpforms-fbad .wpforms-field-description { 
	font-size: 20px;
}


/* WPForms done */
/* Footer 2 big columns on sides and 1 small one in the middle */
.ast-builder-grid-row-3-equal .ast-builder-grid-row {
    grid-template-columns: 3fr 1fr 3fr;
}

.imt {    
      opacity:0;    
      transition-duration:0.6s;
      }

.imt:hover {   
      opacity:1;
      }
.hvr:hover {
    transition: all .4s ease-in-out;
    transform: scale(1.2);
    cursor: pointer;
    z-index: 1;
}

/* hides Hidden Field in Form */
.wpforms_hidden_check {
    display: none;
}

