:root {
	--color: #bbbbbe;
    --gold: #f9b707;
    --orange: #f06500;
    --bg-color1: #1c1b24;
    --bg-color2: #1a1921;
    --bg-color3: rgb(11 10 14 / 20%);
	--txtlink: #fff;
	--ripple: #fff; 
	--top-shadow: #111;
    --border-color: rgb(149 149 149 / 28%);  
    --t-transition: 1s;
}
.light { 
	--color: #000; 
    --bg-color1: #fff; 
    --bg-color2: #f1f1f1;
    --bg-color3: rgb(184 184 184 / 20%);
	--txtlink: #363636;
	--ripple: #d3b749;
	--top-shadow: #d3b749;
}

* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box
}

::-webkit-scrollbar {
    width: 5px;
    height: 5px;
}

::-webkit-scrollbar-track {
    border: 1px solid var(--border-color)
}

::-webkit-scrollbar-thumb {
    border-radius: 50px;
    background: #3f3f3f;
    padding: 20px
}

::-webkit-scrollbar-thumb:hover {
    background: #929292
}

html {
    scroll-behavior: smooth
}

body {
    position: relative;
    width: 100%;
    height: 100%;
    top: 0 !important;
    margin: 0;
    color: var(--color);
    font-size: 18px;
    line-height: 32px;
    background-color: var(--bg-color1);
    font-family: Khula, sans-serif;
    overflow-x: hidden;
    overflow-y: auto; 
}

textarea,
input {
    font-size: 15px;
    color: #e4e4e4;
    background: rgb(0 0 0 / 0%);
    width: 100%;
    max-width: 100%;
    padding: 10px;
    border-radius: 10px;
    border: 1px solid rgb(255 255 255 / 23%);
    resize: none;
    transition: 0.5s
}

input:focus-visible,
input:focus,
textarea:focus-visible,
textarea:focus {
    outline: none !important;
    border: 1px solid rgb(255 255 255 / 38%)
}

font {
    pointer-events: none
}


.light code {
    background-color: #f4f4f4;
    color: #d6336c;
  }

  code {
    background-color: #3a3a40;
    color: #0ca1de;
    padding: 2px 4px;
    border-radius: 4px;
    font-family: 'Courier New', Courier, monospace !important;
    font-size: 0.95em !important;
  }

  pre {
    background-color: #2d2d2d;
    color: #f8f8f2;
    padding: 10px;
    border-radius: 8px;
    overflow-x: auto !important;
    font-family: 'Courier New', Courier, monospace !important;
    font-size: 0.9em !important;
  }
.light .invert {
	filter: invert(.8)
}
.loading {
    position: fixed;
    display: flex;
    width: 100%;
    height: 100%;
    background:  var(--bg-color1);
    z-index: 5555;
    justify-content: center;
    align-items: center;
    align-content: center;
    flex-wrap: wrap
}

.lds-ripple {
    display: flex;
    position: relative;
    width: 80px;
    height: 80px;
    align-content: center;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap
}

.lds-ripple div {
    position: absolute;
    border: 4px solid var(--ripple);
    opacity: 1;
    border-radius: 50%;
    animation: lds-ripple 1.5s cubic-bezier(0, .2, .8, 1) infinite
}

.lds-ripple div:nth-child(2) {
    animation-delay: -0.5s
}

.lds-ripple div:nth-child(2):before {
    content: '';
    position: absolute;
    display: block;
    background: url(/images/logo/freed.png);
    width: 100%;
    height: 100%;
    background-size: 100% 100%
}

@keyframes lds-ripple {
    0% {
        width: 0;
        height: 0;
        opacity: 0
    }

    4.9% {
        width: 0;
        height: 0;
        opacity: 0
    }

    5% {
        width: 0;
        height: 0;
        opacity: 1
    }

    100% {
        width: 72px;
        height: 72px;
        opacity: 0
    }
}

button,
textarea,
input,
select,
a {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    -webkit-tap-highlight-color: transparent;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}
.light button,
.light input,
.light optgroup,
.light select,
.light textarea {
    background: #fff;
    border: 1px solid var(--border-color);
}
a {
    color: var(--color);
}

img {
    width: 100%;
    vertical-align: middle;
    display: inline-block; 
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0
}

input[type=number] {
    -moz-appearance: textfield
}

.skiptranslate,
[class^="goog-"] {
    display: none !important
}

.w-nav {
    position: relative;
    background: #ddd;
    z-index: 1000
}

.navbar {
    position: absolute;
    left: 0%;
    top: 0%;
    right: 0%;
    bottom: auto;
    z-index: 90;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    padding-top: 20px;
    padding-right: 48px;
    padding-left: 48px;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    background-color: transparent
}
.navbar a, .nav-drop-toggle {
    color: var(--txtlink);
}
.w-nav:before,
.w-nav:after {
    content: " ";
    display: table;
    grid-column-start: 1;
    grid-row-start: 1;
    grid-column-end: 2;
    grid-row-end: 2
}

.brand-url.w--current {
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    height: 54px;
    margin-right: 30px;
    margin-bottom: 4px;
    padding-left: 0;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    -ms-flex: 0 auto;
    flex: 0 auto
}

.brand-url {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    height: 54px;
    margin-right: 30px;
    margin-bottom: 4px;
    padding-left: 0;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-ordinal-group: 0;
    -webkit-order: -1;
    -ms-flex-order: -1;
    order: -1
}

.bg_tint {
    position: fixed;
    display: none;
    width: 100%;
    height: 100%;
    background: rgb(0 0 0 / 51%);
    /*-webkit-backdrop-filter: blur(2px);*/
    /*backdrop-filter: blur(2px);*/
    z-index: 20
}

.open_menu .bg_tint {
    display: block
}

.w-nav-brand {
    position: relative;
    float: left;
    text-decoration: none;
    color: #333
}

.brand-url-logo-wrap {
    position: relative;
    width: auto;
    max-width: 60px;
    height: 100%;
    margin-right: 10px
}

