@import url("https://fonts.googleapis.com/css?family=Space+Grotesk");
/*------------- Font Awesome -----------*/
@import url("https://pro.fontawesome.com/releases/v5.15.4/css/all.css");

/*################# RESET and Semantic ###################*/


:root {
	--color-black: #05122C;

	--color-dark: #1C1853;
	--color-white: #fff;
	--onyx: hsl(207, 8%, 21%);

	--color-light-red: rgba(239 132 142 / 50%);

	--color-light: rgb(242 247 254);
	--color-light: rgb(245 245 245);
/*	--bg-light: #fefefe;*/
/*	--color-seconary: rgb(177, 175, 175);*/

	--section-padding: 1rem;
	--box-shadow: 0 0 10px rgba(0 0 0 / 10%);

	--border-radius-lg: 26px;
	--border-radius-sm: 8px;

	--font-primary: 'Space Grotesk', sans-serif;
	--font-secondary: 'Space Grotesk', sans-serif;

	--box-shadow-sm: 0 0 6px rgba(0 0 0 / 6%);


	--fs-1: 1.563rem;
	--fs-6: 0.938rem;
	--fw-500: 500;
	--fw-600: 600;

/*	--bs-warning: #f15564 !important;*/
/*	--bs-danger-rgb: rgb(241 85 100) !important;*/
/*	--bs-warning: rgb(241 85 100) !important;*/
}

.text-dark {
	color: var(--color-dark) !important;
}
.bg-dark {
	background: var(--color-dark) !important;
}
.copy {
	cursor: pointer;
	font-size: 14px;
	color: var(--color-dark);
}

.cursor-pointer {
	cursor: pointer;
}

html {
	scroll-behavior: smooth;
}
html, body{
	height: 100%;
	width: 100%;
}

body {
	margin: 0;
	padding: 0;
	color: var(--color-black);
	font-family: var(--font-primary);
	display: unset;
	min-height: 100vh;
}

#wrapper {
	min-height: 100vh;
	position: relative;
	background: var(--color-light);
	/*padding: 12px 6px;*/
}

::-webkit-scrollbar {
	width: 8px; height: 10px;
}

::-webkit-scrollbar-track {
	background-color: hsl(0, 0%, 95%);
	border-radius: var(--border-radius-sm);
}

::-webkit-scrollbar-thumb {
	background-color: hsl(0, 0%, 85%);
}

::-webkit-scrollbar-thumb:hover {
	background-color: hsl(0, 0%, 75%);
}

* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
	text-decoration: none;
	outline: none;
	border: none;
	position: relative;
	word-wrap: break-word;
}

h1, h2, h3, h4, h5, h6 {
	line-height: 1;
	font-family: var(--font-secondary) !important;
}
h1 {
	font-size: 3.6rem;
}

h2 {
	font-size: 2rem;
	font-weight: 800;
}

h3 {
	font-size: 1.6em;
	font-weight: 500;
}

h4 {
	font-size: 1em;
	font-weight: 500;
}

h5 {
	font-size: 0.8em;
	font-weight: 500;
}

canvas {
	max-width: 100%;
	max-height: 198px;
}

small {
	font-size: var(--sm-font-size);
}

hr {
	border: 1px inset rgba(0 0 0 / 20%);
	color: rgba(0 0 0 / 0.6%) !important;
}

p {
	margin: 2px 0;
}

::placeholder {
	opacity: 0.6;
	font-size: 0.79rem;
	color: var(--color-dark);
	font-family: inherit;
	text-transform: capitalize;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}

/* Firefox */
input[type=number] {
	-moz-appearance: textfield;
}

/*################### General Class ###############*/
.first-cap:first-letter {
	text-transform: capitalize;
}
img.icon, .icon, .icon-lg {
    width: 18px;
    height: 18px;
    line-height: 18px;
    display: inline-block;
    object-fit: contain;
    text-align: center;
}
.icon-lg {
	width: 28px;
	height: 28px;
}
.icon-xl {
	width: 48px;
	height: 48px;
}
.gap-1 {
	gap: 1rem;
}
.gap-2 {
	gap: 2rem;
}
.gap-3 {
	gap: 3rem;
}
.gap-4 {
	gap: 4rem;
}

