@import url('https://fonts.googleapis.com/css2?family=Cal+Sans&family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');

body {
	font-family: "Open Sans", sans-serif;
	font-weight: 400;
	font-style: normal;
	font-optical-sizing: auto;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: #f9f9f9;
    color: #333446;
	font-size: 18px;
}

a {
	text-decoration: none;
}

ul, li {
	list-style: none;
	margin: 0;
	padding: 0;
}

h1 {
	font-family: "Cal Sans", sans-serif;
	font-size: 40px;
}

h2 {
	font-size: 48px;
}

h3 {
	font-size: 40px;
}

h4 {
	font-size: 20px;
}

h1, h2, h3, h4, h5 { margin: 0; padding: 0; }
p { margin: 0; padding: 0; }

/* HEADER */

header {
	position: absolute;
	left: 0;
	top: 0;
	right: 0;
	z-index: 10001;
}

header .wrapper {
	display: flex;
	align-items: center;
	padding-top: 15px;
	padding-bottom: 15px;
}

header .wrapper .logo {
	width: 120px;
}

header .wrapper .logo img {
	width: 100%;
}

header .wrapper nav {
	margin-left: auto;
}

header .wrapper nav > ul {
	display: flex;
	align-items: center;
	gap: 10px;
}

header .wrapper nav ul li {
	position: relative;
}

header nav ul.submenu {
	display: flex;
	flex-direction: column;
	position: absolute;
    left: 0;
	visibility: hidden;
    opacity: 0;
    top: 0px;
	width: 250px;
	transition: .1s;
	border: 1px solid #e0e0e0;
	z-index: 10001;
}

header nav ul.submenu li a {
	display: block;
	width: 100%;
	font-size: 15px;
	line-height: 18px;
	background-color: #fff;
	color: #001233;
	padding: 10px 15px;
}

header nav ul.submenu.show {
	visibility: visible;
    opacity: 1;
    top: 45px;
}

.wallet-status {
	display: flex;
	align-items: center;
	border-radius: 30px;
	font-size: 15px;
	color: #2a0052;
	background-color: transparent;
	border: 2px solid #2a0052;
}

.wallet-status span {
	display: flex;
	align-items: center;
	padding: 5px 15px;
}

.wallet-status span i {
	position: relative;
	font-size: 22px;
	line-height: 22px;
	top: 1px;
}

.wallet-status span:first-child {
	border-top-left-radius: 30px;
	border-bottom-left-radius: 30px;
	border-right: 0;
	text-transform: uppercase;
	padding-right: 10px;
	color: #2a0052;
}

.wallet-status span:last-child {
	border-radius: 30px;
	border: 2px solid #2a0052;
	background-color: #2a0052;
	color: #fff;
	font-weight: 700;
}