.arr-up-trigger,
.brand-url--logo,
.cta-btn--ico,
.eco-cta--ico,
.eco-cta--ico-hover,
.hero--moon,
.hero-bg-glow,
.hero__scrollbtn--arrow,
.hero__scrollbtn--img,
.meat {
    pointer-events: none
}

.brand-url--logo,
.coin-box--coin,
.coin-box-elip-bg,
.coin-box-graph--ico,
.coin1-shad,
.cta-btn--ico,
.eco-cta--ico,
.eco-cta--ico-hover,
.hero--moon,
.hero-bg-glow,
.hero__scrollbtn--arrow,
.hero__scrollbtn--img,
.meat,
.scrol-up-cta--ico,
.ss--img-glow {
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -o-user-select: none;
    user-select: none
}

.brand-url--logo {
    height: 100%;
    transform: scale(0.7)
}

.brand-url-txt-wrap {
    position: relative;
    overflow: hidden;
    height: 30px
}

.brand-url--txt {
    color: var(--txtlink);
    font-size: 24px;
    font-weight: 800;
    line-height: 1.5;
}

.nav-menu { 
    display: flex; 
    -webkit-order: 1;
    -ms-flex-order: 1;
    order: 1; 
}

.w-nav-menu {
    position: relative;
    float: right
}

.nav-menu-holder {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
	gap:15px;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center
}

.w-nav-link {
    position: relative;
    display: inline-block;
    vertical-align: top;
    text-decoration: none;
    padding: 20px;
    text-align: left;
    margin-left: auto;
    margin-right: auto
}

.nav-link { 
	margin: 0 2px;
    padding: 7px 5px;
    -webkit-transition: color 200ms ease;
    transition: color 200ms ease;
    font-size: 16px;
    line-height: 26px
}

.nav-link:hover {
    color: #f9b707
}

.nav-menu-divider {
    width: 0;
    height: 32px;
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    border-right: 1px solid var(--border-color);
}

.nav-drop {
	position: relative;
    display: grid;
    grid-template-areas:
        'theme space lng lng'
        'down down down down';
    column-gap: 20px;
    margin: 0 20px;
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
}
nav .cta-btn { 
    padding: 11px; 
}   

.cta-btn--ico {
    position: relative;
    top: -1px;
    z-index: 4;
    width: 23px; 
    height: 23px;
}
.w-dropdown .theme-btn {
	grid-area: theme;
    width: 23px;
    height: 32px;
    background: url(/images/dark.svg) no-repeat center left;
	cursor: pointer;
}
.dark .theme-btn { 
    background-image: url(/images/light.svg);    
}
.cta-btn__txt {
    position: relative;
    z-index: 4;
    -webkit-transform: translate(0, 1px);
    -ms-transform: translate(0, 1px);
    transform: translate(0, 1px)
}

.cta-btn::before {
  /*  content: '';*/
    position: absolute;
    left: 0%;
    top: 0%;
    right: 0%;
    bottom: 0%;
    margin: 1px;
    border-radius: 200px;
    background-color: var(--bg-color1);
    transition: 1s;
}

.w-dropdown-list.w--open {
    display: block
}

.w-dropdown-list {
    position: absolute;
    background: linear-gradient(transparent, var(--top-shadow) 50%);
    display: none;
    grid-area: down;
    width: auto;
    top: 100%;
    left: 25%;        
	padding: 0 5px;
    margin: 15px auto;
	border: 1px solid var(--border-color);
	border-top-width: 0;
    border-radius: 10px
}  
.nav-drop-link {
    margin-bottom: 4px;
    padding: 16px 12px 12px;
    font-size: 16px;
    line-height: 16px;
    text-decoration: none; 
}
.nav-drop-link:not(:last-child) { 
    border-bottom: 1px solid var(--border-color)
}

.w-dropdown-btn,
.w-dropdown-toggle,
.w-dropdown-link {
    position: relative;
    vertical-align: top;
    text-decoration: none;
    padding: 20px;
    text-align: left;
    margin-left: auto;
    margin-right: auto;
    white-space: nowrap
}

.nav-drop-toggle {
    display: flex;
    gap: 10px;
    grid-area: lng;
    font-size: 16px;
    align-items: center;
    cursor: pointer
}

.nav-drop-toggle:after {
	content: '';  
	background: url(/images/lang-arr.svg) no-repeat;
	width: 10px;
	height: 10px;
	margin: auto;
	margin-right: 0;
}
 
.light .theme-btn, .light .nav-drop-toggle:after {
    filter: invert(.9);
}

.w-dropdown-link {
    padding: 10px 20px;
    display: block
}

.navbar .burger {
    right: 20px;
    display: none;
    background: transparent;
    padding: 0;
    border: none;
    cursor: pointer;
    outline: none;
    -webkit-order: 1;
    -ms-flex-order: 1;
    order: 1
}

.navbar .burger__icon {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 0 auto;
    height: 25px;
    width: 30px;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    justify-content: space-around
}

.navbar .burger__line {
    background-color: var(--color);
    position: relative;
    height: 3px;
    width: 100%
}

.open_menu .burger__line {
    position: absolute; 
}

.open_menu .burger__line:first-Child {
    transform: rotate(45deg)
}

.open_menu .burger__line:nth-Child(2) {
    transform: rotate(45deg)
}

.open_menu .burger__line:last-Child {
    transform: rotate(-45deg)
}

.section__hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
    background-image: none;
    background-position: 0 0;
    background-size: auto;
    background-repeat: repeat;
    background-attachment: scroll
}

.container-1440 {
    width: 100%;
    height: 100%; 
    max-width: 1400px;
    margin-right: auto;
    margin-left: auto;
    padding-right: 80px;
    padding-left: 80px
}

.hero-wrap {
    position: relative;
    height: 100%;
    z-index: 1; 
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
    -ms-flex-align: end;
    align-items: center;
    align-content: center
}

.hero-left-wrap {
    position: relative;
    z-index: 2; 
    display: flex;
    height: 100%;
    width: 50%;
    padding-top: 75px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
    justify-content: center
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    margin-bottom: 10px
}