.bg-none {
	background: none !important;
}
.text-cap {
	text-transform: capitalize;
}
.text-upper {
    text-transform: uppercase;
}
.text-lower {
    text-transform: lowercase;
}
.text-bold {
	font-weight: 500 !important;
}
.text-bolder {
	font-weight: bolder;
}
.f-sm {
	font-size: 0.8rem;
}
.border-radius-lg {
	border-radius: var(--border-radius-lg) !important;
}

.border-radius-sm {
	border-radius: var(--border-radius-sm) !important;
}

.badge {
	font-weight: 500;
}

img {
	width: 100%;
}

.dropdown-menu {
	min-width: 220px;
}
.object-fit-contain {
	object-fit: contain;
}
.object-fit-cover {
	object-fit: cover;
}


/*==================== BUTTONS ========================*/
.btn {
	border-radius: 8px;
	box-shadow: none !important;
	cursor: pointer;
}
a.no-underline {
	text-decoration: none;
}
.btn.w-100 {
	display: block;
	padding: 1rem;
}


/*==================== FORMS ========================*/
select {
	appearance: menulist !important;
}

textarea {
	resize: none;
	font-family: inherit;
}

.form-group {
	margin: 0.7rem 0;
}

.input-group-text {
	border: none;
	background: var(--color-light);
}
.input-group .btn {
	z-index: 0;
}
.form-control, .form-control:focus, .form-control[disabled], .form-control[readonly] {
	background: var(--color-light);
	box-shadow: none;
	outline: none;
	border: none;
	border-radius: var(--border-radius-sm);
	padding: 14px;
}

/*==================== CARD ========================*/
.card {
	background: var(--color-white);
	padding: 1rem;
	/*border: none;*/
	display: block;
	border-radius: var(--border-radius-sm);
	/*box-shadow: var(--box-shadow-sm);*/
	margin: 0.6rem 0;
/*	box-shadow: none;*/
}
.overlay:before {
	content: '';
	background: rgba(0 0 0 / 50%);
	height: 100%;
	width: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 0;
	border-radius: var(--border-radius-sm);
}
.border-none {
	border-radius: 0;
}
.border-sm {
	border-radius: 4px;
}

.card.h-100 {
	height: calc(100% - 1.2rem) !important;
}
.no-shadow, .no-shadow:hover, .no-shadow:focus {
	box-shadow: none !important;
}

.card.large {
	padding: 80px 20px !important;
	border-radius: 26px;
}

/*==================== LENGTHS ========================*/
.mw-400 {
	max-width: 400px;
}

.mw-500 {
	max-width: 500px;
}

.mw-600 {
	max-width: 600px;
}

.mw-700 {
	max-width: 700px;
}

.mw-800 {
	max-width: 800px;
}

.mw-900 {
	max-width: 800px;
}

.mw-1200 {
	max-width: 1200px;
}

.m-auto {
	margin-inline: auto;
}

.mvh-100, .mv-100 {
	min-height: 100vh;
}


/*############## DATATABLE ####################*/
.dataTable-wrapper.no-header .dataTable-container {
	border-top: 1px solid #d9d9d9;
}

.dataTable-top,
.dataTable-bottom {
	padding: 8px 10px;
}

.dataTable-top > div:first-child,
.dataTable-bottom > div:first-child {
	float: left;
}

.dataTable-top > div:last-child,
.dataTable-bottom > div:last-child {
	float: right;
}

.dataTable-input, .dataTable-selector {
	padding: 6px;
	width: 90px;
	border-radius: 4px;
	background: none;
	border: none;
	outline: none;
}

.dataTable-info {
	margin: 7px 0;
}

.dataTable-pagination a {
	border: 1px solid transparent;
	float: left;
	margin-left: 2px;
	padding: 6px 12px;
	position: relative;
	text-decoration: none;
	color: #333;
}

.dataTable-pagination a:hover {
	background-color: #d9d9d9;
}

.dataTable-pagination .active a,
.dataTable-pagination .active a:focus,
.dataTable-pagination .active a:hover {
	background-color: #d9d9d9;
	cursor: default;
}

.dataTable-pagination .ellipsis a,
.dataTable-pagination .disabled a,
.dataTable-pagination .disabled a:focus,
.dataTable-pagination .disabled a:hover {
	cursor: not-allowed;
}

