/*
 *
 *		STYLE.CSS
 *
 *	+ TYPOGRAPHY
 *	+ HEADER
 *	+ FOOTER
 *	+ HEADLINE
 *	+ BUTTONS
 *	+ ICON BOX
 *	+ LISTS
 *	+ SOCIAL MEDIA
 *	+ CONTACT FORM
 *	+ TABS
 *	+ SLIDERS
 *	+ EFFECTS
 *	+ SCROLL UP
 *	+ SECTIONS
 */

/***********************************************************************************
 *	+ TYPOGRAPHY
 ***********************************************************************************/

body {
    background-color: #ffffff;
    color: #535167;
    font: 300 15px/26px "Rubik", sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    color: #292072;
    font-weight: 500;
}

h1 {
    margin-bottom: 10px;
    font-size: 44px;
    line-height: 54px;
}

h2 {
    margin-bottom: 10px;
    font-size: 38px;
    line-height: 46px;
}

h3 {
    margin-bottom: 10px;
    font-size: 24px;
    line-height: 30px;
}

h4 {
    margin-bottom: 10px;
    font-size: 18px;
    line-height: 26px;
}

h5 {
    margin-bottom: 10px;
    font-size: 16px;
    line-height: 24px;
}

h6 {
    margin-bottom: 10px;
    font-size: 13px;
    line-height: 20px;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
    color: #292072;
    text-decoration: none;
    -webkit-transition: all 0.25s;
    transition: all 0.25s;
}

h1 a:hover,
h2 a:hover,
h3 a:hover,
h4 a:hover,
h5 a:hover,
h6 a:hover {
    color: #4bc37c;
    text-decoration: none;
}

p {
    margin-bottom: 20px;
}

/* LINKS */
a {
    color: #4bc37c;
}

a:hover,
a:focus {
    outline: 0;
    color: #776ee4;
}

/* IMAGES */
img {
    max-width: 100%;
    height: auto;
}

.text-default {
    color: #4bc37c;
}

h1.text-xl {
    font-size: 74px;
    font-weight: 400;
}

.text-box {
    padding: 20px 25px;
    border-radius: 15px;
    margin-bottom: 0;
    background-color: #ffffff;
    font-size: 15px;
    line-height: 24px;
    box-shadow: 0 7px 30px 0 rgba(0, 0, 0, 0.16);
}

@media (min-width: 1600px) {

    h1 {
        font-size: 56px;
        line-height: 70px;
    }

    h2 {
        font-size: 48px;
        line-height: 56px;
    }

}

@media (min-width: 991px) and (max-width: 1199px) {

    h1.text-xl {
        font-size: 52px;
    }

}

@media (max-width: 767px) {

    h1 {
        font-size: 36px;
        line-height: 44px;
    }

    h2 {
        font-size: 28px;
        line-height: 36px;
    }

}

/***********************************************************************************
 *	+ HEADER
 ***********************************************************************************/

#header {
    padding: 30px 0;
}

/* LOGO */
#logo {}

@media (min-width: 1400px) {

    #header {
        padding: 30px 25px;
    }

}

/* MENU */
.menu {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-bottom: 0;
    list-style: none;
}

.menu > li {
    margin-right: 35px;
}

.menu > li:last-child {
    margin-right: 0;
}

.menu > li > .nav-link {
    position: relative;
    padding: 0;
    color: #707070;
    font-size: 16px;
    line-height: 32px;
    font-weight: 400;
    transition: all 0.25s;
}

.menu > li > .nav-link:after {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    width: 0;
    margin: 0 auto;
    height: 2px;
    background-color: #4bc37c;
    content: "";
    transition: all 0.25s;
}

.menu > li > .nav-link:hover,
.menu > li > .nav-link.active {
    color: #292072;
}

.menu > li > .nav-link:hover:after,
.menu > li > .nav-link.active:after {
    width: 100%;
}

.menu > li .btn {
    padding: 12px 25px;
}

@media (min-width: 1600px) {

    .menu > li {
        margin-right: 65px;
    }

}

@media (min-width: 1200px) and (max-width: 1399px) {

    .menu > li {
        margin-right: 25px;
    }

}

@media (max-width: 1199px) {

    .menu {
        display: none;
    }

}

