/**
* Theme Name: Blocksy Child
* Description: Blocksy Child theme
* Author: Creative Themes
* Template: blocksy
* Text Domain: blocksy
*/

body {
	background-color: #fff;
}

.header_banner, .footer_banner {
	margin-left: 10px;
	margin-right: 10px;
}

.cf7-custom-form {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
}

/* Left inputs */
.cf7-left input {
	padding: 31px 16px !important;
	border-radius: 8px !important;
	border: none;
	font-size: 14px !important;
	color: black !important;
	background-color: white !important;
}

/* Right textarea */
.cf7-right textarea {
	width: 100%;
	height: 100%;
	min-height: 170px;
	padding: 14px 16px;
	border-radius: 8px;
	resize: none;
	font-size: 14px;
	color: black !important;
	background-color: white !important;
}

.cf7-right p {
	height: 100%;
}

/* Submit button */
.cf7-submit {
	grid-column: span 2;
}

.cf7-submit input[type="submit"] {
	width: 100%;
	background: #b08a4a; /* gold-ish color */
	color: #fff;
	padding: 16px;
	border: none;
	border-radius: 10px;
	font-size: 16px;
	cursor: pointer;
	margin-top: 10px;
}

.cf7-submit input[type="submit"]:hover {
	background: #9a763e;
}

/* Mobile responsive */
@media (max-width: 768px) {
	.cf7-custom-form {
		grid-template-columns: 1fr;
	}

	.cf7-submit {
		grid-column: span 1;
	}
}

/* Newsletter wrapper */
.cf7-newsletter-wrap p {
	display: flex;
	align-items: center;
	background: #2b2b2b;
	border-radius: 12px;
	padding: 10px;
	max-width: 520px;
	border: 1px solid white;
}

/* Email input */
.cf7-newsletter-wrap input[type="email"] {
	flex: 1;
	background: transparent;
	border: none;
	color: #fff;
	padding: 14px 16px;
	font-size: 14px;
	outline: none;
}

.cf7-newsletter-wrap input::placeholder {
	color: #9e9e9e;
}

/* Submit button */
.cf7-newsletter-wrap input[type="submit"] {
	background: #ffffff;
	color: #1E1E1E;
	border: none;
	padding: 14px 28px;
	border-radius: 10px;
	font-size: 15px;
	font-weight: 600;
	cursor: pointer;
	transition: 0.3s ease;
	right: 4px;
	font-family: 'Poppins';
	position: absolute;
}

.cf7-newsletter-wrap input[type="submit"]:hover {
	background: #f1f1f1;
}

.cf7-newsletter .wpcf7-spinner {
	position: absolute;
	left: 42%;
	transform: translateX(-50%);
}

/* CF7 validation message fix */
.cf7-newsletter .wpcf7-not-valid-tip {
	position: absolute;
	font-size: 12px;
	margin-top: 12px !important;
	color: #ff6b6b;
}

.cf7-newsletter .wpcf7-form-control-wrap {
	width: 78%;
}

/* Mobile responsive */
@media (min-width: 591px) and (max-width: 1024px) {
	.cf7-newsletter-wrap {
		width: 50%;
	}
	
	.cf7-newsletter-wrap input[type="submit"] {
		position: unset;
	}
}

.other-page-banner .page-title {
	font-size: 30px;
	text-align: center;
	color: #E2B26C;
	font-weight: 400;
	text-transform: capitalize;
	font-family: 'Poppins';
	margin-bottom: 0;
}

.other-page-banner .page-description {
	font-size: 40px;
	font-weight: 700;
	text-align: center;
	text-transform: capitalize;
	color: white;
	font-family: 'Poppins';
	margin-bottom: 0;
}

@media (max-width: 768px) {
	.other-page-banner .page-description {
		font-size: 30px;
		line-height: 36px;
	}
}

.custom-faq-bonds .e-n-accordion-item {
	-webkit-box-shadow: 0px 0px 30px 0px rgba(0,0,0,0.1); 
	box-shadow: 0px 0px 30px 0px rgba(0,0,0,0.1);
	border-radius: 10px;
}

.custom-language-switcher a {
	border-radius: 5px;
	margin-bottom: 3px;
}