html {
	scroll-behavior: smooth;
}

*,
*::before,
*::after {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: "jura", sans-serif;
	font-weight: 400;
	font-size: 16px;
	text-align: center;
	color: #000;
	line-height: 1.25;
	position: relative;
	min-height: 100dvh;
}

canvas {
	display: block;
}

.canvas-wrapper {
	height: 100dvh !important;
	position: relative;
}

.contact_link {
	width: 20%;
	height: 40vh;
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	cursor: pointer;

	/* Removes blue tap highlight */
	-webkit-tap-highlight-color: transparent;
	/* Disables callout on iOS */
	-webkit-touch-callout: none;
	/* Prevents text selection */
	user-select: none;
	/* Removes focus outline */
	outline: none;
	/* Ensures no background flash */
	background-color: transparent;
	/* Safari text selection disable */
	-webkit-user-select: none;
	/* Safer override */
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.contact_link:focus,
.contact_link:active {
	outline: none;
	background-color: transparent !important;
	/* Remove tap feedback */
	box-shadow: none;
}

img {
	max-width: 100%;
}

.robotlogo {
	position: absolute;
	top: 50px;
	left: 20px;
	z-index: 10;
	right: 20px;
	margin: 0 auto;
	max-width: clamp(18.75rem, 43.403vw - 2.083rem, 50rem);
}

.about-content {
	position: absolute;
	top: 45%;
	z-index: 2;
	max-width: 360px;
	left: 10%;
	min-height: 360px;
	display: flex;
	align-items: center;
	flex-direction: column;
	justify-content: center;
	max-height: 360px;
	font-family: "jura", sans-serif;
	font-size: 18px;
	color: #ffffff;
}

#toggleButton {
	padding: 12px 20px;
	font-size: 16px;
	font-weight: bold;
	text-transform: uppercase;
	color: #2ccbf1;
	background-color: #0c7f9b;
	border: none;
	border-radius: 25px;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
	cursor: pointer;
	transition: all 0.5s ease-in-out;
}

#toggleButton:hover {
	background-color: #2ccbf1;
	color: #000000;
}

.declaimer {
	font-size: 16px;
	color: #ffffff;
	max-width: 570px;
	margin: 25px auto 0;
	padding-bottom: 25px;
}

.contact-wrappper {
	background: linear-gradient(to bottom, #013e4c 0%, #1c6576 100%);
	padding-top: 50px;
}

.contact-wrappper.full-height {
	min-height: 100vh;
}

.contact-homelogo {
	max-width: 290px;
	display: block;
	padding: 35px 0;
}

/*contact section*/
.home-icon {
	position: absolute;
	bottom: 15px;
	right: 15px;
	z-index: 7;
}

.contact-container {
	max-width: 1715px;
	margin: 0 auto;
	padding: 0 50px;
}

.contact-form-section h1 {
	font-size: 48px;
	text-align: center;
	margin-top: 0;
	margin-bottom: 40px;
	color: #0c7f9b;
}

.contact-form-section {
	position: relative;
}

.contact-form-section p {
	margin-bottom: 60px;
	text-align: center;
	font-size: 32px;
	color: #ffffff;
}

.contact-form-section form {
	display: flex;
	flex-wrap: wrap;
}

.contact-form-section form .form-group {
	flex: 0 0 33.33%;
	max-width: 33.33%;
	padding: 0 30px 60px;
}

.contact-form-section form .form-group.full-width {
	flex: 0 0 100%;
	max-width: 100%;
}

.contact-form-section form .form-group .form-group-inner {
	position: relative;
	text-align: center;
}

.contact-form-section form .form-group .form-group-inner input::placeholder,
.contact-form-section form .form-group .form-group-inner textarea::placeholder {
	color: #fff;
}

.contact-form-section form .form-group .form-group-inner .status {
	padding-top: 18px;
	color: #fff;
}

.contact-form-section .form-control {
	height: 97px;
	line-height: 1;
	background-color: #0c7f9b;
	border-radius: 7px;
	border: 1px solid #0c7f9b;
	padding: 0 15px;
	display: block;
	width: 100%;
	font-size: 20px;
	color: #fff;
}

.contact-form-section textarea {
	background-color: #0c7f9b;
	border-radius: 7px;
	border: 1px solid #0c7f9b;
	padding: 15px;
	display: block;
	width: 100%;
	height: 183px;
	resize: none;
	overflow-y: auto;
	font-size: 20px;
	color: #fff;
}

.contact-form-section textarea:focus,
.contact-form-section .form-control:focus {
	outline: none;
	border: 1px solid #fff;
	box-shadow: none;
}

.contact-form-section button {
	background-color: #0c7f9b;
	min-width: 159px;
	box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25),
		inset 2px 6px 13.9px -4px rgba(0, 0, 0, 0.25);
	border-radius: 7px;
	padding: 0 15px;
	text-transform: uppercase;
	text-align: center;
	font-weight: 600;
	color: #fff;
	border: 0;
	outline: 0;
	height: 50px;
	line-height: 50px;
	cursor: pointer;
	transition: all 0.5s ease-in-out;
	font-family: inherit;
}

