/*
Table Of Content
---
1. Common Css
2. Header Css
3. Banner Css
4. Why Choose Css
5. Statistics Css
6. Guide Css
7. Award Css
8. Cta Css
9. Documents Css
10. Profit Calculator Css
11. Footer Css
12. About Page Css
13. Advantages Css
14. History Css
15. Contact Page Css
16. Account Page Css
17. Order Css
18. Market Page Css
*/

@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&family=Mulish:ital,wght@0,200..1000;1,200..1000&display=swap');

/* 1. Common Css */
* {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
}
:root {
    --primary-color: #03cf00;
    --secondary-color: #6d79a4;
    --blue-color: #b0c9ea;
    --white-color: #fff;
    --black-color: #01122e;
    --gray-color: #ddd;
}
html {
    scroll-behavior: smooth;
    
}
body {
    font-family: "Manrope", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 22px;
}
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(--black-color);
}
h1, h2, h3, h4, h5, h6 {
    font-family: "Mulish", 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-box {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 99;
    -webkit-transition: all .3s ease-in;
    -o-transition: all .3s ease-in;
    transition: all .3s ease-in;
}
.header-area {
    padding: 15px;
}

.header-area.sticky {
  background: rgba(255, 255, 255, 0.25); /* translucent white */
  backdrop-filter: blur(18px) saturate(1.2);
  -webkit-backdrop-filter: blur(18px) saturate(1.2);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: background 0.3s ease, backdrop-filter 0.3s ease;
}
.header-top {
    background-color: var(--primary-color);
    padding: 5px 0;
}
.header-top p {
    font-size: 14px;
    line-height: 20px;
    color: var(--white-color);
}

/* Optional: fallback for browsers without backdrop-filter */
@supports not ((backdrop-filter: blur(0)) or (-webkit-backdrop-filter: blur(0))) {
  .header-area.sticky {
    background: rgba(255, 255, 255, 0.9);
  }
}

.header {
    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;
}
.header-left {
    -ms-flex-preferred-size: 65%;
        flex-basis: 65%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}
.logo a img {
    max-width: 120px;
    margin-right: 20px;
}
.menu ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.menu ul li a {
    display: block;
    text-transform: capitalize;
    font-size: 18px;
    font-weight: 500;
    color: var(--black-color);
    padding: 0 25px;
}
.menu ul li a:hover {
    color: var(--primary-color);
}
.header-right {
    -ms-flex-preferred-size: 33%;
        flex-basis: 33%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}
.header-flags {
    position: relative;
    margin-right: 20px;
}
.header-flags img {
    max-width: 32px;
    border-radius: 50%;
    -webkit-transition: .1s;
    -o-transition: .1s;
    transition: .1s;
}
.flag-box {
    position: absolute;
    right: 50%;
    -webkit-transform: translate(50%, 20px);
        -ms-transform: translate(50%, 20px);
            transform: translate(50%, 20px);
    padding-top: 15px;
    -webkit-transform-origin: bottom;
        -ms-transform-origin: bottom;
            transform-origin: bottom;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: .3s all ease-out;
    -o-transition: .3s all ease-out;
    transition: .3s all ease-out;
}
.flag-box.show {
    visibility: visible;
    opacity: 100;
    -webkit-transform: translate(50%, 0);
        -ms-transform: translate(50%, 0);
            transform: translate(50%, 0);
}
.flag-list {
    background-color: var(--blue-color);
    padding: 8px;
    border-radius: 30px;
}
.flag-list li:not(:last-child) {
    padding-bottom: 6px;
    margin-bottom: 6px;
}
.flag-list li img:hover {
    border: 2px solid var(--primary-color);
}
.mobile-flag {
    display: none !important;
}
.header-btn a:first-child {
    display: inline-block;
    background-color: var(--blue-color);
    text-transform: capitalize;
    font-size: 18px;
    font-weight: 500;
    padding: 15px 35px;
    border-radius: 50px;
    margin-right: 5px;
}
.header-btn a:last-child {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--white-color);
    text-transform: capitalize;
    font-size: 18px;
    padding: 15px 35px;
    border-radius: 50px;
}
.header-btn a:hover {
    opacity: 85%;
}
.header-btn-mobile {
    display: none;
}

