@charset "utf-8";
/*
	Author: Filip Todorov - www.filiptodorov.com
	Project: Price Insight
	All rights reserved
*/
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;600;700&display=swap');

body, html {
    font-family: 'Montserrat', sans-serif;
    position: relative;
    font-size: 13px;
}

/* NAVIGATION */
.navbar-dark {
    background: transparent !important;
    padding: 3rem 0;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 99;
    width: 100%;
    transition: 0.25s ease all;
}
.navbar-dark.active {
    background: #0e0717 !important;
    padding: 1.5rem 0;
}
.navbar-dark.no-effect {
    position: absolute !important;
}
.navbar .navbar-brand img {
    height: 45px;
    transition: 0.25s ease all;
}
.navbar.active .navbar-brand img {
    height: 35px;
}
.navbar .navbar-nav {
    align-items: center;
}
.navbar .nav-item > .nav-link {
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
    margin-left: 20px;
    text-transform: uppercase;
    transition: 0.15s ease all;
    position: relative;
}
.navbar .nav-item > .nav-link:after {
    position: absolute;
    bottom: 0px;
    left: 0.5rem;
    width: 0;
    transition: 0.35s ease all;
    height: 1px;
    background: #fff;
    content: ' ';
    opacity: 0;
}
.navbar .nav-item > .nav-link:hover:after {
    width: calc(100% - 1rem);
    opacity: 1;
    background: #f77800;
}
.navbar .nav-item > .nav-link:hover,
.navbar .nav-item > .nav-link:focus,
.navbar .nav-item.active > .nav-link {
    color: #f77800;
}
.navbar .nav-item > .nav-link i {
    display: inline-block;
    vertical-align: middle;
    font-size: 1.25rem;
    margin-right: 2px;
}
.navbar .nav-item .nav-link.twitter:after,
.navbar .nav-item .nav-link.button:after {
    display: none;
}
.navbar .nav-item > .nav-link.button {
    background: #f77800;
    font-size: 1rem;
    border-radius: 25px;
    padding-left: 20px;
    padding-right: 20px;
    margin-left: 30px;
    text-transform: uppercase;
    color: #fff;
}
.navbar .nav-item > .nav-link.button:hover,
.navbar .nav-item > .nav-link.button:focus {
    color: #fff;
    background: #ff9633;
    box-shadow: rgba(0,0,0,0.25) 0 0 20px;
}
.navbar .nav-item > .nav-link.button-v2 {
    background: rgba(255,255,255,0.1);
    font-size: 1rem;
    border-radius: 25px;
    padding-left: 20px;
    padding-right: 20px;
    margin-left: 10px;
    text-transform: uppercase;
    color: #fff;
}
.navbar .nav-item.active > .nav-link.button-v2 {
    color: #f77800;
}
.navbar .nav-item > .nav-link.button-v2:hover,
.navbar .nav-item > .nav-link.button-v2:focus {
    background: rgba(255,255,255,0.2);
    box-shadow: rgba(0,0,0,0.25) 0 10px 20px;
}
.navbar .nav-item .nav-link.twitter {
    border-color: #1DA1F2;
    background: #1DA1F2;
    padding-left: 8px;
    padding-right: 5px;
    padding-top: 6.5px;
    border-radius: 25px;
}
.navbar .nav-item .nav-link.twitter:hover,
.navbar .nav-item .nav-link.twitter:focus {
    background: #0d8bd9;
    border-color: #0d8bd9;
    box-shadow: none;
    color: #fff;
    box-shadow: rgba(0,0,0,0.25) 0 10px 20px;
}
.navbar .nav-item .nav-link.twitter:active {
    background: #0d8bd9;
    border-color: #0d8bd9;
}

/* MAIN */
.main {
    width: 100%;
    height: auto;
    position: relative;
    padding: 250px 0 1px 0;
    color: #fff;
    background: url('../img/bg-1.jpg') center no-repeat;
    background-size: cover;
}
.main.home-main {
    padding: 350px 0 250px 0;
}
.main .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(33,27,101);
    background: -moz-linear-gradient(left, rgba(33,27,101,1) 0%, rgba(21,18,73,1) 100%);
    background: -webkit-linear-gradient(left, rgba(33,27,101,1) 0%,rgba(21,18,73,1) 100%);
    background: linear-gradient(to right, rgba(33,27,101,1) 0%,rgba(21,18,73,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#211b65', endColorstr='#151249',GradientType=1 );
    content: ' ';
    opacity: 0.35;
    z-index: 2;
}
.main .container {
    position: relative;
    z-index: 2;
}
.main h1 {
    text-align: center;
    font-weight: 700;
    font-size: 3.5rem;
    margin-bottom: 15px;
}
.main p {
    text-align: center;
    font-size: 1.55rem;
}
.main .chart-box {
    display: block;
    padding: 0;
    background: #202940;
    box-shadow: rgba(0,0,0,0.5) 0 0 50px 10px;
    margin-top: 3rem;
    margin-bottom: -100px;
}
.main #particles-js {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.5;
}

