@font-face {
    font-family: averta;
    src: url(../fonts/AvertaDemo-Regular.otf);
}

:root {
    --primary_color_1: #085924;
    --primary_color_2: #031e0c;
    --font-1-avarta: 'avarta';
}

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
    font-family: 'averta';
    -webkit-scroll-behavior: smooth;
    -ms-scroll-behavior: smooth;
    -moz-scroll-behavior: smooth;
    scroll-behavior: smooth;
}

body {
    background-image: url(../img/world_map_dots.png);
    background-color: rgba(0, 0, 0, 0.479);
    background-attachment: fixed;
}

/* width */

::-webkit-scrollbar {
    width: 3px;
}

/* Track */

::-webkit-scrollbar-track {
    background: #888;
}

/* Handle */

::-webkit-scrollbar-thumb {
    background: #f1f1f1;
}

/* Handle on hover */

::-webkit-scrollbar-thumb:hover {
    background: #555;
}

.page_loader {
    /* // border: 2px solid red; */
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    bottom: 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 99999;
    margin: 0 auto;
}

.page_loader_anim {
    background-color: rgba(0, 0, 0, 0.95);
    width: 60rem;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.page_loader svg.tea {
    --secondary: #085924;
}

.page_loader svg.tea #teabag {
    transform-origin: top center;
    transform: rotate(3deg);
    animation: swing 2s infinite;
}

.page_loader svg.tea #steamL {
    stroke-dasharray: 13;
    stroke-dashoffset: 13;
    animation: steamLarge 2s infinite;
}

.page_loader svg.tea #steamR {
    stroke-dasharray: 9;
    stroke-dashoffset: 9;
    animation: steamSmall 2s infinite;
}

@-moz-keyframes swing {
    50% {
        transform: rotate(-3deg);
    }
}

@-webkit-keyframes swing {
    50% {
        transform: rotate(-3deg);
    }
}

@-o-keyframes swing {
    50% {
        transform: rotate(-3deg);
    }
}

@keyframes swing {
    50% {
        transform: rotate(-3deg);
    }
}

@-moz-keyframes steamLarge {
    0% {
        stroke-dashoffset: 13;
        opacity: 0.6;
    }
    100% {
        stroke-dashoffset: 39;
        opacity: 0;
    }
}

@-webkit-keyframes steamLarge {
    0% {
        stroke-dashoffset: 13;
        opacity: 0.6;
    }
    100% {
        stroke-dashoffset: 39;
        opacity: 0;
    }
}

@-o-keyframes steamLarge {
    0% {
        stroke-dashoffset: 13;
        opacity: 0.6;
    }
    100% {
        stroke-dashoffset: 39;
        opacity: 0;
    }
}

@keyframes steamLarge {
    0% {
        stroke-dashoffset: 13;
        opacity: 0.6;
    }
    100% {
        stroke-dashoffset: 39;
        opacity: 0;
    }
}

@-moz-keyframes steamSmall {
    10% {
        stroke-dashoffset: 9;
        opacity: 0.6;
    }
    80% {
        stroke-dashoffset: 27;
        opacity: 0;
    }
    100% {
        stroke-dashoffset: 27;
        opacity: 0;
    }
}

@-webkit-keyframes steamSmall {
    10% {
        stroke-dashoffset: 9;
        opacity: 0.6;
    }
    80% {
        stroke-dashoffset: 27;
        opacity: 0;
    }
    100% {
        stroke-dashoffset: 27;
        opacity: 0;
    }
}

@-o-keyframes steamSmall {
    10% {
        stroke-dashoffset: 9;
        opacity: 0.6;
    }
    80% {
        stroke-dashoffset: 27;
        opacity: 0;
    }
    100% {
        stroke-dashoffset: 27;
        opacity: 0;
    }
}

@keyframes steamSmall {
    10% {
        stroke-dashoffset: 9;
        opacity: 0.6;
    }
    80% {
        stroke-dashoffset: 27;
        opacity: 0;
    }
    100% {
        stroke-dashoffset: 27;
        opacity: 0;
    }
}