/* 3. Banner Css */
.banner-area {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 100vh;
    height: 100%;
    padding: 160px 0 0;
    position: relative;
}
.banner-top-content h2 {
    font-size: 70px;
    line-height: 70px;
    font-weight: 900;
    text-transform: uppercase;
}
.banner-top-content p {
    font-size: 22px;
    line-height: 28px;
    font-weight: 500;
    max-width: 480px;
    margin: 30px 0;
}
.banner-top-content a {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--white-color);
    font-size: 18px;
    line-height: 22px;
    font-weight: 500;
    padding: 15px 35px;
    border-radius: 50px;
}
.banner-top-content a:hover {
    opacity: 85%;
}
.banner-scanner {
    margin-top: 20px;
    max-width: 84px;
}
.banner-bottom {
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
    bottom: 50px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
}
.banner-bottom-first, .banner-bottom-last-item {
    background-color: var(--white-color);
    padding: 15px;
    border-radius: 15px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    max-width: 270px;
    margin: 0 auto;
}
.banner-bottom-first {
    margin-bottom: 30px;
}
.banner-bottom-first i, .banner-bottom-last-item i {
    width: 40px;
    height: 40px;
    background-color: var(--blue-color);
    color: var(--white-color);
    font-size: 20px;
    line-height: 40px;
    text-align: center;
    border-radius: 50%;
    margin-right: 7px;
}
.banner-bottom-first h4, .banner-bottom-last-item h4 {
    font-size: 18px;
}
.banner-bottom-last {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.banner-bottom-last-item:first-child {
    margin-right: 100px;
}


/* 4. Why Choose Css */
.why-choose-area {
    padding: 80px 0;
}
.why-choose-title {
    text-align: center;
    margin-bottom: 70px;
}
.why-choose-title h2 {
    font-size: 48px;
    line-height: 54px;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 20px;
}
.why-choose-title p {
    font-size: 18px;
    line-height: 24px;
}
.why-choose-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-why-choose {
    -ms-flex-preferred-size: 31%;
        flex-basis: 31%;
    background-color: var(--secondary-color);
    border-radius: 20px;
}
.single-why-choose:nth-child(2) {
    -ms-flex-preferred-size: 33%;
        flex-basis: 33%;
}
.why-choose-head {
    padding: 32px 32px 0;
}
.single-why-choose:nth-child(2) .why-choose-head {
    padding: 40px 32px 0;
}
.why-choose-top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-bottom: 20px;
}
.why-choose-top i {
    width: 40px;
    height: 40px;
    background-color: var(--blue-color);
    color: var(--white-color);
    font-size: 20px;
    line-height: 40px;
    text-align: center;
    border-radius: 50%;
    margin-right: 10px;
}
.why-choose-top h4 {
    color: var(--white-color);
    font-size: 24px;
    line-height: 30px;
}
.single-why-choose p {
    color: var(--white-color);
}
.single-why-choose img {
    width: 100%;
    height: 100%;
    margin-top: 40px;
}

/* 5. Statistics Css */
.statistics-area {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 90px 0 0;
}
.statistics-title {
    text-align: center;
    margin-bottom: 70px;
}
.statistics-title h2 {
    font-size: 48px;
    line-height: 54px;
    font-weight: 900;
    text-transform: uppercase;
    color: white;
    margin-top: 10px;
}
.statistics-title p {
    font-size: 22px;
    line-height: 28px;
    font-weight: 600;
    color: #ddd;
}
.statistics-img {
    text-align: center;
    margin: 0 auto;
}
.statistics {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}
.single-statistics-count span {
    font-size: 92px;
    line-height: 100%;
    color: var(--white-color);
}
.statistics-tab {
    margin-top: 50px;
}
.statistics-tab ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.statistics-tab ul li a {
    background-color: var(--white-color);
    padding: 15px 35px;
    border-radius: 50px;
    font-size: 18px;
}
.statistics-tab ul li a.active-tab {
    background-color: var(--blue-color);
}

/* 6. Guide Css */
.guide-area {
    padding: 100px 0;
}
.guide-title {
    text-align: center;
    max-width: 820px;
    margin: 0 auto;
    margin-bottom: 70px;
}
.guide-title h2 {
    font-size: 48px;
    line-height: 54px;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 20px;
}
.guide-title p {
    font-size: 18px;
    line-height: 24px;
}
.guide-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-guide {
    position: relative;
    -ms-flex-preferred-size: 31%;
        flex-basis: 31%;
    background-color: var(--secondary-color);
    border-radius: 20px;
}
.guide-head {
    position: relative;
    padding: 32px 32px 0;
}
.single-guide:nth-child(2) {
    -ms-flex-preferred-size: 33%;
        flex-basis: 33%;
}
.guide-head h4 {
    color: var(--white-color);
    font-size: 24px;
    line-height: 30px;
    margin-bottom: 10px;
}
.guide-head p {
    color: var(--white-color);
}
.guide-head a {
    position: absolute;
    left: 32px;
    bottom: -65px;
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--white-color);
    font-size: 18px;
    line-height: 22px;
    font-weight: 500;
    padding: 15px 35px;
    border-radius: 50px;
    margin-top: 10px;
}
.guide-head a:hover {
    opacity: 85%;
}
.single-guide img {
    width: 100%;
    height: 100%;
    margin-top: 5px;
}
.guide-message {
    position: absolute;
    left: 32px;
    right: 32px;
    bottom: 32px;
    background-color: #ffffffb3;
    border-radius: 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 10px;
}
.guide-message i {
    width: 32px;
    height: 20px;
    line-height: 20px;
    font-size: 12px;
    text-align: center;
    background-color: var(--secondary-color);
    color: #ddd;
    margin-right: 10px;
    border-radius: 3px;
}
.guide-message p {
    font-size: 14px;
    line-height: 18px;
}

