/************************* callSection *************************/
.callSection {
	width: 85%;
	max-width: 85%;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
	justify-content: center;
    align-items: stretch;
	margin: auto;
	margin-top: 15px;
}

.callSection .call {
	border-radius: 15px;
	box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
	background: #9B795D;
	background: linear-gradient(350deg,rgba(155, 121, 93, 1) 0%, rgba(194, 174, 151, 1) 100%);
	padding: 10px;
	border: 1px solid rgba(255, 255, 255, 0.2);
	color: #fff;
	display: flex;
    align-content: center;
    align-items: center;
	margin: auto;
	height: 100%;
	
}

.callSection .call img {
	width: 70px;
	height: 70px;
	margin-right: 10px;
	mix-blend-mode: darken;
	display: inline-block;
}

.callSection .call h2 {
	z-index: 1;
	text-shadow: 0 0 8px rgba(0, 0, 0, 0.3);
	font-size: 0.9rem;
	line-height: 1.7;
	grid-column: 2 / -1;
	display: inline-block;
}

.callSection .call ul {
	margin-top: 10px;
	display: grid;
	grid-template-columns: auto;
	gap: 10px;
	grid-column: 2 / -1;
	list-style: none;
	padding: 0;
    text-align: center;	
}

.callSection .call ul pre {
	direction: ltr;
	font-weight: bold;
	font-variation-settings: "wght" 700;
	color: #ededed;
	font-size: 0.8rem;
}

@media (max-width: 900px) {
	.callSection {
		max-width: 96%;
		grid-template-columns: 1fr;
		width: 96%;
		justify-content: center;
	}

	.callSection .call {
		width: 100%;
		max-width: 100%;
	}
	
	.callSection .call h2 {
		font-size: 0.8rem;
	}
	
	.callSection .call ul pre {
		font-size: 0.7rem;
	}
}

.callOther {
	overflow: hidden;
	border-radius: 15px;
	display: flex;
	box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
	background: #f2e9de;
	border: 1px solid rgba(255, 255, 255, 0.2);
	grid-column: 2 / 4;
	position: relative;
}

.callOther>div {
	padding: 10px;
	margin-left: 195px;
	min-height: 150px;
	display: flex;
    flex-direction: column;
    justify-content: space-around;
}

.callOther>div>h2 {
	font-size: 1.2rem;
	line-height: 1.7;
	color: #333;
	text-shadow: 0 0 8px rgba(0, 0, 0, 0.3);
}

.callOther>div>p {
	font-size: 0.9rem;
	color: #333;
	text-shadow: 0 0 8px rgba(0, 0, 0, 0.3);
	margin-top: 10px;
}

.callOther>span {
	border-radius: 500px;
	padding: 10px;
	background: rgba(194, 174, 151, 0.8);
	height: auto;
	width: 300px;
	object-fit: fill;
	transform: translateX(-100px);
	box-shadow: 0 0 10px rgba(194, 174, 151, 1);
	position: absolute;
	left: 0;
	top: -30px;
	bottom: -30px;
}

.callOther>span>img {
	padding: 50px;
    height: 100%;
    width: auto;
    mix-blend-mode: color-burn;

}

@media (max-width: 900px) {
	
	.callOther {
		grid-column: 1 / -1;
	}

	.callOther>div {
		margin-left: 120px;
	}

	.callOther>span {
		width: 220px;
	}

	.callOther>img {
		transform: translateX(-150px);
		margin-right: -190px;
		padding: 50px;
	}

	.callOther>div>p {
		text-align: center;
	}

	.callOther>div>h2 {
		text-align: center;
	}

	.callOther>span>img {
		padding: 70px;
    	padding-right: 10px;
	}
	
}

.callOther .wpcf7-form {
	display: flex;
	align-items: stretch;
	gap: 5px;
	align-items: baseline;
}

.callOther .wpcf7-form p {
	display: flex;
	align-items: center;
    justify-content: space-between;
    align-content: stretch;
    flex-wrap: nowrap;
    gap: 10px;
}

.callOther .wpcf7-form input {
	background: rgba(194, 174, 151, 0.8);
	border-radius: 5px;
	border: none;
	color: #fff;
	width: 100%;
}

.callOther .wpcf7-form input:focus {
	outline: #9B795D;
}

.callOther .wpcf7-form input::placeholder {
	color: #fff;
}

.callOther .wpcf7-form .wpcf7-not-valid-tip {
	font-size: 12px;
}

.callOther .wpcf7-form .wpcf7-spinner {
	margin: auto;
    width: 40px;
    height: 25px;
    display: flex;
    align-items: baseline;
}