/* ABOUT MAIN */
.main.about-main {
    background: none;
    padding: 300px 0 200px 0;
}
.main.about-main:after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(34,17,59);
    background: -moz-linear-gradient(-45deg, rgba(34,17,59,1) 0%, rgba(5,3,8,1) 100%);
    background: -webkit-linear-gradient(-45deg, rgba(34,17,59,1) 0%,rgba(5,3,8,1) 100%);
    background: linear-gradient(135deg, rgba(34,17,59,1) 0%,rgba(5,3,8,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#22113b', endColorstr='#050308',GradientType=1 );
    content: ' ';
    opacity: 0.8;
    z-index: 2;
}
.main.about-main .container {
    position: relative;
    z-index: 3;
}

/* CEO MAIN */
.main.ceo-main {
    display: block;
    padding: 250px 0 150px 0;
    text-align: left;
}
.main.ceo-main h1 {
    text-align: left;
}
.main.ceo-main h1 a.btn.btn-primary {
    background: #fff;
    border-color: #fff;
    color: #f77800;
    display: inline-block;
    vertical-align: middle;
    border-radius: 6px;
    padding: 8px 20px;
    font-size: 13px;
}
.main.ceo-main h1 a.btn.btn-primary:focus,
.main.ceo-main h1 a.btn.btn-primary:active {
    background: #fff !important;
    border-color: #fff !important;
    color: #f77800 !important;
}
.main.ceo-main p {
    text-align: left;
}
.main.ceo-main hr {
    margin: 40px 0;
    opacity: 0.15;
    border-color: #fff;
}
.main.ceo-main .qualifications {
    display: block;
    position: relative;
}
.main.ceo-main .qualifications p {
    font-size: 1.25rem;
    font-weight: 600;
}
.main.ceo-main .qualifications ul.history {
    display: block;
    list-style: none;
    margin: 20px 0 0 0;
    padding: 0;
    position: relative;
}
.main.ceo-main .qualifications ul.history:before {
    position: absolute;
    top: 5px;
    left: 7px;
    width: 2px;
    height: 100%;
    background: rgba(255,255,255,0.1);
    content: ' ';
    z-index: 0;
}
.main.ceo-main .qualifications ul.history li {
    display: block;
    position: relative;
    padding-left: 35px;
    padding-bottom: 30px;
}
.main.ceo-main .qualifications ul.history li:before {
    position: absolute;
    top: 5px;
    left: 0;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #f77800;
    content: ' ';
    z-index: 1;
}
.main.ceo-main .qualifications ul.history li span {
    display: block;
    font-size: 1.25rem;
    font-weight: 600;
    color: #f77800;
}
.main.ceo-main .qualifications ul.history li p {
    display: block;
    margin: 5px 0;
    font-size: 1rem;
    color: rgba(255,255,255,0.75);
}
.main.ceo-main .qualifications ul.history li u {
    display: block;
    text-decoration: none;
    font-size: 0.8rem;
    opacity: 0.5;
}

/* SECTION */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}
.section-header h1 {
    font-size: 3.25rem;
    font-weight: 700;
    margin-bottom: 15px;
}
.section-header p {
    font-size: 1.55rem;
}
.section-actions {
    text-align: center;
    margin-top: 3rem;
}
.btn-primary {
    background: #f77800;
    border-color: #f77800;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    padding: 10px 45px;
    border-radius: 25px;
}
.btn-primary:hover {
    background: #ff9633;
    border-color: #ff9633;
}
.btn-primary:focus,
.btn-primary:active {
    box-shadow: rgba(0,0,0,0.15) 0 15px 35px !important;
    background: #ff9633 !important;
    border-color: #ff9633 !important;
}
.explore .section-actions {
    margin-top: calc(3rem + 30px);
}

