@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;700;900&display=swap");

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

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

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

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section,
summary {
    display: block;
}
a {
    color: #000;
    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: var(--bg);*/
    color: var(--text-color);
    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;
    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;
    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;
}

/* content
*************************************************/
.content {
    margin-bottom: 50px;
}
.content-item {
    float: left;
    width: 25%;
    padding: 0 8px 15px;
}
.content-pic {
    display: block;
    max-width: 80%;
    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;
}

@media (max-width: 639px) {
    .main .btn-lg {
        width: 100%;
        padding-left: 0;
        padding-right: 0;
    }
    .step {
        width: auto;
        float: none;
        margin-bottom: 25px;
    }

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