:root {
	--color-primary: #346bf1;
	--color-secondary: #3186ff;
	--color-tertiary: #9aa0a6;

	--color--text: #202124;
	--color--gray: #5f6368;
	--color-light: #f8f9fa;

	--font-primary: "Google Sans", sans-serif;
}

@font-face {
	font-family: "Google Sans";
	src: url("../fonts/GoogleSans-Medium.eot");
	src: url("../fonts/GoogleSans-Medium.eot?#iefix") format("embedded-opentype"), url("../fonts/GoogleSans-Medium.woff2") format("woff2"), url("../fonts/GoogleSans-Medium.woff") format("woff");
	font-weight: 500;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: "Google Sans";
	src: url("../fonts/GoogleSans-Bold.eot");
	src: url("../fonts/GoogleSans-Bold.eot?#iefix") format("embedded-opentype"), url("../fonts/GoogleSans-Bold.woff2") format("woff2"), url("../fonts/GoogleSans-Bold.woff") format("woff");
	font-weight: bold;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: "Google Sans";
	src: url("../fonts/GoogleSans-Regular.eot");
	src: url("../fonts/GoogleSans-Regular.eot?#iefix") format("embedded-opentype"), url("../fonts/GoogleSans-Regular.woff2") format("woff2"), url("../fonts/GoogleSans-Regular.woff") format("woff");
	font-weight: normal;
	font-style: normal;
	font-display: swap;
}

/* Utilities */

.color--primary {
	color: var(--color-primary) !important;
}

.color--secondary {
	color: var(--color-secondary) !important;
}

.color--tertiary {
	color: var(--color-tertiary) !important;
}

.color--light {
	color: var(--color-light) !important;
}

.color--gray {
	color: var(--color--gray) !important;
}

.bg--primary {
	background-color: var(--color-primary) !important;
}

.bg--secondary {
	background-color: var(--color-secondary) !important;
}

.bg--tertiary {
	background-color: var(--color-tertiary) !important;
}

.bg--light {
	background-color: var(--color-light) !important;
}

.font--primary {
	font-family: var(--font-primary) !important;
}

.font--secondary {
	font-family: var(--font-secondary) !important;
}