/* MOBILE MENU */
.mobile-menu-button {
    display: none;
    color: #51527e;
    font-size: 20px;
    line-height: 20px;
    text-decoration: none;
}

#mobile-menu,
#mobile-menu ul {
    margin: 0;
    text-align: left;
    list-style: none;
}

#mobile-menu {
    position: fixed;
    z-index: 99999;
    top: 0;
    bottom: 0;
    right: -350px;
    width: 310px;
    overflow-y: auto;
    padding-top: 85px;
    background-color: #ffffff;
    box-shadow: -20px 8px 20px 0 rgba(0, 0, 0, 0.16);
    transition: all 0.25s;
}

#mobile-menu:before {
    position: absolute;
    top: 20px;
    right: 25px;
    display: block;
    width: 42px;
    height: 42px;
    border-radius: 10px;
    font-size: 18px;
    line-height: 42px;
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
    content: "\d7";
}

#mobile-menu.open {
    right: 0;
}

#mobile-menu li a {
    display: block;
    padding: 0 35px;
    color: #535167;
    font-size: 16px;
    line-height: 56px;
    font-weight: 400;
    transition: all 0.25s;
}

#mobile-menu li a.active,
#mobile-menu li a:not(.btn):hover {
    background-color: #eff5ff;
}

#mobile-menu li .btn {
    width: auto;
    margin: 16px 25px;
    color: #ffffff;
}

@media (max-width: 1199px) {

    .nav-menu {
        text-align: right;
    }

    .mobile-menu-button {
        display: block;
    }

}

/* STICKY */
#header-sticky {
    position: fixed;
    z-index: 8000;
    top: 0;
    right: 0;
    left: 0;
    display: none;
    width: 100%;
    padding: 10px 0;
    margin: 0 auto;
    background-color: #ffffff;
    box-shadow: 0 20px 30px 0 rgba(0, 0, 0, 0.06);
}

@media (min-width: 1400px) {

    #header-sticky {
        padding: 10px 25px;
    }

}

/***********************************************************************************
 *	+ FOOTER
 ***********************************************************************************/

#footer {
    padding: 70px 0;
    color: #3b394d;
    font-size: 14px;
    line-height: 22px;
}

#footer a {
    color: inherit;
    transition: all 0.25s;
}

#footer a:hover {
    color: #4bc37c;
    text-decoration: none;
}

#footer .social-media {
    text-align: right;
}

#footer .social-media a {
    color: #ffffff;
}

@media (max-width: 767px) {

    #footer .social-media {
        margin: 20px 0;
        text-align: left;
    }

}

/***********************************************************************************
 *	+ HEADLINE
 ***********************************************************************************/

.headline {
    margin-bottom: 40px;
    font-size: 18px;
    line-height: 30px;
    font-weight: 300;
}

.headline h3 {
    font-size: 36px;
    line-height: 56px;
}

/***********************************************************************************
 *	+ BUTTONS
 ***********************************************************************************/

.btn {
    padding: 12px 33px;
    border: none;
    border-radius: 10px;
    background-color: #4bc37c;
    color: #ffffff;
    font-size: 16px;
    font-weight: 500;
    box-shadow: 0 10px 10px 0 rgba(20, 146, 255, 0.16);
    cursor: pointer;
}

.btn:focus,
.btn:active {
    color: #ffffff;
    outline: 0 !important;
    box-shadow: 0 10px 10px 0 rgba(20, 146, 255, 0.16);
}

.btn + .btn {
    margin-left: 20px;
}

.btn:hover {
    background-color: #776ee4;
    color: #ffffff;
}

.btn.style-2 {
    background-color: #776ee4;
    color: #ffffff;
}

.btn.style-2:hover {
    background-color: #4bc37c;
    color: #ffffff;
}

@media (max-width: 575px) {

    .btn {
        display: block;
        width: 100%;
    }

}

/***********************************************************************************
 *	+ ICON BOX
 ***********************************************************************************/

.icon-box {
    margin-bottom: 50px;
}

.icon-box i {
    display: inline-block;
    margin-bottom: 25px;
    color: #ced2d4;
    font-size: 60px;
    line-height: 60px;
    transition: all 0.25s;
}

.icon-box h3 {
    margin-bottom: 30px;
}

.icon-box:hover i {
    color: #4bc37c;
}

@media (min-width: 768px) and (max-width: 991px) {

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

}