/* 7. Award Css */
.award-area {
    padding: 80px 0;
}
.award-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;
}
.award-img {
    -ms-flex-preferred-size: 42%;
        flex-basis: 42%;
}
.award-img img {
    width: 100%;
    -webkit-box-shadow: 0 2px 2px #f2f2f2;
            box-shadow: 0 2px 2px #f2f2f2;
}
.award-content {
    -ms-flex-preferred-size: 52%;
        flex-basis: 52%;
    margin-top: 40px;
}
.award-content h2 {
    font-size: 44px;
    line-height: 50px;
    text-transform: uppercase;
    font-weight: 900;
}
.award-content h4 {
    font-size: 20px;
    line-height: 26px;
    font-weight: 400;
    margin-top: 20px;
}
.award-main {
    position: relative;
}
.award-slider {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    padding-bottom: 30px;
}
.single-award {
    padding-bottom: 20px;
}
.single-award-box {
    background-color: var(--secondary-color);
    padding: 15px;
    border-radius: 20px;
    position: relative;
}
.single-award-top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}
.single-award-top img {
    max-width: 80px;
    border-radius: 10px;
    margin-right: 20px;
}
.single-award-top h2 {
    font-size: 22px;
    line-height: 28px;
    color: var(--white-color);
    text-align: left;
}
.award-slide .slick-slide {
    margin: 0 5px;
}
.award-slide .slick-arrow {
    position: absolute;
    top: -60px;
    right: 0;
    background-color: transparent;
    border: 1px solid var(--blue-color);
    width: 50px;
    height: 50px;
    line-height: 50px;
    font-size: 22px;
    text-align: center;
    color: var(--blue-color);
    border-radius: 50%;
    cursor: pointer;
}
.award-slide .slick-arrow:hover {
    background-color: var(--blue-color);
    color: var(--secondary-color);
}
.award-slide .slick-arrow.slick-prev {
    -webkit-transform: translateX(-60px);
        -ms-transform: translateX(-60px);
            transform: translateX(-60px);
}
.single-award-bottom {
    position: absolute;
    right: 25px;
    bottom: -10px;
    background-color: var(--blue-color);
    padding: 5px 20px;
    border-radius: 10px;
    font-size: 14px;
    line-height: 20px;
}

/* 8. Cta Css */
.cta-area {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.cta-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;
}
.cta-img {
    -ms-flex-preferred-size: 54%;
        flex-basis: 54%;
}
.cta-img img {
    width: 100%;
}
.cta-content {
    -ms-flex-preferred-size: 44%;
        flex-basis: 44%;
}
.cta-content h4 {
    font-size: 22px;
    line-height: 28px;
    font-weight: 600;
    color: var(--white-color);
}
.cta-content h2 {
    font-size: 48px;
    line-height: 54px;
    font-weight: 900;
    color: var(--white-color);
    text-transform: uppercase;
    margin: 10px 0 30px;
}
.cta-content p {
    font-size: 20px;
    line-height: 26px;
    color: var(--white-color);
}
.cta-content a {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--white-color);
    font-size: 18px;
    line-height: 22px;
    font-weight: 500;
    padding: 15px 35px;
    border-radius: 50px;
    margin-top: 30px;
}
.cta-content a:hover {
    opacity: 85%;
} 

/* 9. Documents Css */
.documents-area {
    padding: 100px 0;
}
.documents-title {
    text-align: center;
    margin-bottom: 70px;
}
.documents-title p {
    font-size: 22px;
    line-height: 28px;
}
.documents-title h2 {
    font-size: 48px;
    line-height: 54px;
    font-weight: 900;
    text-transform: uppercase;
    margin: 10px 0 30px;
}
.documents-box {
    position: relative;
}
.documents-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-column-gap: 30px;
       -moz-column-gap: 30px;
            column-gap: 30px;
}
.single-documents-img:nth-child(1) {
    margin-top: 70px;
}
.single-documents-img:nth-child(2) {
    margin-right: 70px;
}
.single-documents-img:nth-child(3) {
    margin-left: 70px;
}
.single-documents-img:nth-child(4) {
    margin-bottom: 70px;
}
.single-documents-img img {
    max-width: 420px;
}
.documents-list {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    width: 300px;
    background-color: var(--secondary-color);
    border-radius: 20px;
}
.documents-list ul li a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 20px 25px;
    border-bottom: 1px solid var(--blue-color);
}
.documents-list ul li a i {
    font-size: 20px;
    color: var(--blue-color);
    margin-right: 20px;
}
.documents-list ul li a span {
    font-size: 18px;
    line-height: 24px;
    font-weight: 600;
    color: var(--white-color);
}
.documents-list ul li a:hover span {
    text-decoration: underline;
}

