/* font-family-hear */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&amp;display=swap');
/* font-family-hear-end */

/* root */
:root {
    --font-1: 'Poppins', sans-serif;

    --white-color: #000;
    --black-color: #fff;

    --primary: #fad338;
    --secondary: #f3bc07;

    --body-color: #999;
    --heading-color: var(--white-color);
}

/* root */

/* defaults-css-start */
html {
    font-size: 62.5%;
    box-sizing: border-box;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    line-height: 4rem;
    font-family: var(--font-1);
    font-size: 1.8rem;
    font-weight: 400;
    color: var(--body-color);
    overflow-x: hidden;
}

a,
button {
    transition: all 0.3s ease-out 0s;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
}

a:focus,
button:focus,
.btn:focus {
    outline: none;
}

button:focus,
input:focus,
input:focus,
textarea,
textarea:focus {
    outline: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-1);
    color: var(--heading-color);
    margin-top: 0px;
    font-style: normal;
    font-weight: 700;
    text-transform: normal;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
    color: inherit;
}

ul {
    margin: 0px;
    padding: 0px;
    list-style: none;
}

li {
    list-style: none;
}

p {
    font-size: 1.8rem;
    font-weight: normal;
    line-height: 4rem;
    color: var(--body-color);
    margin-bottom: 1.5rem;
}

label {
    color: var(--body-color);
    cursor: pointer;
    font-size: 1.8rem;
    font-weight: 400;
}

*::-moz-selection {
    background: var(--secondary);
    color: var(--white-color);
    text-shadow: none;
}

::-moz-selection {
    background: var(--secondary);
    color: var(--white-color);
    text-shadow: none;
}

::selection {
    background: var(--secondary);
    color: var(--white-color);
    text-shadow: none;
}

*::-moz-placeholder {
    color: var(--body-color);
    font-size: 1.8rem;
    opacity: 1;
}

*::placeholder {
    color: var(--body-color);
    font-size: 1.8rem;
    opacity: 1;
}

/* defaults-css--end */

/* theme-css */
.fw-medium {
    font-weight: 500;
}

.fw-extrabold {
    font-weight: 800;
}

/* ===================== Theme Fonts sizes ================== */
.text-5xl {
    font-size: 7.8rem;
    /* 79px */
    line-height: 9.4rem;
}

.text-3xl {
    font-size: 5rem;
    /* 50px */
    line-height: 6rem;
}

.text-2xl {
    font-size: 4rem;
    /* 40px */
    line-height: 6rem;
}

.text-xl {
    font-size: 3.5rem;
    /* 35px */
    line-height: 6rem;
}

.text-lg {
    font-size: 3rem;
    /* 30px */
    line-height: 3.6rem;
}

/* ===================== Theme font sizes end ================== */

/* =====================backgrounds================== */
.body-bg {
    background-color: #fff;
}

.bg-primary {
    background-color: var(--primary) !important;
}

.bg-secondary {
    background-color: var(--secondary) !important;
}

/* =====================backgrounds-end================== */

/* ===================== text-colors ================== */
.hero-content .text-primary{
    font-size: 3rem;
    font-weight: 500
}
.text-primary {
    color: var(--secondary) !important;
}

.text-secondary {
    color: var(--secondary) !important;
}

.text-purple {
    color: var(--secondary) !important;
}

.text-primary-20 {
    color: #fff !important;
}
.text-primary-20 span{
    color: var(--secondary) !important;
}
/* ===================== text-colors end ================== */

/* ===================== btns ================== */
.btn {
    color: #444;
    font-size: 2rem;
    font-weight: 500;
    padding: 2.5rem 3rem;
    border-radius: 1.5rem;
}

.btn-primary {
    border-color: var(--primary);
    background-color: var(--primary);
    color: #444;
}
.btn-primary:hover {
    border-color: var(--secondary);
    background-color: var(--secondary);
    color: #444;
}

.btn-outline-primary {
    border-color: var(--secondary);
    color: var(--secondary);
}

.btn-outline-primary:hover {
    border-color: var(--primary);
    background-color: var(--primary);
    color: #444;
}

.btn-outline-secondary {
    border-color: var(--secondary);
    color: var(--secondary);
}

.btn-outline-secondary:hover {
    border-color: var(--secondary);
    background-color: var(--secondary);
    color: var(--white-color);
}

/* ===================== btns-end ================== */

.object {
    position: absolute;
    z-index: -1;
}

/* theme-css-end */

/* ======== header style start ============ */
.header {
    padding: 32px 0px;
    z-index: 200;
    position: relative
}

.header-logo {
    width: 220px;
}

.header-logo img {
    max-width: 100%;
}

.header-menu ul {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5rem;
    margin-top: 50px
}

.header-menu ul li a {
    text-decoration: none;
    font-weight: 500;
    font-size: 2.5rem;
    color: #fff;
}

.header-menu ul li a:hover {
    color: var(--primary);
}
.tit-mob-1 h1{
    color: #fff!important
}
.header-btn a.btn {
    width: 27.7rem;
    color: #444;
    font-size: 1.8rem;
    padding: 2.4rem;
}

.header-wrapper {
    padding: 0px 8.5rem;
}

.header-right {
    gap: 5rem;
}

.header-wrapper {
    padding: 0px 8.5rem;
    max-width: 1920px;
    margin: 0 auto;
}

/* ---offcanvas-css--- */
.offcanvas-open {
    font-size: 2.2rem;
    transition: 0.3s;
    color: #000;
}

.offcanvas-open:hover {
    color: var(--secondary);
}

.offcanvas-close {
    color: var(--theme__color1);
    position: absolute;
    transition: 0.3s;
    right: 1.5rem;
    top: 1.5rem;
    line-height: 1;
    font-size: 2.2rem;
}

.offcanvas-close:hover {
    color: #97a3ae;
}

.offcanvas-menu {
    position: fixed;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    transform: translateX(-105%);
    transition: 0.3s;
}

.offcanvas-menu.active {
    transform: translate(0);
}

.offcanvas-menu .offmenu {
    width: 100vw;
    z-index: 5;
    position: relative;
    background: #fff;
    height: 100%;
    padding: 50px 20px 40px;
    overflow: auto;
    -ms-overflow-style: none;
    /* IE and Edge */
    scrollbar-width: none;
    /* Firefox */
}

