/*
Table Of Content
---
1. Common Css
2. Header Css
3. Banner Css
4. Banner Sell Css
5. Trade Css
6. Learn Crypto Css
7. FAQs Css
8. Contact Css
9. Footer Css
10. Contact Page Css
11. About Page Css
12. Advantages Css
13. Market Page Css 
14. Account Guide Css
15. Account Css
*/

@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

/* 1. Common Css */
* {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
}
:root {
    --primary-color: rgb(0, 255, 160);
    --secondary-color: 0 255 160;
    --bg-color: #12182b;
    --white-color: #fff;
    --black-color: #000625;
    --gray-color: 221 221 221;
}
html {
    scroll-behavior: smooth;
}
body {
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 22px;
    background-color: var(--bg-color);
    color: var(--white-color);
    zoom: 85%;
}
ul {
    list-style: none;
}
img {
    max-width: 100%;
    vertical-align: middle;
}
a {
    text-decoration: none;
    -webkit-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
    color: var(--white-color);
}
h1, h2, h3, h4, h5, h6 {
    font-family: "Montserrat", sans-serif;
}

/* Container */
.container {
    width: 1120px;
    margin: 0 auto;
}
.container-fluid {
    width: 100%;
    margin: 0 auto;
}
.mhn-container {
    width: 1320px;
    margin: 0 auto;
}


/* 2. Header Css */
.header-area {
    padding: 40px 80px;
}
.header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}
.logo img {
    max-width: 120px;
}
.menu ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}
.menu ul li a {
    font-size: 20px;
    font-weight: 500;
    color: var(--white-color);
    padding: 0 20px;
}
.menu ul li a:hover {
   color: var(--primary-color);
}
.stellarnav.desktop li.has-sub ul {
    max-width: 200px;
    background-color: var(--black-color);
    -webkit-box-shadow: rgba(0, 0, 0, 0.12) 0px 8px 11px 0px;
            box-shadow: rgba(0, 0, 0, 0.12) 0px 8px 11px 0px;
}
.stellarnav.desktop li.has-sub ul li {
    margin-bottom: 7px;
    padding: 7px 0;
}
.stellarnav.desktop li.has-sub ul li:last-child {
    margin-bottom: 0;
}
.stellarnav.desktop li.has-sub ul li a {
    color: var(--white-color);
}
.stellarnav.desktop li.has-sub ul li:hover {
    background-color: var(--primary-color);
}
.stellarnav.desktop li.has-sub ul li:hover a {
    color: var(--white-color);
}
.stellarnav.desktop li.has-sub>a:after {
    border-top-color: var(--white-color);
}
.header-btn a {
    display: inline-block;
    text-transform: capitalize;
    background-color: var(--primary-color);
    color: var(--black-color);
    font-size: 18px;
    line-height: 24px;
    font-weight: 700;
    border-radius: 50px;
    padding: 18px 40px;
}
.header-btn a:hover {
    background-color: transparent;
    color: var(--primary-color);
    padding: 16px 40px;
    border: 2px solid var(--primary-color);
}

