:root {
    --blue: #007bff;
    --indigo: #6610f2;
    --purple: #6f42c1;
    --pink: #e83e8c;
    --red: #dc3545;
    --orange: #fd7e14;
    --yellow: #ffc107;
    --green: #28a745;
    --teal: #20c997;
    --cyan: #17a2b8;
    --white: #fff;
    --gray: #6c757d;
    --gray-dark: #343a40;
    --primary: #007bff;
    --secondary: #6c757d;
    --success: #28a745;
    --info: #17a2b8;
    --warning: #ffc107;
    --danger: #dc3545;
    --light: #f8f9fa;
    --dark: #343a40;
    --breakpoint-xs: 0;
    --breakpoint-sm: 576px;
    --breakpoint-md: 768px;
    --breakpoint-lg: 992px;
    --breakpoint-xl: 1200px;
    --font-family-sans-serif: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    --font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}

*,
:after,
:before {
    box-sizing: border-box;
}

html {
    font-family: 'Raleway', sans-serif;
    line-height: 1.15;
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;
    font-size: 1rem;
    line-height: 1.5;
    color: #fff;
    text-align: left;
    background-color: #01030A;
}

h1, h2, h3, h4 {
    color: #fff;
    margin-top: 0;
    margin-bottom: .5rem;
    font-weight: 500;
    line-height: 1.2;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.5rem; }

a {
    text-decoration: none;
    background-color: transparent;
}

a:hover {
    text-decoration: none;
}

.container {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}

@media (min-width:576px) { .container { max-width: 540px; } }
@media (min-width:768px) { .container { max-width: 720px; } }
@media (min-width:992px) { .container { max-width: 960px; } }
@media (min-width:1200px) { .container { max-width: 1140px; } }

.row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}

.col, .col-12, .col-md-4, .col-lg-4 {
    position: relative;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
}

.col { flex-basis: 0; flex-grow: 1; max-width: 100%; }
.col-12 { flex: 0 0 100%; max-width: 100%; }

@media (min-width:768px) {
    .col-md-4 { flex: 0 0 33.3333333333%; max-width: 33.3333333333%; }
}

@media (min-width:992px) {
    .col-lg-4 { flex: 0 0 33.3333333333%; max-width: 33.3333333333%; }
}

.d-flex { display: flex !important; }
.d-none { display: none !important; }
.d-block { display: block !important; }

@media (min-width:576px) { .d-sm-block { display: block !important; } }
@media (min-width:992px) { 
    .d-lg-none { display: none !important; }
    .d-lg-flex { display: flex !important; }
}

.flex-column { flex-direction: column !important; }
.flex-wrap { flex-wrap: wrap !important; }
.justify-content-between { justify-content: space-between !important; }
.justify-content-center { justify-content: center !important; }
.align-items-center { align-items: center !important; }

@media (min-width:992px) {
    .justify-content-lg-center { justify-content: center !important; }
}

.m-0 { margin: 0 !important; }
.mb-3 { margin-bottom: 1rem !important; }
.mb-4 { margin-bottom: 1.5rem !important; }
.my-5 { margin-top: 3rem !important; margin-bottom: 3rem !important; }

.p-0 { padding: 0 !important; }
.p-3 { padding: 1rem !important; }
.p-4 { padding: 1.5rem !important; }

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

.btn {
    display: inline-block;
    font-weight: 400;
    color: #212529;
    text-align: center;
    vertical-align: middle;
    user-select: none;
    background-color: transparent;
    border: 1px solid transparent;
    padding: .375rem .75rem;
    font-size: 1rem;
    line-height: 1.5;
    border-radius: .25rem;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

.btn:hover {
    color: #212529;
    text-decoration: none;
}

.btn:focus {
    outline: 0;
    box-shadow: 0 0 0 .2rem rgba(0, 123, 255, .25);
}

.btn-sm {
    font-size: 16px;
    height: 35px;
    padding: 0 25px;
}

.btn-lg {
    font-size: 20px;
    height: 50px;
    padding: 0 40px;
}

.btn-primary {
    background: #9147ff;
    border-radius: 30px;
    white-space: nowrap;
    line-height: 1;
    border: none;
    color: #fff;
}

.btn-primary:hover {
    color: #fff;
}

.btn-primary:focus {
    box-shadow: none;
}

.form-control {
    display: block;
    width: 100%;
    height: calc(1.5em + .75rem + 2px);
    padding: .375rem .75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: .25rem;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

.form-control:focus {
    color: #495057;
    background-color: #fff;
    border-color: #80bdff;
    outline: 0;
    box-shadow: 0 0 0 .2rem rgba(0, 123, 255, .25);
}

.form-control-lg {
    height: 3.3rem;
    padding: 20px;
}

.form-group {
    margin-bottom: 1rem;
}

.position-relative {
    position: relative !important;
}

.img-fluid {
    max-width: 100%;
    height: auto;
}

#app, body, html {
    height: 100%;
}

#app {
    position: relative;
    z-index: 2;
}

