/*
Theme Name: Flatsome Child
Description: This is a child theme for Flatsome Theme
Author: UX Themes
Template: flatsome
Version: 3.0
*/

/*************** ADD CUSTOM CSS HERE.   ***************/
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

:root {
	--primary-color: #388e3c;
	--secondary-color: #a5d6a7;
	--shadow-hover: 20px 5px 10px #388e3c7d;
}

body {
	font-family: "Roboto", sans-serif;
}

.autocomplete-suggestion .search-price,
.wpcf7-spinner {
	display: none;
}

* {
	box-sizing: border-box;
}

img {
	max-width: 100%;
}

.col-inner:last-child {
	padding-bottom: 0;
}

a {
	transition: all .25s ease;
}

p:last-child {
	margin-bottom: 0;
}

.off-canvas-left .mfp-content,
.off-canvas-right .mfp-content {
	max-width: 500px;
	width: 100%;
}

.off-canvas:not(.off-canvas-center) .nav-vertical li>a {
	font-size: 16px;
	text-transform: math-auto;
	color: #000;
}

.mfp-bg.mfp-ready {
	background-color: rgba(0, 0, 0, 0.4) !important;
	opacity: 1 !important;
	backdrop-filter: blur(10px) !important;
	-webkit-backdrop-filter: blur(10px) !important;
}

.mfp-wrap.mfp-ready {
	backdrop-filter: none !important;
}

.nav:not(.nav-slide) .active>.children {
	padding-bottom: 0;
}

.icon-box-img img,
.icon-box-img svg {
	padding-top: 0;
}

.autocomplete-suggestion img+.search-name {
	font-size: 16px;
}

.html_topbar_left h3 {
	margin-bottom: 0;
	font-weight: 500;
}

.btn-header {
	background-color: var(--primary-color);
	padding: 15px 20px !important;
	display: block;
	border-radius: 4px;
	color: #FFF !important;
	font-size: 16px !important;

	i {
		font-size: 14px !important;
		margin-right: 6px;
	}

	&:hover {
		transform: translateY(-2px);
		box-shadow: var(--shadow-hover);
	}
}

.ss-footer-1 {
	.icon-box {
		align-items: center;

		.icon-box-text {
			h3 {
				margin-bottom: 0;
				font-size: 18px;
			}
		}
	}

	form {
		margin-bottom: 0;
		padding: 10px;
		background-color: #ffffff52;
		border-radius: 8px;

		.wpcf7-not-valid-tip {
			display: none;
		}

		.frame-form-footer {
			input {
				border-radius: 4px;
				margin: 0;
			}

			.wpcf7-submit {
				text-transform: math-auto;
			}

			.two-col {
				p {
					display: flex;
					align-items: center;
					gap: 8px;
				}
			}
		}
	}
}

.wpcf7 div.wpcf7-response-output,
.wpcf7 form.invalid .wpcf7-response-output {
	background: #fddddd;
	border: 1px solid red;
	color: red;
	box-shadow: none;
	font-size: 14px;
	padding: 15px;
	border-radius: 6px;
	margin: 0;
	margin-top: 15px;
}

.wpcf7 form.sent .wpcf7-response-output {
	background: #ebfee3;
	color: #398f14;
	border-color: #398f142e;
}

.ss-footer-2 {
	ul {
		margin-bottom: 0;

		li:last-child {
			margin-bottom: 0;
		}

		li {
			margin-left: 0;
			list-style-type: none;

			i {
				color: var(--primary-color);
				width: 20px;
				height: 20px;
				display: inline-flex;
				align-items: center;
				justify-content: center;
			}
		}
	}
}



@media(max-width: 998px) {
	.ss-footer-1 {
		& form {
			& .frame-form-footer {
				input {
					width: 100%;
				}

				& .two-col {
					p {
						flex-direction: column;
					}
				}
			}
		}
	}
}