@font-face {
	font-family: 'FordAntenna';
	font-style: normal;
	font-weight: 900;
	src: url(../fonts/fordAntenna/FordAntenna-Black.ttf);
	font-display: swap;
}

@font-face {
	font-family: 'FordAntenna';
	font-style: italic;
	font-weight: 900;
	src: url(../fonts/fordAntenna/FordAntenna-BlackItalic.ttf);
	font-display: swap;
}

@font-face {
	font-family: 'FordAntenna';
	font-style: normal;
	font-weight: 700;
	src: url(../fonts/fordAntenna/FordAntenna-Bold.ttf);
	font-display: swap;
}

@font-face {
	font-family: 'FordAntenna';
	font-style: italic;
	font-weight: 700;
	src: url(../fonts/fordAntenna/FordAntenna-BoldItalic.ttf);
	font-display: swap;
}

@font-face {
	font-family: 'FordAntenna';
	font-style: normal;
	font-weight: 600;
	src: url(../fonts/fordAntenna/FordAntenna-Semibold.ttf);
	font-display: swap;
}

@font-face {
	font-family: 'FordAntenna';
	font-style: italic;
	font-weight: 600;
	src: url(../fonts/fordAntenna/FordAntenna-SemiboldItalic.ttf);
	font-display: swap;
}

@font-face {
	font-family: 'FordAntenna';
	font-style: normal;
	font-weight: 500;
	src: url(../fonts/fordAntenna/FordAntenna-Medium.ttf);
	font-display: swap;
}

@font-face {
	font-family: 'FordAntenna';
	font-style: italic;
	font-weight: 500;
	src: url(../fonts/fordAntenna/FordAntenna-MediumItalic.ttf);
	font-display: swap;
}

@font-face {
	font-family: 'FordAntenna';
	font-style: normal;
	font-weight: 400;
	src: url(../fonts/fordAntenna/FordAntenna-Regular.ttf);
	font-display: swap;
}

@font-face {
	font-family: 'FordAntenna';
	font-style: italic;
	font-weight: 400;
	src: url(../fonts/fordAntenna/FordAntenna-RegularItalic.ttf);
	font-display: swap;
}

@font-face {
	font-family: 'FordAntenna';
	font-style: normal;
	font-weight: 300;
	src: url(../fonts/fordAntenna/FordAntenna-Light.ttf);
	font-display: swap;
}

@font-face {
	font-family: 'FordAntenna';
	font-style: italic;
	font-weight: 300;
	src: url(../fonts/fordAntenna/FordAntenna-LightItalic.ttf);
	font-display: swap;
}

@font-face {
	font-family: 'FordAntenna';
	font-style: normal;
	font-weight: 200;
	src: url(../fonts/fordAntenna/FordAntenna-ExtraLight.ttf);
	font-display: swap;
}

@font-face {
	font-family: 'FordAntenna';
	font-style: italic;
	font-weight: 200;
	src: url(../fonts/fordAntenna/FordAntenna-ExtraLightItalic.ttf);
	font-display: swap;
}

@font-face {
	font-family: 'FordAntenna';
	font-style: normal;
	font-weight: 100;
	src: url(../fonts/fordAntenna/FordAntenna-Thin.ttf);
	font-display: swap;
}

:root {
	--primary-color: 0, 9, 91;
	--primary-hover: 6, 18, 130;
	--secondary-color: 6, 111, 239;
	--secondary-hover: 2, 97, 213;
	--accent-color: 23, 0, 244;
	--accent-hover: 21, 0, 200;
	--dark-color: 0, 20, 46;
	--light-gray: 240, 240, 240;
	--light-off: 220, 220, 220;
	--black-off: 15, 15, 15;
	--black-gray: 66, 66, 66;

	--transition: .3s all ease-in-out;
	--transition-default: var(--transition);
}

body {
	font: 400 14px/1.4 "FordAntenna", Sans-Serif;
	background-color: var(--bs-white);
	color: rgb(var(--dark-color));
}

a,
a:focus,
a:hover {
	-webkit-box-shadow: none !important;
	box-shadow: none !important;
	outline: none !important;
	text-decoration: none !important;
	cursor: pointer;
	-o-transition: var(--transition);
	transition: var(--transition);
	-webkit-transition: var(--transition);
}

