:root {
	--blue-color: #007aff;
	--half-blue-color: #007bff80;
	--quarter-blue-color: #007bff40;
	--primary-color: #ff9d3d;
	--half-primary-color: #ff9e3d80;

	--max-width-laptop: 1200px;
	--max-width-desktop: 1700px;
}

.contact {
	display: flex;
	flex-wrap: wrap;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	margin: 32px auto 12px auto;
	max-width: var(--max-width-laptop);
	padding: 12px;
}

.contact .top {
	display: inline-flex;
	width: 100%;
	height: fit-content;
}

.top .normal-way {
	display: inline-flex;
	flex: 1;
	min-width: 200px;
	margin-right: 1%;
	flex-direction: column;
}

.top .normal-way .cont-link {
	display: inline-flex;
	flex: 1;
	min-width: 200px;
	height: 100%;
	border-radius: 18px;
	flex-direction: column;
	text-transform: capitalize;
	font-weight: bold;
	justify-content: space-between;
	padding: 12px 12px 12px 12px;
	height: 270px;
	background: var(--quarter-blue-color);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}

@media screen and (width < 650px) {
	.top .normal-way .cont-link {
		flex-direction: row;
		align-items: stretch;
		justify-content: space-between;
	}
}

.top .normal-way .cont-link img {
	position: relative;
	top: 4px;
}

.normal-way h3 {
	margin-bottom: 12px;
}

.normal-way a {
	text-decoration: none;
	color: white;

	&:hover {
		color: var(--primary-color);
		transition: all 0.48s;
	}
}

.normal-way a img {
	width: 21px;
	height: 21px;
	object-fit: contain;
}

/*online*/
.top .online-contact {
	display: inline-flex;
	width: 100%;
	flex-direction: column;
	max-width: 850px;
	min-width: 300px;
}

.online-contact h3 {
	margin-bottom: 12px;
}

.online-contact form {
	position: relative;
	width: 100%;
}

.online-contact form #name {
	width: 100%;
	border-radius: 8px;
	background-color: var(--quarter-blue-color);

	border: none;
	outline: none;
	font-size: clamp(16px, 2vw, 17.5px);
	padding: 6px 4px;
	margin: 3px 0;
	letter-spacing: 0.5px;
	text-transform: capitalize;
}

.online-contact form #email {
	width: 50%;
	border-radius: 8px;
	background-color: var(--quarter-blue-color);

	border: none;
	outline: none;
	font-size: clamp(16px, 2vw, 17.5px);
	padding: 6px 4px;
	letter-spacing: 0.5px;
}

.online-contact form .phone {
	display: inline-flex;
	justify-content: space-between;
	width: 49%;
}

.phone #country_code,
.phone #phone {
	width: 48%;
	border-radius: 8px;
	background-color: var(--quarter-blue-color);

	border: none;
	outline: none;
	font-size: clamp(16px, 2vw, 17.5px);
	padding: 6px 4px;
	letter-spacing: 0.5px;
}

.online-contact #message {
	width: 100%;
	border-radius: 8px;
	background-color: var(--quarter-blue-color);

	border: none;
	outline: none;
	font-size: clamp(16px, 2vw, 17.5px);
	padding: 3px 4px;
	letter-spacing: 0.5px;
	margin-top: 12px;
	height: 8lh;
}

.online-contact input,
.online-contact select {
	margin: 12px 0;
}

.online-contact form button {
	font-size: 21px;
	width: fit-content;
	padding: 6px 12px 3px 12px;
	position: relative;
	right: calc(-100% + 60px);
	margin-top: 12px;
	border-radius: 6px;
	border: 1px solid var(--primary-color);
	color: var(--primary-color);

	&:hover {
		background-color: var(--half-primary-color);
	}
}

.contact .bottom {
	display: flex;
	flex-direction: column;
	width: 100%;
	margin: 32px auto 0 auto;
	max-width: var(--max-width-laptop);
}

.bottom .social-media {
	display: inline-flex;
	justify-content: center;
	margin: 18px auto 12px auto;
	flex-wrap: wrap;
	width: fit-content;
}

.bottom .social-media a {
	margin: 0 8px;
}

.bottom .social-media a img {
	width: 32px;
	height: 32px;
	overflow: hidden;
	object-fit: contain;

	&:hover {
		transform: scale(1.15);
		transition: all 0.4s;
	}
}

.bottom iframe {
	width: 100%;
	border: 2px solid var(--primary-color);
	height: 50dvh;
	min-height: 250px;
	border-radius: 12px;

	margin-top: 12px;
}

@media all and (width < 650px) {
	.top {
		flex-direction: column;
	}

	.normal-way,
	.online-contact {
		width: 98%;
		margin: 12px auto;
	}
}