/* 10. Profit Calculator Css */
.profit-calculator-area {
    background-color: #e2f1ff;
    padding: 80px 0;
}
.profit-calculator-title {
    text-align: center;
    margin-bottom: 70px;
}
.profit-calculator-title h2 {
    font-size: 44px;
    line-height: 50px;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 10px;
}
.profit-calculator-title p {
    font-size: 20px;
    line-height: 26px;
}

.profit-calculator-wrap {
    background-color: var(--white-color);
    padding: 30px;
    border-radius: 20px;
    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;
}
.profit-calculator-left {
    -ms-flex-preferred-size: 48%;
        flex-basis: 48%;
}
.profit-calculator-left label {
    display: block;
    font-size: 16px;
    line-height: 22px;
    margin-bottom: 10px;
}
.profit-calculator-head-item {
    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;
    gap: 10px;
}
.profit-calculator-head-item button {
    background-color: var(--secondary-color);
    border-radius: 10px;
    border: 0;
    padding: 12px 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 10px;
    cursor: pointer;
}
.profit-calculator-head-item button img {
    max-width: 24px;
    border-radius: 50%;
}
.profit-calculator-head-item button span {
    text-transform: uppercase;
    color: var(--white-color);
    font-size: 18px;
}
.prfoit-calculator-body {
    margin: 20px 0;
}
.profit-calculator-body-item h2 {
    font-size: 20px;
    line-height: 24px;
    font-weight: 400;
    cursor: pointer;
    padding: 12px 20px;
    border-radius: 10px;
    background-color: #edeff3;
    width: 100%;
}
.profit-calculator-body-item.profit-calculator-group {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 20px;
    margin-top: 20px;
}
.single-profit-calculator-body-item .profit-calculator-input-group {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.profit-calculator-input-group span {
    background-color: #e2f1ff;
    padding: 12px 20px;
    border-radius: 12px 0 0 12px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}
.profit-calculator-input-group input {
    font-size: 20px;
    line-height: 26px;
    background-color: #edeff3;
    border-radius: 0 12px 12px 0;
    padding: 12px 20px;
    border: 0;
}
.profit-calculator-input-group input:focus-visible {
    outline: 0;
}
.profit-calculator-footer-time {
    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;
    margin-bottom: 10px;
}
.profit-calculator-footer-top {
    position: relative;
    width: 100%;
}

.profit-calculator-footer-range input[type='range'] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 100%;
    height: 5px;
    background: -webkit-gradient(
        linear,
        left top, right top,
        color-stop(0, var(--primary-color)),
        color-stop(var(--primary-color)),
        color-stop(#e2f1ff),
        to(#e2f1ff)
    );
    background: -o-linear-gradient(
        left,
        var(--primary-color) 0,
        var(--primary-color) var(--range-progress, 50%),
        #e2f1ff var(--range-progress, 50%),
        #e2f1ff 100%
    );
    background: linear-gradient(
        to right,
        var(--primary-color) 0,
        var(--primary-color) var(--range-progress, 50%),
        #e2f1ff var(--range-progress, 50%),
        #e2f1ff 100%
    );
    border-radius: 5px;
    cursor: pointer;
    -webkit-transition: background 0.3s;
    -o-transition: background 0.3s;
    transition: background 0.3s;
}

/* Thumb */
.profit-calculator-footer-range input[type='range']::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--primary-color);
    border: none;
    cursor: pointer;
    position: relative;
    z-index: 2;
}
.profit-calculator-footer-range input[type='range']::-moz-range-thumb {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--primary-color);
    border: none;
    cursor: pointer;
}
.profit-calculator-footer-range input[type='range']::-ms-thumb {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--primary-color);
    border: none;
    cursor: pointer;
}

/* Value Box */
.profit-calculator-footer-range .range-value {
    position: absolute;
    bottom: -30px;
    left: 0;
    -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
            transform: translateX(0);
    background: var(--secondary-color);
    color: var(--white-color);
    font-size: 14px;
    padding: 2px 4px;
    border-radius: 5px;
    white-space: nowrap;
    pointer-events: none;
    -webkit-transition: left 0.1s;
    -o-transition: left 0.1s;
    transition: left 0.1s;
}

.profit-calculator-footer-bottom {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 10px;
    margin-top: 40px;
}
.profit-calculator-footer-bottom input[type="submit"] {
    display: block;
    background-color: #e2f1ff;
    opacity: 0.8;
    border: 0;
    padding: 15px 35px;
    border-radius: 50px;
    font-size: 18px;
    line-height: 24px;
    cursor: pointer;
    -webkit-box-flex: 1;
        -ms-flex: 1 1 0%;
            flex: 1 1 0%;
}
.profit-calculator-footer-bottom button {
    background-color: var(--blue-color);
    width: 50px;
    height: 50px;
    line-height: 50px;
    border-radius: 50%;
    font-size: 18px;
    border: 0;
    opacity: 0.8;
}


