/* Global */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

main {
	background: #e7cb2a;
}

/* Contact Form Wrapper */
.contact-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: auto;
    padding: 40px 20px;
    align-items: start;
}

.contact-section h2 {
    padding: 20px;
    font-size: 1.5rem;
	text-align: center;
}

.contact-info {
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.contact-info h3 {
    margin-bottom: 2rem;
    font-size: 1.5rem;
	color: #2A2D34;
}

.contact-info p {
    margin-bottom: 1rem;
    font-size: 1rem;
    color: #2A2D34;
}

.contact-info a {
    color: #009b72;
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}

.contact-logo {
    max-width: 180px;
    margin-top: 2rem;
    display: block;
}

.wpcf7 form {
	text-align: center;
}

.wpcf7 label {
	font-weight: 600;
	font-size: 1.25rem;
}

.wpcf7 input:not([type=submit]),
.wpcf7 select {
    max-width: 500px;
    padding: 1rem 1.50rem;
    border-radius: 50px;
    border: none;
    font-size: medium;
    width: 100%;
    box-sizing: border-box;
}

.wpcf7 textarea {
	width: 100%;
}

.wpcf7 textarea {
    max-width: 550px;
    border-radius: 5px;
}

.wpcf7 input:not([type=submit]):focus,
.wpcf7 textarea:focus {
    border-color: #000;
    outline: none;
    box-shadow: 0 0 8px rgba(0, 155, 114, 0.8);
}

.wpcf7 input.wpcf7-form-control:not([type=submit]) {
	text-align: center;
	font-size: 1.25rem;
}

.wpcf7 textarea.wpcf7-form-control {
	font-size: 1.25rem;
}

.wpcf7 input[type=submit] {
    color: #fff;
    background: rgb(0, 155, 114);
    border: none;
    border-radius: 50px;
    padding: 0.75rem 1.5rem;
    cursor: pointer;
    text-align: center;
    max-width: 150px;
    display: block;
	justify-self: center;
}


/* Footer */
footer {
    background: #fff;
    padding: 5px 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    padding: 10px 50px;
    gap: 40px;
}

.footer-column {
    align-items: flex-start;
    text-align: left;
}

.footer-column h3 {
    text-decoration: underline;
}

.footer-column ul {
    list-style: none;
	margin: 0;
	padding: 0;
}

.footer-contact ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact a {
    color: #009b72;
    text-decoration: none;
}

.footer-contact a:hover {
    text-decoration: underline;
}

#footer-logo {
    max-width: 150px;
    width: 100%;
    align-self: center;
}

.footer-column h3 {
    margin-bottom: 15px;
    margin-top: 20px;
    font-size: x-large;
}

.footer-links a {
    text-decoration: none;
    color: #2A2D34;
	font-weight: 400;
	transition: color .3s ease;
}

.footer-links a:hover {
    text-decoration: underline;
}

.footer-column:not(.column1) h3:first-of-type {
    margin-top: 0;
    padding-top: 20px;
}

.column1, .column2 {
    border-right: 2px solid #2A2D34;
}

.column2, .column3 {
    align-items: center;
    text-align: center;
}

.column2 ul li {
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    justify-content: center;
}

.social-links li {
    margin: 5px;
}

.social-links li a img:hover{
    transform: translateY(-5px);
}

.legal-links li {
    margin-bottom: 10px;    
}

footer p {
    margin-top: 30px;
    padding-top: 10px;
    text-align: center;
    border-top: 1px solid #2A2D34;
    font-size: 14px;
    color: #555;
}


@media (max-width: 768px) and  (min-width: 320px) {
	/* Contact */
	.contact-wrapper {
        grid-template-columns: 1fr;
		justify-items: center;
    }

    .contact-info {
        display: none;
    }
	
	.contact-section h2 {
    	font-size: 1.75rem;
	}

    .contact-logo {
        margin-left: auto;
        margin-right: auto;
    }
	
	.wpcf7 input[type=submit] {
		justify-self: center;
	}
	
	.wpcf7 label {
		font-weight: 600;
		font-size: 1rem;
	}
}