h1 {
    font-size: 2em;
    margin: .67em 0
}

.h1 {
    margin: 0 0 7px;
    font-size: 40px;
    line-height: 55px
}

.p.hero {
    max-width: 550px
}

.p {
    margin-bottom: 0
}

.hero-btn-wrap { 
    display: flex;
    margin-top: 40px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    justify-items: start;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
    grid-auto-columns: 1fr;
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
    -ms-grid-rows: auto;
    grid-template-rows: auto
} 

.cta-btn {
    display: flex;
    position: relative; 
    padding: 15px 30px;
    border-radius: 200px;
  /*  background-image: linear-gradient(84deg, var(--gold), var(--orange));*/
    color: var(--color);
    line-height: 26px;
    font-weight: 700;
    text-decoration: none;
    align-items: center;    
    box-shadow: 1px 0px 0px 0px var(--orange), 0 0px 0px 1px var(--gold);
    cursor: pointer;
}

.hero-right-wrap {
    position: relative;
    z-index: 2;
    top: 5%;
    left: -5%; 
    transition: 1s;
}

.hero--art {
    display: flex;
    position: relative;
    z-index: 1;
    width: 330px;
    justify-content: center;
    align-content: center;
    align-items: center
}

.hero--art:after,
.hero--art:before {
    content: '';
	position: absolute;
    display: block;
    width: 90%;
    height: 91%;
    padding: 25px;
    border-radius: 100%;
	transition: background var(--t-transition)
}

.hero--art:before {    
    background: rgb(0 0 0 / 20%); 
    z-index: -5
}
.light .hero--art:before {
    background: rgb(225 225 225 / 20%);
}
.hero--art:after {
    box-shadow: inset 0 0 20px 2px #ffffff2e, inset 0 0 0 9px #00000029, 20px -13px 17px 5px #00000029, 3px -4px 6px 0 #00000029;
    opacity: .7
}
.light .hero--art:after {
    opacity: .3;
}
.hero--moon {
    position: absolute;
    left: auto;
    top: -180px;
    right: -200px;
    bottom: auto;
    z-index: 0;
    width: 518px;
    max-width: none;
    filter: invert(80%);
    transition: filter var(--t-transition), top var(--t-transition), width var(--t-transition);
}

.light .hero--moon { 
    top: -120px;
    width: 400px;
    filter: invert(2%);
}

.hero__scrollbtn {
    position: absolute;
    left: 0%;
    top: auto;
    right: auto;
    bottom: 0%;
    z-index: 2
}
.hero__scrollbtn--img {
    width: 100px
}

.hero__scrollbtn--arrow {
    position: absolute;
    left: 0%;
    top: 27px;
    right: 0%;
    bottom: 0%;
    width: auto;
    margin-right: auto;
    margin-left: auto
}

.hero-bg-glow {
    position: absolute;
    left: -1484px;
    top: auto;
    right: auto;
    bottom: -1062px;
    z-index: 0;
    width: 2000px;
    max-width: none;
    transition: 0.3s;
}
.light .hero__scrollbtn, .light .hero-bg-glow {
    opacity: 0 !important;
}
.globe-class {
    position: absolute; 
    top: 0; 
    right: 0;
    bottom: 0;
    margin: auto;
    width: 100% !important;
    height: 100% !important; 
    clip-path: polygon(0% 100%, 0% 0%, 100% 0%, 100% 100%, 10% 100%, 10% 100%, 100% 100%, 100% 0%, 60% 0%, 60% 0%, 100% 00%, 100% 100%, 0% 100%, 0% 0%, 60% 0%, 60% 0%, 0% 0%, 0% 100%);
    transition: 1s;
    z-index: -1
}

.light .globe-class {  
    width: 50% !important;
    height: 75% !important;
    top: 5%;    
    clip-path: polygon(0% 100%, 0% 0%, 100% 0%, 100% 100%, 10% 100%, 10% 90%, 90% 90%, 90% 10%, 60% 10%, 60% 20%, 80% 20%, 80% 80%, 20% 80%, 20% 20%, 60% 20%, 60% 10%, 10% 10%, 10% 100%);
} 

.globe-class canvas { 
    position: absolute; 
    width: 100% !important; 
    height: unset !important;  
    margin: auto;
    bottom: 0;
} 
.globe-class:before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    height: 50%;
    width: 100%;
    background: linear-gradient(0deg, transparent, var(--top-shadow))
}

.section__eco {
    display: flex;
    min-height: 100vh;
    overflow: hidden;
    padding-top: 120px;
    padding-bottom: 100px; 
    align-items: center;
    align-content: center;
    flex-direction: column;
    flex-wrap: wrap
}

.eco-wrap {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center
}

.eco-left {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    max-width: 619px;
    min-width: 350px;
    margin-right: 60px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1
}

.eco-right {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    margin-right: -16px;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: stretch;
    -webkit-align-items: stretch;
    -ms-flex-align: stretch;
    align-items: stretch
}
.eco-right.downloads {
    justify-content: center;
    width: 100%;
    margin-top: 20px;
}
.eco-left h2 {
    font-size: 48px;
    margin-bottom: 32px
}

.eco-cta {
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    margin: 16px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-transition: color 200ms ease;
    transition: color 200ms ease;
    line-height: 28px;
    text-align: center;
    text-decoration: none
}
 
.eco-cta-holder {
    position: relative;
    display: flex;
    width: 190px;
    height: 100%;
    padding: 24px 32px;
    border-radius: 16px;
    background-color: var(--bg-color2); 
    border: 1px solid var(--border-color);
    flex-direction: column;
    align-items: center;
    z-index: 2; 
    transition: box-shadow 400ms ease, transform 200ms ease
}

.eco-cta-holder:hover {
    box-shadow: 0 0 200px 20px rgb(255 230 0 / 10%);
    -webkit-transform: translate(0, 10%);
    -ms-transform: translate(0, 10%);
    transform: translate(0, 10%)
}
.downloads .eco-cta-holder:hover { 
    transform: scale(1.01);
}
.eco-cta-ico-wrap {
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    width: 55px;
    height: 70px;
    margin-bottom: 16px;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center
}

