:root {
	--primary: #9c30fe;
	--primary-80: rgba(156, 48, 254, 0.8);
	--primary-light: #a25fde;

	--secondary: #49a1fc;
	--secondary-light: #60a8f3;

	--bg: #fff;
	--text-color: #404040;
}

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;700;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Maven+Pro:wght@400..900&display=swap');
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
article, aside, details, figcaption, figure, footer, header, hgroup, main, nav, section, summary {
	display: block;
}
a {
	color: #fff;
	text-decoration: underline;
}
a:hover {
	text-decoration: none;
}
a, img {
	border: none;
}
a, input:focus, button:focus, textarea:focus, select:focus {
	outline: none;
}
button {
	cursor: pointer;
}
body {
	background:#000;
	color:#fff;
	font: 16px/1.4 Inter, Arial, Tahoma, sans-serif;
}

.wrapper {
	width: 100%;
	overflow: hidden;
	text-align: center;
}
.container {
	max-width: 1280px;
	margin: 0 auto;
	padding-left: 15px;
	padding-right: 15px;
}
.container:after,
.cla:after {
	content: '';
	clear: both;
	display: block;
}

img {
	user-select: none;
}

h1, h2, h3 {
	font-weight: bold;
	text-transform: uppercase;
	letter-spacing: 1px;
}

h2 {
	font-size: 30px;
}

.btn {
	display: inline-block;
	padding: 0 32px;
	background: var(--primary);
	border: none;
	border-radius: 8px;
	color: #fff;
	font-size: 20px;
	line-height: 64px;
	font-weight: bold;
	text-decoration: none;
	box-shadow: 0 0 32px rgba(0, 0, 0, 0.25);
}
.btn:hover {
	background: var(--primary-light);
}
.btn-w {
	background: #fff;
	color: var(--primary);
}
.btn-w:hover {
	background: rgba(255, 255, 255, 0.9);
}
.btn-b {
	background: var(--secondary);
}
.btn-b:hover {
	background: var(--secondary-light);
}

.btn-lg {
	padding: 0 48px;
	border-radius: 12px;
	font-size: 32px;
	line-height: 80px;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.text-center {
	text-align: center;
}


/* header
*************************************************/
.header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	padding: 15px 0;
	background: rgba(255, 255, 255, 0.5);
	-webkit-backdrop-filter: blur(4px);
	backdrop-filter: blur(4px);
}
.logo {
	float: left;
}
.logo a {
	text-decoration: none;
}
.logo img {
	display: block;
	width: 32px;
	float: left;
}
.logo a:after {
	content: attr(data-name);
	line-height: 32px;
	margin-left: 6px;
}
.menu {
	float: right;
	width: 32px;
	height: 32px;
	padding-top: 4px;
	cursor: pointer;
}
.menu div {
	height: 3px;
	background: #000;
}
.menu div + div {
	margin-top: 4px;
}

.modal-nav {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: #f5f5f5;
	padding: 48px 20px;
	z-index: 9999;
	display: none;
}
.modal-nav.open {
	display: block;
}
.modal-close {
	position: absolute;
	top: 16px;
	right: 16px;
	width: 48px;
	font-size: 40px;
	line-height: 48px;
	cursor: pointer;
}
.nav {
	width: 220px;
	margin: 0 auto;
	font-size: 28px;
	text-align: left;
	font-weight: bold;
}
.nav-name {
	color: var(--primary);
}
.nav-link {
	display: block;
	color:#000;
	text-decoration: none;
}
.nav-link + .nav-link {
	margin-top: 10px;
}
.nav-link:hover {
	color: #666;
}


/* main
*************************************************/
.main {
	min-height: 100vh;
	background: url('../images/main-bg.jpg') center center no-repeat;
	background-attachment: fixed;
	background-size: cover;
	padding: 25px 0 15px;
	display: flex;
}
.main .container {
	width: 100%;
	margin: auto;
}
.main-panel {
	max-width: 640px;
	margin: auto;
	color: #000;
	background: rgba(255, 255, 255, 0.8);
	border-radius: 16px;
	padding: 45px 25px;
}
.main h1 {
	font-size: 42px;
	margin-bottom: 25px;
}
.main h1 small {
	display: block;
	font-size: 20px;
	font-weight: normal;
	text-transform: none;
	opacity: 0.8;
}
.main-desc {
	margin-top: 25px;
	font-size: 24px;
}