.offcanvas-menu .offmenu :-webkit-scrollbar {
    display: none;
}
.mobile-menu li{
    border-bottom: solid 1px #f3f3f3
}
.mobile-menu li:last-child{
    border-bottom: none
}
.mobile-menu li a {
    display: block;
    font-size: 1.3rem !important;
    font-weight: 500;
    color: #4a326f;
    padding: 0.2rem 0;
    text-decoration: none;
}
.mobile-menu li a:hover {
    color: var(--primary);
}

.offcanvas-overlay {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: rgba(0, 0, 0, 0.178);
    z-index: 2;
    transform: 0;
    z-index: 900;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
}

.offcanvas-overlay.active {
    opacity: 1;
    visibility: visible;
}

.off-button {
    margin-top: 2.5rem;
    font-size: 1.5rem !important;
    font-weight: 500;
    width: 100%;
    font-size: 2rem;
    line-height: 3.2rem;
    padding: 1.4rem 2.2rem;
}

/* ---offcanvas-css-end---*/
/* ======== header style end ============ */

/* ======== hero style start ============ */
.section.hero {
    padding-top: 0rem;
    padding-bottom: 14rem;
    margin-bottom: 50px;
    overflow: hidden
}

.hero-wrapper {
    padding: 0px 8.5rem;
}

.hero-content {
    max-width: 94.4rem;
    width: 100%;
}

.hero-content p {
    color: #acacb5;
    font-size: 26px;
    font-weight: bold;
    margin-bottom: 70px
}
.hero-content h1 span{
    color: var(--secondary);
    display: block
}
.hero-btns {
    max-width: 51rem;
    gap: 2rem;
    margin-top: 4rem;
}

.hero-btns a.btn {
    padding: 1.6rem 0;
}

.hero-overlay {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: auto;
}
.bg-darks {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
    width: 100%;
    height: auto;
    opacity: 0.8;
    
    background-color: #000
}
.hero-overlay  video{
    width: 100%
}
.hero-img {
    flex: 0 0 auto;
    width: 55.3rem;
    margin-top: 100px
}

.object.object-hero-1 {
    max-width: 48.6rem;
    left: 30rem;
    top: 0;
}

.object.object-hero-2 {
    max-width: 48.6rem;
    right: 38rem;
    bottom: -29rem;
}

.hero-wrapper {
    padding: 0px 8.5rem;
    max-width: 1920px;
    margin: 0 auto;
}

/* ======== hero style end ============ */