/* 3. Banner Css */
.banner-area {
    padding: 120px 0;
}
.banner-box {
    position: relative;
    z-index: 1;
}
.banner-content {
    text-align: center;
    max-width: 840px;
    margin: 0 auto;
}
.banner-content h2 {
    font-size: 94px;
    line-height: 100px;
    font-weight: 700;
    color: var(--primary-color);
}
.banner-content p {
    font-size: 20px;
    line-height: 26px;
    margin: 40px 0;
}
.banner-btn a:first-child {
    display: inline-block;
    text-transform: capitalize;
    background-color: var(--primary-color);
    color: var(--black-color);
    font-size: 18px;
    line-height: 24px;
    font-weight: 700;
    border-radius: 50px;
    padding: 18px 40px;
    margin-right: 20px;
}
.banner-btn a:first-child:hover {
    background-color: transparent;
    color: var(--primary-color);
    padding: 16px 40px;
    border: 2px solid var(--primary-color);
}
.banner-btn a:last-child {
    display: inline-block;
    text-transform: capitalize;
    background-color: transparent;
    color: var(--primary-color);
    font-size: 18px;
    line-height: 24px;
    font-weight: 700;
    border-radius: 50px;
    padding: 16px 40px;
    border: 2px solid var(--primary-color);
}
.banner-btn a:last-child:hover {
    background-color: var(--primary-color);
    color: var(--black-color);
    padding: 18px 40px;
    border: 0;
}
.banner-icon {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}
.single-banner-icon {
    position: absolute;
    width: 70px;
    height: 70px;
    line-height: 70px;
    text-align: center;
    border-radius: 50%;
    -webkit-transition: all .3s ease-out;
    -o-transition: all .3s ease-out;
    transition: all .3s ease-out;
}
.single-banner-icon:hover {
    -webkit-transform: scale(1.1);
        -ms-transform: scale(1.1);
            transform: scale(1.1);
}
.single-banner-icon:nth-child(1) {
   background-color: rgb(254, 231, 21, 0.20);
   top: -20px;
   left: 0;
}
.single-banner-icon:nth-child(2) {
   background-color: rgb(90, 40, 176, 0.20);
   bottom: 50px;
   left: 70px;
}
.single-banner-icon:nth-child(3) {
   background-color: rgb(204, 49, 61, 0.20);
   top: -20px;
   right: 0;
}
.single-banner-icon:nth-child(4) {
   background-color: rgb(51, 135, 90, 0.20);
   bottom: 50px;
   right: 70px;
}

