.exo {
	font-family: "Exo", sans-serif;
	font-optical-sizing: auto;
}
* {
	padding: 0;
	margin: 0;
	box-sizing: border-box;
	font-family: exo, sans-serif;
}
body {
	background-color: #e5f4ff;
}

.navbar {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	width: 100vw;
	gap: 5vw;
	border-bottom: dotted black 0.4vh;
	padding: 1vh 0;
	background-color: #ffffff;
}
.navbar a {
	font-size: 2vh;
	font-weight: 400;
}
a {
	color: black;
	text-decoration: none;
}
.logo-container {
	width: 13vw;
	height: 10vh;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
}
.logo {
	width: 10vw;
	height: 12vh;
	object-fit: cover;
}

.contact-container {
	background-color: white;
	border-radius: 1vh;
	box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.3);
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 3vh;
	width: 65vw;
	margin: auto;
	padding: 5vh 3vw;
	padding-bottom: 3vh;
	margin-top: 6vh;
	/* position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%); */
}

.contact-container form {
	display: flex;
	flex-direction: row;
	width: 100%;
	gap: 3vw;
}

.contact-container form div {
	width: 50%;
}

input {
	padding: 1vh;
	border: 1px solid #ccc;
	border-radius: 0.5vh;
	margin-bottom: 2vh;
	width: 100%;
}

.colors {
	display: flex;
	border-bottom: dotted black 0.4vh;
	padding: 0vh 0vw;
	background-color: #ffffff;
	gap: 0vw;
}
.color {
	width: 25%;
	background-color: #14213d;
	height: 3vh;
	border-radius: 0vh;
}
.color:nth-child(2) {
	background-color: #fca311;
}
.color:nth-child(3) {
	background-color: #4b5563;
}
.color:nth-child(4) {
	background-color: #10b981;
}
.color:nth-child(6) {
	background-color: #fca311;
}
.color:nth-child(7) {
	background-color: #4b5563;
}
.color:nth-child(8) {
	background-color: #10b981;
}

.checkboxes {
	display: grid;
	grid-template-columns: 50% 50%; /* or use repeat(3, 1fr) */
	gap: 1vh;
	margin-top: 2vh;
	width: 100% !important;
}
.checkboxes {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1vh 1vw;
	margin-top: 2vh;
}

.checkboxes label {
	display: flex;
	align-items: center;
	gap: 0.6vw;
	font-size: 1.75vh;
	cursor: pointer;
}

.checkboxes input[type="checkbox"] {
	width: auto;
	margin: 0;
}

.inputs-row {
	display: flex;
	gap: 1vw;
}

.field-label {
	font-size: 2vh;
	margin-top: 1vh;
	margin-top: 0.5vh;
	font-weight: 600;
	margin-bottom: 0.5vh;
}

textarea {
	width: 100%;
	resize: vertical;
}

.field-heading {
	font-size: 1.75vh;
	margin-top: 1.5vh;
	font-weight: 500;
	margin-bottom: 0.5vh;
}

.cta-button {
	padding: 1.25vh 2vw;
	border: none;
	background-color: #14213d;
	color: white;
	font-size: 2vh;
	cursor: pointer;
	border-radius: 0.5vh;
	margin-left: auto;
	font-weight: 100;
	width: 100%;
	margin-top: 1vh;
}

.heading {
	font-size: 3vh;
	font-weight: 500;
	text-align: center;
}