/* ======== sections ekonomy style start ============ */
.section.economy {
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.economy-wrapper {
    max-width: 120rem;
    margin: 0 auto;
}

.economoy-content h3 {
    margin-bottom: 1.8rem;
    color: var(--secondary)
}
.economoy-content .showMore-box a.readMore{
    color: var(--secondary)
}
.economoy-content h3.non-color{
    color: #000;
    margin-top: 100px
}
.economoy-content h3.non-color span{
    color: var(--secondary)
}
.economoy-content h3 span{
    color: var(--secondary)
}
.dark-bg{
    background-color: #040f14;
    padding: 12rem 0 3rem 0;
    margin-bottom: 10rem
}
.showMore-box {
    height: 28.0rem !important;
    position: relative;
    overflow: hidden;
    display: block !important;
    transition: 0s;
}

.showMore-box.show {
    height: initial !important;
    padding-bottom: 2.3rem;
}

.showMore-box::after {
    position: absolute;
    left: 0px;
    bottom: 0px;
    width: 100%;
    height: 100%;
    content: '';
    background: linear-gradient(180deg, rgba(3, 19, 58, 0) 0%, #fff 78.44%);
}

.showMore-box.show::after {
    background: transparent;
}

.showMore-box a.readMore {
    display: block;
    text-decoration: none;
    color: #888;
    font-size: 2rem;
    line-height: 3rem;
    position: absolute;
    left: 0px;
    bottom: 0px;
    width: 100%;
    background: #fff;
    z-index: 11;
    font-weight: 500;
}

.showMore-box:not(.show) a.readMore--less {
    display: none;
}

.showMore-box.show a.readMore:not(.readMore--less) {
    display: none;
}

.economoy-content .showMore-box {
    max-width: 114rem;
    margin: 0 auto;
    margin-bottom: 2.8rem;
}

.economoy-content .showMore-box p {
    font-size: 1.8rem;
    line-height: 4rem;
}

.economoy-content {
    margin-bottom: 3.3rem;
}

.economoy-content p {
    font-size: 2.2rem;
    line-height: 4.8rem;
}

.economoy-content ul li {
    position: relative;
    padding-left: 1.2rem;
}
.dark-bg ul li,
.dark-bg p{
    color: #fff!important
}
.economoy-content ul {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
img.join-img{
    width: 80px;
    margin: 10px auto 0 auto
}
.economoy-content ul li::after {
    position: absolute;
    left: 0px;
    top: 1.9rem;
    width: 0.4rem;
    height: 0.4rem;
    border-radius: 50%;
    background: #fff;
    content: '';
}

.object-economy {
    position: absolute;
    right: -19rem;
    bottom: -25rem;
    max-width: 58.2rem;
}

/* ======== sections ekonomy style end ============ */

/* ======== Volume-sections style start ============ */

.volume-flags {
    display: flex;
    justify-content: center;
    gap: 3.2rem;
}

.volume-flags a img {
    width: 50px;
    height: 33px;
    object-fit: cover;
    object-position: center;
    filter: grayscale(0%);
}
.volume-flags img {
    width: 50px;
    height: 33px;
    object-fit: cover;
    object-position: center;
    margin-top: 10px;
    filter: grayscale(100%);
}

.volume-flags {
    margin-bottom: 5.8rem;
}

.volume-contentItem h4 {
    font-size: 3.2rem !important;
    line-height: 11.9rem;
    margin-bottom: 0px;
    color: #000!important
}
.volume-contentItem h4 span{
    color: var(--secondary)
}
.volume-contentItem p {
    line-height: 5.7rem;
}

.volume-wrapper {
    max-width: 88.8rem;
    margin: 0 auto;
}

.section.volume {
    padding: 7rem 0 15rem;
    overflow: hidden;
}

/* ======== Volume-sections style end ============ */

/* ======== Protocol-sections style start ============ */

.protocol-wrapper {
    padding: 0 15px;
    max-width: 146.5rem;
    margin: 0 auto;
}

.protocol-contents {
    flex-grow: 1;
    max-width: 93.4rem;
    position: relative;
    padding-left: 3.5rem;
}

.protocol-presale {
    padding: 0 0 0 6.5%;
    flex: 0 0 auto;
    width: 47.2rem;
}

.protocol-presale-box {
    padding: 6rem 5.2rem;
    border: 0.5rem solid #444;
    background: #f5f5f5;
    border-radius: 15px
}

.protocol-presale__head {
    padding-bottom: 3rem;
    border-bottom: 0.1rem solid #414171;
}

.protocol-presale__head h4 {
    font-size: 1.6rem;
    margin: 0 0 3rem;
    text-align: center;
    font-weight: 500;
}

.presale-timer {
    display: flex;
    justify-content: space-between;
}

.presale-timer .time-count {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.presale-timer .time-count .time {
    font-size: 1.6rem;
    width: 5rem;
    height: 5.1rem;
    margin-bottom: 1.1rem;
    border-radius: 1.1rem;
    font-weight: 600;
    background: var(--primary);
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #444
}

.presale-timer .time-count .title {
    font-size: 1.2rem;
    line-height: 1;
    color: #97979A;
    text-align: center;
}

.protocol-presale__body {
    padding-top: 3rem;
    display: flex;
    flex-direction: column;
}

.protocol-presale__body h4 {
    font-size: 1.6rem;
    margin: 0 0 2.5rem;
    text-align: center;
    font-weight: 500;
}

.presale-chart {}

.presale-chart img {
    width: 100%;
}

.protocol-presale__body .bottom-button {
    margin: 5.5rem auto 0;
}

.nw-button {
    min-width: 18.4rem;
    padding: 1.5rem;
    font-size: 1.4rem;
    line-height: 1.5;
    color: #444;
    background: var(--primary);
    font-weight: 500;
    border-radius: 5.5rem;
    transition: 0.3s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    text-decoration: none;
}

.nw-button:hover {
    background: var(--secondary);
    color: #444;
}


.protocol-count {
    position: absolute;
    left: 0px;
    top: 1.3rem;
    display: flex;
    align-items: flex-end;
    gap: 0.5rem;
    line-height: 1;
    font-size: 2rem;
    font-weight: 200;
    color: #363636
}

.protocol-content-header img {
    flex: 0 0 auto;
    width: 26rem;
}

.protocol-content-header h2 {
    flex-grow: 1;
    font-weight: 800;
}
.protocol-content-header h2 span,
.bank-contnet .product-title h2 span{
    font-size: 30px;
    display: block
}
.protocol-content-header {
    gap: 1.3rem;
}

.protocol-content-header {
    margin-bottom: 1.2rem;
}

.protocol-contents p {
    font-size: 2rem;
    line-height: 3.8rem;
}

.protocol-btns {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 4rem;
    gap: 2rem;
}

.protocol-btns a.btn {
    font-size: 2rem;
    font-weight: 500;
    padding: 2.5rem 0rem;
    width: calc(50% - 1rem);
}

.object-protocol {
    left: 0;
    top: 40%;
}

/* ======== Protocol-sections style end ============ */

/* ======== Much-earn-sections style start ============ */
.section.muchEarn {
    padding: 11rem 0 15rem;
}

.muchEarn-wrapper {
    max-width: 81.4rem;
    margin: 0 auto;
    text-align: center;
}

.muchEarn-wrapper h2 {
    margin-bottom: 1.5rem;
}

.muchEarn-content h4 {
    font-size: 2.5rem;
    line-height: 5.7rem;
    color: #222 !important;
}

.muchEarn-mony {
    width: 100%;
    border: 3.01217px solid #a4a5ab;
    border-radius: 1.8rem;
    height: 7.9rem;
    text-align: center;
    font-size: 3rem;
    font-weight: 600;
    color: #333;
    background: transparent;
    margin-bottom: 2rem;
}

.muchEarn-content button {
    font-weight: 600;
    font-size: 2.2rem;
    color: #222;
}

.muchEarn-content {
    margin-bottom: 2rem;
}

.muchEarn-wrapper button.btn {
    max-width: 65.6rem;
    width: 100%;
    font-size: 2rem;
    font-weight: 500;
    line-height: 2.8rem;
    padding: 2.4rem;
    color: #122863;
}

/* ======== Much-earn-sections style end ============ */

/* ======== Works-section style start ============ */

.works-wrapper {
    max-width: 155.7rem;
    padding: 0 15px;
    margin: 0 auto;
}

.works-title {
    max-width: 140.5rem;
    margin: 0 auto;
    text-align: center;
}

.works-title span.pre-title {
    font-size: 2.5rem;
    line-height: 5.7rem;
    display: block;
}

.works-title h2 {
    font-weight: 800;
}

.works-title p {
    font-size: 2.5rem;
    line-height: 4.6rem;
    margin-bottom: 3px;
    color: #222;
}

.works-title {
    margin-bottom: 12rem;
}

.works-items {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 4.6rem;
}

.works-item {
    flex: 0 0 auto;
    width: calc(50% - 2.3rem);
    display: flex;
    align-items: flex-start;
    gap: 4.5rem;
    margin-bottom: 4.5rem;
}

.works-item-img {
    flex: 0 0 auto;
    width: 8.4rem;
    height: 8.4rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    box-shadow: -1px -1px 0px rgba(255, 255, 255, 0.25);
    position: relative;
}

.works-item-img::after {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    content: '';
    background: linear-gradient(270deg, var(--secondary) 0%, rgba(255,231,186,1) 100%); 
    width: 9.6rem;
    height: 9.6rem;
    z-index: -1;
    border-radius: 50%;
}

.works-item-content h4 {
    font-weight: 600;
    line-height: 3.6rem;
    margin-bottom: 1.5rem;
}

.works-item-content .showMore-box {
    height: 11rem !important;
}

.works-item-content .showMore-box.show {
    height: initial !important;
    padding-bottom: 3.3rem;
}

.works-item-content .showMore-box p {
    margin-bottom: 0px;
}

.section.works {
    padding: 0 0 10rem;
}

.object-work {
    bottom: 60%;
    right: 0;
}

.object-work-2 {
    left: 0;
    top: 5rem;
}

/* ======== Works-section style end ============ */

/* ======== Market-place-sections style start ============ */

.marketplace-wrapper {
    max-width: 157.9rem;
    padding: 0 15px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.product-count {
    font-size: 2rem;
    font-weight: 200;
    line-height: 3.9rem;
    display: flex;
    gap: 0.5rem;
}
.product-count.m-t{
    margin-top: 20px
}
.product-count.m-t2{
    margin-top: 14px
}
.m-b{
    margin-bottom: 20px
}
.product-title {
    gap: 2rem;
}

.product-title h2 {
    margin-bottom: 0px;
}

.marketplace-content .product-title {
    margin-bottom: 3rem;
}

.marketplace-content {
    max-width: 80.9rem;
    width: 100%;
    flex-grow: 1;
}

.marketplace-content .showMore-box {
    height: 16rem;
    margin-bottom: 3rem;
}

.marketplace-content a.btn {
    font-size: 2rem;
    line-height: 4.6rem;
    font-weight: 500;
    padding: 1.5rem 6.2rem;
    color: #444;
}

.section.marketplace {
    padding: 0rem 0 15rem;
}

.marketplace-img {
    flex: 0 0 auto;
    width: 72.7rem;
}

.object-market {
    position: absolute;
    left: -5rem;
    bottom: 40%;
}

.object-market-2 {
    right: -23rem;
    bottom: -12rem;
}

/* ======== Market-place-sections style end ============ */

/* ======== Bank-sections style start ============ */

.bank-contnet .product-title h2 {
    line-height: 4.8rem;
}

.bank-wrapper {
    padding: 0 15px;
    max-width: 147.3rem;
    margin: 0 auto;
}

.bank-inner {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 5rem;
    margin-bottom: 4rem;
}

.bank-img {
    flex: 0 0 auto;
    width: 58.6rem;
}

.bank-contnet {
    max-width: 78.6rem;
    padding-bottom: 4rem;
}

.bank-contnet .product-count {
    flex: 0 0 auto;
    width: 2rem;
    font-size: 2rem;
    line-height: 3.9rem;
    margin-top: 7px
}
.product-count img{
    height: 29px
}
.bank-contnet .product-title {
    margin-bottom: 1.5rem;
}

.bank-contnet {
    max-width: 78.6rem;
}

.bank-contnet .showMore-box {
    height: 20.2rem;
    margin-bottom: 5rem;
}

.bank-contnet .showMore-box p {
    line-height: 3.1rem;
}

.btns-group {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.btns-group a.btn {
    width: calc(50% - 1rem);
}

.bank-infos {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 2.4rem;
}

.bank-info-item {
    flex: 0 0 auto;
    width: calc(33.33% - 1.2rem);
    background: #f5f5f5;
    border-radius: 0.8rem;
    padding: 0px 1.7rem;
}

.bankInfo-item-header {
    text-align: center;
    padding: 2rem 0;
    border-bottom: 0.5px dashed rgba(0, 0, 0, 0.25);
}

.bankInfo-item-header h5 {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: normal;
    line-height: 2.7rem;
    margin-bottom: 0rem;
    gap: 0.7rem;
}

.bankInfo-item-header h5 strong {
    font-size: 2rem;
    font-weight: 600;
}

.bankInfo-item-status {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2rem 0;
}

.bankInfo-item-status p {
    font-size: 2rem;
    line-height: 3rem;
    margin-bottom: 0;
}

.bankInfo-item-status h5 {
    font-size: 2.5rem;
    line-height: 2.8rem;
    font-weight: 600;
    margin-bottom: 0px;
}

/* ======== Bank-sections style end ============ */

/* ======== sections style start ============ */

.productBlk-wrapper {
    max-width: 159.8rem;
    padding: 0 15px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.productBlk-content {
    flex: 0 0 auto;
    width: 77.8rem;
}

.productBlk-img {
    flex: 0 0 auto;
    max-width: 79rem;
    width: 100%;
}

.productBlk-content .product-title {
    margin-bottom: 2.5rem;
}

.productBlk-content p {
    line-height: 4.6rem;
    font-size: 24px
}

.productBlk-content .btns-group {
    margin-top: 8.5rem;
}

.section.productBlk {
    padding: 12.5rem 0 18rem;
}

.matrix-wrapper {
    max-width: 117rem;
    margin: 0 auto;
}

.matrix-wrapper .product-title h2 {
    line-height: 7.1rem;
}
.matrix-wrapper .product-title h2 span{
    color: var(--secondary)
}
.matrix-wrapper .product-title {
    margin-bottom: 4rem;
}

.matrix-wrapper .product-title p {
    margin-bottom: 0px;
    color: var(--secondary)
}

.matrix-img {
    margin-bottom: 4rem;
}

.matrix-wrapper .economoy-content {
    margin-bottom: 9rem;
}
.economoy-content.gry h3 span{
    color: #fff!important
}
.economoy-content p.noter-text {
    font-style: italic;
    font-weight: 300;
}

.productBlk-mani-title {
    text-align: center;
    font-size: 2.2rem;
    line-height: 3.5rem;
    font-weight: 300;
    color: #ffffffcc;
    margin-bottom: 2rem;
}

.obj-does-1 {
    right: -19rem;
    top: 38rem;
}

.obj-does-2 {
    left: 0;
    bottom: -3rem;
}

.obj-does-3 {
    right: 0px;
    bottom: -8rem;
    max-width: 58.3rem;
}

/* ======== sections style end ============ */

/* ======== features-sections style start ============ */

.section.features {
    padding: 8rem 0 8rem;
}

.features-wrapper {
    max-width: 128.2rem;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 7rem;
    padding: 0 15px;
}

.features-item {
    flex: 0 0 auto;
    width: calc(33.33% - 5rem);
}

.feature-item-icon {
    margin-bottom: 2rem;
}

.feature-item-contnet h3 {
    font-size: 2.2rem;
    line-height: 4rem;
    margin-bottom: 1rem;
}

.feature-item-contnet p {
    font-size: 1.6rem;
    line-height: 3rem;
}

.object-feature-1 {
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

/* ======== features-sections style end ============ */

/* ======== Pertners-sections style start ============ */

.partners-wrapper {
    max-width: 137.6rem;
    margin: 0 auto;
}

.pertners-title {
    text-align: center;
    max-width: 101.7rem;
    margin: 0 auto;
}

.pertners-title p {
    font-size: 2rem;
    line-height: 4.8rem;
    margin-bottom: 0px;
}

.slider-btn {
    background: transparent;
    border: none;
    padding: 0;
    width: 4.2rem;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

.slider-btn img {
    max-width: 100%;
}

.pertners-content {
    position: relative;
}

.slider-btn.slider-btn-right {
    left: auto;
    right: 0;
}

.section.partners {
    padding-bottom: 12rem;
    overflow: hidden;
}

.product-slider-img img {
    max-width: 100%;
}

.product-slider-img {
    text-align: center;
}

.object-partners-1 {
    right: 0;
    top: -20rem;
    max-width: 51rem;
}

.object-partners-2 {
    left: 0;
    top: 15rem;
    max-width: 63.4rem;
}

/* ======== Pertners-sections style end ============ */

/* ======== lottery style start ============ */

.lottery-wrapper {
    max-width: 167.1rem;
    margin: 0 auto;
    background: #f5f5f5;
    border-radius: 3rem;
    padding: 6rem 6rem;
}

.lottery-header .product-title {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 3rem;
}

.lottery-header .product-title p {
    font-size: 3rem;
    line-height: 5.7rem;
    margin-bottom: 0px;
}

.lottery-header p {
    font-size: 2.5rem;
    line-height: 6rem;
    margin-bottom: 0;
}

.lottery-header {
    margin-bottom: 5rem;
}

.lottery-tabs button.nav-link {
    border: none;
    background: transparent;
    font-size: 2rem;
    font-weight: 500;
    line-height: 4rem;
    color: #888;
    padding: 1.1rem 5rem;
    position: relative;
}

.lottery-tabs button.nav-link::after {
    position: absolute;
    left: 0px;
    bottom: 0px;
    width: 100%;
    height: 0.3rem;
    background: var(--primary);
    content: '';
    border-top-right-radius: 0.3rem;
    border-top-left-radius: 0.3rem;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
}

.lottery-tabs button.nav-link.active::after {
    opacity: 1;
    visibility: visible;
}

.lottery-tabs button.nav-link.active {
    font-weight: 600;
    color: #222;
}

.lottery-tabs {
    margin-bottom: 4.5rem;
}

.lottery-content ul li {
    font-size: 2rem;
    line-height: 4.2rem;
    color: #333;
}

.lottery-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 4rem;
}

.lottery-content {
    flex: 0 0 auto;
    width: 91.9rem;
}

.lottery-img {
    flex: 0 0 auto;
    width: 57rem;
}

.lottery-img img {
    max-width: 100%;
}

.lottery-table .table {
    margin-bottom: 0px;
}

.lottery-table {
    border: 1px solid var(--secondary);
    border-radius: 2rem;
}

.lottery-table .table tr td {
    color: #333;
    text-align: center;
    font-size: 1.8rem;
    line-height: 2.8rem;
    vertical-align: middle;
    border-right: 1px solid var(--secondary);
}

.lottery-table .table tr td:first-child {
    font-size: 2.5rem;
    line-height: 5.7rem;
}

.lottery-table .table tr:last-child td {
    border-bottom: none;
}

.lottery-table .table tr td:last-child {
    border-right: none;
}

/* lottery-mobile-table-css */
.lottery-infos {}

.lottery-infos .table {
    background-color: #f5f5f5
}

.lottery-infos .table thead tr th:first-child {
    border-right: 0.05rem solid var(--primary);
}

.lottery-infos .table thead tr th:last-child {
    border-left: 0.05rem solid var(--primary);
}

.lottery-infos .table thead tr th {
    color: #333;
    font-size: 1.8rem;
    line-height: 2.7rem;
    text-align: center;
    border-bottom: 0.1rem solid var(--primary);
    padding: 1.3rem 0;
}

.lottery-infos .table thead tr th small {
    font-size: 1rem;
    line-height: 1.5rem;
    color: #333;
    display: block;
}

.lottery-infos .table tbody tr td {
    color: #888;
    text-align: center;
    font-size: 1.6rem;
    line-height: 2.8rem;
    padding: 0.6rem 0;
}

.lottery-infos .table tbody tr td:first-child {
    border-right: 0.05rem solid var(--primary);
}

.lottery-infos .table tbody tr td:last-child {
    border-left: 0.05rem solid var(--primary);
}

/* lottery-mobile-table-css-end */

/* ======== lottery style end ============ */

/* ======== Need-sections style start ============ */

.section.need {
    padding: 12rem 0 12rem;
}

.need-title {
    max-width: 171.3rem;
    margin: 0 auto;
    text-align: center;
    margin-bottom: 4rem;
}

.need-title h2 {
    line-height: 7.5rem;
    margin-bottom: 0;
}
.need-title h2 span{
    border: solid 2px var(--secondary);
    border-radius: 50%;
    padding: 15px
}
.need-wrapper {
    max-width: 155.6rem;
    margin: 0 auto;
    padding: 0 15px;
}

.need-img {
    flex: 0 0 auto;
    width: 70rem;
}

.need-img img {
    max-width: 100%;
}

.need-content {
    flex: 0 0 auto;
    width: 75.6rem;
}

.need-content p {
    font-size: 3rem;
    line-height: 5.1rem;
    font-weight: 500;
    margin-bottom: 3.3rem;
}

.need-content a.btn {
    font-size: 2rem;
    font-weight: 500;
    line-height: 2.8rem;
    padding: 2.5rem 5rem;
    text-transform: uppercase;
}

.need-text {
    margin: 0 auto;
    max-width: 116.4rem;
    text-align: center;
    margin-top: 4rem;
}

.need-text p {
    font-size: 2rem;
    line-height: 4rem;
    font-weight: 500;
    color: #222;
}

.object-need {
    left: 0;
    top: 0;
    max-width: 58.2rem;
}

/* ======== Need-sections style end ============ */

/* ======== Brand sections style start ============ */

.brands-blk {
    text-align: center;
    margin-bottom: 5rem;
}

.brands-wrapper {
    max-width: 143.6rem;
    margin: 0 auto;
}

.brands-blk h3 {
    margin-bottom: 1rem;
    line-height: 5.7rem;
    color: var(--secondary)
}
.brands-blk img{
    filter: grayscale(100%);
}
.brand-items {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4.2rem;
}

.brand-items a img {
    max-width: 100%;
}

.brand-items a {
    text-decoration: none;
    display: block;
}

.object-brand {
    left: 0;
    top: 0;
    max-width: 23.5rem;
}

/* ======== Brand sections style end ============ */

/* ======== Network-sections style start ============ */

.network-wrapper {
    max-width: 114.2rem;
    margin: 0 auto;
    width: 100%;
}

.network-content-header h2 {
    margin-bottom: 1.5rem;
}

.network-content-header {
    text-align: center;
    margin-bottom: 3.6rem;
}

.network-content-header p {
    font-size: 2.2rem;
    line-height: 4rem;
    margin-bottom: 0;
}

.network-img {
    max-width: 102rem;
    margin: 0 auto;
    text-align: center;
    margin-bottom: 2.4rem;
}

.network-img img {
    max-width: 100%;
}

.network-content {
    text-align: center;
}

/* ======== Network-sections style end ============ */

/* ======== Media - sections style start ============ */

.section.media {
    padding: 12rem 0 2rem;
}

.media-title {
    margin-bottom: 4.7rem;
}

.media-wrapper {
    max-width: 120.7rem;
    margin: 0 auto;
}

.media-items {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4rem;
}

.media-item a img {
    max-width: 100%;
    filter: grayscale(100%);
    width: 70%
}

.media-items-mobile {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
    padding: 0 1.4rem;
    max-width: 37rem;
    margin: 0 auto;
}

.media-items-mobile a img {
    max-width: 100%;
}

/* ======== Media - sections style end ============ */

/* ======== supplay section style start ============ */

.supplay-wrapper {
    max-width: 156rem;
    margin: 0 auto;
}

.section.supplay {
    padding: 18rem 15px 12rem;
}

.suuplay-top {
    margin-bottom: 6.2rem;
}

.supplay-box {
    text-align: center;
    max-width: 47rem;
    margin: 0 auto;
    border: 0.5rem solid ;
    border-radius: 3rem;
    padding: 3.2rem 1rem;
}

.supplay-box.box-aquamarian {
    border-color: #000;
}

.supplay-box.box-yellow {
    border-color: #000;
}

.supplay-box h2 {
    margin-bottom: 3rem;
}

.supplay-box p {
    margin-bottom: 0;
}

.distribute {
    display: flex;
    align-items: center;
}

.distribute > div {
    width: 48.5rem;
}

.distribute-item {
    height: 70.7rem;
    background-size: 100% 100%;
    padding: 3rem 3rem;
}

.distribute-item ul {
    border: 0.4rem solid #000;
    border-radius: 2.5rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: stretch;
}

.distribute-item ul li span:first-child {
    font-size: 2rem;
    line-height: 4.6rem;
    font-weight: 400;
    color: #000
}

.distribute-item ul li span:last-child {
    font-size: 2.2rem;
    font-weight: bold;
    color: #999;
}

.distribute-item ul li span.wordspace {
    word-spacing: 0.8rem;
}

.distribute-item ul li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 1rem;
}

.distribute .supplay-box p {
    font-size: 3.1rem;
    font-weight: 300;
}

.public-sale-info h5 {
    font-size: 3.2rem;
    line-height: 11.9rem;
    font-weight: 300;
}

.public-sale-box {
    background-repeat: no-repeat;
    background-size: 100% 100%;
    height: 27rem;
    padding: 4rem 4rem;
    display: flex;
}

.public-sale-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    border: 0.4rem solid #000;
    border-radius: 4.3rem;
}

.public-sale-item {
    flex: 0 0 auto;
    width: 20%;
    text-align: center;
}

.public-sale-item:first-child p {
    color: #999;
}

.public-sale-item:nth-child(2) p {
    color: #999;
}

.public-sale-item:nth-child(3) p {
    color: #999;
}

.public-sale-item:nth-child(4) p {
    color: #999;
}

.public-sale-item:nth-child(5) p {
    color: #999;
}

.public-sale-item h6 {
    font-size: 5.7rem;
    line-height: 6.1rem;
    font-weight: 400;
    margin-bottom: 0;
}

.public-sale-item p {
    margin-bottom: 1.2rem;
}

.public-sale-info {
    margin-bottom: 6rem;
}

.token-area {
    max-width: 91.8rem;
    margin: 0 auto;
}

.token-area h3 {
    text-align: center;
    font-size: 3.2rem;
    line-height: 1;
    margin-bottom: 3rem;
}

.token-item {
    background-color: var(--primary);
    color: #000;
    padding: 1rem 1.5rem;
    font-size: 2rem;
    line-height: 4.6rem;
    border-radius: 2rem;
    flex: 0 0 auto;
    width: calc(33.33% - 2rem);
    margin-bottom: 1rem;
}

.token-items {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.supplay-founder {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 139.9rem;
    margin: 0 auto;
    margin-bottom: 3rem;
}

.supplay-founder {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 139.9rem;
    margin: 0 auto;
}

.founder-item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 20rem;
    height: 20rem;
    border: 0.25rem solid #000;
    border-radius: 10px
}

.founder-item h6 {
    font-size: 5.7rem;
    font-weight: normal;
    line-height: 6.1rem;
    color: var(--secondary)
}

.founder-item p {
    margin-bottom: 1.2rem;
    font-size: 1.8rem;
    line-height: 2.8rem;
    color: #444;
}

.founder-item:first-child p {
    color: #444;
}

.founder-item:nth-child(2) {
    border-color: #000;
}

.founder-item:nth-child(2) p {
    color: #444;
}

.founder-item:nth-child(3) {
    border-color: #000;
}

.founder-item:nth-child(3) p {
    color: #444;
}

.founder-item:nth-child(4) {
    border-color: #000;
}

.founder-item:nth-child(4) p {
    color: #444;
}

.supplay-tree {
    max-width: 119.7rem;
    margin: 0 auto;
    margin-bottom: 4rem;
    margin-top: -20rem;
}

.supplay-tree img {
    max-width: 100%;
}

.supply-object-arrow img {
    max-width: 33rem;
}

.supply-object-arrow {
    height: 30rem;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-left: 20rem;
}

.distribute .supplay-box {
    margin-top: 14rem;
}

.distribute-inner h4 {
    font-size: 2.5rem;
    font-weight: 600;
    line-height: 5.7rem;
    margin-bottom: 4.5rem;
}

.distribute-inner {}

.distribute-arrow {
    position: absolute;
}

.distribute-arrow-green {
    left: 50%;
    transform: translateX(-45%);
    top: -2rem;
    max-height: 35.8rem;
}

.distribute-arrow-yellow {
    top: -1rem;
    left: 23rem;
    max-width: 35rem;
}

.object-supplay-1 {
    left: 0;
    top: 0;
    max-width: 50rem;
}

.object-supplay-2 {
    left: 50%;
    top: 30rem;
    max-width: 55rem;
    transform: translateX(-50%);
}

.object.object-supplay-3 {
    left: 0;
    top: 29%;
    max-width: 58.2rem;
}

.object.object-supplay-4 {
    right: 0px;
    top: 30%;
    max-width: 60rem;
}

.object.object-supplay-5 {
    bottom: 0;
    left: 0;
    max-width: 60rem;
}

/* ======== supplay section style end ============ */

/* ======== RoadMap sections style start ============ */

.roadmap-wrapper {
    max-width: 136.5rem;
    margin: 0 auto;
    padding: 0 15px;
}

.roadmap-title {
    text-align: center;
    margin-bottom: 2rem;
}

.roadmap-title h2 {
    margin-bottom: 0px;
    line-height: 1;
}

.section.roadmap {
    padding-top: 2.6rem;
    padding-bottom: 12rem;
}

.roadmap-item {
    display: flex;
    align-items: center;
    position: relative;
    margin-bottom: 100px
}

.roadmap-item > div {
    width: 50%;
}



.roadmap-item::before {
    position: absolute;
    left: calc(50% - 13.2rem);
    transform: translateX(-50%);
    bottom: 0;
    width: 29rem;
    height: 30rem;
    content: '';
    background-repeat: no-repeat;
    background-position: bottom;
    background-size: 100%;
}

.roadmap-step {
    position: relative;
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

.roadmap-step h3 {
    font-weight: 500;
}

.roadmap-step p {
    font-size: 3rem;
    line-height: 1;
    margin-bottom: 1.2rem;
}

.roadmap-step::after {
    position: absolute;
    left: -0.8rem;
    bottom: 40%;
    height: 21.4rem;
    width: 14.1rem;
    content: '';
    background-repeat: no-repeat;
    background-position: bottom;
    background-size: 100% 100%;
}

.roadmap-contnet {
    padding: 5rem 5.8rem 4rem 5rem;
}

.roadmap-contnet ul li {
    font-size: 2rem;
    line-height: 3rem;
    font-weight: 400;
    padding: 1.2rem 0;
}

.roadmap-item.roadmap-item-yellow {
    flex-direction: row-reverse;
}

.roadmap-item.roadmap-item-yellow .roadmap-contnet {
    padding: 5rem 0rem 4rem 5.8rem;
    background-color: #f5f5f5;
    border-radius: 55px;
    margin-top: -40px
}

.roadmap-item.roadmap-item-yellow .roadmap-step {
    padding-left: 0;
    padding-right: 14.4rem;
}
.roadmap-step h3{
    color: #f3bc07
}
.roadmap-step p,
.roadmap-step h3 span{
    color: #000
}
.section.media h2{
    color: var(--secondary)
}
.roadmap-item.roadmap-item-yellow .roadmap-step::after {
    left: auto;
    right: -2rem;
}

.roadmap-item-yellow.roadmap-item::before {
    left: auto;
    right: calc(27% - 12.6rem);
    width: 28.9rem;
}

.roadmap-step p span {
    color: #000;
}

.object.object-roadmap-1 {
    left: 0px;
    top: 0px;
    max-width: 55rem;
}

.object.object-roadmap-2 {
    right: 14rem;
    top: 35rem;
    max-width: 75rem;
}

.object.object-roadmap-3 {
    max-width: 75rem;
    right: 10rem;
    top: 35%;
}

.object.object-roadmap-4 {
    top: 69%;
    right: 17rem;
    max-width: 75rem;
}

.object.object-roadmap-5 {
    bottom: 11%;
    right: 48%;
    max-width: 55rem;
}

.object.object-roadmap-6 {
    bottom: -2%;
    left: 0;
    max-width: 75rem;
}

.object.object-roadmap-7 {
    bottom: 0;
    right: 0;
    max-width: 75rem;
}

/* ======== RoadMap sections style end ============ */

/* ======== footer style start ============ */

.footer {
    overflow: hidden;
}

.footer-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 170rem;
    margin: 0 auto;
    padding: 5rem 15px 12rem;
}

.footer-content {
    display: flex;
    align-items: center;
    gap: 7rem;
}

.footer-logo img {
    height: 40px
}

.footer-links {
    display: flex;
    align-items: center;
    gap: 7rem;
}

.footer-links a.link {
    font-size: 2.2rem;
    text-decoration: none;
    line-height: 3rem;
    color: #999;
    margin-top: 20px
}
.footer-links.link {
    font-size: 2.2rem;
    text-decoration: none;
    line-height: 3rem;
    color: #999;
    margin-top: 20px
}
.footer-social {
    display: flex;
    align-items: center;
    gap: 5.4rem;
}

.footer-social img {
    width: 3.6rem;
}

.footer-wrapper::after {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    content: '';
    width: 139.6rem;
    height: 0.1rem;
    content: '';
    background: #f5f5f5;
    top: 0;
}

/* ======== footer style end ============ */

.object.object-net-1 {
    max-width: 60rem;
    left: 0;
    top: -20rem;
}

.object.object-net-2 {
    right: 0;
    max-width: 62rem;
    top: -15rem;
}

.object.object-net-3 {
    bottom: -16rem;
    max-width: 62rem;
    left: 43rem;
}

.network-content a.btn {
    padding: 1.6rem 7.2rem;
}

.footer-links a.btn {
    padding: 1.6rem 7.2rem;
    line-height: 4.6rem;
}

.zimax-calculator h2 {
    color: var(--secondary)!important;
    text-align: center;
    margin: 0;
    font-size: 50px;
}
.zimax-calculator.blk h2 span{
    color: #000
}
.zimax-calculator h3 {
    font-size: 50px;
    color: #000;
    text-align: center;
    margin: 20px;
}

.zimax-calculator p {
    text-align: center;
    color: #999;
    max-width: 800px;
    margin: auto;
}
.zimax-cal-item-wraper{
    margin: 50px 0;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap
}
.zimax-cal-item {
    margin: 20px auto;
    background: #f5f5f5;
    padding: 40px;
    border-radius: 30px;
    color: #fff;
    max-width: 560px;
}

.zimax-cal-item-head {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: flex-start;
    -webkit-box-align: flex-start;
    -ms-flex-align: flex-start;
    align-items: flex-start;
    gap: 50px;
}

.zimax-cal-item-head-left {
    border: 2px solid #2f2f2f;
    padding: 5px 10px 0 5px;
    margin: 0;
    border-radius: 20px;
}

.zimax-cal-item-head-left h4 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 26px;
    color: #999
}

.zimax-cal-item-head-left h4 span {
    background: var(--primary);
    padding: 12px 15px;
    border-radius: 15px;
    margin-right: 20px;
    color: #444
}

#zimax_x4 .zimax-cal-item-head-left h4 span {
    background: var(--primary);
}

#zimax_x5 .zimax-cal-item-head-left h4 span {
    background: var(--primary);
}

#zimax_x6 .zimax-cal-item-head-left h4 span {
    background: var(--primary);
}

.zimax-cal-item-head-right p {
    text-align: left;
    font-size: 16px;
    line-height: 24px
}

.zimax-cal-item-head-right {
    max-width: 420px;
}

.zimax-cal-item-body {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    gap: 90px;
    -webkit-align-items: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-top: 50px;
}

.zimax-cal-item-body-left ul {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 10px;
}

.zimax-cal-item-body-left ul li {
    background: #403f41;
    border-radius: 10px;
    padding: 5px 10px;
    text-align: center;
    font-weight: 700;
    font-size: 18px;
    cursor: pointer;
}

.zimax-cal-item-body-left ul li.active {
    background: var(--primary);
    color: #444
}

#zimax_x4 .zimax-cal-item-body-left ul li.active {
    background: var(--primary);
}

#zimax_x5 .zimax-cal-item-body-left ul li.active {
    background: var(--primary);
}