/* 4. Banner Sell Css */
.banner-sell {
    margin-top: 70px;
}
.banner-sell-box {
    background-color: rgb(255, 255, 255, 5%);
    padding: 40px 80px;
    border-radius: 20px;
}
.sell-box-tab ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
}
.sell-box-tab ul li a {
    font-size: 22px;
    line-height: 28px;
    font-weight: 600;
}
.sell-box-tab ul li.active a {
    color: var(--primary-color);
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary-color);
}
.sell-bottom {
    display: none;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 20px;
}
.sell-bottom.active {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.sell-field {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 30px;
}
.single-sell-field {
    position: relative;
}
.single-sell-field input {
    background-color: rgb(255, 255, 255, 10%);
    padding: 25px;
    border: 0;
    width: 330px;
    color: var(--white-color);
    border-radius: 5px;
    outline-offset: 0;
}
.single-sell-field input:focus, .single-sell-field input:focus-visible  {
    outline-color: var(--primary-color);
    outline-offset: 0;
    outline-style: solid;
    outline-width: 2px;
}
.sell-select {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
    right: 0;
    padding: 25px;
    cursor: pointer;
}
.sell-select img {
    max-width: 20px;
    margin-right: 5px;
}
.sell-select h4 {
    font-size: 18px;
    line-height: 24px;
    font-weight: 400;
}
.sell-select i {
    margin-left: 10px;
}

.sell-select-item {
    position: absolute;
    width: 90%;
    right: 0;
    -webkit-transform-origin: top;
        -ms-transform-origin: top;
            transform-origin: top;
    -webkit-transform: scaleY(0);
        -ms-transform: scaleY(0);
            transform: scaleY(0);
    visibility: hidden;
    opacity: 0;
    -webkit-transition: all .3s ease-in;
    -o-transition: all .3s ease-in;
    transition: all .3s ease-in;
    padding-top: 10px;
}
.sell-select-item ul {
    background-color: rgb(255, 255, 255, 20%);
    padding: 10px;
    border-radius: 10px;
}
.sell-select-item ul li:not(:last-child) {
    margin-bottom: 10px;
}
.sell-select:hover .sell-select-item {
    -webkit-transform: scaleY(1);
        -ms-transform: scaleY(1);
            transform: scaleY(1);
    visibility: visible;
    opacity: 1;
}
.sell-button button {
    display: inline-block;
    text-transform: capitalize;
    background-color: var(--primary-color);
    color: var(--black-color);
    font-size: 18px;
    line-height: 24px;
    font-weight: 700;
    border-radius: 10px;
    padding: 18px 40px;
    cursor: pointer;
    border: 0;
}
.sell-button button:hover {
    background-color: transparent;
    color: var(--primary-color);
    padding: 16px 40px;
    border: 2px solid var(--primary-color);
}

/* 5. Trade Css */
.trade-area {
    padding: 60px 0 80px;
}
.trade-title {
    text-align: center;
    margin-bottom: 70px;
}
.trade-title span {
    display: inline-block;
    background-color: rgb(var(--secondary-color) / 5%);
    color: var(--primary-color);
    font-size: 18px;
    line-height: 24px;
    border-radius: 50px;
    padding: 18px 60px;
}
.trade-title h2 {
    font-size: 56px;
    line-height: 62px;
    font-weight: 600;
    margin: 40px 0 30px;
}

.crypto-table table {
    width: 100%;
}
.crypto-table table tr td {
    padding-bottom: 20px;
}
.crypto-icon {
    width: 100px;
}
.single-crypto-icon {
    width: 70px;
    height: 70px;
    line-height: 70px;
    text-align: center;
    border-radius: 50%;
}
.single-crypto-icon.btc {
    background-color: rgb(254, 231, 21, 0.20);
}
.single-crypto-icon.eth {
    background-color: rgb(90, 40, 176, 0.20);
}
.single-crypto-icon.sol {
    background-color: rgb(204, 49, 61, 0.20);
}
.single-crypto-icon.doge {
    background-color: rgb(51, 135, 90, 0.20);
}
.crypto-name h4 {
    font-size: 22px;
    line-height: 28px;
    font-weight: 500;
    margin-bottom: 15px;
}
.crypto-name span {
    display: block;
    font-size: 18px;
    line-height: 22px;
    color: rgb(var(--gray-color));
    font-weight: 600;
}
.crypto-change h4, .crypto-price h4 {
    font-size: 18px;
    line-height: 22px;
    color: rgb(var(--gray-color));
    font-weight: 500;
    margin-bottom: 15px; 
}
.crypto-change span.crypto-percentage-green {
    display: block;
    font-size: 18px;
    line-height: 22px;
    color: #00C32B;
    font-weight: 600;
}
.crypto-change span.crypto-percentage-red {
    display: block;
    font-size: 18px;
    line-height: 22px;
    color: #C30000;
    font-weight: 600;
}
.crypto-price span {
    display: block;
    font-size: 18px;
    line-height: 22px;
    font-weight: 600;
}
.crypto-chart h4 {
    font-size: 18px;
    line-height: 22px;
    color: rgb(var(--gray-color));
    font-weight: 500;
    margin-top: 20px;
}
.crypto-chart img {
    max-width: 100px;
    margin-top: 20px;
}
.crypto-action {
    width: 60px;
}
.crypto-action a {
    display: inline-block;
    background-color: rgb(var(--secondary-color) / 10%);
    color: var(--primary-color);
    font-size: 18px;
    line-height: 24px;
    font-weight: 600;
    border-radius: 50px;
    padding: 20px 50px;
}
.crypto-action a:hover {
    background-color: var(--primary-color);
    color: var(--black-color);
}
.other-crypto {
    max-width: 700px;
    margin: 0 auto;
    margin-top: 50px;
}
.other-crypto a {
    display: block;
    background-color: rgb(var(--secondary-color) / 10%);
    color: var(--primary-color);
    font-size: 18px;
    line-height: 24px;
    font-weight: 600;
    border-radius: 50px;
    padding: 22px 50px;
    border: 1px solid var(--primary-color);
    text-align: center;
}
.other-crypto a:hover {
    background-color: var(--primary-color);
    color: var(--black-color);
}

/* 6. Learn Crypto Css */
.learn-crypto-area {
    background-color: var(--black-color);
    padding: 80px 0;
}
.learn-crypto-title {
    text-align: center;
    margin-bottom: 60px;
}
.learn-crypto-title span {
    display: inline-block;
    background-color: rgb(var(--secondary-color) / 5%);
    color: var(--primary-color);
    font-size: 18px;
    line-height: 24px;
    border-radius: 50px;
    padding: 18px 60px;
}
.learn-crypto-title h2 {
    font-size: 56px;
    line-height: 62px;
    font-weight: 600;
    margin: 40px 0 30px;
}
.learn-crypto-title p {
    font-size: 18px;
    line-height: 24px;
    max-width: 860px;
    margin: 0 auto;
}
.learn-crypto-feature {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}
.single-learn-feature {
    -ms-flex-preferred-size: 21%;
        flex-basis: 21%;
    text-align: center;
    background-color: rgb(var(--secondary-color) / 10%);
    padding: 40px;
    border-radius: 40px;
    border: 1px solid transparent;
    -webkit-transition: all .3s ease-in;
    -o-transition: all .3s ease-in;
    transition: all .3s ease-in;
}
.single-learn-feature:hover {
    border-color: var(--primary-color);
}
.single-learn-feature-img {
    width: 80px;
    height: 80px;
    line-height: 80px;
    background-color: rgb(var(--secondary-color) / 15%);
    margin: 0 auto;
    border-radius: 20px;
}
.single-learn-feature-img img {
    max-width: 60px;
    margin: 0 auto;
}
.single-learn-feature h4 {
    font-size: 20px;
    line-height: 26px;
    color: var(--primary-color);
    margin-top: 20px;
}


.learn-crypto-step {
    margin-top: 70px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}
.single-learn-step {
    -ms-flex-preferred-size: 31%;
        flex-basis: 31%;
    text-align: center;
    background-color: rgb(var(--secondary-color) / 10%);
    padding: 40px 30px;
    border-radius: 40px;
    margin-bottom: 40px;
}
.single-learn-step h4 {
    font-size: 24px;
    line-height: 30px;
    font-weight: 600;
}
.single-learn-step p {
    font-size: 18px;
    line-height: 24px;
    margin: 30px 0;
}
.single-learn-step a {
    display: inline-block;
    text-transform: capitalize;
    background-color: rgb(var(--secondary-color) / 10%);
    color: var(--primary-color);
    font-size: 18px;
    line-height: 24px;
    font-weight: 600;
    border-radius: 50px;
    padding: 19px 40px;
    border: 1px solid var(--primary-color);
}
.single-learn-step a:hover {
    background-color: var(--primary-color);
    color: var(--black-color);
    padding: 20px 40px;
    border: 0;
}

/* 7. FAQs Css */
.faqs-area {
    padding: 80px 0;
}
.faqs-title {
    text-align: center;
    margin-bottom: 70px;
}
.faqs-title span {
    display: inline-block;
    background-color: rgb(var(--secondary-color) / 5%);
    color: var(--primary-color);
    font-size: 18px;
    line-height: 24px;
    border-radius: 50px;
    padding: 18px 60px;
}
.faqs-title h2 {
    font-size: 56px;
    line-height: 62px;
    font-weight: 600;
    margin: 40px 0 30px;
}
.faqs-title p {
    font-size: 18px;
    line-height: 24px;
    max-width: 720px;
    margin: 0 auto;
}

.faqs-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}
.single-faq {
    -ms-flex-preferred-size: 47%;
        flex-basis: 47%;
    border-bottom: 1px solid rgb(var(--gray-color) / 80%);
    padding-bottom: 30px;
    margin-bottom: 40px;
}
.single-faq h4 {
    font-size: 24px;
    line-height: 30px;
    font-weight: 500;
    margin-bottom: 15px;
}
.single-faq p {
    font-size: 18px;
    line-height: 24px;
    color: rgb(var(--gray-color));
}

