.contact-container {
	min-height: 100vh;
	width: 100%;
	background-image: url('images/v8.jpg');
	background-size: cover;
	background-position: center;
	display: flex;
	gap: 3rem;
	justify-content: center;
	align-items: center;
}

.contact-card {
	width: 17rem;
	padding: 1rem;
	margin: 1rem 0;
	background-color: rgba(255, 255, 255, 0.074);
	border: 1px solid rgba(255, 255, 255, 0.222);
	-webkit-backdrop-filter: blur(20px);
	backdrop-filter: blur(20px);
	transition: all ease .3s;
	text-align: center;
}

.box-tittle-row{
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 1rem;
	margin-bottom: 1.1rem;
}

.contact-icon {
	width: 1.2rem !important;
	/* margin: 0 auto; */
}

.box .title {
	font-size: 1.2rem;
	font-weight: 500;
	letter-spacing: .1rem;
}

.box div strong {
	display: block;
	margin-bottom: .5rem;
	font-size: 1rem;
}

/* form =================================================== */
#contact {
	width: 21rem;
	/* background: #f9f9f9; */
	background-color: rgba(255, 255, 255, 0.074);
	border: 1px solid rgba(255, 255, 255, 0.222);
	-webkit-backdrop-filter: blur(20px);
	backdrop-filter: blur(20px);
	padding: 0 1rem 1rem 1rem;
	margin: 50px 0;
}

#contact h3 {
	color: rgb(0, 0, 0);
	display: block;
	font-size: 30px;
	font-weight: 400;
}

#contact h4 {
	margin: 5px 0 15px;
	display: block;
	font-size: 13px;
}

fieldset {
	border: medium none !important;
	margin: 0 0 10px;
	min-width: 100%;
	padding: 0;
	width: 100%;
}

#contact input[type="text"],
#contact input[type="email"],
#contact input[type="tel"],
#contact input[type="url"],
#contact textarea {
	width: 100%;
	border: 1px solid #ccc;
	background: #fff;
	margin: 0 0 5px;
	padding: 10px;
}

#contact input[type="text"]:hover,
#contact input[type="email"]:hover,
#contact input[type="tel"]:hover,
#contact input[type="url"]:hover,
#contact textarea:hover {
	-webkit-transition: border-color 0.3s ease-in-out;
	-moz-transition: border-color 0.3s ease-in-out;
	transition: border-color 0.3s ease-in-out;
	border: 1px solid #aaa;
}

#contact textarea {
	height: 100px;
	max-width: 100%;
	resize: none;
}

#contact button[type="submit"] {
	cursor: pointer;
	width: 100%;
	border: none;
	background: #DCBF71;
	color: #fff;
	margin: 0 0 5px;
	padding: 10px;
	font-size: 15px;
}

#contact button[type="submit"]:active {
	box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.5);
}

#contact input:focus,
#contact textarea:focus {
	outline: 0;
	border: 1px solid #999;
}
::-webkit-input-placeholder {
	color: #888;
}
:-moz-placeholder {
	color: #888;
}
::-moz-placeholder {
	color: #888;
}
:-ms-input-placeholder {
	color: #888;
}

/* footer ======================= */
.footer-container {
	background-image: url('images/blobby2.png');
}

/* ===================================== */
@media (max-width: 480px) {
	.contact-container {
		min-height: 100vh;
		padding: 2rem 0;
		flex-direction: column;
		justify-content: center;
		align-items: center;
	}

}

@media (min-width: 481px) and (max-width: 767px) {
	.contact-container {
		min-height: 100vh;
		padding: 2rem 0;
		flex-direction: column;
		justify-content: center;
		align-items: center;
	}
}

/* Media Query for Tablets Ipads portrait mode */
@media (min-width: 768px) and (max-width: 1024px) {
	.contact-container {
		min-height: 100vh;
		padding: 2rem 0;
		flex-direction: column;
		justify-content: center;
		align-items: center;
	}
}