#zimax_x6 .zimax-cal-item-body-left ul li.active {
    background: var(--primary);
}

.zimax-cal-item-body-right {
    display: grid;
    text-align: left;
    gap: 20px;
}

.zimax-cal-item-body-right span {
    color: #888;
    margin: 0;
    font-size: 16px;
    font-weight: 300;
}

.zimax-cal-item-body-right span strong {
    display: block;
    color: #222;
    font-size: 30px;
    font-weight: 700;
}

.zimax-cal-item-body-right span:first-child strong {
    font-size: 20px;
}

.zimax-result-item {
    background: var(--secondary);
    max-width: 900px;
    margin: auto;
    padding: 60px 20px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 160px;
    border-radius: 30px;
}

.zimax-result-item p strong {
    display: block;
    font-size: 40px;
    color: #444;
    margin-top: 20px;
}

.zimax-result-item p {
    color: #222;
    font-size: 20px;
    margin: unset;
}

@media screen and (max-width: 991px) {
    .zimax-cal-item-head {
        display: grid;
    }

    .zimax-cal-item-body {
        display: grid;
        gap: 50px;
    }

    .zimax-cal-item-body-right {
        gap: 20px;
    }

    .zimax-cal-item-body-right span strong {
        margin-top: 0;
    }

    .zimax-result-item {
        display: grid;
        gap: 60px;
    }
}