body {
    font-size: 16px;
    font-weight: 400;
    font-family: 'Raleway', sans-serif;
}

section {
    width: 100%;
}

section .section-wrapper {
    padding: 50px 0;
    text-align: center;
}

section .section-header {
    padding-bottom: 50px;
}

section .section-header h2,
section .section-header h4 {
    margin: 0;
    font-weight: 400;
    text-align: center;
}

section .section-header h2 {
    line-height: 1.5;
}

section .section-header h1 {
    text-align: center;
    color: #fff;
}

section .section-header h4 {
    color: #9147ff;
}

section .section-header .wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
}

section .section-header .underline {
    width: 120px;
    height: 4px;
    background: #9147ff;
}

@media (min-width:992px) {
    section .section-wrapper {
        text-align: left;
    }
}

#nav-container {
    background: #fff;
    transition: background .25s ease;
    position: fixed;
    padding: 45px 0;
    width: 100%;
    left: 0;
    top: 0;
    z-index: 1000;
}

#nav-container .logo {
    padding-right: 20px;
}

#nav-container .btn-login {
    background-color: #fff;
    color: #08514F !important;
}

#nav-container ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

#nav-container .nav-item {
    text-decoration: none;
    color: #fff;
}

#nav-container .nav-item.is-active,
#nav-container .nav-item:hover {
    color: #9147ff;
}

#nav-container .nav .left-side {
    flex: 1;
}

#nav-container .nav .nav-item {
    margin-right: 15px;
    position: relative;
    display: block;
}

#nav-container .nav .nav-item:after {
    content: "";
    height: 1px;
    width: 100%;
    display: none;
    background: #9147ff;
    position: absolute;
    margin-top: 5px;
}

#nav-container .nav .nav-item:hover:after {
    display: block;
}

#nav-container .nav .burger {
    margin-right: 20px;
    cursor: pointer;
}

#nav-container .nav .burger>div {
    background-color: #9147ff;
    margin-bottom: 2px;
    width: 26px;
    height: 4px;
}

#nav-container .mobile-nav {
    opacity: 0;
    position: fixed;
    flex-direction: column;
    align-items: center;
    left: -50%;
    top: 149px;
    width: 50%;
    background-color: #fff;
    z-index: 9;
    padding: 30px 0;
    transition: transform .3s ease, opacity .3s ease;
    box-shadow: 0 0 10px #ccc;
    text-transform: uppercase;
}

#nav-container .mobile-nav li {
    margin-bottom: 15px;
}

#nav-container .mobile-nav--active {
    opacity: 1;
    transform: translate(100%);
}

#nav-container.home {
    background: transparent;
}

#nav-container.home:not(.scrolled) .burger>div {
    background-color: #fff;
}

#nav-container.home:not(.scrolled) .btn-login {
    color: #9147ff;
    background: #fff;
}

#nav-container.home:not(.scrolled) .nav .nav-item {
    color: #fff;
}

#nav-container.home:not(.scrolled) .nav .nav-item.is-active {
    font-weight: 700;
}

#nav-container.home:not(.scrolled) .nav .nav-item:hover:after {
    background: #fff;
}

#nav-container.scrolled {
    transition: background .25s ease, padding .25s ease;
    padding: 15px 0;
    background: #fff;
}

#nav-container.scrolled .mobile-nav {
    top: 89px;
}

.header.home {
    background-size: cover;
}

.header.page {
    height: 149px;
}

.header--content {
    position: relative;
    padding: 250px 0 70px;
    height: 100%;
}

@media (min-width:768px) {
    .header--content {
        padding: 300px 0 70px;
    }
}

@media (min-width:992px) {
    .header--content {
        padding: 0;
    }
}