.profit-calculator-right {
    -ms-flex-preferred-size: 48%;
        flex-basis: 48%;
    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: 20px;
}
.profit-calculator-right-top {
    padding: 20px;
    border-radius: 10px;
    border: 1px solid #f2f2f2;
}
.profit-calculator-right-top ul li {
    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: 20px;
}
.profit-calculator-right-top ul li:not(:last-child) {
    margin-bottom: 15px;
}
.profit-calculator-right-top ul li span {
    font-size: 18px;
}
.profit-calculator-right-top ul li span.active {
    font-size: 20px;
    color: var(--primary-color);
    font-weight: 500;
}

.profit-calculator-right-bottom {
    max-width: 514px;
    overflow-x: auto;
}
.profit-calculator-right-bottom-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 30px;
}
.profit-calculator-right-time-price {
    display: block;
    background-color: var(--secondary-color);
    width: 70px;
    text-align: center;
    padding: 10px 0;
    font-size: 18px;
    color: var(--white-color);
    border-radius: 10px;
    margin-bottom: 10px;
    opacity: 0;
    visibility: hidden;
    -webkit-transform-origin: bottom;
        -ms-transform-origin: bottom;
            transform-origin: bottom;
    -webkit-transform: scaleY(0);
        -ms-transform: scaleY(0);
            transform: scaleY(0);
    -webkit-transition: all .3s ease-in;
    -o-transition: all .3s ease-in;
    transition: all .3s ease-in;
    position: relative;
}
.profit-calculator-right-time-price::before {
    content: '\f0d7';
    position: absolute;
    bottom: -12px;
    left: 30px;
    color: var(--secondary-color);
    font-family: 'FontAwesome'; 
}

.single-profit-calculator-right-item:hover .profit-calculator-right-time-price, .single-profit-calculator-right-item.active .profit-calculator-right-time-price {
    opacity: 100;
    visibility: visible;
    -webkit-transform: scaleY(1);
        -ms-transform: scaleY(1);
            transform: scaleY(1);
}
.single-profit-calculator-right-item {
    cursor: pointer;
}
.profit-calculator-right-time-select {
    display: block;
    background-color: #e2f1ff;
    height: 30px;
    border-radius: 5px;
    width: 70px;
}
.single-profit-calculator-right-item:hover .profit-calculator-right-time-select, .single-profit-calculator-right-item.active .profit-calculator-right-time-select {
    background-color: var(--primary-color);
}
.profit-calculator-right-time {
    display: block;
    text-align: center;
    font-size: 14px;
    line-height: 18px;
    width: 70px;
    margin-top: 10px;
}

/* 11. Footer Css */
.footer-area {
    background-color: var(--secondary-color);
    color: #e2f1ff;
    padding: 30px 0;
}
.footer-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;
}
.footer-top-list {
    -ms-flex-preferred-size: 32%;
        flex-basis: 32%;
}
.footer-top-list h4 {
    font-size: 20px;
    line-height: 26px;
    font-weight: 400;
    color: var(--white-color);
    margin-bottom: 20px;
}
.footer-top-list ul li a {
    display: block;
    font-weight: 500;
    color: #e2f1ff;
    margin-bottom: 7px;
}
.footer-info {
    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;
    padding: 20px 0;
    border-bottom: 1px solid var(--blue-color);
}
.footer-info-left {
    -ms-flex-preferred-size: 38%;
        flex-basis: 38%;
}
.footer-info-left img {
    max-width: 140px;
}
.footer-info-right {
    -ms-flex-preferred-size: 59%;
        flex-basis: 59%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    gap: 20px;
}
.single-footer-info h4 {
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
}
.single-footer-info a, .single-footer-info span {
    font-size: 17px;
    font-weight: 500;
    color: var(--white-color);
}
.single-footer-info a:hover {
    color: var(--primary-color);
}
.footer-content {
    padding: 30px 0 0;
}
.footer-content p {
    margin-bottom: 15px;
}
.footer-copyright p {
    color: var(--white-color);
}

/* 12. About Page Css */
.about-banner-area {
    background-size: cover;
    background-repeat: no-repeat;
    padding: 120px 0 0;
}
.about-banner-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;
}
.about-banner-content {
    -ms-flex-preferred-size: 53%;
        flex-basis: 53%;
}
.about-banner-content h2 {
    font-size: 70px;
    line-height: 70px;
    font-weight: 900;
    text-transform: uppercase;
}
.about-banner-content p {
    font-size: 22px;
    line-height: 28px;
    font-weight: 500;
    max-width: 480px;
    margin: 30px 0;
}
.about-banner-content a {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--white-color);
    font-size: 18px;
    line-height: 22px;
    font-weight: 500;
    padding: 15px 35px;
    border-radius: 50px;
}
.about-banner-content a:hover {
    opacity: 85%;
}
.about-banner-img {
    -ms-flex-preferred-size: 45%;
        flex-basis: 45%;
    text-align: right;
}
.about-banner-img img {
    width: 100%;
}