@media screen and (max-width: 400px) {
    .zimax-cal-item-body-left ul {
        grid-template-columns: 1fr 1fr 1fr;
    }
}

@media screen and (max-width: 300px) {
    .zimax-cal-item-body-left ul {
        grid-template-columns: 1fr 1fr;
    }
}

@media screen and (max-width: 200px) {
    .zimax-cal-item-body-left ul {
        grid-template-columns: 1fr;
    }
}


/* Timeline Container */
.timeline {
  background: var(--primary-color);
  margin: 20px auto;
  padding: 20px;
}

/* cards container */
.cards {
  position: relative;
}

/* setting padding based on even or odd */
.cards:nth-child(odd) {
  padding: 30px 0 30px 30px;
}
.cards:nth-child(even) {
  padding: 30px 30px 30px 0;
}
/* Global ::before */
.cards::before {
  content: "";
  position: absolute;
  width: 50%;
  border: solid var(--secondary);
}

/* Setting the border of top, bottom, left */
.cards:nth-child(odd)::before {
  left: 0px;
  top: -4.5px;
  bottom: -4.5px;
  border-width: 5px 0 5px 5px;
  border-radius: 50px 0 0 50px;
}

/* Setting the top and bottom to "-5px" because earlier it was out of a pixel in mobile devices */
@media only screen and (max-width: 400px) {
  .cards:nth-child(odd)::before {
    top: -5px;
    bottom: -5px;
  }
}

