/* General */

* {
    box-sizing: border-box;
}

body {
    -ms-overflow-style: none;
    /* remove scroll bar for IE and Edge*/
    scrollbar-width: none;
    /*remove scroll bar for Firefox */
    overflow-x: hidden;
}

body::-webkit-scrollbar {
    display: none;
    /* remove scrollbar for Chrome, Safari and Opera */
}

a {
    text-decoration: none;
}

/* header start */
/* header general changes*/

header {
    background-color: transparent;
    padding: 15px 0;
    min-width: fit-content;
    display: flex;
    align-items: center;
    justify-self: center;
    z-index: 9;

}

.header-left a,
.header-right div {
    color: white;
    font-size: 14px;
}

.header-left a:hover:not(.cex-dex-btns div a, .header-main-menu>ul>li>ul>li a),
.header-right-download:hover,
.header-register div:hover:not(.header-register div:nth-child(2)),
.language-currency div:hover {
    cursor: pointer;
    color: #7e9aff;
}

header,
header .header-right,
header .header-left {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    padding-left: 13px;
    padding-right: 16px;
}

/* header general changes end*/
/* header left */
header .header-logo {
    display: flex;
    align-items: center;
    justify-content: center;
}

header .header-logo img {
    width: 130px;
}

/* cex-dex-btns start*/
.header-left .cex-dex-btns {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2px;
    border: 1px solid #3B3D59;
    border-radius: 5px;
}

.header-left .cex-dex-btns div {
    /* display: inline-block; */
    padding: 5px 10px;
    border-radius: 5px;
}

.header-left .cex-dex-btns div:first-of-type {
    background-color: #ffffff3b;
}

.header-left .cex-dex-btns div:last-of-type:hover {
    background-color: #2D2E3F;
}


/* cex-dex-btns start end*/
/* header main start */
/* level 1 start*/
.header-main-menu>ul {
    display: flex;
}

.header-main-menu>ul>li {
    padding-right: 20px;
    position: relative;
}

.header-main-menu .has-drop-down {
    position: relative;
    margin: 0 15px 0 0;
}

.header-main-menu .has-drop-down::after {
    position: absolute;
    content: '';
    left: 110%;
    top: calc(50% - 2px);
    width: 2px;
    height: 2px;
    border-right: 2px solid #72768F;
    border-bottom: 2px solid #72768F;
    transform: rotate(45deg);
    transition: all 0.1s linear;
}

.header-main-menu .has-drop-down:hover::after {
    border-color: #7e9aff;
    transform: rotate(225deg);
}

/* level 1 end */
/* dropdown level 2 start */
.header-main-menu>ul>li>ul {
    display: flex;
    flex-direction: column;
    transition-delay: 0.1s;
    transition-duration: 0.3s;
    top: 250%;
    position: absolute;
    width: max-content;
    background-color: #1e1f31;
    visibility: hidden;
    opacity: 0;
    z-index: 2;
}

.header-main-menu>ul>li:hover>ul {

    visibility: visible;
    opacity: 1;

}

.header-main-menu>ul>li>ul>li {
    padding: 17px 17px 17px 45px;
    position: relative;
}

.header-main-menu>ul>li>ul>li::after {
    content: '';
    position: absolute;
    right: 86%;
    top: calc(50% - 3.5px);
    width: 2px;
    height: 2px;
    border: 2px solid #72768F;
    transform: rotate(45deg);

}

.header-main-menu>ul>li>ul>li:hover {
    cursor: pointer;
    background-color: #232531;

}

.header-main-menu>ul>li>ul>li:hover::after {
    border-color: #4250f4;
}


/* dropdown level 2 end */

/* header main end */
/* header left end */
/* header right start */

.header-right>div>div {
    display: inline-block;
}

/* register start*/
.header-right .header-register div {
    margin-right: 20px;
}

.header-right .header-register>div:nth-child(2) {
    cursor: pointer;
    padding: 10px 12px;
    border-radius: 5px;
    background-image: linear-gradient(93.96deg, #e05fbb 0.76%, #4250f4 100.57%);
}

.header-right .header-register>div:nth-child(2):hover {
    background-image: linear-gradient(94.64deg, #e08de4 -19.85%, #4d51e3 100%);
}

.header-right .header-register>div:nth-child(2):active {
    background-image: none;
    background-color: rgb(88, 76, 234);
}

/* register end */
/* header-right-download start */
.header-right-download {
    position: relative;
}

.header-right-download .header-right-download-qr-code-box {
    width: 200px;
    height: 250px;
    background-color: #1e1f31;
    top: 275%;
    right: 0;
    position: absolute;
    cursor: default;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
    visibility: hidden;
    opacity: 0;
    transition: .2s .2s;
}

.header-right-download:hover .header-right-download-qr-code-box {
    visibility: visible;
    opacity: 1;
}

.header-right-download-qr-code img {
    width: 170px;
}

/* header-right-download end */
/* language-currency start */
.language-currency {
    display: flex;
    align-items: center;
    justify-content: center;

}

.language-currency .language-currency-line {
    vertical-align: middle;
    width: 1px;
    height: 13px;
    margin-left: 8px;
    margin-right: 8px;
    background-color: #5A5C74;
}

/* language-currency end */

/* hamburger-menu start */
#hamburger-menu {
    position: absolute;
    top: 0;
    right: 0;
    width: 0;
    height: 100vh;
    background-color: #1e1f31;
    transition: all linear 0.2s;
    overflow-y: scroll;
    z-index: 10;
}

#hamburger-menu .container {
    width: 85%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.hamburger-menu-popup {
    width: 90vw !important;

}

#hamburger-menu #close-icon {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    width: 100%;
    margin: 0 auto;
    height: 60px;
}

