
/* FONTS */
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600&family=Play:wght@400;700&display=swap');

html {
    height: 100%;
}

body {
    font-size: 16px;
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    height: 100%;
}

header {
    background-color: #fff;
    transition: background-color 0.3s ease;
}

.navbar {
    background-color: #fff;
}

header:has(.navbar-collapse.show)  {
    -webkit-box-shadow: 0px 1px 1px 0px rgba(0,0,0,0.75);
    -moz-box-shadow: 0px 1px 1px 0px rgba(0,0,0,0.75);
    box-shadow: 0px 1px 1px 0px rgba(0,0,0,0.75);
}

.navbar-scrolled {
    background-color: #fff;
    -webkit-box-shadow: 0px 1px 1px 0px rgba(0,0,0,0.75);
    -moz-box-shadow: 0px 1px 1px 0px rgba(0,0,0,0.75);
    box-shadow: 0px 1px 1px 0px rgba(0,0,0,0.75);
}

.py-150 {
    padding: 150px 0;
}

.py-80 {
    padding: 80px 0;
}
.pt-80 {
    padding-top: 80px;
}

.pb-80 {
    padding-bottom: 80px;
}


/* BUTTONS */

.settings-btn {
    background: rgba(224, 225, 223, 0.5);
    border-radius: 4px;
    padding: 4px 15px;
}

.settings-btn:hover, .settings-btn:active, .settings-btn:focus {
    color: #071202;
}

.main-btn {
    padding: 10px 40px;
    gap: 10px;
    position: relative;
    background: #70B64F;
    box-shadow: 0px 0px 5px rgba(65, 136, 32, 0.2), inset -2px -1px 10px rgba(52, 118, 20, 0.4), inset 2px 2px 10px rgba(134, 255, 81, 0.6);
    border-radius: 16px;
    color: #ffffff;
    border: none;
}

.main-btn:hover {
    background: #58C425;
    box-shadow: 0px 0px 5px rgba(65, 136, 32, 0.2), inset -2px -1px 10px rgba(52, 118, 20, 0.4), inset 2px 2px 10px rgba(134, 255, 81, 0.6);
    color: #ffffff;
    text-decoration: none;
}

.main-btn:active {
    background: #70B64F;
    box-shadow: none;
    color: #ffffff;
    text-decoration: none;
}

.btn-fill {
    padding: 5px 20px;
    gap: 10px;
    background: #071202;
    border-radius: 4px;
    color: #ffffff;
    border: 1px solid #071202;
}

.btn-fill:hover {
    background: #70B64F;
    color: #ffffff;
    border: 1px solid #70B64F;
    text-decoration: none;
}

.btn-fill:active {
    background: #071202;
    color: #ffffff;
    border: 1px solid #071202;
    text-decoration: none;
}

.btn-empty {
    padding: 5px 20px;
    gap: 10px;
    border: 1px solid #263022;
    border-radius: 4px;
    color: #071202;
}

.btn-empty:hover {
    border: 1px solid #70B64F;
    color: #70B64F;
    text-decoration: none;
}

.btn-empty:active {
    border: 1px solid #263022;
    color: #071202;
    text-decoration: none;
}

/* COLORS */

.green-main {
    color: #70b64f;
}

.green-2 {
    color: #94c87b;
}

.green-3 {
    color: #b8daa7;
}

.green-4 {
    color: #dbedd3;
}

.green-5 {
    color: #edf6e9;
}

.green-6 {
    color: #fafcf8;
}

.white {
    color: #ffffff;
}

.red {
    color: #ee5c5c;
}

.blue {
    color: #3f60b5;
}

.yellow {
    color: #e0c951;
}

.dark-main {
    color: #071202;
}

.dark-85 {
    color: #263022;
}

.dark-70 {
    color: #454d41;
}

.dark-50 {
    color: #646b61;
}

.dark-30 {
    color: #a2a6a0;
}

.dark-20 {
    color: #c1c4c0;
}

.dark-10 {
    color: #e0e1df;
}

/* TYPOGRAPHY */

.typography_header {
    font-family: 'Play', sans-serif;
    font-size: 40px;
    font-weight: 700;
}

.typography_h1 {
    font-family: 'Play', sans-serif;
    font-size: 30px;
    font-weight: 700;
}

.typography_h2 {
    font-family: 'Play', sans-serif;
    font-size: 28px;
    font-weight: 700;
}

.typography_h3 {
    font-family: 'Play', sans-serif;
    font-size: 22px;
    font-weight: 700;
}

.typography_h4 {
    font-family: 'Play', sans-serif;
    font-size: 20px;
    font-weight: 400;
}

.typography_s1 {
    font-size: 20px;
    font-weight: 400;
}

.typography_s2 {
    font-size: 14px;
    font-weight: 400;
}