/***********************************************************************************
 *	+ LISTS
 ***********************************************************************************/

/* GENERAL */
ul,
ol {
    padding: 0;
    list-style-position: inside;
}

li > ul,
li > ol {
    margin-bottom: 0;
    margin-left: 20px;
}

dl {
    margin-bottom: 20px;
}

/* CHECK LIST */
.check-list {
    list-style: none;
}

.check-list li {}

.check-list li:before {
    display: inline-block;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    margin-right: 10px;
    background-color: #4bc37c;
    color: #ffffff;
    font-family: "etopium-icons";
    font-size: 10px;
    line-height: 20px;
    text-align: center;
    content: "\e903";
}

/***********************************************************************************
 *	+ SOCIAL MEDIA
 ***********************************************************************************/

.social-media {
    list-style: none;
}

.social-media li {
    display: inline-block;
}

.social-media li + li {
    margin-left: 20px;
}

.social-media li a {
    display: block;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: #d7e2f4;
    color: #ffffff;
    font-size: 16px;
    line-height: 34px;
    text-align: center;
    transition: all 0.25s;
}

.social-media li a:hover {
    background-color: #4bc37c;
}

/***********************************************************************************
 *	+ CONTACT FORM
 ***********************************************************************************/

.contact-form {
    margin-top: 65px;
}

.contact-form .form-group {
    margin-bottom: 30px;
}

.contact-form .form-control {
    height: 64px;
    padding: 10px 30px;
    border: 1px solid #ffffff;
    border-radius: 10px;
    background-color: #ffffff;
    font-size: 16px;
    font-weight: 500;
    color: #292072;
}

.contact-form textarea.form-control {
    min-height: 155px;
}

.contact-form .form-control:focus {
    border: 1px solid #535167;
    box-shadow: 0 6px 15px 0 rgba(0, 0, 0, 0.1);
}

.contact-form button {
    padding-right: 100px;
    padding-left: 100px;
    margin-top: 20px;
}

.contact-form .dropdown-toggle {
    height: 64px;
    margin-top: 0;
    padding: 0 30px;
    background-color: #ffffff;
    color: #3b394d;
    line-height: 64px;
    box-shadow: none;
}

.bootstrap-select .dropdown-toggle:focus,
.bootstrap-select > select.mobile-device:focus + .dropdown-toggle:focus {
    outline: 0 !important;
}

.dropdown-toggle:after,
.dropup .dropdown-toggle:after {
    border: none;
    font-family: "etopium-icons";
    font-size: 10px;
    content: "\e904";
}

.bootstrap-select .dropdown-menu {
    padding: 0;
    border-radius: 10px;
}

.dropdown-item {
    padding: 10px 30px;
    font-weight: 500;
}

.dropdown-item.active,
.dropdown-item:active,
.dropdown-item.active:hover {
    background-color: #4bc37c;
    color: #ffffff;
}

.form-control::-moz-placeholder {
    color: #3b394d;
    font-weight: 500;
    opacity: 1;
}

.form-control::-webkit-input-placeholder {
    color: #3b394d;
    font-weight: 500;
    opacity: 1;
}

.form-control:-ms-input-placeholder {
    color: #3b394d;
    font-weight: 500;
    opacity: 1;
}

/***********************************************************************************
 *	+ TABS
 ***********************************************************************************/

.nav-tabs {
    display: flex;
    width: 380px;
    overflow: hidden;
    border-radius: 32px;
    margin: 30px auto 80px;
    box-shadow: 0 10px 30px 0 rgba(0, 0, 0, 0.16);
}

.nav-tabs li {
    flex: 1;
}

.nav-tabs li a {
    display: block;
    padding: 15px;
    color: #292072;
    font-size: 18px;
    font-weight: 500;
    text-align: center;
    transition: all 0.25s;
}

.nav-tabs li a:hover {
    text-decoration: none;
}

.nav-tabs li a.active {
    background-color: #4bc37c;
    color: #ffffff;
}

@media (max-width: 767px) {

    .nav-tabs {
        width: 100%;
    }

}

/***********************************************************************************
 *	+ SLIDERS
 ***********************************************************************************/

.slider {
    padding: 0 0;
}

.slider p {
    margin-bottom: 0;
    color: #000000;
    font-size: 24px;
    line-height: 28px;
}