.eco-cta--txt {
    font-size: 16px;
    line-height: 24px
}

.eco-cta--bg {
    position: absolute;
    top: 0;
    width: 110%;
    height: 80%;
    z-index: 1;
    border-radius: 16px;
    background: linear-gradient(0deg, var(--gold), var(--orange));
    -webkit-transform: translate(0, 6%);
    -ms-transform: translate(0, 6%);
    transform: translate(0, 6%)
}

.section__coin {
    overflow: hidden;
    padding-top: 80px;
    padding-bottom: 80px;
    background-color: var(--bg-color1)
}

.coin-grid {
    padding: 2.5rem;
    border-radius: 16px;
    background-color: var(--bg-color3);
    border: 1px solid var(--border-color)
}

.coin-box-row {
    padding: 3rem 0; 
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -ms-flex: 0 1 auto;
    -webkit-box-flex: 0;
    flex: 0 1 auto;
    -ms-flex-direction: row;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    flex-direction: row;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    align-content: center;
    -webkit-box-align: center;
    align-items: center
}

.coin-box-row:nth-child(2) {
    border-top: 1px solid var(--border-color);
	border-bottom: 1px solid var(--border-color);
}

.coin-box-content,
.coin-box-img {
    padding: 0 2rem;
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    max-width: 50%
}

.coin-box-img {
    -ms-flex-pack: center;
    -webkit-box-pack: center;
    justify-content: center;
    text-align: center
}

.coin-box-img img {
    width: 45%;
    margin: 0 auto
}

.h3 {
    margin-top: 0;
    margin-right: 32px;
    margin-bottom: 0;   
    font-size: 30px;
    line-height: 42px
}

.section__htb {
    padding-top: 100px;
    background-color: var(--bg-color1);
    overflow: hidden
}

.htb-wrap { 
    display: flex;
    width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start
}

.htb-hero { 
    display: flex;
    width: 100%;
    margin-bottom: 80px;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center
}

.htb-left {  
    display: flex;
    width: 100%;
    max-width: 619px;
    margin-right: 100px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start
}

.htb-right {
    position: relative; 
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto
}

.htb-btn-wrap { 
    display: flex;
    gap: 24px;
    margin-top: 48px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    justify-items: start;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
    grid-auto-columns: 1fr;
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
    -ms-grid-rows: auto;
    grid-template-rows: auto;
    flex-wrap: wrap;
    grid-row-gap: 15px;
}

.base-circle-wrap {
    position: relative; 
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center
}

.htb-circle-1 {
    position: absolute;
    width: 42%;
}

.htb-circle-dashes {
    width: 478px;
    height: 478px;
    border: 3px dashed var(--border-color);
    border-radius: 100%
}

.circle-glued-coins {
    position: absolute;
    left: 0%;
    top: 0%;
    right: 0%;
    bottom: 0%
}

.front-coins-holder div, .circle-glued-coins div {  
    border-radius: 100%;
    border: 1px solid var(--border-color);
    overflow: hidden;
}
.front-coins-holder div:before, .circle-glued-coins div:before, .front-coins-holder div::after, .circle-glued-coins div::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.front-coins-holder div:before, .circle-glued-coins div:before {
    background: var(--bg) center / 80% no-repeat;
    z-index: 1;
}
.circle-glued-coins div:before {
    background-size: 80%;
}
.front-coins-holder div::after, .circle-glued-coins div::after {
    background: rgb(117 117 117 / 16%);
    -webkit-backdrop-filter: blur(3px);
    backdrop-filter: blur(3px);
}

.light .front-coins-holder div::after, .light .circle-glued-coins div::after {
    background: rgb(225 225 225 / 16%);
}
.circle-glued-coins div {
    position: absolute;
    width: 72px;
    height: 72px;
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
}
div.gc-1 {
    left: 40px;
    top: 31px;
}

div.gc-2 {
    left: 40px;
    bottom: 30px;
}

div.gc-3 {
    top: 31px;
    right: 40px;
}

div.gc-4 {
    right: 40px;
    bottom: 30px;
}

.front-coins-holder {
    position: absolute;
    left: 0%;
    top: 0%;
    right: 0%;
    bottom: 0%
}

.bc-1 {
    position: absolute;
    left: auto;
    top: auto;
    right: 15px;
    bottom: -10px;
    z-index: 2;
    width: 140px;
    height: 140px;
}

.bc-2 {
    position: absolute;
    left: auto;
    top: -20px;
    right: 42px;
    bottom: auto;
    z-index: 2;
    width: 130px;
    height: 130px;
}

.bc-3 {
    position: absolute;
    left: -60px;
    top: auto;
    right: auto;
    bottom: 175px;
    z-index: 2;
    width: 117px;
    height: 117px
}

#pricing .eco-wrap {
    padding: 40px;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    -webkit-justify-content: space-evenly;
    justify-content: space-evenly
}

#freed_price,
#freed_vol {
    white-space: nowrap
}

#pricing h2 {
    font-size: 40px;
    margin-bottom: 60px
}

.ticker .adress-left {
    padding-right: 20px
}

#pricing .adress-wrap {
    min-height: 114px;
    margin: 0;
    box-shadow: none !important;
    overflow: hidden
}

.adress-wrap .freed--art {
    position: absolute;
    top: 0;
    bottom: 0;
    left: -50px;
    margin: auto;
    width: 33%;
    opacity: .1;
    filter: invert(35%)
}

.ticker .adress-wrap>span {
    position: absolute;
    height: 25px;
    top: 10px;
    right: 10px;
    padding: 0 5px;
    font-size: 14px;
    line-height: 2;
    background-color: var(--bg-color1);
    border-radius: 10px;
    border: 1px solid var(--border-color);
    overflow: hidden
}

.ticker .cta-copy {
    padding: 0 20px
}

#pricing .cta-btn--ico {
    margin-bottom: 7px
}

.calc {
    width: 50%;
    margin-left: 10px
}