/* EXPLORE */
.explore {
    display: block;
    padding: 50px 0 100px 0;
    background: #11091d;
    background: -moz-linear-gradient(left, #11091d 0%, #201036 100%);
    background: -webkit-linear-gradient(left, #11091d 0%,#201036 100%);
    background: linear-gradient(to right, #11091d 0%,#201036 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#11091d', endColorstr='#201036',GradientType=1 );
    color: #fff;
}
.explore .box {
    display: block;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 80px;
    color: #fff;
    font-size: 1.25rem;
    font-weight: 700;
    background: url('../img/blue-box-bg-2.jpg') center no-repeat;
    background-size: cover;
    border-radius: 15px;
    margin-top: 30px;
    transition: 0.15s ease all;
    cursor: pointer;
    text-decoration: none;
}
.explore .box:hover {
    transform: scale(1.05);
}

/* COST */
.cost {
    display: block;
    padding: 100px 0;
    background: #211139;
}
.cost .section-header {
    color: #fff;
}
.cost .pricing-box {
    display: block;
    position: relative;
    text-align: center;
    margin-top: 15px;
    box-shadow: rgba(0,0,0,0.2) 0 10px 40px;
}
.cost .pricing-box .pricing-price {
    display: block;
    padding: 3rem 2rem 4rem 2rem;
    background: #fff;
    color: #111;
    font-size: 3rem;
    font-weight: 700;
    position: relative;
    z-index: 0;
}
.cost .pricing-box .pricing-donation {
    background: #f77800;
    padding: 2rem 2rem 2.5rem 2rem;
    color: #fff;
    font-size: 1.85rem;
    position: relative;
    z-index: 2;
}
.cost .pricing-box .pricing-donation span {
    display: block;
    font-size: 1rem;
    padding-left: 20%;
    padding-right: 20%;
}
.cost .pricing-box .pricing-options {
    background: #1b0d2e;
    list-style: none;
    margin: 0;
    padding: 2rem;
    display: block;
}
.cost .pricing-box .pricing-options li {
    display: block;
    color: #a9a9a9;
    padding: 1.2rem 0;
    font-size: 1.25rem;
    font-weight: 300;
    transition: 0.15s ease all;
}
.cost .pricing-box .pricing-options li:hover {
    background: rgba(255,255,255,0.05);
    border-radius: 5px;
}
.cost .pricing-box .pricing-options li b {
    font-weight: 400;
    color: #ccc;
}
.cost .pricing-box .pricing-buy {
    display: block;
    padding: 0 0 3.2rem 0;
    background: #1b0d2e;
}
.cost .pricing-box .pricing-buy .btn-outline-primary {
    border: 2px solid #f77800;
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    padding: 10px 30px;
    border-radius: 25px;
}
.cost .pricing-box .pricing-buy .btn-outline-primary:hover,
.cost .pricing-box .pricing-buy .btn-outline-primary:focus {
    background: #f77800;
}
.cost .pricing-box .pricing-buy .btn-outline-primary:active,
.cost .pricing-box .pricing-buy .btn-outline-primary:focus {
    box-shadow: rgba(0,0,0,0.25) 0 10px 25px !important;
    background: #f77800 !important;
}

/* MEET FOUNDER */
.meet-founder {
    display: block;
    padding: 150px 0;
    background: url('../img/bg-1.jpg') center top no-repeat;
    background-size: cover;
    color: #fff;
}
.meet-founder .section-header {
    margin-bottom: 2rem;
}
.meet-founder .btn-outline-primary {
    border: 2px solid #f77800;
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    padding: 10px 30px;
    border-radius: 25px;
    margin-left: 15px;
}
.meet-founder .btn-outline-primary:hover,
.meet-founder .btn-outline-primary:focus {
    background: #f77800;
}
.meet-founder .btn-outline-primary:active,
.meet-founder .btn-outline-primary:focus {
    box-shadow: rgba(0,0,0,0.25) 0 10px 25px !important;
    border-color: #f77800 !important;
    background: #f77800 !important;
}
.meet-founder .steps {
    display: block;
    position: relative;
}
.meet-founder .steps h4 {
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    font-size: 2rem;
    margin: 0;
}
.meet-founder .steps h5 {
    color: #f77800;
    font-weight: 600;
    font-size: 1.35rem;
    margin: 0;
}
.meet-founder .steps ul {
    display: block;
    position: relative;
    list-style: none;
    margin: 0;
    padding: 15px 0;
}
.meet-founder .steps ul li {
    display: block;
    font-size: 1.25rem;
    font-weight: 600;
    padding: 5px 0 5px 20px;
    position: relative;
}
.meet-founder .steps ul li:before {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    width: 20px;
    height: 20px;
    line-height: 20px;
    font-family: 'FontAwesome';
    content: '\f054';
    font-weight: 600;
    font-size: 10px;
    color: #f77800;
}
.meet-founder.v2 .section-header p {
    font-size: 1.25rem;
}
.meet-founder.v2 .quote-from img {
    display: inline-block;
    vertical-align: middle;
    width: 50px;
    height: 50px;
    border-radius: 50%;
}
.meet-founder.v2 .quote-from .person {
    display: inline-block;
    vertical-align: middle;
    padding-left: 10px;
}
.meet-founder.v2 .quote-from .person span {
    display: block;
}

/* QUOTE */
.quote {
    padding: 150px 0;
    color: #fff;
    background: #211139;
}
.quote h4 {
    font-size: 3rem;
    font-weight: 600;
}
.quote h5 {
    font-size: 2.25rem;
    font-weight: 600;
    margin-top: 2rem;
}
.quote h6 {
    font-size: 1.55rem;
    margin-top: 2rem;
}
.quote h5 b {
    font-weight: 600;
}
.quote p {
    font-size: 1.25rem;
}
.quote hr {
    margin: 50px auto;
    width: 50%;
    height: 3px;
    border: none;
    background: #f77800;
}
.quote .quote-from {
    margin-top: 15px;
}
.quote .quote-from img {
    display: inline-block;
    vertical-align: middle;
    width: 100px;
    height: 100px;
    border-radius: 50%;
        object-fit: cover;
        object-position: center top;
}
.quote .quote-from .person {
    display: inline-block;
    vertical-align: middle;
    padding-left: 10px;
}
.quote .quote-from .person span {
    display: block;
}
.quote-box {
    display: block;
    padding: 80px 60px;
    border-radius: 8px;
    color: #fff;
    background: #211139;
}
.quote-box img {
    display: block;
    width: 64px;
    margin-bottom: 30px;
}
@media (min-width: 768px) {
    .quote .review-body {
        position: relative;
        padding-left: 350px;
    }
    .quote .review-body .quote-from img {
        position: absolute;
        top: 0;
        left: 0;
        bottom: 0;
        margin: auto;
        object-fit: cover;
        object-position: center top;
        width: 300px;
        height: 300px;
    }
    .quote .quote-from .person {
        padding-left: 0;
    }
}

/* FOOTER */
footer {
    display: block;
    position: relative;
    padding: 80px 0;
    background: #11091e;
}
footer .logo {
    display: inline-block;
    margin-bottom: 50px;
}
footer .logo img {
    height: 45px;
}
footer .contact-item {
    display: block;
    position: relative;
    font-size: 1.25rem;
    color: #fff;
    margin-bottom: 50px;
}
footer .contact-item .icon {
    display: inline-block;
    vertical-align: middle;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    text-align: center;
    line-height: 55px;
    background: rgba(255,255,255,0.1);
    color: #fff;
    font-size: 1.5rem;
}
footer .contact-item .info {
    display: inline-block;
    vertical-align: middle;
    max-width: calc(100% - 60px);
    padding-left: 10px;
}
footer .contact-item .info span {
    display: block;
    font-size: 1rem;
    font-weight: 600;
}
footer .contact-item .info b {
    font-weight: 600;
}
footer form.row {
    margin-left: -7.5px;
    margin-right: -7.5px;
}
footer form.row div[class^='col'] {
    padding-left: 7.5px;
    padding-right: 7.5px;
}
footer .form-group {
    margin-bottom: 15px;
}
footer .form-group .form-control {
    padding: 15px;
    height: auto;
    background: rgba(255,255,255,0.05);
    color: #fff;
    font-weight: 600;
    border-color: transparent;
    outline: none;
    transition: 0.15s ease all;
}
footer .form-group .form-control:focus {
    box-shadow: none;
    background: rgba(255,255,255,0.1);
}
footer .form-group textarea.form-control {
    height: 117px;
}
footer .form-group .form-control::-webkit-input-placeholder {
    color: #fff;
}
footer .form-group .form-control::-moz-placeholder {
    color: #fff;
}
footer .form-group .form-control:-ms-input-placeholder {
    color: #fff;
}
footer .form-group .form-control:-moz-placeholder {
    color: #fff;
}
footer form p.small {
    color: rgba(255,255,255,0.5);
    font-weight: 500;
}
footer .btn-primary {
    padding: 0 45px;
    height: 51px;
    line-height: 51px;
    border: none;
    background: #f77800;
    border-color: #f77800;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 25px;
    text-transform: uppercase;
    margin-left: auto;
    display: block;
}
footer .btn-primary:hover,
footer .btn-primary:focus {
    background: #ff881a;
    border-color: #ff881a;
}
footer .btn-primary:focus,
footer .btn-primary:active {
    box-shadow: rgba(0,0,0,0.15) 0 15px 35px !important;
    background: #ff9633 !important;
    border-color: #ff9633 !important;
}

/* COPYRIGHT FOOTER */
.copyright {
    background: #22113b;
    color: rgba(255,255,255,1);
    font-size: 11px;
    padding: 15px 0;
    font-family: sans-serif;
}
.copyright a {
    color: #f77800;
}

/* LOGIN */
.login-page {
    display: block;
    position: relative;
    min-height: 100vh;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: url('../img/bg-2.jpg') center no-repeat;
    background-size: cover;
    padding: 100px 0 50px 0;
}
.login-page .container {
    position: relative;
    z-index: 1;
}
.login-page form {
    background: #fff;
    border-radius: 6px;
    padding: 45px;
    box-shadow: rgba(0,0,0,0.035) 0 25px 35px;
}
.login-page img.logo {
    height: 50px;
    display: block;
    margin: auto auto 30px auto;
}
.login-page form h3 {
    display: block;
    font-weight: 700;
    font-size: 1.5rem;
    text-transform: uppercase;
    margin: 0 0 25px 0;
    color: #1f1f1f;
}
.login-page form p {
    margin-bottom: 15px;
}
.login-page form .form-group label {
    font-size: 0.9rem;
    margin-bottom: 3px;
    display: block;
}
.login-page form .form-group .form-control {
    height: auto;
    padding: 10px 15px;
    border-color: transparent;
    background: rgba(0,0,0,0.05);
    color: #1f1f1f;
    transition: 0.15s ease all;
    font-weight: 600;
}
.login-page form .form-group .form-control:focus {
    box-shadow: none;
    background: rgba(0,0,0,0.15);
}
.login-page form p.small {
    margin: 15px 0 0 0;
}
.login-page form p.small a {
    color: #1f1f1f;
    font-weight: 600;
}
.login-page #particles-js {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0.25;
}
.login-page form .checkbox {
    display: block;
    position: relative;
    margin-bottom: 20px;
}
.login-page form .checkbox label {
    display: block;
    position: relative;
    padding-left: 25px;
}
.login-page form .checkbox label input {
    display: none;
}
.login-page form .checkbox label input + div {
    position: absolute;
    top: 0;
    left: 0;
    width: 18px;
    height: 18px;
    border-radius: 5px;
    background: rgba(0,0,0,0.15);
    z-index: 0;
}
.login-page form .checkbox label:hover input + div {
    background: rgba(0,0,0,0.2);
}
.login-page form .checkbox label input:checked + div {
    background: rgb(31,148,253);
}
.login-page form .checkbox label input:checked + div:after {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    line-height: 18px;
    font-family: 'FontAwesome';
    content: '\f00c';
    font-size: 12px;
    z-index: 1;
    color: #fff;
    text-align: center;
}
.login-page form .checkbox label span {
    display: block;
}
.login-page form .assets {
    display: block;
    border-radius: 5px;
    background: rgba(0,0,0,0.05);
    margin-bottom: 0.5rem;
    padding: 22.5px 15px;
    margin-top: 13px;
}
.login-page form .assets h4 {
    font-size: 12px;
    font-weight: 600;
    margin: 0 0 5px 0;
}
.login-page form .assets .form-group {
    margin-bottom: 0;
}
.login-page form .assets .form-group .form-control {
    background: none;
    border-bottom: 1px solid #ddd;
    padding: 10px 0;
    font-size: 12px;
    font-weight: normal;
    border-radius: 0;
}

/* REGISTER */
.register {
    display: block;
    padding: 150px 0 100px 0;
    background: url('../img/bg-2.jpg') center no-repeat;
    background-size: cover;
    position: relative;
    color: #fff;
}
.register #particles-js {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0.5;
}
.register .container {
    position: relative;
    z-index: 1;
}
.register .info-box {
    display: block;
    position: relative;
}
.register .form {
    position: relative;
    background: #f77800;
    padding: 3rem;
    border-radius: 5px;
}
.register .form .section-header {
    margin-bottom: 0;
}
.register .form .section-header h1 {
    font-size: 2rem;
}
.register .form .section-header p {
    font-size: 14px;
    color: rgba(255,255,255,0.75);
}
.register .form hr {
    margin: 2rem 0;
}
.register .form .form-group label {
    font-size: 0.9rem;
    margin-bottom: 3px;
    display: block;
}
.register .form .form-group .form-control {
    height: auto;
    padding: 10px 15px;
    border-color: transparent;
    background: rgba(0,0,0,0.15);
    color: #fff;
    transition: 0.15s ease all;
    font-weight: 600;
}
.register .form .form-group .form-control:focus {
    box-shadow: none;
    background: rgba(0,0,0,0.25);
}
.register .form .checkbox {
    display: block;
    position: relative;
    margin-bottom: 20px;
}
.register .form .checkbox label {
    display: block;
    position: relative;
    padding-left: 30px;
}
.register .form .checkbox label input {
    display: none;
}
.register .form .checkbox label input + div {
    position: absolute;
    top: 4px;
    left: 0px;
    width: 18px;
    height: 18px;
    border-radius: 5px;
    background: rgba(0,0,0,0.15);
    z-index: 0;
}
.register .form .checkbox label:hover input + div {
    background: rgba(0,0,0,0.2);
}
.register .form .checkbox label input:checked + div:after {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    line-height: 18px;
    font-family: 'FontAwesome';
    content: '\f00c';
    font-size: 12px;
    z-index: 1;
    color: #333;
    text-align: center;
}
.register .form .checkbox label span {
    display: block;
}
.register .form .btn-primary {
    background: rgb(31,148,253);
    background: -moz-linear-gradient(left, rgba(31,148,253,1) 0%, rgba(10,203,252,1) 100%);
    background: -webkit-linear-gradient(left, rgba(31,148,253,1) 0%,rgba(10,203,252,1) 100%);
    background: linear-gradient(to right, rgba(31,148,253,1) 0%,rgba(10,203,252,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#1f94fd', endColorstr='#0acbfc',GradientType=1 );
    border-color: transparent;
    padding: 15px;
    color: #fff;
    font-size: 1.2rem;
    font-weight: 600;
    text-transform: uppercase;
    transition: 0.15s ease all;
}
.register .form .btn-primary:hover,
.register .form .btn-primary:active,
.register .form .btn-primary:focus {
    background: rgb(31,148,253);
    background: -moz-linear-gradient(left, rgba(31,148,253,1) 0%, rgba(10,203,252,1) 100%);
    background: -webkit-linear-gradient(left, rgba(31,148,253,1) 0%,rgba(10,203,252,1) 100%);
    background: linear-gradient(to right, rgba(31,148,253,1) 0%,rgba(10,203,252,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#1f94fd', endColorstr='#0acbfc',GradientType=1 );
    filter: brightness(110%);
    border-color: transparent;
    box-shadow: rgba(0,0,0,0.15) 0 15px 30px !important;
}
.register .form.v2 {
    background: #fff;
    margin: 50px 0;
    color: #222;
}
.register .form.v2 .section-header p {
    color: #999;
}
.register .form.v2 .form-group .form-control {
    color: #333;
}
.register .form .assets {
    display: block;
    border-radius: 5px;
    background: rgba(0,0,0,0.05);
    margin-bottom: 0.5rem;
    padding: 15px;
}
.register .form .assets h4 {
    font-size: 12px;
    font-weight: 600;
    margin: 0 0 5px 0;
}
.register .form .assets .form-group {
    margin-bottom: 0;
}
.register .form .assets .form-group .form-control {
    background: none;
    border-bottom: 1px solid #ddd;
    padding: 5px 0;
    font-size: 12px;
    font-weight: normal;
    border-radius: 0;
}
.register .form .assets .form-group:last-child .form-control {
    border-bottom: none;
}
.register .info-box {
    display: block;
    position: relative;
}
.register .info-box + .info-box {
    margin-top: 30px;
}
.register .info-box .icon {
    display: inline-block;
    vertical-align: top;
    width: 64px;
    font-size: 30px;
}
.register .info-box .info {
    display: inline-block;
    vertical-align: top;
    width: calc(100% - 69px);
}
.register .info-box .info strong {
    display: block;
    font-size: 2rem;
    line-height: 2rem;
    margin-bottom: 5px;
    font-weight: 300;
}
.register .info-box .info p {
    font-size: 1.15rem;
    font-weight: 300;
    color: rgba(255,255,255,0.65);
}

/* GET STARTED */
.get-started {
    display: block;
    padding: 20px 0;
    background: #11091d;
    background: -moz-linear-gradient(left, #11091d 0%, #201036 100%);
    background: -webkit-linear-gradient(left, #11091d 0%,#201036 100%);
    background: linear-gradient(to right, #11091d 0%,#201036 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#11091d', endColorstr='#201036',GradientType=1 );
    color: #fff;
}
.get-started.home-new {
    padding: 100px 0 100px 0;
    background: #fff;
    position: relative;
}
.get-started.home-new .box-wrapper {
    background: #fff;
    color: #1f1f1f;
}
.get-started.home-new .container {
    position: relative;
    z-index: 2;
}
.get-started .img-fluid {
    margin-top: -50px;
    z-index: 5;
    position: relative;
}
.get-started.home-new .img-fluid {
    margin-top: 0;
    max-width: 80%;
    display: block;
    margin: auto;
}
.get-started.home-new .section-header {
    margin-bottom: 100px;
}
.get-started.home-new .section-header h1 {
    max-width: 100%;
    font-size: 2.5rem;
    line-height: normal;
    margin-top: 0;
}
.get-started.home-new .section-header h2 {
    font-size: 2rem;
    line-height: normal;
    padding-right: 0;
    font-weight: 700;
}
.get-started .section-header p {
    font-size: 1.25rem;
}
.get-started.home-new .product-rows {
    margin-top: -50px;
    margin-bottom: -50px;
}
.get-started.home-new .product-rows.v2 {
    margin-top: 50px;
}
.get-started.home-new .product-rows.v2 .img-fluid {
    max-width: 70%;
}

/* SIMPLE PLATFORM */
.simple-platform {
    display: block;
    padding: 150px 0;
    background: url(../img/bg-1.jpg) center top no-repeat;
    background-size: cover;
    color: #fff;
}
.simple-platform .section-header h1 {
    font-weight: 400;
}
.simple-platform .section-header h1 strong {
    display: block;
    font-weight: 600;
}
.simple-platform .section-header h4 {
    font-weight: 400;
    font-size: 1.45rem;
    color: #f77800;
    margin: 25px 0;
}
.simple-platform .section-header p {
    font-size: 1.25rem;
}
/* SYSTEM */
.system-page {
    min-height: 100vh;
    background: #f2f3f4;
}
.system-page .navbar {
    padding: 15px 0;
    background: #fff !important;
    box-shadow: rgba(0,0,0,0.05) 0 15px 35px;
    position: relative;
    z-index: 99;
}
.system-page .navbar .navbar-brand img {
    height: 40px;
}
.system-page .navbar .nav-item .nav-link {
    color: #1f1f1f;
}
.system-page .navbar .nav-item .nav-link.button {
    border-color: #f2f3f4;
    background: #f2f3f4;
}
.system-page .navbar .nav-item .nav-link.button:hover,
.system-page .navbar .nav-item .nav-link.button:focus {
    background: #ddd;
    border-color: #ddd;
    box-shadow: none;
    color: #333;
}
.system-page .navbar .nav-item .nav-link.button:active {
    background: #ddd;
    border-color: #ddd;
}
.system-page .page-wrapper {
    padding: 30px 0;
}
.numbers-box {
    display: block;
    padding: 25px;
    background: #fff;
    border-radius: 6px;
}
.numbers-box .numbers {
    position: relative;
}
.numbers-box .numbers:after {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    z-index: 1;
    content: ' ';
    background: -moz-linear-gradient(top, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 100%);
    background: -webkit-linear-gradient(top, rgba(255,255,255,0) 0%,rgba(255,255,255,1) 100%);
    background: linear-gradient(to bottom, rgba(255,255,255,0) 0%,rgba(255,255,255,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00ffffff', endColorstr='#ffffff',GradientType=0 );
}
.numbers-box h3 {
    font-weight: 600;
    font-size: 1.15rem;
    color: #1f1f1f;
    margin-bottom: 15px;
}
.numbers-box .switch {
    display: block;
}
.numbers-box .switch label {
    margin: 0;
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    cursor: pointer;
}
.numbers-box .switch label input {
    display: none;
}
.numbers-box .switch label input + div {
    display: inline-block;
    vertical-align: middle;
    width: 40px;
    height: 20px;
    background: #f2f3f4;
    border-radius: 25px;
    position: relative;
    margin-left: 7px;
    transition: 0.3s ease all;
}
.numbers-box .switch label input:checked + div {
    background: #f77800;
}
.numbers-box .switch label:hover input + div:after {
    background: #f77800;
}
.numbers-box .switch label input:checked + div:after {
    transform: translateX(20px);
    background: #fff;
}
.numbers-box .switch label input + div:after {
    position: absolute;
    top: 3px;
    left: 3px;
    bottom: 3px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    content: ' ';
    background: #999;
    transition: 0.3s ease all;
}
.numbers-box .switch label span {
    display: inline-block;
    vertical-align: middle;
    font-size: 0.8rem;
    font-weight: 600;
    color: #7a7a7a;
}
.numbers-box .switch label:hover span {
    color: #f77800;
}
.numbers .numbers-info {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 30px;
    background: rgba(255,255,255,0.85);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s ease all;
    color: #1f1f1f;
}
.numbers:hover .numbers-info {
    opacity: 1;
    visibility: visible;
}
.numbers .numbers-info h4 {
    font-weight: 600;
    font-size: 1.25rem;
    margin: 15px 0 5px 0;
}
.numbers .numbers-info i {
    font-size: 48px;
}
.numbers-wrapper {
    display: inline-block;
    vertical-align: top;
    width: calc(50% - 4px);
}
#numbers-2 .numbers-wrapper {
    width: calc(25% - 4px);
}
.numbers-wrapper .numbers-item {
    display: block;
    position: relative;
    width: 100%;
    cursor: pointer;
    user-select: none;
    padding-bottom: 2px;
}
.numbers.inactive .numbers-wrapper .numbers-item b {
    width: 100%;
}
.numbers.inactive .numbers-wrapper .numbers-item span {
    display: none;
}
.numbers-wrapper .numbers-item:hover b,
.numbers-wrapper .numbers-item:hover span {
    filter: brightness(0.95);
}
.numbers-wrapper .numbers-item b,
.numbers-wrapper .numbers-item span {
    display: inline-block;
    vertical-align: middle;
    width: calc(50% - 4px);
    padding: 3px 0;
    text-align: center;
    background: #f2f3f4;
    transition: 0.15s ease all;
}
#numbers .numbers-wrapper .numbers-item b {
    transition: none;
}
#numbers.numbers.inactive .numbers-wrapper .numbers-item b {
    transition: 0.15s ease all;
}
#numbers .numbers-wrapper .numbers-item span {
    transition: none;
}
.numbers-wrapper .numbers-item span {
    background: #fff;
}
.modal .modal-title {
    font-weight: 600;
    color: #1f1f1f;
}
.modal#welcome .modal-content {
    padding: 35px;
    background: #211139;
    color: #fff;
}
.modal#welcome .modal-content .modal-header {
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.modal#welcome .modal-content .modal-title {
    color: #fff;
    font-weight: bold;
}
.modal#welcome .modal-content .modal-body {
    padding-top: 25px;
}
.modal#welcome .modal-content p {
    font-size: 1.05rem;
    margin-bottom: 15px;
}
.actual-app {
    display: block;
    background: #fff;
    padding: 35px;
    border-radius: 6px;
}
.actual-app .row + .row {
    margin-top: 10px;
}
.actual-app .row {
    margin-left: -5px;
    margin-right: -5px;
}
.actual-app .row div[class^='col'] {
    padding-left: 5px;
    padding-right: 5px;
}
.actual-app .form-group.inline-items {
    margin: 0;
}
.actual-app .form-group.inline-items label {
    margin: 0;
    display: inline-block;
    vertical-align: middle;
    width: 35%;
    font-weight: 600;
    font-size: 1rem;
    text-align: right;
    padding-right: 10px;
}
.actual-app .form-group.inline-items .form-control {
    display: inline-block;
    vertical-align: middle;
    width: calc(65% - 5px);
    padding: 10px;
}
.actual-app .form-control#ticker {
    font-size: 1.5rem;
    font-weight: bold;
    text-transform: uppercase;
    color: blue;
}
.actual-app .form-control {
    padding: 5px 10px;
    height: auto;
    border: none;
    background: #f2f3f4;
    transition: 0.3s ease all;
    text-align: center;
    font-weight: 600;
}
.actual-app .form-control#price:not(:disabled) {
    color: blue;
    font-weight: 700;
}
.actual-app .form-control.red:not(:disabled) {
    background: red;
    color: #fff;
}
.actual-app .form-control.green:not(:disabled) {
    background: green;
    color: #fff;
}
.actual-app .form-control:disabled {
    opacity: 0.35;
}
.actual-app .form-control:focus {
    box-shadow: rgba(0,123,255,0.15) 0 0 0 3px;
    background: #fff;
}
.actual-app .text-orange {
    color: blue;
    font-weight: 700;
}
.actual-app .btn {
    padding: 10px 40px;
    border: none;
    border-radius: 0.5rem;
}
.actual-app .btn-primary {
    background: #f77800;
    border-color: #f77800;
    color: #fff;
    font-weight: 600;
    text-transform: uppercase;
    transition: 0.15s ease all;
}
.actual-app .btn-primary#sendRequest {
    background: blue;
    border-color: blue;
}
.actual-app .btn-primary.btn-above {
    background: green;
    border-color: green;
}
.actual-app .btn-primary.btn-below {
    background: red;
    border-color: red;
}
.actual-app .btn-primary:hover,
.actual-app .btn-primary:active,
.actual-app .btn-primary:focus {
    box-shadow: rgba(0,0,0,0.15) 0 15px 35px !important;
    background: #ff9633 !important;
    border-color: #ff9633 !important;
}
.actual-app .btn-secondary {
    font-weight: 600;
    text-transform: uppercase;
    transition: 0.15s ease all;
}
.actual-app hr {
    margin: 30px 0;
    opacity: 0.5;
}
.actual-app h4 {
    display: block;
    font-weight: 600;
    font-size: 1.1rem;
}
.actual-app h4 span {
    opacity: 0.25;
    display: inline-block;
    vertical-align: middle;
    cursor: pointer;
}
.actual-app h4 span:hover {
    opacity: 0.5;
}
.actual-app .button-line {
    display: block;
    position: relative;
}
.actual-app .button-line:before {
    position: absolute;
    bottom: 0;
    top: 0;
    width: 100%;
    height: 1px;
    background: #eee;
    content: ' ';
    margin: auto;
    z-index: 0;
    left: 0;
}
.actual-app .button-line .btn,
.actual-app .btn.small-btn {
    z-index: 1;
    position: relative;
    padding: 5px 30px;
}