/* 8. Contact Css */
.contact-area {
    background-color: rgb(255, 255, 255, 5%);
    padding: 80px 0;
}
.contact-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}
.contact-content {
    -ms-flex-preferred-size: 60%;
        flex-basis: 60%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 50px;
}
.contact-content-top h2 {
    font-size: 48px;
    line-height: 54px;
    font-weight: 500;
    margin-bottom: 20px;
}
.contact-content-top p {
    font-size: 18px;
    line-height: 24px;
    color: rgb(var(--gray-color));
}
.contact-social {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 30px;
}
.contact-social a {
    font-size: 36px;
    line-height: 42px;
}
.contact-social a:hover {
    color: var(--primary-color);
}
.contact-form {
    -ms-flex-preferred-size: 30%;
        flex-basis: 30%;
}
.contact-form-group {
    margin-bottom: 30px;
}
.contact-form-group label {
    display: block;
    font-size: 22px;
    line-height: 28px;
    margin-bottom: 15px;
    color: rgb(var(--gray-color));
}
.contact-form-group input {
    background-color: rgb(255, 255, 255, 10%);
    padding: 25px;
    border: 0;
    border-radius: 5px;
    width: 100%;
}
.contact-form-group input:focus, .contact-form-group input:focus-visible  {
    outline-color: var(--primary-color);
    outline-offset: 0;
    outline-style: solid;
    outline-width: 2px;
}
.contact-form button {
    display: inline-block;
    text-transform: capitalize;
    background-color: var(--primary-color);
    color: var(--black-color);
    font-size: 18px;
    line-height: 24px;
    font-weight: 700;
    border-radius: 50px;
    padding: 18px 40px;
    cursor: pointer;
    border: 0;
}
.contact-form button:hover {
    background-color: transparent;
    color: var(--primary-color);
    padding: 16px 40px;
    border: 2px solid var(--primary-color);
}