.frontpage {
	height: 100vh;
	min-height: 760px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.my-items {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.my-items .item {
	display: flex;
	align-items: center;
	background-color: #f4f4f4;
	padding: 10px;
	border-radius: 30px;
}

.my-items .item .right-side {
	margin-left: auto;
}

.my-items-summary {
	padding: 20px;
	border: 1px solid #ddd;
	border-radius: 30px;
	text-align: right;
}

.result {
	text-align: center;
}

.result h2 {
	margin-bottom: 30px;
}

.form-wrapper {
	max-width: 700px;
	margin: 0 auto;
}

.form-wrapper .upload-files {
	border-radius: 30px;
	background-color: #f4f4f4;
	padding: 30px;
}

.form-wrapper .upload-files p {
	text-align: center;
	color: #676767;
	font-size: 15px;
	transition: opacity 0.5s ease-in-out;
	opacity: 1;
}

.form-wrapper .upload-files p.fade-out {
	opacity: 0;
}

.reviews {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
}

.reviews .item {
	padding: 20px;
	border-radius: 30px;
	background-color: #f4f4f4;
}

.reviews .item > span {
	display: block;
	margin: 5px 0 10px 0;
	font-size: 15px;
	color: #2a0052;
}

.reviews .item h4 {
	display: flex;
	align-items: center;
	gap: 5px;
}

.reviews .item h4 span {
	background-color: #2a0052;
	color: #fff;
	border-radius: 3px;
	font-size: 13px;
	line-height: 13px;
	padding: 4px 7px;
	font-weight: 500;
	text-transform: uppercase;
}

.step-title span {
	display: inline-block;
	text-transform: uppercase;
	background-color: #2a0052;
	color: #fff;
	font-size: 12px;
	line-height: 12px;
	padding: 4px 8px;
	border-radius: 3px;
}

.form-buttons {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 30px;
}

.form-buttons .item {
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	border-radius: 0;
	border: 0;
	background-color: transparent;
	position: relative;
	overflow: hidden;
	background-color: transparent;
	border: 2px dashed #ddd;
	border-radius: 20px;
	cursor: pointer;
	transition: .3s;
}

.form-buttons .item:hover {
	border-color: #2a0052;
}

.form-buttons .item i {
	position: relative;
	top: 2px;
	font-size: 40px;
	line-height: 40px;
}

.form-buttons .item button {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	width: 100%;
	height: 120px;
	background-color: transparent;
	border: 0;
	cursor: pointer;
	color: #555;
	transition: .3s;
	font-weight: 600;
}

.form-buttons .item:hover button {
	color: #2a0052;
}

.form-buttons .item input[type=file] {
	position: absolute;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	opacity: 0;
	cursor: pointer;
	z-index: -1;
}

.result-buttons {
	max-width: 350px;
	margin: 0 auto;
}

.result-buttons a {
	display: block;
}

.our-price {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	font-size: 90px;
	line-height: 90px;
	color: #2a0052;
	font-weight: 700;
}

.our-price em {
	font-size: 25px;
	line-height: 25px;
	font-style: normal;
	font-weight: 600;
	text-transform: uppercase;
}

.form-space {
	margin-bottom: 30px;
}

.form-space:last-child {
	margin-bottom: 0px;
}

.form-space label {
	display: block;
	margin-bottom: 5px;
}

.form-space input {
	display: block;
	width: 100%;
	padding: 15px 20px;
	background-color: #fff;
	border: 1px solid #ddd;
}

.btn {
	border: 0;
	border-radius: 0;
	font-weight: 600;
}

.btn.btn-2 {
	padding: 10px 20px;
	border: 2px solid #000;
	color: #000;
	border-radius: 0;
}

.btn.btn-3 {
	padding: 12px 20px;
	text-transform: uppercase;
	font-size: 18px;
	border-radius: 30px;
	border: 2px solid #000;
}

.btn.btn-4 {
	font-size: 16px;
	color: #858585;
}

footer {
	padding: 20px 0;
	border-top: 1px solid #ddd;
}

footer p {
	color: #999;
	font-weight: 400;
	font-size: 14px;
}

footer ul {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: 5px;
}

footer ul li {
	position: relative;
}

footer ul li:not(:last-child)::after {
	position: relative;
	content: '|';
	margin: 0 5px;
	color: #ccc;
}

footer ul li a {
	text-decoration: none;
	text-transform: uppercase;
	font-size: 14px;
	color: #2a0052;
	font-weight: 500;
}

.lds-ripple,
.lds-ripple div {
	box-sizing: border-box;
}

.lds-ripple {
	display: inline-block;
	position: relative;
	width: 80px;
	height: 80px;
}

.lds-ripple div {
	position: absolute;
	border: 4px solid #2a0052;
	opacity: 1;
	border-radius: 50%;
	animation: lds-ripple 1s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}

.lds-ripple div:nth-child(2) {
	animation-delay: -0.5s;
}

@keyframes lds-ripple {
	0% {
		top: 36px;
		left: 36px;
		width: 8px;
		height: 8px;
		opacity: 0;
	}
	4.9% {
		top: 36px;
		left: 36px;
		width: 8px;
		height: 8px;
		opacity: 0;
	}
	5% {
		top: 36px;
		left: 36px;
		width: 8px;
		height: 8px;
		opacity: 1;
	}
	100% {
		top: 0;
		left: 0;
		width: 80px;
		height: 80px;
		opacity: 0;
	}
}

.pos-rel { position: relative !important; }
..pos-rel.pos-rel-3 { z-index: 3 !important; }
.pt50 { padding-top: 50px !important; }
.pt100 { padding-top: 100px !important; }
.pt150 { padding-top: 150px !important; }
.pb50 { padding-bottom: 50px !important; }
.pb100 { padding-bottom: 100px !important; }
.pb150 { padding-bottom: 150px !important; }
.mb30 { margin-bottom: 30px !important; }
.mb50 { margin-bottom: 50px !important; }
.mb20 { margin-bottom: 20px !important; }
.mt20 { margin-top: 20px !important; }
.mt30 { margin-top: 30px !important; }
.mt50 { margin-top: 50px !important; }
.g-6 { --bs-gutter-x: 4rem; }
iframe { height: 750px; }

@media (min-width: 0px) and (max-width: 991px) {
	
	h1 {
		font-size: 30px;
	}
	
	header .wrapper .logo {
		width: 100px;
	}
	
	.wallet-status {
		font-size: 14px;
	}
	
	.wallet-status span {
		padding: 5px 10px;
	}

	.wallet-status span i {
		padding-right: 5px;
	}

	.form-buttons {
		grid-template-columns: 1fr;
		gap: 10px;
	}
	
	footer ul {
		flex-direction: column;
		align-items: flex-start;
	}
	
	footer ul li:after {
		display: none;
	}
	
	.m-mt20 { margin-top: 20px !important; }
	.m-mt30 { margin-top: 30px !important; }
	
}

@media (min-width: 1200px) {
	
}