/* Setting the border of top, bottom, right */
.cards:nth-child(even)::before {
  right: 0;
  top: 0;
  bottom: 0;
  border-width: 5px 5px 5px 0;
  border-radius: 0 50px 50px 0;
}

/* Removing the border if it is the first cards */
.cards:first-child::before {
  border-top: 0;
  border-top-left-radius: 0;
}

/* Removing the border if it is the last cards  and it's odd */
.cards:last-child:nth-child(odd)::before {
  border-bottom: 0;
  border-bottom-left-radius: 0;
}

/* Removing the border if it is the last cards  and it's even */
.cards:last-child:nth-child(even)::before {
  border-bottom: 0;
  border-bottom-right-radius: 0;
}

/* Information about the timeline */
.info {
  display: flex;
  flex-direction: column;
  background: #f5f5f5;
  color: #333;
  border-radius:30px;
  padding: 30px;
}

/* titled of the cards */
.titled {
  color: #000;
  position: relative;
}

/* Timeline dot  */
.titled::before {
  content: "";
  position: absolute;
  width: 30px;
  height: 30px;
  background: white;
  border-radius: 999px;
  border: 4px solid var(--secondary);
}


/* setting dot to the left if the cards is odd */
.cards:nth-child(odd) > .info > .titled::before {
  left: -72px;
}

/* setting dot to the right if the cards is odd */
.cards:nth-child(even) > .info > .titled::before {
  right: -72px;
}

.header-video{
    width: 640px;
    height: auto;
    overflow: hidden;
    border-top-left-radius: 425px;
    border-top-right-radius: 425px;
    background-color: #fff;
}