.calc .adress-wrap {
    width: 100%;
    margin: 0;
    max-width: 700px;
    min-width: 300px
}

.calc .adress-wrap div {
    display: flex;
    width: 100%;
    padding: 0 10px;
    justify-content: space-between;
    align-items: center;
    background: var(--bg-color1);
    border-radius: 20px;
    border: 1px solid var(--border-color)
}

.calc .xch_vec {
    width: 10%;
    min-width: 12px;
    margin: 0 12px;
    opacity: .1
}

.calc label {
    width: 12%;
    min-width: 20px
}

.calc input {
    width: 80%;
    height: 39px;
    background: transparent;
    border: none;
    outline: none
}

.ticker .adress-wrap {
    pointer-events: none
}

#pricing.section__eco {
    padding: unset
}

#pricing > div {    
    display: flex;
    min-height: 100vh;
    align-items: center;
}

#news.eco-wrap {
    position: relative;
    margin-top: 70px;
    width: 100%;
    background: var(--bg-color3);
    flex-direction: column;
    align-items: center;
    border-radius: 0;
    border-left: 0;
    border-right: 0;
    padding-left: 0;
    padding-right: 0
}

#news h2 {
    position: absolute;
    font-size: 12px !important;
    margin: 0;
    top: 20px;
    left: 20px;
    color: #6a6a6a
}

.news_feed {
    display: flex;
    flex-direction: row;
    padding: 60px 0
}

.track_news,
.news__description {
    display: flex;
    flex-direction: column;
    text-decoration: none
}

.track_news {
    width: 300px;
    padding: 20px 15px;
    margin: 0 15px;
    background-color: var(--bg-color1);
    border: 1px solid var(--border-color);
    border-radius: 10px; 
    font-weight: 100;
    text-align: center;
    box-shadow: 0 4px 20px 0 rgb(0 0 0 / 30%)
}
.news__image {
    background: var(--bg) no-repeat;
    width: 100%;
    height: 110px;
    background-size: cover;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    border: inherit;
}
.news__description {
    margin-top: -10px; 
    background: inherit;
    border-radius: inherit;
    border-top: inherit;
}
.track_news:first-child {
    margin-left: 50px
}

.track_news:last-child {
    margin-right: 50px
}

.news__title {
    font-size: 18px;
    font-weight: 700;
    text-transform: capitalize;
    padding: 25px 10px 10px;
    line-height: 22px
}

.news__description_text {
    padding: 5px;
    overflow: hidden;
    line-height: 21px
}

.news__description_text img {
    border-radius: 5px;
    margin-bottom: 5px;
}

.news__footer {
    color: #f9b707;
    padding-top: 5px;
    font-size: 12px
}

.section__com {
    display: flex;
    min-height: 100vh;
    padding: 100px 0;
    background-color: var(--bg-color2);
    flex-direction: column;
    justify-content: center;
    align-items: center
}
.light .section__com { 
    background-color: var(--bg-color1); 
}

.com-wrap { 
    display: flex;
    width: 100%; 
    flex-direction: column; 
    align-items: center;
    text-align: center
}

.tab-button {
    padding: 2px 15px;
    background: var(--bg-color1);
    border: 1px solid var(--border-color);
    border-radius: 10px;
}
.tab-button.active {
    border-color: transparent;
    box-shadow: 1px 0px 0px 0px var(--orange), 0 0px 0px 1px var(--gold);
}

.adress-wrap {
    position: relative;  
    display: flex;
    margin-top: 40px;
    padding: 27px 30px;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    border-radius: 16px;
    background-color: var(--bg-color3);
    border: 1px solid var(--border-color)
}
.adress-wrap { 
    background-color: var(--bg-color1); 
    box-shadow: 0 4px 22px 0 rgb(0 0 0 / 10%);
}
.adress-wrap:hover {
    box-shadow: 0 4px 22px 0 rgb(249 183 7 / 10%)
}

.adress-wrap .addy {
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center
}

.adress-left {
    position: relative;
    overflow: hidden;
    max-width: 388px
}
 
.adress-hider {
    position: absolute;
    left: auto;
    top: 0%;
    right: 0%;
    bottom: 0%;
    width: 50%;
    background-image: linear-gradient(270deg, var(--bg-color1) 22%, rgba(24, 23, 31, 0))
} 

.cta-copy {
    position: relative;
    display: flex;
    overflow: hidden;
    padding: 0 50px;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    line-height: 26px;
    font-weight: 700;
    text-decoration: none;
    border-left: 1px solid var(--border-color)
}

.cta-copied-txt {
    position: relative;
    z-index: 4
}

.cta-copied-box {
    position: absolute;
    left: 0%;
    top: 0%;
    right: 0%;
    bottom: 0%;
    color: green;
    z-index: 5; 
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    background: var(--bg-color1);
    cursor: pointer
}

.qr-code {
    background: #fff;
    padding: 5px;
    max-width: 100px;
    opacity: .7;
    border-radius: 5px;
}
.light .qr-code { 
    opacity: .8; 
}

.section__footer {
    display: flex;
    min-height: 100vh;
    background-color: var(--bg-color2);
    border-top: 1px solid var(--border-color);
    flex-direction: column;
    justify-content: space-between
}

.light .section__footer {
    background-color: var(--bg-color3);
}

#community > .container-1440 {
    display: flex;
    flex: auto;
    padding-top: 80px;  
    justify-content: center;
    flex-direction: column
}

.footer-wrap {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center
}

.footer-soc-wrap {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    margin-top: 80px;
    margin-bottom: 80px
}

.soc-link { 
    display: flex;
    min-width: 74px;
    margin-right: 35px;
    margin-left: 35px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    color: var(--color);
    font-size: 12px;
    line-height: 19px;
    text-decoration: none
}

.soc-link--img {
    width: 80px;
    height: 80px;
    padding: 18px;
    border-radius: 50%;
    border-top: 1px solid var(--border-color)
}

.footer-bottom {
    background: var(--bg-color1);
    padding-top: 42px;
    padding-bottom: 10px;
    border-top: 1px solid var(--border-color);
}