/* steps
*************************************************/
.steps {
	background: var(--primary); /*#d90285*/
	padding: 35px 0;
	color: #fff;
	margin-bottom: 50px;
}
.steps.no-bg {
	background: no-repeat;
	color: var(--text-color);
}
.steps h2 {
	margin-bottom: 35px;
}
.steps .container {
	max-width: 720px;
}
.step-items {
	margin-bottom: 25px;
}
.step {
	float: left;
	width: 33.33%;
	font-size: 20px;
	cursor: pointer;
}
.step-num {
	font-size: 16px;
}
.step-num span {
	font-size: 56px;
	line-height: 1;
	font-weight: bold;
}
.step-pic {
	display: block;
	max-width: 100px;
	margin: 8px auto;
	height: 70px;
}


/* content
*************************************************/
.content {
	margin-bottom: 50px;
}
.content-item {
	float: left;
	width: 25%;
	padding: 0 8px 15px;
}
.content-pic {
	display: block;
	max-width: 80%;
	height: 180px;
	object-fit: contain;
	margin: 0 auto 15px;
}
.content-title {
	color: #000;
	margin-bottom: 8px;
}


/* try
*************************************************/
.try {
	margin-bottom: 45px;
}
.try-pic {
	display: block;
	max-width: 80%;
	margin: 0 auto;
}


/* footer
*************************************************/
.footer {
	background: var(--secondary);
	padding: 30px 0;
	color: #fff;
}
.footer a {
	color: #fff;
}
.footer-nav {
	margin-bottom: 15px;
}
.footer-nav a {
	margin: 0 4px;
}
.copyright {
	font-size: 14px;
	opacity: 0.8;
}


.text {
	padding-top: 80px;
	margin-bottom: 50px;
	text-align: left;
}
.text h1 {
	margin-bottom: 25px;
}
.text h2 {
	font-size: 20px;
	margin-bottom: 10px;
}
.text h3 {
	font-size: 18px;
	margin-bottom: 6px;
}
.text h4 {
	font-size: 16px;
}
.text p {
	margin-bottom: 8px;
}
.text p + h2,
.text p + h3 {
	margin-top: 20px;
}
.text p + h4 {
	margin-top: 8px;
}
.text ul,
.text ol {
	list-style-position: inside;
	padding-left: 6px;
	margin-bottom: 8px;
}
.no-bull {
	list-style: none;
}

.map {
	height: 600px;
	margin: 25px 0;
}
.map-box {
	display: block;
	width: 100%;
	height: 100%;
	border: none;
}


/* form
*************************************************/
.form {
	max-width: 640px;
	margin: 0 auto;
	text-align: left;
}
.form-row {
	margin: 0 -15px;
}
.form-row:after {
	content: '';
	clear: both;
	display: block;
}
.form-col {
	float: left;
	width: 50%;
	padding: 0 15px;
}
.form-label {
	font-size: 14px;
	opacity: 0.6;
	margin-bottom: 4px;
}
.form-input {
	display: block;
	width: 100%;
	height: 60px;
	padding: 0 10px;
	background: #f0f0f0;
	border: 2px solid #ddd;
	border-radius: 4px;
	color: var(--text-color);
	font-family: Inter, Arial, Tahoma, sans-serif;
	font-size: 16px;
	margin-bottom: 15px;
}
textarea.form-input {
	height: 160px;
	padding: 10px;
	margin-bottom: 30px;
}
/* -----------------privacy--------------------------------- */
.header-privacy{
    font-family: "Lato", sans-serif;
    background:#eeeeee;

    padding: 2rem 0;   
	text-align: center;
}
.header-privacy__logo{
	display: inline-block;
	text-decoration: none;
	margin-bottom: 1rem;
	padding: 2rem;
	background: #EB4C6A;
	color: #fff;
	font-size: 33px;
	font-weight: bold;
	border-radius: 10px;
}
.header-privacy__list {
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background-color: #333;
    text-align: center;
}
.header-privacy__list li{
    display: inline-block; 
}
.header-privacy li a{
    display: block;
    color: white;
    font-size: 12px;
    text-align: center;
    padding: 1.4rem 1.6rem;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    background-color: #333;
    transition: all 0.5s;   
}
.header-privacy__context{
    text-align: left;  
    background: #fff;
	color: #000;
    padding: 1.6rem;
    border-radius: 0.5rem;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.3);
    max-width: 960px;
    margin: 0 auto;
}
.header-privacy__title{
    font-size: 20px; 
    text-align: center;
}
.header-privacy__context p{
    font-size: 12px;
    margin-bottom: 10px;
}
.header-privacy__context h2{
    font-size: 16px;
}
@media (max-width: 639px) {
	.main .btn-lg {
		width: 100%;
		padding-left: 0;
		padding-right: 0;
	}
	.main h1 {
		font-size: 28px;
	}
	.step {
		width: auto;
		float: none;
		margin-bottom: 25px;
	}

	.content-item {
		float: none;
		width: auto;
	}
	.content-pic {
		max-width: 120px;
	}
}