/**
 * These rules are needed for backwards compatibility.
 * They should match the button element rules in the base theme.json file.
 */
:root {
    --e-global-typography-primary-font-family: "Roboto", sans-serif;
    --e-global-typography-primary-font-weight: 600;
    --e-global-typography-secondary-font-family: "Roboto Slab", serif;
    --e-global-typography-secondary-font-weight: 400;
    --e-global-typography-text-font-family: "Roboto", sans-serif;
    --e-global-typography-text-font-weight: 400;
    --e-global-typography-accent-font-family: "Roboto", sans-serif;
    --e-global-typography-accent-font-weight: 500;
}
body {
    font-family: var(--e-global-typography-text-font-family);
    font-weight: var(--e-global-typography-text-font-weight);
}
 .wp-block-button__link {
	color: #ffffff;
	background-color: #32373c;
	border-radius: 9999px; /* 100% causes an oval, but any explicit but really high value retains the pill shape. */

	/* This needs a low specificity so it won't override the rules from the button element if defined in theme.json. */
	box-shadow: none;
	text-decoration: none;

	/* The extra 2px are added to size solids the same as the outline versions.*/
	padding: calc(0.667em + 2px) calc(1.333em + 2px);

	font-size: 1.125em;
}

.wp-block-file__button {
	background: #32373c;
	color: #ffffff;
	text-decoration: none;
}

header#main section#desktop #sitetitle .title h1, header#main section#desktop #sitetitle .title h2 {
    font-weight: initial;
    font-size: initial;
    padding: initial;
    margin: initial;
    letter-spacing: initial;
    line-height: initial;
    display: initial;
    background-repeat: initial;
    text-indent: initial;
    text-decoration: none;
    font-weight: 700;
    color: #7a3f0f;
    font-family: source sans pro,helvetica neue,Helvetica,Arial,sans-serif;
    font-size: 35px;
}

			.ipea-m,
			.ipea-d {
				text-align : center;
				display    : none;
			}

			@media (max-width : 768px) {
				.ipea-m {
					display : block;
				}
			}

			@media (min-width : 768px) {
				.ipea-d {
					display : block;
				}
			}

				.e-con.e-parent:nth-of-type(n+4):not(.e-lazyloaded):not(.e-no-lazyload),
				.e-con.e-parent:nth-of-type(n+4):not(.e-lazyloaded):not(.e-no-lazyload) * {
					background-image: none !important;
				}
				@media screen and (max-height: 1024px) {
					.e-con.e-parent:nth-of-type(n+3):not(.e-lazyloaded):not(.e-no-lazyload),
					.e-con.e-parent:nth-of-type(n+3):not(.e-lazyloaded):not(.e-no-lazyload) * {
						background-image: none !important;
					}
				}
				@media screen and (max-height: 640px) {
					.e-con.e-parent:nth-of-type(n+2):not(.e-lazyloaded):not(.e-no-lazyload),
					.e-con.e-parent:nth-of-type(n+2):not(.e-lazyloaded):not(.e-no-lazyload) * {
						background-image: none !important;
					}
				}									
			@media only screen and (max-width: 1023px) {
	#mhead {
		display: flex;
		align-items: center;
		justify-content: center;
		width: 100%;
		height: 100px;
		margin-bottom:10px;		
	}
	
	#categories-list{
		height: 41px;
	}
}


li#menu-item-872 a {
    color: #dd9933 !important;
}

li#menu-item-872 {
    background-color: #7a3f0f;
}


.pys-form {
    display: flex
;
    flex-direction: column;
    width: 100%;
}



/* ---- Form Container Styling ---- */
.pys-form {
    max-width: 100%;
}

/* ---- Form Labels ---- */
.pys-col label {
    font-weight: 600;
    font-size: 16px;
    color: var(--gp-text-color, #333);
    display: block;
    margin-bottom: 5px;
}

/* ---- Input & Textarea Styling ---- */
.pys-form input[type="text"],
.pys-form input[type="password"],
.pys-form input[type="email"],
.pys-form select,
.pys-form textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
    background: var(--gp-form-field-bg, #f9f9f9);
    transition: 0.3s;
    margin-bottom: 15px; /* Add spacing between fields */
}

/* ---- Specific Spacing for Email Field ---- */
.pys-form input[type="email"] {
    margin-bottom: 20px; /* Extra spacing for email field */
}

/* ---- Input Focus Effect ---- */
.pys-form input:focus,
.pys-form textarea:focus,
.pys-form select:focus {
    border-color: var(--gp-accent-color, #0073aa);
    outline: none;
    box-shadow: 0 0 5px rgba(0, 115, 170, 0.3);
}

/* ---- Submit Button ---- */
.pys-form button {
    width: 100%;
    background: var(--gp-button-background, #7a3f0f);
    color: var(--gp-button-text, #fff);
    padding: 12px;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.pys-form button:hover {
    background: var(--gp-button-hover, #5a2800);
}

/* ---- Responsive Design ---- */
@media (max-width: 768px) {
    .pys-form {
        padding: 15px;
    }
    .pys-form button {
        font-size: 16px;
    }
}