.gradient {
	background: linear-gradient(87.06deg, #3186ff 2.44%, #346bf1 50%, #4fa0ff 97.56%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	text-fill-color: transparent;
}

/* General */

body {
	font-family: var(--font-primary);
	font-size: 1.125rem;
	color: var(--color--gray);
	padding-top: 100px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: var(--font-primary);
	font-weight: 500;

	color: var(--color--text);
}

a:not(.btn) {
	color: var(--color-gray);
	text-decoration: none;
}

a:hover {
	color: var(--color-primary);
}

/* Bootstrap button's */

.btn {
	border-radius: 100px;
	padding: 0.8rem 2rem;
	transition: all ease 0.5s;
}

.btn-primary {
	background: linear-gradient(87.06deg, #3186ff 2.44%, #346bf1 50%, #4fa0ff 97.56%);
	border-color: transparent;
	color: #fff;
}

.btn-primary:hover {
	border-color: transparent;
}

/* .btn-primary:hover {
	background: linear-gradient(45deg, #3186ff 2.44%, #346bf1 50%, #4fa0ff 97.56%);
	border-color: var(--color-secondary);
	color: #fff;
} */

.btn-secondary {
	background-color: var(--color-secondary);
	border-color: var(--color-secondary);
	color: var(--color-primary);
}

.btn-secondary:hover {
	background-color: var(--color-primary);
	border-color: var(--color-primary);
	color: var(--color-secondary);
}

.btn-outline-primary {
	background-color: var(--color-primary);
	border-color: var(--color-primary);
	color: var(--color-primary);
}

.btn-outline-primary:hover {
	background-color: var(--color-secondary);
	border-color: var(--color-secondary);
	color: var(--color-secondary);
}

.btn-outline-secondary {
	background-color: var(--color-secondary);
	border-color: var(--color-secondary);
	color: var(--color-secondary);
}

.btn-outline-secondary:hover {
	background-color: var(--color-primary);
	border-color: var(--color-primary);
	color: var(--color-primary);
}

.bordered {
	border: 1px solid #9aa0a6;
}

.border-radius {
	border-radius: 30px;
}

.border-radius-s {
	border-radius: 15px;
}

.space-item__title {
	font-size: 1.875rem;
	margin-bottom: 2rem;
}

.space-item {
	overflow: hidden;
	display: flex;
	flex-direction: column;
	flex: 1;
	margin-bottom: 1.5rem;
}

.space-item.space-item--img {
	aspect-ratio: 285 / 452;
	padding: 0;
}

.space-item.space-item--img-l {
	aspect-ratio: 600 / 452;
	padding: 0;
}

.space-item--img img,
.space-item--img-l img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.pax {
	font-size: 1.875rem;
	display: block;
	margin-bottom: 1.5rem;
}

/* HEADER */

.header {
	padding: 1rem 0;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	background: #fff;
	z-index: 2;
}

.logo-img {
	max-width: 314px;
}

.nav-link {
	color: var(--color--text);
}

.nav-item {
	margin-right: 0.7rem;
}

.nav-item:last-child {
	margin-right: 0;
}

.offcanvas .nav-link {
	font-size: 1.3rem;
	padding: 2rem 1rem;
}

.offcanvas .nav-item {
	margin: 0;
}

.offcanvas .btn {
	font-size: 1.3rem;
	margin-top: 2rem;
}

/* SECTION */

.section {
	padding: 3rem 0;
}

.boxed {
	padding: 4.3rem;
}

.jumbo-title {
	font-size: 4.3rem;
}

.jumbo-img__wrapper {
	aspect-ratio: 395 / 578;
	overflow: hidden;
}

.jumbo-img__wrapper img {
	width: 100%;
	height: 100%;
}

.jumbo p {
	font-size: 1.375rem;
}
.section-title {
	margin-bottom: 2rem;
}

.venue-img {
	aspect-ratio: 1240 / 626;
	overflow: hidden;
}

.venue-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.services {
}

.service-icon {
	max-height: 30px;
	margin-bottom: 1.5rem;
}

.service-title {
	font-size: 1.5rem;
}

.space-item {
	padding: 2rem;
}

.form-control {
	background: none;
	border: none;
	border-bottom: 1px solid var(--color-tertiary);
	border-radius: 0;
}

.form-feedback {
	display: none;
}

/* FOOTER */

.map-wrapper {
	position: relative;
	margin-top: 5rem;
}

.map-dot {
	position: absolute;
	top: 42%;
	left: 43%;
}

/* RESPONSIVE */

/* `xxl` applies to x-large devices (large desktops, less than 1400px)*/
@media (max-width: 1399.98px) {
}
/* `xl` applies to large devices (desktops, less than 1200px)*/
@media (max-width: 1199.98px) {
}

/* `lg` applies to medium devices (tablets, less than 992px)*/
@media (max-width: 991.98px) {
}

/*`md` applies to small devices (landscape phones, less than 768px)*/
@media (max-width: 767.98px) {
	html {
		font-size: 14px;
	}

	.boxed,
	.space-item {
		padding: 1.5rem;
	}

	.jumbo-title {
		font-size: 2.5rem;
	}

	.form-control {
		font-size: 16px;
	}

	.logo-img {
		max-width: 224px;
	}

	.section {
		padding: 2rem 0;
	}
	.navbar-toggler {
		border: none;
	}

	.navbar {
		--bs-navbar-toggler-icon-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2852, 107, 241, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
	}
}

/* `sm` applies to x-small devices (portrait phones, less than 576px)*/
@media (max-width: 575.98px) {
}

/* PRINT */
@media print {
	* {
		background: transparent !important;
		color: #000 !important;
		box-shadow: none !important;
		text-shadow: none !important;
	}
	a,
	a:visited {
		text-decoration: underline;
	}
	a[href]:after {
		content: " (" attr(href) ")";
	}
	abbr[title]:after {
		content: " (" attr(title) ")";
	}
	.ir a:after,
	a[href^="javascript:"]:after,
	a[href^="#"]:after {
		content: "";
	}
	pre,
	blockquote {
		border: 1px solid #999;
		page-break-inside: avoid;
	}
	thead {
		display: table-header-group;
	}
	tr,
	img {
		page-break-inside: avoid;
	}
	img {
		max-width: 100% !important;
	}
	@page {
		margin: 0.5cm;
	}
	p,
	h2,
	h3 {
		orphans: 3;
		widows: 3;
	}
	h2,
	h3 {
		page-break-after: avoid;
	}
}