.typography_s2_bold {
    font-size: 14px;
    font-weight: 600;
}

.typography_btn {
    font-family: 'Play', sans-serif;
    font-size: 18px;
    font-weight: 700;
}

.typography_s3 {
    font-family: 'Play', sans-serif;
    font-size: 16px;
    font-weight: 700;
}

.typography_s3_reg {
    font-family: 'Play', sans-serif;
    font-size: 16px;
    font-weight: 500;
}

.typography_caption {
    font-size: 14px;
    font-weight: 600;
}


/* NAVBAR */

header .nav-link:hover {
    color: #071202;
}

header .dropdown .btn-empty {
    background: transparent;
}

.navbar .dropdown button {
    padding: 5px 20px;
}

/* MAIN */
.main {
    background: url(/images/frame-bg.svg) no-repeat bottom;
    height: 100vh;
    background-size: 100%;
}

.main .container {
    margin-bottom: 200px;
}

.dropdown-menu {
    left: 50%;
    transform: translateX(-50%);
}

/* CAROUSEL */

.owl-carousel .item {
    padding: 10px;
    border: 1px solid #E0E1DF;
    border-radius: 5px;
}

.owl-carousel .price-up .price {
    border: 1px solid #70B64F;
    border-radius: 20px;
    padding: 1px 5px;
}

.owl-carousel .price-down .price {
    border: 1px solid #EE5C5C;
    border-radius: 20px;
    padding: 1px 5px;
}

.owl-carousel .price-up span {
    color: #70B64F;
}

.owl-carousel .price-down span {
    color: #EE5C5C;
}

.owl-carousel .price-up .index {
    font-size: 9px;

}

.owl-carousel .price-down .index {
    font-size: 9px;
}


.owl-carousel .item .coin-img-fill {
    display: none;
}

.owl-carousel .item:hover {
    border: 1px solid #646B61;
    box-shadow: 3px 4px 10px rgba(14, 8, 51, 0.1);
    cursor: pointer;
}

.owl-carousel .item:hover .coin-img-fill {
    display: flex;
}

.owl-carousel .item:hover .coin-img-empty {
    display: none;
}

/* BENEFITS */

.benefits-card {
    padding: 30px 20px;
    border: 1px solid #E0E1DF;
   border-radius: 10px;
}

.steps {
    background-color: #fbfcf9;
}

.steps .benefits-card .benefits-img img {
    width: 20px;
}

.steps .item {
    background-color: #b8dba7;
    border: 1px solid #71b650;
}

.perks .item {
    background-color: #FAFCF8;
    border: 1px solid #71b650;
    border-radius: 5px;
}
.perks .card-item:not(:first-child) {
    margin-top: 25px;
}
.perks-number p {
    color: #70b64f;
    text-shadow:
    -1px -1px 0 #000,
    1px -1px 0 #000,
    -1px  1px 0 #000,
    1px  1px 0 #000;
}

.reserves img {
    width: 50px;
}
/* MAIN */

