/*
 Theme Name:   GeneratePress Child
 Theme URI:    https://generatepress.com
 Description:  Default GeneratePress child theme
 Author:       Tom Usborne
 Author URI:   https://tomusborne.com
 Template:     generatepress
 Version:      0.1
*/

/* Contact Forms */
.sr {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;	
}

.wpcf7 {
    max-width: 750px;
}

.form-columns {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}

.form-column {
    flex-basis: calc(50% - 2.5px);
}

.wpcf7 input, .wpcf7 textarea {
    display: block;
    width: 100%;
    border-radius: 12px;
    border: 2px solid var(--accent);
}

.form-column input {
    margin-bottom: 5px;
}

.wpcf7 input[type="submit"] {
    margin-top: 5px;
    font-size: 20px;
    font-weight: bold;
}

.wpcf7 textarea {
    max-height: 150px;
}

.wpcf7 form.sent .wpcf7-response-output {
    color: white;
}

/* Fade Main Heading */
h1.is-ready {
    opacity: 1;
}

/* Mobile Styles */
.mobile-menu-control-wrapper {
	display: none !important;
}

@media(max-width: 786px) {
    .form-columns {
        gap: 0;
    }
    .form-column {
        flex-basis: 100%;
    }
}