.blackrock {
    background-color: var(--primary_color_1);
    background: linear-gradient(to bottom, #000000, #085924);
    max-width: 60rem;
    margin: 0 auto;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    /* background-color: var(--primary_color_1); */
    max-width: 60rem;
    margin: 0 auto;
}

.nav-box1 {
    display: flex;
    gap: .4rem;
    align-items: center;
}

.nav__logo {
    width: 3rem;
    /* border-radius: 50%; */
    height: auto;
}

.nav__text {
    font-size: clamp(0.8rem, 2vw, 1.1rem);
    max-width: 15ch;
    line-height: 1.4;
    text-transform: uppercase;
    font-weight: 600;
    color: white;
    border-left: 1px solid white;
    padding-left: 6px;
}

.nav__icon {
    font-size: clamp(1.2rem, 2.5vw, 1.7rem);
    color: white;
}

@media (max-width:500px) {
    .nav__logo {
        width: 2rem;
    }
}

/* END OF NAV SECTION///////////////////////////////// */

/* BEGGINING OF SIGNUP SECTION/////////////////////////////// */

.signup {
    display: flex;
    flex-direction: column;
    max-width: 50rem;
    margin: 2rem auto -4rem;
    padding: 1rem;
    justify-content: center;
    backdrop-filter: blur(2rem);
    background-color: white;
    border-radius: 2rem 2rem 0 0;
    transform: translateY(2rem);
}

.signup-box1 {
    display: flex;
    gap: 2rem;
    justify-content: space-between;
    align-items: center;
}

.signup__img {
    width: 100%;
    height: auto;
}

.signup__desc {
    display: flex;
    gap: 1rem;
    flex-direction: column;
    padding-left: 2rem;
}

.signup__head {
    text-transform: uppercase;
    color: #031e0c;
    font-size: clamp(1.6rem, 1.5vw, 2.8rem);
    padding-top: .5rem;
}

.signup__text {
    color: rgb(95, 94, 94);
    font-size: clamp(1rem, 2.5vw, 1.3rem);
    max-width: 25ch;
}

.signup__btn {
    width: 100%;
    padding: 1rem .2rem;
    align-self: center;
    background-color: #085924;
    border: none;
    border-radius: 1rem .5rem 1rem .5rem;
    text-transform: uppercase;
    color: rgb(255, 255, 255);
    font-size: clamp(1rem, 2.5vw, 1.4rem);
    transition: 300ms ease-in-out;
    cursor: pointer;
}

.signup__btn:hover {
    background-color: #031e0c;
    background-color: #042e13;
    box-shadow: 6px 6px 0 rgb(110, 110, 110);
    transform: translate(-6px, -6px);
}

.signup__icon {
    font-size: clamp(1.2rem, 2.5vw, 1.5rem);
    margin-left: 5px;
    color: rgb(255, 255, 255);
}

@media (max-width:467px) {
    .signup-box1 {
        padding-bottom: .5rem;
    }
    .signup__desc {
        padding-left: 1rem;
    }
    .signup__head {
        width: 11ch;
    }
    .signup__img {
        /* width: 85%; */
        height: auto;
    }
}

/* END OF SIGNUP SECTION //////////////////////////////////////// */

.trade {
    display: flex;
    justify-content: space-between;
    max-width: 60rem;
    margin: 8rem auto 2rem;
    background-color: white;
    padding: 1rem;
}

.trade__text {
    font-size: clamp(1rem, 2.5vw, 1.3rem);
    text-transform: uppercase;
    font-weight: 600;
    color: #031e0c;
}

.trade__link {
    font-size: clamp(1rem, 2.5vw, 1.3rem);
    text-transform: uppercase;
    color: #031e0c;
    text-decoration: underline;
    font-weight: 600;
    transition: 200ms;
}

.trade__link:hover {
    text-decoration: none;
    color: #000000;
}

.trade__icon {
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    animation: pulse 1000ms ease-in-out infinite;
    color: #031e0c;
    ;
}

@keyframes pulse {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-6px);
    }
}

/* BEGGINING OF MARKET SECTION ///////////////////////////////////// */

.market {
    max-width: 60rem;
    height: 40rem;
    margin: 2rem auto 7rem;
    font-size: 2rem;
    background-color: #031e0c;
    background: linear-gradient(to top, #000000, #085924);
    border-radius: 1rem 2rem 1rem 2rem;
}

@media (max-width:500px) {
    .market {
        border-radius: 2rem 2rem 0 0;
    }
}

/* END OF SIGNUP SECTION//////////////////////////////////////// */

/* BEGGINING OF BOTTOM-NAV SECTION/////////////////////////////// */

.bottom-nav {
    max-width: 60rem;
    margin: 2rem auto 0;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    box-shadow: 3px -3px 20px #0429102f;
}

.bottom-nav-box {
    display: flex;
    justify-content: space-between;
    background-color: white;
    padding: 1rem 2rem;
}

.bottom-nav__icon {
    display: flex;
    flex-direction: column;
    gap: .5rem;
    text-decoration: none;
    align-items: center;
    color: #6b6b6b;
    font-size: clamp(1rem, 2.5vw, 1.6rem);
    transition: 200ms ease-in-out;
}

.bottom-nav__text {
    text-decoration: none;
    font-size: clamp(0.8rem, 2vw, 1rem) !important;
    text-transform: uppercase;
    font-weight: 600;
}

.bottom-nav__icon.active {
    color: var(--primary_color_1);
}

.bottom-nav__icon:hover {
    color: var(--primary_color_1);
}

@media (max-width:500px) {
    .bottom-nav-box {
        padding: 1rem;
    }
}

/* END OF BOTTOM-NAV SECTION/////////////////////////////////// */

/* BEGGINING OF POP-UP//////////////////////////////////////////// */

.overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background-color: #444;
    z-index: 2001;
    -moz-opacity: 0.7;
    opacity: .80;
    filter: alpha(opacity=80);
    transition: 300ms ease-in-out;
    /* Transitions */
}