img {
	-o-transition: var(--transition);
	transition: var(--transition);
	-webkit-transition: var(--transition);
}

button,
input,
select,
textarea {
	-o-transition: var(--transition);
	transition: var(--transition);
	-webkit-transition: var(--transition);
}

input:focus,
textarea:focus,
select:focus,
button:focus,
.select2-container--bootstrap-5.select2-container--focus .select2-selection,
.select2-container--bootstrap-5.select2-container--open .select2-selection {
	outline: none !important;
	-webkit-box-shadow: none !important;
	box-shadow: none !important;
}

.transition-default {
	-o-transition: var(--transition-default);
	transition: var(--transition-default);
	-webkit-transition: var(--transition-default);
}

.background-cover {
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
}

.image-cover {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
}

.image-contain {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	-o-object-fit: contain;
	object-fit: contain;
}

.object-fit-cover {
	-o-object-fit: cover;
	object-fit: cover;
}

.object-fit-contain {
	-o-object-fit: contain;
	object-fit: contain;
}

.pseudo {
	position: relative;
}

.pseudo:before,
.pseudo:after {
	position: absolute;
	content: '';
	display: block;
}

.limit {
	--line: 2;
	overflow: hidden;
	-o-text-overflow: ellipsis;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: var(--line);
	line-clamp: var(--line);
	-webkit-box-orient: vertical;
}

.zi--1 {
	z-index: -1;
}

.zi-1 {
	z-index: 1;
}

.zi-2 {
	z-index: 2;
}

.zi-3 {
	z-index: 3;
}

.zi-4 {
	z-index: 4;
}

.zi-5 {
	z-index: 5;
}

.zi-10 {
	z-index: 10;
}

.ratio > img {
	-o-object-fit: cover;
	object-fit: cover;
}

.ratio-2x1 {
	--bs-aspect-ratio: 50%;
}

.ratio-3x2 {
	--bs-aspect-ratio: calc(2 / 3 * 100%);
}

.gap-5px {
	gap: 5px;
}

.gap-10px {
	gap: 10px;
}

.gap-15px {
	gap: 15px;
}

.gap-20px {
	gap: 20px;
}

.gap-25px {
	gap: 25px;
}

.gap-30px {
	gap: 30px;
}

.fw-900 {
	font-weight: 900;
}

.fw-800 {
	font-weight: 800;
}

.fw-700 {
	font-weight: 700;
}

.fw-600 {
	font-weight: 600 !important;
}

.fw-medium,
.fw-500 {
	font-weight: 500;
}

.fw-400 {
	font-weight: 400;
}

.fw-300 {
	font-weight: 300;
}

.fw-200 {
	font-weight: 200;
}

.fw-100 {
	font-weight: 100;
}

.link-default {
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	vertical-align: middle;
	border: 0;
	outline: none;
	-webkit-box-shadow: none;
	box-shadow: none;
	background: transparent;
	padding: 0;
}

.swal2-html-container {
	font-weight: 500;
}

.swal2-container .swal2-actions {
	font-size: 14px;
}

.swal2-container .swal2-actions .btn {
	font-size: 14px;
}

.swal2-icon.swal2-success .swal2-success-ring {
	border-color: #22C55E;
}

.swal2-icon.swal2-success [class^=swal2-success-line] {
	background-color: #22C55E;
}

.swal2-title {
	font-size: 1.3em;
	font-weight: 700;
	color: rgb(var(--dark-color));
}

.swal2-html-container {
	font-weight: 300;
	font-size: 1em;
}

.swal2-styled.swal2-confirm {
	color: #fff;
	background-color: #22C55E;
	border-color: #22C55E;
	padding: 7px 20px 6px;
	font-weight: 400;
	-webkit-transition: var(--transition);
	-o-transition: var(--transition);
	transition: var(--transition);
}

.swal2-styled.swal2-confirm:hover {
	background-color: #1ca04c;
	border-color: #1ca04c;
}

.was-validated .form-control:valid {
	background-image: none !important;
	border: 1px solid #ced4da !important;
}

.is-overflow {
	overflow: hidden;
	max-height: 100vh;
}

.section-light {
	background: rgb(var(--light-gray));
}

.top-15px {
	top: 15px;
}

.start-15px {
	left: 15px;
}