/* FONTS */
@font-face {
	font-family: 'Messina Sans';
	src: url('/shared/font/MessinaSans-Bold.woff2') format('woff2'), url('/shared/font/MessinaSans-Bold.woff') format('woff');
	font-weight: bold;
	font-style: normal;
}

@font-face {
	font-family: 'Messina Sans';
	src: url('/shared/font/MessinaSans-Regular.woff2') format('woff2'), url('/shared/font/MessinaSans-Regular.woff') format('woff');
	font-weight: normal;
	font-style: normal;
}

@font-face {
	font-family: 'Messina Sans';
	src: url('/shared/font/MessinaSans-Light.woff2') format('woff2'), url('/shared/font/MessinaSans-Light.woff') format('woff');
	font-weight: 300;
	font-style: normal;
}

@font-face {
	font-family: 'Inconsolata';
	font-style: normal;
	font-weight: 500;
	font-stretch: 100%;
	font-display: swap;
	src: url(https://fonts.gstatic.com/s/inconsolata/v20/QlddNThLqRwH-OJ1UHjlKENVzkWGVkL3GZQmAwLyx615Mjs.woff2) format('woff2');
	unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
	font-family: 'Inconsolata';
	font-style: normal;
	font-weight: 500;
	font-stretch: 100%;
	font-display: swap;
	src: url(https://fonts.gstatic.com/s/inconsolata/v20/QlddNThLqRwH-OJ1UHjlKENVzkWGVkL3GZQmAwLyya15.woff2) format('woff2');
	unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
	font-family: 'Inconsolata';
	font-style: normal;
	font-weight: 400;
	font-stretch: 100%;
	font-display: swap;
	src: url(https://fonts.gstatic.com/s/inconsolata/v20/QlddNThLqRwH-OJ1UHjlKENVzkWGVkL3GZQmAwLyx615Mjs.woff2) format('woff2');
	unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
	font-family: 'Inconsolata';
	font-style: normal;
	font-weight: 400;
	font-stretch: 100%;
	font-display: swap;
	src: url(https://fonts.gstatic.com/s/inconsolata/v20/QlddNThLqRwH-OJ1UHjlKENVzkWGVkL3GZQmAwLyya15.woff2) format('woff2');
	unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
	--gray1: #1A1C1E;
	--gray1-rgb: 26, 28, 30;
	--gray2: #726e68;
	--gray3: #A5A093;
	--gray4: #DBD7D0;
	--gray5: #F2EFEB;
	--yellow1: #BDA545;
	--green1: #428891;
	--red1: #B1444A;
	--bg-color: #DAD7D1;
	--cantina1: #D2A5AB;
	--cantina2: #BE5462;
	--cantina3: #7B2339;
}

html,
body {
	font-family: 'Messina Sans', monospace;
	overflow-x: hidden;
  background-color: var(--gray5);
}

/* COLORS */
.color-gray1 {
	color: var(--gray1) !important;
}

.color-gray2 {
	color: var(--gray2) !important;
}

.color-gray3 {
	color: var(--gray2) !important;
}

.color-gray3 {
	color: var(--gray3) !important;
}

.color-gray4 {
	color: var(--gray4) !important;
}

.color-gray5 {
	color: var(--gray5) !important;
}

/* SEPARATORS */
hr.full {
	width: 100%;
}

hr.long {
	width: 75%;
}

hr.half {
	width: 50%;
}

hr.short {
	width: 25%;
}

hr.blue {
	border-top: 1px solid rgba(0, 61, 122, 0.9);
}

hr.white {
	border-top: 1px solid #fff;
}

hr.margins-2 {
	margin-top: 2rem;
	margin-bottom: 2rem;
}

hr.margins-3 {
	margin-top: 3rem;
	margin-bottom: 3rem;
}

hr.margins-4 {
	margin-top: 4rem;
	margin-bottom: 4rem;
}

hr.mobile,
hr.tablet,
hr.small-monitor {
	display: none;
}

hr.desktop {
	display: inline-block;
}

.flex-fill {
	flex: 1;
}

/* general */
.flex-dist-col {
	display: flex;
	justify-content: space-around;
	align-items: center;
	max-width: 1440px;
	margin: auto;
	padding: 5rem;
}

.direction-col {
	flex-direction: column;
}

.active-nav {
	border-bottom: 1px solid var(--gray4);
}