.company {
    background-color: #94C87B;
    background-image: url(/images/graph.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

/* STEPS */

.steps .btn-fill {
    padding: 10px 100px;
    border-radius: 16px;
    box-shadow: 0px 0px 5px rgba(65, 136, 32, 0.2);
}
.benefits-card {
    border: unset;
    padding: 10px;
}

/* AFFILIATE */

.affiliate {
    background-color: #FAFCF8;
}

/* FOOTER */

footer {
    display: flex!important;
    flex-direction: column!important;
}

.footer-main {
    background-color: #EFF0EF;
    border-top: 1px solid #071202;
}

.footer-copyright {
    background-color: #E0E1DF;
    border-top: 1px solid #C1C4C0;
}

footer .nav-link {
    padding: 0.5rem 0;
    color: #646B61;
}

footer .nav-link:hover {
    color: #071202;
    text-decoration: none;
}

footer .nav-link:active {
    color: #071202;
    text-decoration: none;
}

footer .social-links a, footer .social-links a:hover {
    color: #646B61;
}

.bg-signup {
    height: auto;
    background: url(/images/bg-signup.svg) no-repeat;
    background-size: cover;
    background-position-y: bottom;
}

.bg-faq {
    height: auto;
    background: url(/images/faq_bg.png) no-repeat center;
    background-size: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.bg-news {
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

section.signup, section.faq, section.news {
    padding-top: 150px;
    padding-bottom: 50px;
}

.form-signup {
    padding: 40px 60px;
    background: #FFFFFF;
    border: 1px solid #071202;
    border-radius: 24px;
}

.form-signup button {
    border: none;
}

.form-signup .nav-link {
    padding: 0 0.5rem;
    padding-bottom: 5px;

}

.form-signup .nav-item {
    position: relative;
    bottom: -1px;
}

.form-signup .nav-pills {
    border-bottom: 1px solid #C1C4C0;
    border-radius: 2px;
}

.form-signup .nav-pills .nav-link.active {
    background: transparent;
    color: #70B64F;
    border-bottom: 2px solid #70B64F;
}

.form-signup .nav-pills .nav-item .nav-link {
    border-radius: 0 0 0 0;
}

.form-signup .nav-pills .nav-item:first-child .nav-link {
    border-radius: 0 0 0 3px;
}

.form-signup .nav-pills .nav-item:last-child .nav-link {
    border-radius: 0 0 3px 0;
}

.form-signup input::placeholder {
    color: #A2A6A0;
}

.form-signup .form-control:focus {
    box-shadow: none;
}

.form-signup .form-control {
    border: none;
    border-bottom: 1px solid #071202;
    color: #071202;
}

.form-signup .form-control:focus, .form-signup .form-control:active {
    border-bottom: 1px solid #70B64F;
}

.form-signup .btn-empty {
    background: #FFFFFF;
    border: 1px solid #E0E1DF;
    box-shadow: 0px 0px 10px rgba(7, 18, 2, 0.05);
    border-radius: 16px;
    padding: 9px 40px;
}

.form-signup .btn-empty:focus, .form-signup .btn-empty:active, .form-signup .btn-empty:hover {
    border: 1px solid #70B64F;
}

/* FAQ */

.faq .card {
    border: 1px solid #B8DAA7;
    border-left: 1px solid #70B64F;
    border-right: 1px solid #70B64F;
    border-radius: 10px;
}

.faq .card:first-child {
    border-top: 1px solid #70B64F;
    border-left: 1px solid #70B64F;
    border-right: 1px solid #70B64F;
}

.faq .card:last-child {
    border-bottom: 1px solid #70B64F;
}

.faq .btn-link:focus, .faq .btn-link:hover {
    box-shadow: none;
    text-decoration: none;
}

.faq .btn-link {
    font-family: 'Play';
    font-weight: 700;
    color: #071202;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq .btn-link.collapsed {
    font-family: 'Open Sans';
    font-weight: 400;
    color: #263022;
}

.faq .card-header {
    background: #EDF6E9;
    border-bottom: none
}

.faq .btn-link.collapsed, .faq .card-header:has(.btn-link.collapsed) {
    background: #fff;
}

.faq .card-body {
    background: #EDF6E9;
    padding-top: 0.25rem;
}

.faq .btn {
    transition: none;
}

.faq .card-header:has(.btn-link.collapsed) hr {
    display: none;
}

.faq .card-header:has(.btn-link.collapsed) .arrow{
    transform: rotate(180deg);
}

.faq .card-header .btn-link .arrow{
    transform: rotate(360deg);
}


.faq .card hr {
    border-top: 1px solid #70B64F;
}

.faq .arrow {
    color: #94C87B;
    font-size: 12px;
}

/* NEWS */

.news-card {
    width: 49.3%;
    margin-top: 1rem;
}

.news-card-img {
    padding: 0;
}

.news-card img {
    border-radius: 2px;
    width: 100%;
    object-fit: cover;
    height: 100%;
}

.news .page-link {
    border: none;
    color: #071202;
    margin-left: 0;
}

.news .page-item.active .page-link {
    border: 1px solid #071202;
    color: #071202;
    background: #fff;
    border-radius: 4px;
}

.news .page-link:focus {
    box-shadow: none;
}

.news .news-content-img img {
    width: 100%;
    height: auto;
    max-height: 350px;
    object-fit: cover;
}

.news .news-content .date {
    position: absolute;
    right: 20px;
    top: 20px;
}

.news .news-content .date .btn-fill:hover {
    background-color: #071202;
    border: 1px solid #071202;
}

.news .news-content-text p{
    color: #454D41;
}

.news .news-content-text h2{
    color: #454D41;
    font-family: 'Play';
    font-size: 28px;
    font-weight: 700;
}

.news .last-news-card {
    border: 1px solid #071202;
    border-radius: 5px;
}

.news .last-news-card-img img {
    width: 100%;
    height: 120px;
    object-fit: cover;
}

/* CABINET */

.dashboard input {
    border-top: none;
    border-left: none;
    border-right: none;
    border-bottom: 1px solid #071202;
    border-bottom-right-radius: 2px!important;
    border-bottom-left-radius: 2px!important;
    max-width: 300px;
}

.dashboard .personal-data a:hover{
    color:#ee5c5c;
}

.dashboard input::placeholder {
    color: #A2A6A0;
}

.dashboard input:disabled {
    background: transparent;
}

.dashboard .input-group-append a:hover {
    color: #646b61;
}

.dashboard .form-control:focus, .dashboard .form-control:active {
    border-color: #70B64F;
    box-shadow: none;
}

.dashboard .affiliate-data {
    background: #EDF6E9;
    background-image: url('/images/char-2.svg');
    background-size: 100%;
    background-position: bottom;
    background-repeat: no-repeat;
    border: 1px solid #70B64F;
    border-radius: 10px;
    padding: 20px;
    padding-bottom: 40px;
}

.dashboard .affiliate-content {
    background: #FFFFFF;
    border: 1px solid #000000;
    border-radius: 10px;
    padding: 20px;
    margin-top: -20px;
}

.dashboard .affiliate-content input {
    max-width: none;
    width: 100%;
    color: #70B64F;
}

.dashboard .table-responsive {
    border: 1px solid #263022;
    border-radius: 10px;
}

.dashboard table {
    background: #FAFCF8;
}


.form-group input[type="file"] {
    color: #071202;
}

.form-group input[type="file"]::-webkit-file-upload-button {
    background-color: transparent;
    background-image: url('/images/upload.svg');
    background-repeat: no-repeat;
    background-position: left;
    border: none;
    color: transparent;
}

/* EXCHANGE */

.exchange .input-group .input-group-text {
    background: transparent;
    border: none;
    border-bottom: 1px solid #071202;
}

.exchange .input-group .input-group-text img {
    width: 24px;
}

.exchange .form-exchange {
    padding: 25px;
}

.exchange .form-exchange .list-group-content {
    border: 1px solid #C1C4C0;
    border-radius: 5px;
    padding: 5px;
    cursor: pointer;
    margin-top: 0.5rem;
}

.exchange .form-exchange .list-group-content:hover {
    border: 1px solid #70B64F;
}

.exchange .form-exchange li .simbol {
    font-size: 12px;
    color: #071202;
}

.exchange .form-exchange li .name {
    font-size: 9px;
    color: #A2A6A0;
    letter-spacing: -0.3px;
}

.exchange .form-exchange li img {
    width: 24px;
}

.exchange .form-exchange .list-group-item.active {
    background: transparent;
    border: 1px solid #70B64F;
}

.exchange .form-exchange li .coin-empty {
    display: flex;
}

.exchange .form-exchange li .coin-fill {
    display: none;
}

.exchange .form-exchange li.active .coin-fill {
    display: flex;
}

.exchange .form-exchange li.active .coin-empty {
    display: none;
}

.exchange .form-exchange li.active .list-group-content {
    border: 1px solid #70B64F;
}

.form-control.is-invalid {
    border-color: #EE5C5C;
}

.exchange .input-group:has(.is-invalid) .input-group-text{
    border-bottom:1px solid #EE5C5C!important;
}

.input-group-text:last-child {
    border-bottom-right-radius: 2px !important;
}

.exchange .list-group-item .wallet-address {
    min-width: 330px;
    border: none;
}

.exchange .list-group-item button {
    background: white;
}

.exchange .list-group-item #qrcode {
    padding: 10px;
    background-color: #fff;
    border-radius: 5px;
}

.exchange .list-group-item:has(.qrcode) {
    background-color: #EDF6E9;
}

.static-content h1 {
    font-family: 'Play';
    font-size: 40px;
    font-weight: 700;
    line-height: 46px;
    letter-spacing: 0em;
    text-align: left;
}

.static-content h2 {
    font-family: 'Play';
    font-size: 30px;
    font-weight: 700;
    line-height: 35px;
    letter-spacing: 0em;
    text-align: left;

}

.static-content h3 {
    font-family: 'Play';
    font-size: 28px;
    font-weight: 700;
    line-height: 32px;
    letter-spacing: 0em;
    text-align: left;
}

.static-content h4 {
    font-family: Play;
    font-size: 22px;
    font-weight: 700;
    line-height: 25px;
    letter-spacing: 0em;
    text-align: left; 
}

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

    header {
        background-color: #ffffff;
    }

    .main {
        height: auto;
        padding-top: 150px;
    }


    section.dashboard, section.settings {
        padding-top: 150px;
    }

    section.signup, section.faq, section.news {
        padding-top: 150px;
    }

    .news-card {
        width: 100%;
    }

    .news-card img {
        height: 280px;
    }

    .news .last-news-card-img img {
        height: 300px;
    }
}

@media screen and (max-width: 767px) {
    .form-signup {
        padding: 20px 30px;
    }

    .news .last-news-card-img img {
        height: 200px;
    }
}

@media screen and (max-width: 575px) {
    .steps .btn-fill {
        padding: 10px 40px;
    }

    .dashboard .table .typography_s3 {
        font-size: 14px;
    }

    .form-signup {
        padding: 20px 10px;
    }

    .exchange .list-group-item {
        padding: 0.75rem 0;
    }

    .exchange .list-group-item .wallet-address {
        min-width: unset;

    }

    .exchange .form-exchange {
        padding: 10px 0;
    }
}