.footer-bottom-wrap {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center
}

.footer--link {
    margin-right: 16px;
    margin-left: 16px;
    font-size: 16px;
    line-height: 26px;
    text-decoration: none;
    transition: box-shadow 200ms ease;
}

.footer--link:hover {
    color: #f9b707;
}

#faq.section__eco {
    position: relative;
    padding-bottom: 100px;
    overflow: hidden
}

#faq .content {
    min-height: 100vh;
    padding: 16px
}

#faq .panel_heading {
    padding: 14px 10px;
    margin: 30px 0 10px
}

#faq .panel_heading h3 {
    display: inline-block
}

.eff_wrap {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    margin: auto;
    max-height: 70vh;
    overflow: hidden;
    pointer-events: none
}
.eff_wrap:before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    height: 50%;
    width: 100%;
    background: linear-gradient(var(--top-shadow), transparent);
}
.light .eff_wrap:before { 
    background: linear-gradient(#fffcf2, transparent);
}

.eff_wrap:after {
    content: '';
    display: block;
    position: absolute;
    bottom: 0;
    height: 50%;
    width: 100%;
    background: linear-gradient(transparent, var(--bg-color1) 80%);
}
.eff_banner {
    opacity: .2
}

#faq .panel_title {
    position: relative;
    margin: 0;
    font-size: 35px !important
}

#faq .panel_body {
    position: relative;
    padding: 15px
}

#faq .article_list {
    margin-bottom: 5px
}

#faq .topic {
    font-weight: 700;
    color: #0aadef
}

#faq .article_topic {
    padding: 20px;
    display: block;
    margin-bottom: 2px;
    background: var(--bg-color3);
    border: 1px solid hsla(0, 0%, 100%, .1);
    box-shadow: 0 1px 3px rgb(255 230 0 / 10%), 0 1px 2px rgb(0 0 0 / 11%);
    border-radius: 5px;
    cursor: pointer
}
.light #faq .article_topic {
    background: unset;
    border: 1px solid var(--border-color);
}
#faq .article_body {
    font-size: 17px;
    padding: 20px;
    margin-bottom: 20px;
    display: none;
    background: var(--bg-color3);
    border-top: 1px solid hsla(0, 0%, 100%, .1);
    border-radius: 7px;
    white-space: pre-line
}

#buy .panel_body,
#resource .panel_body,
#community .panel_body {
    padding: 70px 55px;
    background-color: var(--bg-color3);
    border: 1px solid var(--border-color);
    border-radius: 15px
}

#buy a,
#resource a {
    font-weight: 600;
    color: #f9b707;
    text-decoration: none;
    white-space: nowrap
}

#buy .panel_body div {
    min-width: 220px;
    padding: 12px;
    margin: 20px 0 50px;
    border-radius: 20px;
    border: 3px dashed var(--border-color);
    pointer-events: none
}

#buy .panel_body img {
    border-radius: 10px;
    opacity: .92
}

#resource .panel_body.eco {
    display: flex;
    padding: 30px 40px;
    text-align: center;
    flex-direction: row;
    justify-content: space-between
}

#resource .cards {
    display: flex;
    padding: 10px 20px 20px;
    width: 50%;
    flex-direction: column
}

#resource .cards h2 {
    margin: 10px 0 25px
}

#resource .cards:last-child {
    border-left: 1px solid var(--border-color)
}

#resource .cards span {
    margin: 31px
}

.r_cards {
    display: flex;
    position: relative;
    flex-direction: column;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
    justify-content: center
}

.r_cards:after {
    content: '';
    display: block;
    position: absolute;
    height: 96%;
    width: 6px;
    margin: 20px;
    background: #292831;
    z-index: 2;
    border-radius: 20px;
}

.card {
    --dir: 7px;
    --spin: 270deg;
    position: relative;
    width: 45%;
    margin: 10px 0;
    padding: 10px 75px;
    border-radius: 33px;
    color: var(--txtlink);
    background-image: linear-gradient(var(--spin), var(--gold), var(--bg-color3));    
    box-shadow: var(--dir) 7px 15px 0 rgb(0 0 0 / 17%);
    border: 2px solid var(--gold);
}

.card * {
    position: relative
}

.card:nth-of-type(odd) {
    --dir: -7px;
    --spin: 90deg;
    border-right-width: 0;
    transform: translateX(-55%);
    transform-origin: right
}

.card:nth-of-type(even) {
    border-left-width: 0;
    transform: translateX(55%);
    transform-origin: left
} 

.card:after {
    content: '';
    display: block;
    position: absolute;
    width: 5.5%;
    height: 50%;
    top: 0;
    bottom: 0;
    margin: auto;
    background: #292831;
    border-radius: 10px
}

.card:nth-of-type(odd):after {
    right: -5.7%
}

.card:nth-of-type(even):after {
    left: -5.7%
}

.card:last-child {
    --dir: 0;
    color: #ffffff;
    --gold: #555;
    width: 100%;
    margin-top: 80px;
    background: var(--gold);
    transform: none;
    transform-origin: top !important;
    z-index: 3;
}
.card:last-child:after {
    width: 40px;
    height: 40px;
    top: -20px;
    left: 0 !important;
    right: 0;
    bottom: unset;
    border-radius: 50%;
}
.mail_form .cta-btn-transparent {
    justify-content: center;
    max-width: 150px;
    margin: auto
}