/* 13. Advantages Css */
.advantages-area {
    padding: 80px 0;
}
.advantages-title {
    text-align: center;
    margin-bottom: 70px;
}
.advantages-title h4 {
    font-size: 20px;
    line-height: 26px;
    font-weight: 500;
    margin-bottom: 10px;
}
.advantages-title h2 {
    font-size: 48px;
    line-height: 54px;
    font-weight: 900;
    text-transform: uppercase;
    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: var(--secondary-color);
    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: var(--blue-color);
    color: var(--white-color);
    font-size: 20px;
    line-height: 40px;
    text-align: center;
    border-radius: 50%;
    margin-right: 10px;
}
.advantages-top h4 {
    color: var(--white-color);
    font-size: 24px;
    line-height: 30px;
}
.single-advantages p {
    color: var(--white-color);
}
.single-advantages img {
    width: 100%;
    height: 100%;
    margin-top: 40px;
}

/* 14. History Css */
.history-area {
    background-color: #e2f1ff;
    padding: 100px 0;
}
.history-title {
    text-align: center;
    margin-bottom: 70px;
}
.history-title h4 {
    font-size: 20px;
    line-height: 26px;
    font-weight: 500;
    margin-bottom: 10px;
}
.history-title h2 {
    font-size: 48px;
    line-height: 54px;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 20px;
}
.history-title p {
    font-size: 18px;
    line-height: 24px;
}
.single-history {
    position: relative;
    background-color: var(--secondary-color);
    padding: 30px;
    border-radius: 20px;
}
.single-history-box {
    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-history-content {
    -ms-flex-preferred-size: 40%;
        flex-basis: 40%;
}
.single-history-content h4 {
    font-size: 24px;
    line-height: 30px;
    color: var(--white-color);
}
.single-history-content p {
    font-size: 18px;
    line-height: 24px;
    color: var(--white-color);
    margin-top: 20px;
}
.single-history-img {
    -ms-flex-preferred-size: 40%;
        flex-basis: 40%;
}
.history-time {
    position: absolute;
    bottom: 0;
    right: 40px;
    left: 40px;
    text-align: center;
}
.history-time span {
    font-size: 160px;
    line-height: 166px;
    font-weight: 900;
    color: #e2f1ff;
    opacity: .3;
}
.history-tab {
    margin-top: 50px;
}
.history-tab ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 20px;
}
.history-tab ul li a {
    background-color: var(--white-color);
    padding: 15px 35px;
    border-radius: 50px;
    font-size: 18px;
}
.history-tab ul li a.active-tab {
    background-color: var(--blue-color);
}

/* 15. Contact Page Css */
.contact-banner-area {
    background-size: cover;
    background-repeat: no-repeat;
    padding: 120px 0 0;
}
.contact-banner-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;
}
.contact-banner-content {
    -ms-flex-preferred-size: 53%;
        flex-basis: 53%;
}
.contact-banner-content h2 {
    font-size: 70px;
    line-height: 70px;
    font-weight: 900;
    text-transform: uppercase;
}
.contact-banner-content p {
    font-size: 22px;
    line-height: 28px;
    font-weight: 500;
    max-width: 480px;
    margin: 30px 0;
}
.contact-banner-content a {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--white-color);
    font-size: 18px;
    line-height: 22px;
    font-weight: 500;
    padding: 15px 35px;
    border-radius: 50px;
}
.contact-banner-content a:hover {
    opacity: 85%;
}
.contact-banner-img {
    -ms-flex-preferred-size: 45%;
        flex-basis: 45%;
    text-align: right;
}
.contact-banner-img img {
    width: 100%;
}