#hero {
    height: 450px;
    margin-top: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-cta {
    height: 80px;
    width: 240px;
    font-size: 18px;
    border-radius: 20px;
    cursor: pointer;
    border: none;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: rgba(0, 0, 0, 0.17) 0px -23px 25px 0px inset, rgba(0, 0, 0, 0.15) 0px -36px 30px 0px inset, rgba(0, 0, 0, 0.1) 0px -79px 40px 0px inset, rgba(0, 0, 0, 0.06) 0px 2px 1px, rgba(0, 0, 0, 0.09) 0px 4px 2px, rgba(0, 0, 0, 0.09) 0px 8px 4px, rgba(0, 0, 0, 0.09) 0px 16px 8px, rgba(0, 0, 0, 0.09) 0px 32px 16px;
}

.hero-text {
    margin: 20px auto;
    font-size: 18px;
    max-width: 620px;
    text-align: center;
    width: 100%;
}

.hero-cta:hover {
    transition: scale 0.2s ease-in-out;
    scale: 1.05;
}

.hero-cta span {
    margin-left: 10px;
    display: inline-block;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: black;
}

.hero-title {
    font-weight: 600 !important;
    font-size: 42px;
}

.service {
    padding: 30px !important;
    transition: all 0.2s ease-out;
    border: 2px solid transparent;
}

.service:hover {
    background-color: #0B1F20;
    border: 2px solid transparent;
    border-radius: 16px;
    background-clip: padding-box;
    padding: 10px;
    box-sizing: border-box;
}

.service .read-more {
    float: right;
    color: inherit !important;
    opacity: 0;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
}

.service:hover .read-more {
    opacity: 1;
}

.service:hover::after {
    position: absolute;
    top: -2px; bottom: -2px;
    left: -2px; right: -2px;
    background: linear-gradient(#375b5d, #0B1F20);
    content: '';
    z-index: -1;
    border-radius: 16px;
}

.service p {
    color: #999;
    font-size: 16px;
}

#contact .contact-form {
    background-size: cover;
    padding: 70px 0 0 0;
}

#contact .contact-form input[type],
#contact .contact-form textarea {
    border: none;
}

form {
    min-width: 25rem;
}

form .form-control {
    background-color: transparent;
    border: 1px solid #e1e1e1 !important;
    border-radius: 20px !important;
    border: none;
}

form .form-control.thick {
    height: 3.3rem;
    padding: 20px;
}

form .form-control:focus {
    border: none;
    background-color: transparent !important;
}

form .message .form-control {
    padding: 20px;
}

form ::placeholder {
    font-size: 18px;
    color: #e1e1e1 !important;
    position: relative;
    left: 0;
}

form input,
form textarea {
    color: #212529;
}

#footer .spacer {
    width: 95%;
    height: 1px;
    background: #e0e0e0;
    margin: 15px auto;
}

@media screen and (min-width:1600px) {
    #footer .spacer {
        width: 90%;
    }
}

#footer .info {
    padding-bottom: 60px;
}

#footer .info-header {
    margin-bottom: 30px;
    height: 60px;
}

#footer .info-header .underline {
    width: 60px;
    height: 2px;
    background: #9147ff;
}

#footer .info-content {
    color: #fff;
}

#footer .info-content .text-item {
    padding-bottom: 10px;
}

#footer .info-content .text-item:hover a {
    color: #9147ff;
}

#footer .info .wrapper {
    margin-bottom: 15px;
}

#footer .footer {
    padding-bottom: 50px;
}

#footer .footer .links {
    padding-bottom: 15px;
}

#footer .footer .links a:first-child {
    padding-right: 15px;
}

#footer .footer .links a {
    color: #fff !important;
}

@media (min-width:576px) {
    #footer .footer .links {
        padding-bottom: 0;
    }

    #footer .footer .links a:first-child {
        padding-right: 50px;
    }
}

#footer .footer .copyrights,
#footer .footer .copyrights a {
    color: #fff;
}

canvas {
    display: block;
    width: 100%;
    height: 100%;
}

#bg {
    height: 550px;
    width: 100vw;
    overflow: hidden;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1;
}

#bg canvas {
    display: block;
    width: 100%;
    height: 100%;
}

@media (min-width:768px) {
    h1 {
        font-size: 44px;
        line-height: 1.2;
    }

    h2 {
        font-size: 32px;
    }

    h3 {
        font-size: 22px;
    }

    .btn-sm {
        height: 40px;
        padding: 0 30px;
    }

    .btn-lg {
        height: 60px;
        padding: 0 50px;
    }
}