.contact-form-section button:hover {
	background-color: #2ccbf1;
	color: #000000;
}

@media (max-width: 1500px) {
	.contact-container {
		padding: 0 25px;
	}

	.contact-form-section form {
		margin: 0 -20px -40px;
	}

	.contact-form-section form .form-group {
		padding: 0 20px 40px;
	}

	.contact-form-section h1 {
		font-size: 40px;
	}

	.about-content {
		max-width: 260px;
		font-size: 16px;
		left: 8%;
	}
}

@media (max-width: 1366px) {
	.contact-form-section p {
		font-size: 26px;
		margin-bottom: 50px;
	}

	.contact-form-section .form-control {
		height: 80px;
		line-height: 78px;
	}

	.contact-form-section textarea,
	.contact-form-section .form-control {
		font-size: 18px;
	}
}

@media (max-width: 1199px) {
	.contact-form-section p {
		font-size: 24px;
	}

	.contact-form-section form {
		margin: 0 -13px -26px;
	}

	.contact-form-section form .form-group {
		padding: 0 13px 26px;
	}

	.contact-form-section .form-control {
		height: 60px;
		line-height: 58px;
	}

	.contact-form-section h1 {
		font-size: 32px;
	}

	.contact-homelogo {
		max-width: 250px;
		padding: 20px 0;
	}

	.about-content {
		top: 50%;
		max-width: 220px;
		left: 15%;
		min-height: 280px;
		max-height: 280px;
		transform: translateX(-50%);
		font-size: 14px;
	}
}

@media (max-width: 767px) {
	.contact-form-section p {
		font-size: 16px;
	}

	.contact-form-section .form-control {
		height: 52px;
		line-height: 50px;
	}

	.contact-form-section form .form-group {
		flex: 0 0 50%;
		max-width: 50%;
	}

	.contact-form-section form .form-group.mb-full {
		flex: 0 0 100%;
		max-width: 100%;
	}

	.contact-form-section textarea,
	.contact-form-section .form-control {
		font-size: 16px;
	}

	.contact-homelogo {
		margin-inline: auto;
		display: block;
		max-width: 190px;
	}

	.contact-form-section {
		height: auto;
	}

	.about-content {
		min-width: 100%;
		padding: 0 20px;
		top: 45px;
		left: 50%;
	}

	.contact-container {
		padding: 50px 20px;
	}

	.robotlogo {
		max-width: 260px;
	}

	.declaimer {
		font-size: 14px;
		color: #ffffff;
	}

	#toggleButton {
		font-size: 10px;
	}

	.about-content {
		font-size: 12px;
	}
}

@media (max-width: 439px) {
	.contact-form-section form .form-group {
		flex: 0 0 100%;
		max-width: 100%;
		padding: 0 0 25px;
	}

	.contact-form-section form {
		margin: 0 0 -25px;
	}

	.contact-form-section .form-control {
		height: 60px;
		line-height: 58px;
	}

	.contact-form-section h1 {
		font-size: 28px;
	}
}

.about-paragraph.open {
	opacity: 1;
	max-height: 500px;
	transform: translateY(0) scale(1);
}

.about-paragraph {
	opacity: 0;
	max-height: 0;
	transform: translateY(30px) scale(0.96);
	transition: all 0.5s ease;
	overflow: hidden;
}

@media only screen and (orientation: landscape) and (max-width: 896px) and (min-width: 320px) {
	.about-content {
		top: 20%;
		max-width: 300px;
		left: 20%;
		min-height: 280px;
		max-height: 100px;
		transform: translateX(-50%);
		font-size: 14px;
		min-width: unset;
		overflow-y: auto;
	}
}