.owl-carousel .owl-item img {
    width: auto;
}

.owl-carousel .owl-dots {
    position: absolute;
    top: 50%;
    left: 50%;
    text-align: center;
    transform: translateY(-50%);
}

.owl-carousel button.owl-dot {
    position: relative;
    display: block;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    margin-bottom: 9px;
    background-color: #e3e3e3;
    outline: 0;
    transition: all 0.25s;
}

.owl-carousel button.owl-dot:before {
    position: absolute;
    top: 50%;
    left: -100px;
    width: 0;
    border: 1px dashed transparent;
    margin-top: -1px;
    content: "";
    transition: all 0.25s;
}

.owl-carousel button.owl-dot:hover,
.owl-carousel button.owl-dot.active {
    background-color: #4bc37c;
}

.owl-carousel button.owl-dot.active:before {
    width: 80px;
    border-color: #4bc37c;
}

.owl-carousel button.owl-dot:last-child {
    margin-bottom: 0;
}

@media (max-width: 991px) {

    .slider {
        text-align: center;
    }

    .slider img {
        margin-bottom: 30px;
    }

    .owl-carousel .owl-dots {
        top: 100%;
        right: 0;
        left: 0;
        transform: translateY(0);
    }

    .owl-carousel button.owl-dot {
        display: inline-block;
    }

    .owl-carousel button.owl-dot:before {
        display: none;
    }

    .owl-carousel button.owl-dot {
        margin: 0 4px;
    }

}

@media (max-width: 767px) {

    .slider p {
        font-size: 16px;
    }

}

/***********************************************************************************
 *	+ EFFECTS
 ***********************************************************************************/

/* WAVES */
.waves {
    position: relative;
    z-index: 1;
    overflow: hidden;
    display: inline-block;
    -webkit-user-select: none;
    -webkit-transform: translateZ(0);
    -ms-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-transition: all 0.25s;
    transition: all 0.25s;
}

.waves .waves-ripple {
    position: absolute;
    z-index: -1;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    margin-top: -10px;
    margin-left: -10px;
    opacity: 0;
    pointer-events: none;
    background-color: rgba(255, 255, 255, 0.25);
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
    -webkit-transition: all 0.4s ease-out;
    transition: all 0.4s ease-out;
}

/* ANIMATIONS */
.wow {
    visibility: hidden;
}

.wow.animated {
    visibility: visible;
}

/***********************************************************************************
 *	+ SCROLL UP
 ***********************************************************************************/

#scroll-up {
    position: fixed;
    z-index: 8030;
    bottom: 50px;
    right: 50px;
    display: none;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background-color: #4bc37c;
    color: #ffffff;
    font-size: 20px;
    line-height: 48px;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.25s;
}

#scroll-up:hover {
    box-shadow: 0 16px 35px 0 rgba(0, 0, 0, 0.25);
}

@media (max-width: 991px) {

    #scroll-up {
        right: 20px;
        bottom: 20px;
    }

}

@media (max-width: 767px) {

    #scroll-up {
        right: 10px;
        bottom: 10px;
    }

}

/***********************************************************************************
 *	+ SECTIONS
 ***********************************************************************************/

.dark-section {
    color: #ffffff;
}

.dark-section h1,
.dark-section h2,
.dark-section h3,
.dark-section h4,
.dark-section h5,
.dark-section h6 {
    color: inherit;
}

.dark-section .btn {
    background-color: #ffffff;
    color: #292072;
}

.dark-section .btn:hover {
    background-color: #292072;
    color: #ffffff;
}

/* HERO SECTION */
#hero-section {
    overflow: hidden;
    padding-left: 8%;
    font-size: 18px;
    line-height: 30px;
    color: #3b394d;
}

#hero-section h1 {
    margin-bottom: 20px;
}

#hero-section p {
    margin-bottom: 45px;
}

#hero-section ul {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 0;
    list-style: none;
}

#hero-section ul li {
    flex-basis: 33.333333333%;
}

#hero-section ul li:empty {
    background-color: #eff5ff;
}

@media (min-width: 1600px) {

    #hero-section {
        font-size: 24px;
        line-height: 36px;
    }

}