/* 9. Footer Css */
.footer-area {
    padding: 60px 0 40px;
}
.footer-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}
.footer-item {
    -ms-flex-preferred-size: 23%;
        flex-basis: 23%;
}
.footer-item h4 {
    font-size: 24px;
    line-height: 30px;
    font-weight: 500;
    margin-bottom: 30px;
}
.footer-item ul li:not(:last-child) {
    margin-bottom: 7px;
    padding-bottom: 7px;
}
.footer-item ul li a {
    font-size: 18px;
    line-height: 24px;
    color: rgb(var(--gray-color));
}
.footer-item ul li a:hover {
    color: var(--primary-color);
}
.footer-app a:not(:last-child) img {
    margin-bottom: 20px;
}
.footer-copyright {
    padding-top: 40px;
    margin-top: 50px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    border-top: 1px solid rgb(var(--gray-color) / 35%);
}
.footer-copyright p {
    font-size: 14px;
    line-height: 18px;
    color: rgb(var(--gray-color));
}
.footer-social {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 30px;
}
.footer-social a {
    font-size: 26px;
    line-height: 32px;
    color: rgb(var(--gray-color));
}
.footer-social a:hover {
    color: var(--primary-color);
}

/* Breadcrumbs Css */
.breadcrumbs-area {
    background-color: var(--bg-color);
    padding: 120px 0;
    text-align: center;
}
.breadcrumbs h2 {
    font-size: 48px;
    line-height: 54px;
}

/* 10. Contact Page Css */
.contact-page-area {
    background-color: rgb(255, 255, 255, 5%);
    padding: 80px 0;
}
.contact-page-top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}
.contact-page-left, .contact-page-right {
    -ms-flex-preferred-size: 48%;
        flex-basis: 48%;
}
.contact-page-left h2 {
    font-size: 36px;
    line-height: 42px;
    margin-bottom: 30px;
}
.contact-page-form input, .contact-page-form textarea {
    background-color: rgb(255, 255, 255, 10%);
    padding: 20px;
    border: 0;
    width: 100%;
    color: var(--white-color);
    border-radius: 5px;
    outline-offset: 0;
}
.contact-page-form input:focus, .contact-page-form input:focus-visible, .contact-page-form textarea:focus, .contact-page-form textarea:focus-visible  {
    outline-color: var(--primary-color);
    outline-offset: 0;
    outline-style: solid;
    outline-width: 2px;
}
.contact-page-form-group {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 20px 1fr;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}
.contact-page-form textarea {
    height: 120px;
    margin-top: 20px;
}
.contact-page-form button {
    display: inline-block;
    text-transform: capitalize;
    background-color: var(--primary-color);
    color: var(--black-color);
    font-size: 18px;
    line-height: 24px;
    font-weight: 700;
    border-radius: 10px;
    padding: 14px 34px;
    cursor: pointer;
    border: 0;
    margin-top: 20px;
}
.contact-page-form button:hover {
    background-color: transparent;
    color: var(--primary-color);
    padding: 12px 32px;
    border: 2px solid var(--primary-color);
}
.contact-page-right h2 {
    font-size: 36px;
    line-height: 42px;
    margin-bottom: 30px;
}
.single-contact {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}
.single-contact i {
    width: 50px;
    height: 50px;
    line-height: 50px;
    background-color: rgb(var(--secondary-color) / 10%);
    color: var(--primary-color);
    border-radius: 50%;
    text-align: center;
    font-size: 20px;
}
.single-contact h4 {
    font-size: 20px;
    line-height: 26px;
    font-weight: 600;
}
.single-contact h4 span {
    display: block;
    font-size: 16px;
    line-height: 22px;
    color: rgb(var(--gray-color));
    margin-top: 5px;
}