/* VIDEO BOX */
.video-player {
    position: relative;
    display: block;
    overflow: hidden;
    border: 3px solid #fff;
    border-radius: 1rem;
}
.video-player img {
    width: 100%;
    height: auto;
    position: relative;
    z-index: 0;
}
.video-player:before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10,10,10,0.25);
    content: ' ';
    z-index: 1;
}
.video-player:after {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    background: url('../img/play.svg') center no-repeat;
    background-size: contain;
    content: ' ';
    width: 3rem;
    height: 3rem;
    filter: brightness(0) invert(1);
    z-index: 2;
}

@media (min-width: 768px) and (max-width: 991px) {
    body, html {
        font-size: 11px;
    }
    footer .form-group textarea.form-control {
        height: 111px;
    }
    footer .btn-primary {
        height: 48px;
        line-height: 48px;
    }
}

@media (max-width: 767px) {
    html, body {
        font-size: 14px;
    }
    .navbar-dark,
    .navbar-dark.active {
        background: #0e0717 !important;
        padding: 20px 15px;
    }
    .navbar .navbar-brand {
        margin-left: auto;
        margin-right: auto;
        transform: translateX(22px);
    }
    .navbar .navbar-brand img {
        height: 30px;
    }
    .navbar-dark .navbar-toggler {
        border-color: transparent;
        outline: none;
        font-size: 1rem;
    }
    .navbar .nav-item {
        padding: 5px 0;
    }
    .navbar .nav-item > .nav-link {
        margin-left: 0;
        font-size: 1rem;
    }
    .navbar .nav-item > .nav-link:after {
        display: none;
    }
    .navbar .nav-item > .nav-link.button {
        margin-left: 0;
    }
    .main {
        padding: 150px 0 1px 0;
    }
    .main.home-main {
        padding: 200px 5% 100px 5%;
    }
    .main.about-main {
        padding: 200px 0 100px 0;
    }
    .main.ceo-main {
        padding: 200px 0 60px 0;
        text-align: center;
    }
    .main.ceo-main h1,
    .main.ceo-main p {
        text-align: center;
    }
    .main.ceo-main .qualifications ul.history li {
        padding-left: 20px;
        padding-right: 10px;
    }
    .section-header {
        margin-bottom: 0;
    }
    .main h1,
    .section-header h1,
    .cost .pricing-box .pricing-price,
    .quote h4,
    .meet-founder.v2 .section-header h1 {
        font-size: 2.15rem; /* From 3.5rem */
    }
    .main p,
    .section-header p,
    .quote h6 {
        font-size: 1.2rem; /* From 1.55rem */
    }
    .get-started.home-new .section-header h1,
    .quote h5 {
        font-size: 1.75rem; /* From 2.5rem */
    }
    .get-started.home-new .section-header h2,
    .cost .pricing-box .pricing-donation,
    .meet-founder .steps h4 {
        font-size: 1.45rem; /* From 2rem */
    }
    .get-started .section-header p,
    .explore .box,
    .cost .pricing-box .pricing-options li,
    .meet-founder .steps ul li,
    footer .contact-item,
    .simple-platform .section-header p,
    .main.ceo-main .qualifications ul.history li span,
    .meet-founder.v2 .section-header p,
    .quote p {
        font-size: 1rem; /* From 1.25rem */
    }
    .main.ceo-main .qualifications ul.history li p {
        font-size: 0.9rem;
    }
    .section-actions {
        margin-top: 25px;
    }
    .get-started.home-new,
    .explore,
    .cost,
    .get-started {
        padding: 60px 0;
        text-align: center;
    }
    .get-started:not(.home-new) .img-fluid {
        margin-top: 30px;
    }
    .get-started.home-new .product-rows.v2 {
        margin-top: 100px;
        margin-bottom: 0;
    }
    .explore .row {
        margin-left: -5px;
        margin-right: -5px;
    }
    .explore .row div[class^='col'] {
        padding-left: 5px;
        padding-right: 5px;
    }
    .explore .box {
        margin-top: 10px;
    }
    .cost .pricing-box .pricing-donation:after {
        display: none;
    }
    .meet-founder,
    .simple-platform,
    .quote {
        padding: 75px 0;
        text-align: center;
    }
    .meet-founder .steps ul li {
        padding-left: 0;
        padding-right: 0;
    }
    .meet-founder .steps ul li:before {
        display: none;
    }
    .meet-founder .steps {
        padding-top: 2rem;
    }
    footer {
        padding: 60px 0;
        text-align: center;
    }
    footer .logo {
        margin-bottom: 25px;
    }
    footer .contact-item {
        margin-bottom: 25px;
    }
    footer .contact-item .icon {
        display: block;
        margin: auto;
    }
    footer .contact-item .info {
        display: block;
        padding-left: 0;
        width: 100%;
        max-width: 100%;
        padding-top: 10px;
    }
    footer form p.small {
        margin-bottom: 0;
        margin-top: 5px;
    }
    .copyright {
        text-align: center;
    }
    .simple-platform .section-header h4 {
        margin: 15px 0;
    }
    .quote-box {
        padding: 60px 30px;
    }
    .quote-box img {
        margin-left: auto;
        margin-right: auto;
    }
    .login-page form .assets {
        margin-top: 5px;
        margin-bottom: 15px;
    }
    .main.ceo-main h1 a.btn.btn-primary {
        margin-top: 15px;
    }
}