.contact-area {
    padding: 80px 0;
}
.contact-title {
    text-align: center;
    margin-bottom: 70px;
}
.contact-title h2 {
    font-size: 46px;
    line-height: 52px;
    font-weight: 900;
    text-transform: uppercase;
}
.contact-box {
    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-group {
    -ms-flex-preferred-size: 48%;
        flex-basis: 48%;
    margin-bottom: 20px;
}
.contact-group label, .form-textarea-group label {
    display: block;
    font-size: 16px;
    margin-bottom: 3px;
}
.contact-group label span {
   color: #ed1313;
}
.contact-group input, .contact-group select, .form-textarea-group textarea {
   width: 100%;
   padding: 15px;
   border-radius: 12px;
   font-size: 18px;
   line-height: 24px;
   border: 0;
   background-color: #edeff3;
}
.contact-group input:focus-visible, .contact-group select:focus-visible, .form-textarea-group textarea:focus-visible {
  outline: 0;
}
.form-group {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}
.form-group-item {
    -ms-flex-preferred-size: 48%;
        flex-basis: 48%;
}
.form-textarea-group textarea {
    height: 120px;
}
.form-button {
    text-align: center;
    margin-top: 40px;
}
.form-button button {
    background-color: var(--blue-color);
    font-size: 18px;
    padding: 15px 35px;
    border: 0;
    border-radius: 50px;
    cursor: pointer;
}

.contact-info-area {
    padding-bottom: 80px;
}
.contact-info-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-contact-info {
    -ms-flex-preferred-size: 32%;
        flex-basis: 32%;
    background-color: var(--secondary-color);
    padding: 30px;
    border-radius: 20px;
}
.single-contact-info i {
    width: 40px;
    height: 40px;
    line-height: 40px;
    font-size: 18px;
    text-align: center;
    background-color: var(--blue-color);
    color: var(--white-color);
    border-radius: 50%;
}
.single-contact-info h4 {
    font-size: 22px;
    line-height: 28px;
    font-weight: 700;
    color: var(--white-color);
}
.single-contact-info:not(:first-child) h4 {
    margin-top: 10px;
}
.single-contact-info h4 a {
    color: var(--white-color);
}
.single-contact-info h4 a:hover {
    color: var(--primary-color);
}
.single-contact-info span {
    display: block;
    color: var(--white-color);
    margin: 10px 0;
}

/* 16. Account Page Css */
.account-banner-area {
    background-size: cover;
    background-repeat: no-repeat;
    padding: 120px 0 0;
}
.account-banner-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;
}
.account-banner-content {
    -ms-flex-preferred-size: 53%;
        flex-basis: 53%;
}
.account-banner-content h2 {
    font-size: 70px;
    line-height: 70px;
    font-weight: 900;
    text-transform: uppercase;
}
.account-banner-content p {
    font-size: 22px;
    line-height: 28px;
    font-weight: 500;
    max-width: 480px;
    margin: 30px 0;
}
.account-banner-content a {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--white-color);
    font-size: 18px;
    line-height: 22px;
    font-weight: 500;
    padding: 15px 35px;
    border-radius: 50px;
}
.account-banner-content a:hover {
    opacity: 85%;
}
.account-banner-img {
    -ms-flex-preferred-size: 45%;
        flex-basis: 45%;
    text-align: right;
}
.account-banner-img img {
    width: 100%;
}

/* 17. Order Css */
.order-area {
    padding: 80px 0;
}
.order-title {
    text-align: center;
    margin-bottom: 70px;
}
.order-title h2 {
    font-size: 48px;
    line-height: 54px;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 20px;
}
.order-title p {
    font-size: 18px;
    line-height: 24px;
}
.order-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-order {
    -ms-flex-preferred-size: 32%;
        flex-basis: 32%;
    background-color: var(--secondary-color);
    padding: 30px;
    border-radius: 20px;
    border: 2px solid transparent;
    -webkit-transition: all .3s ease-in;
    -o-transition: all .3s ease-in;
    transition: all .3s ease-in;
    margin-bottom: 20px;
}
.single-order:hover {
    border-color: var(--primary-color);
}
.single-order img {
    max-width: 58px;
}
.single-order h4 {
    font-size: 24px;
    line-height: 30px;
    font-weight: 700;
    margin: 15px 0;
    color: var(--white-color);
}
.single-order p {
    color: var(--white-color);
}

.account-area {
    background-color: var(--secondary-color);
    padding: 100px 0;
}
.account-title {
    text-align: center;
    margin-bottom: 70px;
}
.account-title h2 {
    font-size: 48px;
    line-height: 54px;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 20px;
    color: var(--white-color);
}
.account-title p {
    font-size: 18px;
    line-height: 24px;
    color: var(--white-color);
}
.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;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}
.single-account {
    -ms-flex-preferred-size: 32%;
        flex-basis: 32%;
    padding: 30px;
    background-color: var(--white-color);
    border-radius: 20px;
}
.account-head {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.account-head i {
    width: 45px;
    height: 40px;
    background-color: var(--blue-color);
    color: var(--white-color);
    font-size: 16px;
    line-height: 40px;
    text-align: center;
    border-radius: 50%;
    margin-right: 10px;
}
.account-head h3 {
    font-size: 24px;
    line-height: 30px;
    font-weight: 700;
}
.account-head h3 span {
    display: block;
    font-size: 16px;
    line-height: 22px;
    font-weight: 400;
}
.account-price {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}
.single-price {
    -ms-flex-preferred-size: 48%;
        flex-basis: 48%;
    margin: 25px 0 20px;
}
.single-price h4 {
    font-size: 26px;
    line-height: 32px;
}
.single-price span {
    font-size: 14px;
    line-height: 18px;
}
.account-btn a {
    display: block;
    text-align: center;
    background-color: var(--primary-color);
    color: var(--white-color);
    font-size: 18px;
    line-height: 22px;
    font-weight: 500;
    padding: 15px 35px;
    border-radius: 50px;
}
.account-btn a:hover {
    opacity: .85;
}
.account-features {
    margin-top: 20px;
}
.account-features ul li:not(:last-child) {
    margin-bottom: 7px;
    padding-bottom: 7px;
}
.account-features ul li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}
.account-features ul li i {
    width: 20px;
    height: 20px;
    line-height: 20px;
    font-size: 12px;
    color: var(--white-color);
    text-align: center;
    border-radius: 3px;
    margin-right: 8px;
}
.account-features ul li i.fa-check {
    background-color: var(--blue-color);
}
.account-features ul li i.fa-xmark {
    background-color: #dbdee1;
}
.single-account.active {
    padding-bottom: 50px;
}
.single-account.active .account-head i, .single-account.active .account-features ul li i.fa-check {
    background-color: var(--primary-color);
}