@media screen and (orientation: landscape)  {
    .hero-left-wrap {  
      max-width: 785px;
    }
}
@media screen and (min-width:1130px) {
    .hero-right-wrap {
        left: -9%;
    }
    .light .hero-right-wrap {
        left: -8%;
    }
}
@media screen and (max-width:991px), (orientation: portrait)  {
    .light .globe-class {
        top: 0;
        height: 100% !important;
        width: 100% !important;
        border-radius: 0 0 10px 10px;
        clip-path: polygon(0% 0%, 0% 0%, 100% 0%, 100% 0%, 5% 0%, 5% 95%, 95% 95%, 95% 8%, 60% 8%, 60% 12%, 90% 12%, 90% 90%, 10% 90%, 10% 12%, 60% 12%, 60% 8%, 5% 8%, 5% 0%);
    }
    .globe-class {
        clip-path: polygon(0% 0%, 0% 100%, 100% 100%, 100% 0%, 5% 0%, 5% 95%, 95% 95%, 95% 8%, 60% 8%, 60% 12%, 90% 12%, 90% 12%, 10% 12%, 10% 12%, 60% 12%, 60% 8%, 5% 8%, 5% 0%);
    }
    .brand-url.w--current {
        height: 48px;
        margin-bottom: 0;
        z-index: 0
    }

    .brand-url--txt {
        font-size: 22px
    }

    .navbar .burger {
        display: block
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: 0;
        opacity: 0;
        min-width: 263px;
        min-height: 100vh;
        padding: 67px 0 35px;
        background: var(--bg-color1);
        /* border-radius: 10px 0 0 10px; */
        transform: translate(100%, 0);
        transform-origin: right top;
        visibility: hidden;
        transition: .4s;
    }

    body.open_menu {
        overflow: hidden
    }

    .open_menu .nav-menu {
        opacity: 1;
        visibility: visible;
        transform: translate(0, 0);
    }

    .open_menu .brand-url.w--current {
        opacity: .5;
        pointer-events: none
    }

    .w-dropdown-list {
		position: relative;
        background: var(--bg-color2);
        width: 90%;
        max-height: 168px;
        top: 0;
        left: 0 !important;
        right: 0;
        margin-top: 0;
        border-top-width: 1px;
        overflow-y: scroll;
        transform: none !important;
    }

    .w-dropdown-link {
        padding: 15px 20px;
        text-align: center
    }

    .nav-menu-holder {
        display: flex;
        width: 100%;
        flex-direction: column;
        justify-content: flex-start;
        align-content: flex-start
    }

    .nav-link {
        width: 100%;
        padding: .4em 48px;
        font-size: 5vw;
        line-height: 1.2em;
        font-weight: 700
    } 
	.navbar a, .nav-drop-toggle {
		color: var(--color);
	}
    .w-dropdown { 
        width: 100%;
        margin: 2em 0 0;
        border-top: 1px solid var(--border-color);
        border-bottom: 1px solid var(--border-color)
    }
	.w-dropdown .theme-btn { 
		margin: 1em 0 1em 45px;
	} 
    .nav-drop-toggle { 
        padding-right: 35px;
        -webkit-box-pack: justify;
        -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
        justify-content: space-between;
        font-size: 4vw
    } 

    nav .cta-btn {
        font-size: 4vw;
        width: 100%;
       /* background: none !important;*/
        padding: 1em 45px 1em;
        box-shadow: none;
    } 
	nav .cta-btn::before { 
		left: unset; 
	}
	.nav-menu-holder .cta-btn::after {
		content:"Wallets";
		padding-left: 15px;
	}
	.cta-btn.game-btn::after {
		content:"Games";
	}
	.cta-btn.store-btn::after {
		content:"Store";
	}    
    .hero-wrap {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: start;
        -webkit-align-items: flex-start;
        -ms-flex-align: start;
        align-items: flex-start
    }

    .hero-left-wrap {
        width: unset;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
        text-align: center
    }

    .hero-right-wrap {
        display: none
    }

    .section__htb {
        padding-top: 80px; 
    }

    .htb-hero {
        margin-bottom: 120px
    } 

    .htb-circle-dashes {
        width: 338px;
        height: 338px
    }
    .circle-glued-coins div{
        right: 10px;
        bottom: 25px;
        width: 62px;   
        height: 62px;    
    }
    .front-coins-holder div:before {
        background-size: 70%;
    }
    .circle-glued-coins div:before {
        background-size: 60%;
    }
    div.gc-2, div.gc-1 {
        left: 15px;
    }
    .bc-1 {
        bottom: -42px;
        width: 124px;
        height: 124px;
    }

    .bc-2 {
        top: -48px;
        right: 36px;
        width: 114px;
        height: 114px;
    }

    .bc-3 {
        left: -41px;
        bottom: 155px;
        width: 97px;
        height: 97px;
    }

    .adress-left {
        max-width: 350px
    }

    .adress-right {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto
    }

    #faq .panel_title {
        font-size: 30px !important
    }

    #resource .panel_body.eco {
        flex-direction: column
    }

    #resource .cards:last-child {
        padding-top: 30px;
        border: none;
        border-top: 1px solid var(--border-color)
    }

    #resource .cards {
        width: 100%
    }

    #resource .cards h2 {
        margin: 10px 0
    }

    #resource .cards span {
        margin-top: 10px
    }


    .r_cards:after {
        display: none;
    }

    .card {
        padding: 10px 35px;
        border-radius: 28px
    }

    .card:after {
        width: 30px;
        height: 30px; 
        background: var(--bg-color2);
        border: 2px solid var(--border-color); 
        border-radius: 100px;
    }

    .card:nth-of-type(odd) {
        width: 95%;
        transform: none; 
    }

    .card:nth-of-type(even) {
        width: 95%;
        transform: none
    }

    .card:nth-of-type(odd):after {
        right: -15px;
    }
    .card:nth-of-type(even):after {
        left: -15px;
    }
    .card:last-child { 
        padding: 30px 20px; 
    }
}

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

    .container-1440,
    .navbar {
        padding-right: 40px;
        padding-left: 40px
    }

    marquee {
        right: -10% !important;
        bottom: 0 !important
    }

    .h1 {
        font-size: 36px !important;
        line-height: 52px
    }

    .hero-btn-wrap {
        margin-right: 0;
        width: 100%;
        -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center
    }

    .cta-btn-transparent.hero {
        margin-top: 20px;
        margin-bottom: 20px
    }

    .cta-btn.r-pad:not(.section__htb .cta-btn.r-pad) {
        margin-right: 0;
        padding: 15px 30px 13px
    }

    .eco-wrap {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: start;
        -webkit-align-items: flex-start;
        -ms-flex-align: start;
        align-items: flex-start
    }

    .eco-left {
        max-width: none;
        min-width: auto;
        margin-right: 0;
        margin-bottom: 40px
    }

    .eco-right {
        width: 100%;
        margin-right: 0
    }

    .coin-box-row { 
        padding-top: 0;
        text-align: center;
        -webkit-box-orient: vertical;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column
    } 
    .coin-box-row:nth-child(2) {
        -webkit-box-orient: vertical;
        -webkit-flex-direction: column-reverse;
        -ms-flex-direction: column-reverse;
        flex-direction: column-reverse
    }
    
    .coin-box-content,
    .coin-box-img {
        max-width: unset
    }

    .coin-box-img {
        padding: 3rem
    }

    .coin-box-content .h3 {
        margin-right: 0
    }

    .htb-hero {
        margin-bottom: 100px;
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
        -webkit-flex-direction: column-reverse;
        -ms-flex-direction: column-reverse;
        flex-direction: column-reverse;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center
    }

    .htb-left {
        max-width: none;
        margin-right: 0;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
        text-align: center
    }

    .htb-right {
        margin-bottom: 91px
    }

    .bc-1 {
        bottom: -10px;
        width: 100px;
        height: 100px;
    }

    .bc-2 {
        top: -25px;
        width: 100px;
        height: 100px;
    }

    .htb-btn-wrap {
    	justify-content: center;
    }

    .ticker,
    .calc {
        width: 100%;
        margin: 0
    }

    .calc .xch_vec {
        width: 9%;
        margin: 12px 0;
        transform: rotate(90deg)
    }

    .ticker {
        margin-bottom: 30px
    }

    #news.eco-wrap {
        align-items: flex-start
    }

    .adress-wrap {
        padding-top: 37px;
        padding-bottom: 37px;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column
    }

    .adress-wrap .freed--art {
        width: 50%;
        opacity: .05
    }

    .section__com .adress-wrap {
        flex-direction: row;
        -webkit-flex-direction: row;
        -ms-flex-direction: row
    }

    .adress-wrap .addy {
        width: 65%;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column
    }

    .adress-left {
        width: 100%;
        padding: 0 !important
    }

    .cta-copy {
        border-left: none;
        border-top: 1px solid var(--border-color)
    }

    .section__com .cta-copy {
        height: 50px;
        padding: 0 20px;
        margin-top: 8px;
        border-radius: 20px;
        border-left: none;
        border-top: 1px solid var(--border-color)
    }

    .ticker .cta-copy {
        padding: 10px 20px 0
    }

    .qr-code {
        max-width: 90px
    }

    .footer-soc-wrap {
        max-width: 500px;
        margin-top: 50px;
        margin-bottom: 50px;
        -webkit-box-pack: center;
        -webkit-justify-content: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap
    }

    .soc-link {
        margin: 25px
    }

    .footer-bottom {
        padding-bottom: 22px
    }

    .footer-bottom-wrap {
        -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap
    }

    .footer--link {
        margin-bottom: 16px
    }

    #faq .panel_title {
        position: relative;
        font-size: 27px !important;
        text-align: center;
        z-index: 1
    }

    #buy .panel_body,
    #resource .panel_body,
    #community .panel_body {
        padding: 30px
    }
}