@media (min-width: 991px) and (max-width: 1199px) {

    #hero-section {
        padding-left: 30px;
        font-size: 16px;
        line-height: 28px;
    }

    #hero-section h1 {
        font-size: 36px;
        line-height: 44px;
    }

}

@media (max-width: 991px) {

    #hero-section {
        padding-left: 0;
        padding-bottom: 80px;
        text-align: center;
    }

    #hero-section ul {
        margin-bottom: 70px;
    }

}

/* CURRENT MARKET */
#current-market {
    padding-top: 100px;
    background-color: #4bc37c;
}

#current-market img {
    margin-bottom: -40px;
}

/* CRYPTOCURRENCY */
#cryptocurrency {
    padding-top: 130px;
    background-color: #eff5ff;
    background: -webkit-linear-gradient(0deg, #fafafa, #eff5ff, #eff5ff);
    background: -ms-linear-gradient(0deg, #fafafa, #eff5ff, #eff5ff);
    background: linear-gradient(0deg, #fafafa, #eff5ff, #eff5ff);
}

#cryptocurrency img {
    margin-bottom: -100px;
}

/* WALLET */
#wallet {
    padding-top: 200px;
}

/* TRUSTED BY DESIGN */
#trusted-by-design {
    margin-top: -160px;
    padding: 240px 0 90px;
    background-color: #776ee4;
}

@media (max-width: 991px) {

    #trusted-by-design {
        padding-top: 180px;
        margin-top: -120px;
    }

    #trusted-by-design br {
        display: none;
    }

}

@media (max-width: 767px) {

    #trusted-by-design {
        padding-top: 150px;
        margin-top: -80px;
    }

}

@media (max-width: 575px) {

    #trusted-by-design {
        padding-top: 120px;
        margin-top: -50px;
    }

}

/* CURRENT MARKET PROBLEMS */
#current-market-problems {
    padding: 120px 0 50px;
    background-color: #f5f9fb;
}

/* ETOPIUM VISION */
#etopium-vision {
    padding-top: 120px;
    font-size: 18px;
    line-height: 36px;
}

@media (min-width: 991px) and (max-width: 1199px) {

    #etopium-vision .check-list {
        font-size: 14px;
    }

}

@media (max-width: 767px) {

    #etopium-vision .text-box {
        padding: 10px;
        margin-top: 25px;
        font-size: 11px;
        font-weight: 400;
        text-align: center;
    }

    #etopium-vision .text-box br {
        display: none;
    }

    #etopium-vision .check-list {
        font-size: 14px;
    }

}

@media (max-width: 575px) {

    #etopium-vision .check-list {
        font-size: 10px;
    }

    #etopium-vision .check-list li {
        line-height: 26px;
    }

    #etopium-vision .check-list li:before {
        width: 14px;
        height: 14px;
        font-size: 6px;
        line-height: 14px;
    }

}

/* HOW IT WORKS */
#how-it-works {
    padding-top: 100px;
}

/* WHITEPAPER */
#whitepaper {
    padding: 90px 0;
    margin-top: 50px;
    background-color: #5a4fdd;
    background: -webkit-linear-gradient(0deg, #9c96ef, #5a4fdd);
    background: -ms-linear-gradient(0deg, #9c96ef, #5a4fdd);
    background: linear-gradient(0deg, #9c96ef, #5a4fdd);
    font-size: 16px;
}

#whitepaper .text-box {
    padding-top: 75px;
    text-align: center;
    box-shadow: none;
}

#whitepaper .text-box h4 {
    margin: 60px 0;
    color: #292072;
}

#whitepaper br {
    display: none;
}

@media (max-width: 991px) {

    #whitepaper {
        margin-top: 100px;
        text-align: center;
    }

    #whitepaper br {
        display: block;
    }

}

/* SUPPORT */
#support {
    padding: 70px 0 40px;
    background-color: #4bc37c;
    background: -webkit-linear-gradient(96deg, #4bc37c -12%, #5dd990 100%);
    background: -ms-linear-gradient(96deg, #4bc37c -12%, #5dd990 100%);
    background: linear-gradient(96deg, #4bc37c -12%, #5dd990 100%);
}

/* SUPPORT */
#contact {
    padding: 120px 0;
    background-color: #eff5ff;
}

@media (max-width: 767px) {

    #contact h2 {
        font-size: 36px;
        line-height: 44px;
    }

}