.account-info-area {
    background-color: #e2f1ff;
    padding: 80px 0;
}
.account-info-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;
}
.account-info-content {
    -ms-flex-preferred-size: 56%;
        flex-basis: 56%;
}
.account-info-content h4 {
    font-size: 22px;
    line-height: 28px;
    font-weight: 600;
    margin-bottom: 10px;
}
.account-info-content h2 {
    font-size: 48px;
    line-height: 54px;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 35px;
}
.account-info-content h3 {
    font-size: 22px;
    line-height: 28px;
    font-weight: 500;
    margin-bottom: 25px;
}
.account-info-content p {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 35px;
}
.account-info-content a {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--white-color);
    font-size: 18px;
    line-height: 22px;
    font-weight: 500;
    padding: 15px 35px;
    border-radius: 50px;
}
.account-info-content a:hover {
    opacity: 0.85;
}
.account-info-img {
    -ms-flex-preferred-size: 39%;
        flex-basis: 39%;
}
.account-info-img img {
    width: 100%;
}

/* 18. Market Page Css */
.market-banner-area {
    background-size: cover;
    background-repeat: no-repeat;
    padding: 120px 0 0;
}
.market-banner-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;
}
.market-banner-content {
    -ms-flex-preferred-size: 62%;
        flex-basis: 62%;
}
.market-banner-content h4 {
    font-size: 22px;
    line-height: 28px;
    font-weight: 600;
    margin-bottom: 20px;
}
.market-banner-content h2 {
    font-size: 70px;
    line-height: 70px;
    font-weight: 900;
    text-transform: uppercase;
}
.market-banner-content p {
    font-size: 20px;
    line-height: 26px;
    font-weight: 500;
    max-width: 480px;
    margin: 30px 0;
}
.market-banner-content a {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--white-color);
    font-size: 18px;
    line-height: 22px;
    font-weight: 500;
    padding: 15px 35px;
    border-radius: 50px;
}
.market-banner-content a:hover {
    opacity: 85%;
}
.market-banner-img {
    -ms-flex-preferred-size: 37%;
        flex-basis: 37%;
    text-align: right;
}
.market-banner-img img {
    width: 100%;
}


.single-market-box:nth-child(even) {
    background-color: #e2f1ff;
}
.single-market-wrap {
    padding: 100px 0px;
    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-market-content {
    position: relative;
    -ms-flex-preferred-size: 48%;
        flex-basis: 48%;
    padding: 80px 0;
} 
.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(--white-color);
    font-size: 18px;
    line-height: 22px;
    font-weight: 500;
    padding: 15px 35px;
    border-radius: 50px;
}
.single-market-content a:hover {
    opacity: .85;
}
.single-market-content span {
    position: absolute;
    bottom: 0;
    opacity: .04;
    font-size: 450px;
    line-height: 380px;
    font-weight: 800;
    left: 0;
    width: auto;
}
.single-market-img {
    -ms-flex-preferred-size: 48%;
        flex-basis: 48%;
}   

/* Cookies Css */
.mhn-cookies {
    position: fixed;
    bottom: 17px;
    left: 17px;
    background-color: var(--white-color);
    max-width: 360px;
    z-index: 999;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.15);
    border-radius: 5px;
    padding: 30px 25px 15px;
}
.mhn-cookies.cookies-accept {
   display: none;
}
.mhn-cookies h2 {
    font-size: 20px;
    line-height: 26px;
}
.mhn-cookies p {
    margin: 20px 0;
}
.cookies-btn {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.cookies-btn a {
    text-align: center;
    flex-basis: 48%;
}
.cookies-btn a:nth-child(1) {
    background-color: var(--primary-color);
    padding: 9px 12px;
    font-size: 14px;
    font-weight: 600;
    color: var(--white-color);
}
.cookies-btn a:nth-child(2) {
    border: 2px solid var(--primary-color);
    padding: 7px 12px;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-color);
}

/* Support Css */

.mhn-chat {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background-color: var(--primary-color);
    color: var(--white-color);
    width: 45px;
    height: 45px;
    line-height: 50px;
    text-align: center;
    border-radius: 50%;
    z-index: 99;
}