/* 11. About Page Css */
.about-area {
    padding: 80px 0;
}
.about-title {
    text-align: center;
    margin-bottom: 70px;
}
.about-title h2 {
    font-size: 56px;
    line-height: 62px;
    font-weight: 600;
    margin: 0 0 30px;
}
.about-title p {
    font-size: 18px;
    line-height: 24px;
    max-width: 720px;
    margin: 0 auto;
}
.about-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}
.about-img, .about-info {
    -ms-flex-preferred-size: 48%;
        flex-basis: 48%;
}
.about-img img {
    width: 100%;
    border-radius: 20px;
}
.about-info {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 30px 1fr;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}
.single-about i {
    font-size: 52px;
    line-height: 58px;
    color: var(--primary-color);
}
.single-about h4 {
    font-size: 20px;
    line-height: 26px;
    margin: 20px 0;
}
.single-about p {
    color: rgb(var(--gray-color));
}

/* 12. Advantages Css */ 
.advantages-area {
    background-color: rgb(255, 255, 255, 5%);
    padding: 80px 0;
}
.advantages-title {
    text-align: center;
    margin-bottom: 70px;
}
.advantages-title h2 {
    font-size: 56px;
    line-height: 60px;
    font-weight: 600;
    text-transform: capitalize;
    margin-bottom: 20px;
}
.advantages-title p {
    font-size: 18px;
    line-height: 24px;
}
.advantages-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}
.single-advantages {
    -ms-flex-preferred-size: 31%;
        flex-basis: 31%;
    background-color: rgb(var(--secondary-color) / 10%);
    border-radius: 20px;
}
.single-advantages:nth-child(2) {
    -ms-flex-preferred-size: 33%;
        flex-basis: 33%;
}
.advantages-head {
    padding: 28px 28px 0;
}
.single-advantages:nth-child(2) .advantages-head {
    padding: 36px 28px 0;
}
.advantages-top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-bottom: 20px;
}
.advantages-top i {
    width: 40px;
    height: 40px;
    background-color: rgb(var(--secondary-color) / 15%);
    color: var(--primary-color);
    font-size: 20px;
    line-height: 40px;
    text-align: center;
    border-radius: 50%;
    margin-right: 10px;
}
.advantages-top h4 {
    font-size: 24px;
    line-height: 30px;
}
.single-advantages img {
    width: 100%;
    height: 100%;
    margin-top: 40px;
}

/* 13. Market Page Css */
.single-market-box:nth-child(even) {
    background-color: var(--black-color);
}
.single-market-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}
.single-market-content {
    position: relative;
    -ms-flex-preferred-size: 48%;
        flex-basis: 48%;
    padding: 80px 0;
    z-index: 1;
} 
.single-market-content h4 {
    font-size: 22px;
    line-height: 28px;
    font-weight: 600;
    margin-bottom: 10px;
} 
.single-market-content h2 {
    font-size: 48px;
    line-height: 54px;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 35px;
} 
.single-market-content h3 {
    font-size: 22px;
    line-height: 28px;
    font-weight: 500;
    margin-bottom: 25px;
} 
.single-market-content p, .single-market-img p {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 35px;
}
.single-market-content a {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--black-color);
    font-size: 18px;
    line-height: 22px;
    font-weight: 700;
    padding: 15px 35px;
    border-radius: 50px;
}
.single-market-content a:hover {
    background-color: transparent;
    color: var(--primary-color);
    padding: 13px 33px;
    border: 2px solid var(--primary-color);
}
.single-market-content span {
    position: absolute;
    bottom: 0;
    opacity: .04;
    font-size: 450px;
    line-height: 380px;
    font-weight: 800;
    left: 0;
    width: auto;
    z-index: -1;
}
.single-market-img {
    -ms-flex-preferred-size: 48%;
        flex-basis: 48%;
}   