@media screen and (max-width:505px) {
    .light .globe-class { 
        clip-path: polygon(0% 0%, 0% 0%, 100% 0%, 100% 0%, 5% 0%, 5% 95%, 95% 95%, 95% 9%, 60% 9%, 60% 12%, 90% 12%, 90% 90%, 10% 90%, 10% 12%, 60% 12%, 60% 9%, 5% 9%, 5% 0%);
    }
    .eco-left {
        margin-bottom: 32px;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
        text-align: center
    }

    .eco-cta {
        width: 90%;
        margin: 10px 0
    }

    .eco-cta-holder {
        width: 103%;
        padding-right: 24px;
        padding-left: 24px;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -webkit-flex-direction: row;
        -ms-flex-direction: row;
        flex-direction: row;
        -webkit-box-pack: start;
        -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
        justify-content: flex-start;
        text-align: left
    }

    .eco-cta-ico-wrap {
        width: 50px;
        height: 60px;
        margin: 0 24px;
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto
    }

    .eco-cta--txt {
        width: 100%;
        font-size: 16px;
        line-height: 24px;
        text-align: center
    }

    #faq .container-1440,
    #buy.container-1440 {
        padding-right: 0;
        padding-left: 0
    }
    .eff_wrap {
        transform: scale(1.5); 
    }
    .eff_banner { 
        transform-origin: top center
    }

    #resource .cards {
        padding-left: 0;
        padding-right: 0
    }

    #resource .cards span {
        margin-left: 0;
        margin-right: 0
    }

    .card:before {
        left: 1px;
        right: 1px;
        top: 1px;
        bottom: 1px;
        border-radius: 27px
    }
}

@media screen and (max-width:479px) {
    .brand-url.w--current {
        height: 40px
    }
    .brand-url-logo-wrap {
        width: 40px;
    }
    .brand-url--txt {
        font-size: 18px
    }

    .container-1440,
    .navbar {
        padding-right: 24px;
        padding-left: 24px
    }

    .h1 {
        margin-bottom: 24px !important;
        font-size: 30px !important;
        line-height: 42px
    }

    .p {
        font-size: 16px;
        line-height: 28px
    }

    .coin-box-content {
        padding: 0
    }

    #pricing .eco-wrap:not(#news.eco-wrap) {
        padding: 20px
    }

    .section__com {
        padding-top: 60px;
        padding-bottom: 60px
    }

    .adress-left {
        max-width: 250px
    }

    .cta-copy {
        padding: 0 40px
    }

    .cta-copied-txt {
        font-size: 16px
    }

    .footer-soc-wrap {
        margin-top: 40px;
        margin-bottom: 40px
    }

    .soc-link {
        margin: 20px
    }

    .footer-country-link {
        font-size: 16px;
        line-height: 28px
    }
}