.popup-box {
    min-width: 300px;
    max-width: 400px;
    z-index: 3000;
    background-color: #eee;
    padding: 1rem;
    text-align: center;
    position: fixed;
    top: 50%;
    left: 50%;
    /* bottom: 0; */
    transform: translate(-50%, -50%);
    border-radius: 10px;
    display: none;
    transition: 300ms ease-in-out;
}

.span {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 20px;
    height: 20px;
    background-color: var(--primary_color_2);
    color: white;
    padding: 20px;
    border-radius: 50%;
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.popup {
    display: flex;
    flex-direction: column;
    gap: 1rem
}

.popup__head {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    text-transform: uppercase;
    color: var(--primary_color_2);
}

.popup__img {
    width: 100%;
    height: auto;
    aspect-ratio: 2/1;
    object-fit: cover;
}

.popup__text {
    line-height: 1.5;
    font-size: clamp(1rem, 2vw, 1.1rem);
}

/* END OF POP-UP//////////////////////////////////////////// */

/* BEGGINING OF CUSTOMER-CARE///////////////////////////////// */

/* .customer-care{
    max-width: 60rem;
    margin: 0 auto;
    left: 0;
    right: 0;
    background-color: white;
    border-radius: 1rem 1rem 0 0;
    position: fixed;
    z-index: 4000;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    flex-wrap: nowrap;
    background-color: var(--primary_color_2);
    overflow-y: scroll;
    transition: 1s ease-out;
    box-shadow: 3px 3px 5px black;
    -ms-overflow-style: none;
    scrollbar-width: none; 
} */

.customer-care {
    height: 0;
    max-width: 60rem;
    margin: 0 auto -5rem;
    position: fixed;
    z-index: 999;
    bottom: 0;
    left: 0;
    right: 0;
    display: block;
    border-radius: 2rem 2rem 0 0;
    /* display: flex; */
    flex-direction: column;
    /* gap: 1rem; */
    display: flex;
    gap: 1rem;
    background-color: white;
    padding: 2rem;
    transition: 1s ease-out;
    overflow-y: auto;
}

.customer__head {
    text-align: center;
    font-size: clamp(1rem, 2vw, 1.3rem);
    text-transform: uppercase;
    color: var(--primary_color_2);
    border-bottom: 1px solid silver;
    padding-bottom: 1rem;
}

.openbtn {
    background: none;
    border: none;
}

.closebtn {
    /* position: absolute;
    left: 50%;
    right: 50%;
    top: -1.3rem; */
    /* background: none;
    border: none;   */
    width: 100%;
    padding: .9rem;
    font-size: clamp(1rem, 2vw, 1.1rem);
    text-transform: uppercase;
    color: white;
    border-radius: .6rem;
    box-shadow: 0px 8px 0px 0px rgba(0, 0, 0, 0.75);
    -webkit-box-shadow: 0px 8px 0px 0px rgba(0, 0, 0, 0.75);
    -moz-box-shadow: 0px 8px 0px 0px rgba(0, 0, 0, 0.75);
    background-color: #2e7346;
    border: 1px solid rgba(0, 0, 0, 0.75);
    transition: 200ms ease-in-out;
}

.closebtn:hover {
    background-color: var(--primary_color_1);
}

.close-btn {
    color: white;
    font-size: clamp(1rem, 2vw, 1.3rem);
    background-color: var(--primary_color_2);
    padding: 10px 11px;
    border-radius: 50%;
}

.customer__desc {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.customer__link {
    text-decoration: none;
    color: var(--primary_color_2);
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    font-size: 1.1rem;
    box-shadow: 2px 7px 20px #0429102f;
    ;
    padding: .8rem;
}

.customer__icon {
    font-size: 1.7rem;
}

/* END OF CUSTOMER-CARE///////////////////////////////////////// */