/* 14. Account Guide Css */
.account-guide-area {
    padding: 80px 0;
}
.account-guide-title {
    text-align: center;
    margin-bottom: 70px;
}
.account-guide-title span {
    display: inline-block;
    background-color: rgb(var(--secondary-color) / 5%);
    color: var(--primary-color);
    font-size: 18px;
    line-height: 24px;
    border-radius: 50px;
    padding: 18px 60px;
}
.account-guide-title h2 {
    font-size: 56px;
    line-height: 62px;
    font-weight: 600;
    margin: 40px 0 30px;
}
.account-guide-title p {
    font-size: 18px;
    line-height: 24px;
    max-width: 720px;
    margin: 0 auto;
}

.account-guide {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}
.single-account-guide {
    -ms-flex-preferred-size: 32%;
        flex-basis: 32%;
    text-align: center;
    background-color: rgb(var(--secondary-color) / 10%);
    padding: 30px;
    border-radius: 30px;
}
.single-account-guide i {
    width: 80px;
    height: 80px;
    line-height: 80px;
    background-color: rgb(var(--secondary-color) / 15%);
    color: var(--primary-color);
    font-size: 40px;
    border-radius: 20px;
}
.single-account-guide h4 {
    font-size: 20px;
    line-height: 26px;
    color: var(--primary-color);
    margin: 20px 0 10px;
}
.single-account-guide p {
    color: rgb(var(--gray-color));
}

/* 15. Account Css */
.account-area {
    background-color: rgb(255, 255, 255, 5%);
    padding: 80px 0;
}
.account-title {
    text-align: center;
    margin-bottom: 70px;
}
.account-title span {
    display: inline-block;
    background-color: rgb(var(--secondary-color) / 5%);
    color: var(--primary-color);
    font-size: 18px;
    line-height: 24px;
    border-radius: 50px;
    padding: 18px 60px;
}
.account-title h2 {
    font-size: 56px;
    line-height: 62px;
    font-weight: 600;
    margin-top: 40px;
}

.account-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}
.single-account {
    -ms-flex-preferred-size: 24%;
        flex-basis: 24%;
    background-color: rgb(var(--secondary-color) / 10%);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid transparent;
    -webkit-transition: all .3s ease-in;
    -o-transition: all .3s ease-in;
    transition: all .3s ease-in;
}
.single-account:hover {
    border-color: var(--primary-color);
}
.account-head {
    text-align: center;
    margin-bottom: 40px;
}
.account-head span {
    font-size: 18px;
    line-height: 24px;
    font-weight: 700;
    color: var(--primary-color);
}
.account-head h4 {
    font-size: 46px;
    line-height: 52px;
    font-weight: 700;
    margin-top: 10px;
}
.account-body ul li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 10px;
    color: rgb(var(--gray-color));
}
.account-body ul li:not(:last-child) {
    margin-bottom: 15px;
}
.account-body ul li i {
    font-size: 18px;
    color: var(--primary-color);
}
.account-footer {
    text-align: center;
    margin-top: 40px;
}
.account-footer a {
    display: inline-block;
    text-transform: capitalize;
    background-color: rgb(var(--secondary-color) / 10%);
    color: var(--primary-color);
    font-weight: 600;
    border-radius: 50px;
    padding: 15px 39px;
    border: 1px solid var(--primary-color);
}
.account-footer a:hover {
    background-color: var(--primary-color);
    color: var(--black-color);
}