.dataTable-pagination .disabled a,
.dataTable-pagination .disabled a:focus,
.dataTable-pagination .disabled a:hover {
	cursor: not-allowed;
	opacity: 0.4;
}

.dataTable-pagination .pager a {
	font-weight: bold;
}

/* TABLE */
table {
	margin-bottom: 0 !important;
}
table::scrollbar {
/*	width: 4px;*/
}
tbody td, thead th {
	padding: 16px 8px !important;
	word-wrap: break-word;
	white-space: nowrap;
/*	color: var(--color-dark);*/
	color: inherit;
	font-size: 16px;
	transition: all 0.133s;
}

thead th {
	font-size: 13px;
	font-weight: normal;
/*	background: var(--color-primary) !important;*/
/*	color: var(--color-light);*/
}

/*thead th {
	font-size: 12px !important;
}*/

@media screen and (min-width: 992px){
	td, th {
		word-wrap: unset;
	}

	tbody td {
		font-size: 14px;
	}
}



.dataTable-table {
	max-width: 100%;
	width: 100%;
	border-spacing: 0;
	border-collapse: separate;
}


.dataTable-table > tfoot > tr > th {
	vertical-align: bottom;
	text-align: left;
	border-top: 1px solid #d9d9d9;
}

.dataTable-table th {
	vertical-align: bottom;
	text-align: left;
}

.dataTable-table th a {
	text-decoration: none !important;
	color: inherit;
}

.dataTable-sorter {
	display: inline-block;
	height: 100%;
	position: relative;
	width: 100%;
	text-decoration: none;
/*	color: var(--color-white) !important;*/
/*	color: var(--color-white) !important;*/
}

.dataTable-sorter::before,
.dataTable-sorter::after {
	content: "";
	height: 0;
	width: 0;
	position: absolute;
	right: 4px;
	border-left: 4px solid transparent;
	border-right: 4px solid transparent;
	opacity: 0.8;
}

.dataTable-sorter::before {
	border-top: 4px solid var(--color-dark);
	bottom: 0px;
}

.dataTable-sorter::after {
	border-bottom: 4px solid var(--color-dark);
	border-top: 4px solid transparent;
	top: 0px;
}

.asc .dataTable-sorter::after,
.desc .dataTable-sorter::before {
	opacity: 0.8;
}

.dataTables-empty {
	text-align: center;
}

.dataTable-top::after, .dataTable-bottom::after {
	clear: both;
	content: " ";
	display: table;
}

.dataTable-dropdown {
	display: inline-flex;
	align-items: center;
}

.dataTable-dropdown label {
	white-space: nowrap;
	display: none;
/*	margin-left: 15px;*/
}





.navbar {
    display: flex;
    justify-content: space-evenly;
    color: white;
    background-color: rgb(2, 10, 49);
   
}
#background-div {
    display: flex;
    justify-content: center;
    background: radial-gradient(circle, rgb(6, 27, 71) 10%, rgb(1, 3, 12) 90%); 
    color: white; 
    height: 100%;
    
}
#content{
    padding-top: 200px;
}
#card{
    min-width: 180px; 
    /* min-height: 55px;  */
    background: linear-gradient(262deg, rgba(28, 38, 59, 0.8) 5.02%, rgba(18, 26, 46, 0.8) 86.48%); 
    border: 1px solid transparent;
}
#car {
    object-fit: cover;
    height: 100%;
    width: 100%;
    border: 1px solid transparent;
    border-radius: 30px;
    height: 250px;
    transition: transform 0.3s ease;
    cursor: pointer;
}
#car:hover {
    transform: scale(1.05);
}
#house{
    object-fit: cover;
    height: 100%;
    width: 100%;
    border: 1px solid transparent;
    border-radius: 30px;
    height: 250px;
    transition: transform 0.3s ease;
    cursor: pointer;
}
#house:hover {
    transform: scale(1.05);
}
#card1{
    background-color: rgba(18, 26, 46, 0.8);
    border-radius: 20px;
}
#footer{
    background-color: rgb(180, 180, 180);
    color: black;
    margin: 0;
    padding-left: 200px;
    padding-right: 200px;
}
#footer-logo{
    border-bottom: 1px solid rgb(99, 97, 97);
    padding-bottom: 10px;
}
#empty{
    margin-top: 0;
    background-color:  rgb(180, 180, 180);
    height: 50px;
    width: 100%;
}