.close-icon {
    font-size: 35px;
    color: #5A5C74;
}

#hamburger-menu-icon {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
    width: 25px;
    height: 25px;
    display: none;
}

#hamburger-menu-icon .row {
    width: 80%;
    height: 10%;
    background-color: white;
}

/* hamburger-menu-items start*/
#hamburger-menu-register,
#hamburger-menu-language-currency,
#hamburger-main-menu {
    display: flex;
    width: 100%;
    height: fit-content;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    margin: 10px 0 0 0;

}

#hamburger-menu-language-currency,
#hamburger-main-menu {
    align-items: flex-start;
}

#hamburger-menu-register>li,
#hamburger-menu-language-currency>li,
#hamburger-main-menu>li {
    margin: 10px 0;
    display: flex;
    justify-content: center;
    align-items: center;

}

#hamburger-menu-language-currency>li i,
#hamburger-main-menu>li i {
    color: #5A5C74;
    font-size: 20px;
    margin: 0 10px 0 0;

}


#hamburger-menu-register>li>a,
#hamburger-menu-language-currency>li>a,
#hamburger-main-menu>li>a {
    color: white;
    font-size: 15px;
}

#hamburger-menu-register>li:nth-of-type(2) {
    width: 100%;
    padding: 13px 0;
    border-radius: 5px !important;
    background: linear-gradient(93.96deg, #e05fbb 0.76%, #4250f4 100.57%);
}

#hamburger-menu-language-currency>li:nth-of-type(1) {
    width: 100%;
    height: 1px;
    background-color: #5A5C74;
}


/* hamburger-menu-items END*/
/* hamburger-menu END */
/* header right end */
/* Header end */

/* media query for header start */
@media screen and (max-width:1075px) {

    .header-register>div:first-of-type,
    .language-currency>div {
        display: none !important;
    }

    #hamburger-menu-icon {
        display: flex;
    }
}

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

    .header-main-menu>ul>li {
        display: none !important;
    }


}

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


    .cex-dex-btns {
        display: none !important;
    }

}

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


    .header-right-download {
        display: none;
    }

}

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


    .header-right-download {
        display: none;
    }

    .header-register div:last-of-type {
        display: none;
    }

}



/* media query for header END */

/* footer start */
footer {

    width: 100%;
    min-height: 400px;
    background-color: #171822;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;

}


footer #footer-top {

    margin: 0 auto;
    padding: 20px 0 20px 0;
    width: 90%;
    height: fit-content;
    justify-content: space-evenly;
    align-items: flex-start;
    display: flex;
    border-bottom: 1px solid #72768f83;

}

#footer-logo img {
    width: 250px;
}

footer #footer-top>ul {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;

}


footer #footer-top>ul:last-of-type #footer-icons {
    display: flex;
    width: 150px;
    flex-wrap: wrap;
    justify-content: space-evenly;
    gap: 30px;
    margin: 10px 0 0 0;
}

footer #footer-top>ul>#footer-icons>li i {
    cursor: pointer;
    font-size: 20px;
    color: #72768F;

}

footer #footer-top>ul>#footer-icons>li i:hover {
    color: white;
}

footer #footer-top>ul>.hidden-menu li {
    margin: 15px 0;
}



footer #footer-top>ul>li:first-of-type {
    color: white;
}

footer #footer-top>ul>li:first-of-type i {
    display: none;
}

footer #footer-top>ul>.hidden-menu li>a {
    color: #72768F;
    font-size: 14px;
}

footer #footer-top>ul>.hidden-menu li>a:hover {
    color: white;
}



footer #copy-rights {
    margin: 30px 0;
    color: #72768F;
    font-size: 13px;
}



.hidden-menu-popup {
    height: 200px !important;
  
}

/* footer media query start */
@media screen and (max-width:750px) {
    #footer-logo img {
        display: none !important;
    }

    #footer-top {
        flex-direction: column;
        justify-content: flex-start !important;
    }

    #footer-top>ul {
        margin: 20px 0 !important;
    }

    #footer-icons {
        width: fit-content !important;
    }

    footer #footer-top>ul>li:first-of-type i {
        display: block;
    }

    footer #footer-top>ul .hidden-menu {

        overflow: hidden;
        height: 0;
        transition: 0.3s;
    }

    #footer-top>ul>li:first-of-type {
        width: 90vw !important;
        display: flex;
        align-items: center;
        justify-content: space-between;

    }

}

/* footer media query END */
/* footer END */