*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}
a{
    text-decoration: none;
}
/* Style the navigation menu */
topnav{ 
    overflow: hidden;
    position: relative;  
    background-color: #673de6;
    color: #fff;
    padding: 10px;
    text-decoration: none;
    width: 100%;
    display: flex;
    justify-content: space-evenly;
    gap: 10px;
    align-items: center;
}
topnav h1{
    font-size: 1.5rem;
}
topnav img{
    width: 45px;
    height: 45px;
}
@media only screen and (max-width: 980px){
    .active h1{
        font-size: 1.2rem;
    }
    .telegram{
        width: 5rem;
    }
}
/* styling the nav */
nav ul{
    display: flex;
    justify-content: center;
    align-items: center;
    list-style: none;
    margin-top: 0%;
    background-color: #673de6;
    overflow: hidden;
}
nav ul a{
    padding: 0 0;
    margin: .2%;
    cursor: pointer;
    background-color: transparent;
    border: transparent;
    color: #fff;
}
nav ul button{
    background-color: transparent;
    border: transparent;
    color: #fff;
}
nav ul button:hover{
    background-color: transparent;
}
nav ul li{
    margin: 5px;
    font-weight: bold;
    font-size: .65rem;
    padding: 1px;
}
.active2{
    color: #f2ff00;
}
#active2{
    /* color: #f2ff00 !important; */
    background-color: #875fff;
}
#icon{
    padding: 2px;
}
/* styling the hamburger */

/* hamburger container */

.hamburger{
display:flex;
align-items:center;
gap:8px;
cursor:pointer;
}

/* icon */

.hamburger-icon{
width:26px;
}

.hamburger-icon span{
display:block;
height:3px;
width:100%;
background:#fff;
margin:5px 0;
transition:0.3s;
}

/* transform to X */

.hamburger.active .hamburger-icon span:nth-child(1){
transform:rotate(45deg) translate(5px,5px);
}

.hamburger.active .hamburger-icon span:nth-child(2){
opacity:0;
}

.hamburger.active .hamburger-icon span:nth-child(3){
transform:rotate(-45deg) translate(6px,-6px);
}

/* menu */

.mobile-menu{
display:none;
width:100%;
background:#875fff;
text-align:center;
}

.mobile-menu a{
display:block;
padding:16px;
color:white;
text-decoration:none;
font-size:18px;
border-bottom:1px solid rgba(255,255,255,0.2);
}

.mobile-menu a:hover{
background:rgba(255,255,255,0.1);
}
/* styling the header */
.header {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #e0ffdf;
    margin: 4px;
    border-radius: 10px;
}
.header h2{
    font-size: .6rem;
    padding: 4px;
    font-weight: 500;
}
/* styling the app selector btn */
.selector{
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: center;
    margin-top: 1%;
    cursor: pointer;
    margin-bottom: 15px;
}
.selector a{
    width: 100vw;
    border: 2px solid #875fff;
    padding: .9rem;
    margin: 1%;
    border-radius: 7px;
}
.selector a button{
    background-color: transparent;
    border: transparent;
    font-weight: bold;
    font-size: 1rem;
}
.active3{
    background: linear-gradient(121.19deg, rgba(133, 239, 49, 0) 25.73%, hsla(0, 0%, 100%, .37) 45.27%, rgba(133, 239, 49, 0) 62.27%), #875fff !important;
}
#active3{
    color: #fff;
}
/* styling app cards */
.cards{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 2%;
    padding: 1.5% 1.5%;
    border: 1px solid #bbb;
    border-radius: 10px;
    overflow: hidden;
}
.cards .element1{
    display: flex;
    flex-direction: row;
    width: 100%;
    height: 100%;
}
.cards .element2 h2{
    font-size: 1.2rem;
    margin-left: 5%;
    width: 100%;
}
.cards .element1 img{
    max-height: 65px;
    max-width: 65px;
    border-radius: 10px;
}
.cards .element2{
    padding: 1%;
}
.cards .element2 p{
    color: darkred;
    font-weight: 500;
    font-size: .75rem;
    margin-top: 5%;
    margin-left: 5%;
    width: 100%;
}
.cards .element3{
    margin-right: 8%;
}
.cards .element3 a button{
    border: 2px solid #000;
    border-radius: 5px;
    background-color: #875fff;
    box-shadow: rgba(45, 35, 66, .4) 0 2px 4px, rgba(45, 35, 66, .3) 0 7px 13px -3px, rgba(58, 65, 111, .5) 0 -3px 0 inset;
    color: #fff;
    padding: 10%;
    cursor: pointer;
    font-size: .9rem;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 4px;
    font-weight: bolder;
    width: max-content;
}
#bank-icon{
    color: green;
}
.cards .element1 h4{
    color: #808080;
    font-weight: 400;
}
/* styling info  */
.info {
    margin-top: 7%;
    margin-bottom: 7%;
    margin-left: 2%;
    margin-right: 2%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}
/* styling notice */
.notice{
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-direction: column;
    border: 2px solid red;
    background-color: #fff7f7;
    margin: 3%;
    border-radius: 3px;
    padding: 3% 3%;
    line-gap-override: 8px;
}
.notice h2{
    font-size: 1rem;
    text-decoration: underline;
    text-underline-offset: 2px;
}
.notice p{
    margin-top: 2%;
    font-size: .7rem;
}
/* fixed icon */
.fixed-icon{
    position: fixed;
    top: 50%;
    left: 94%;
}
.fixed-icon img{
    height: 50px;
}
/* footer */
.footer-menu{
    margin-top: 3%;
    padding: 3%;
    background-color: #673de6;
    color: #fff;
}
.footer-menu ul{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}
.footer-menu ul li{
    list-style: none;
    text-decoration: underline;
    font-weight: bold;
    padding: 1%;
}
.footer-menu ul li a{
    color: #fff;
}
.footer-menu h2{
    margin-top: 3%;
    align-items: center;
    justify-content: center;
    display: flex;
    flex-direction: column;
    color: #fff;
}
.footer-menu h2 a{
    text-decoration: underline;
    color: #fff;
    font-size: .9rem;
    margin-top: 1%;
}
.footer-menu p{
    font-size: .8rem;
    font-weight: bold;
    display: flex;
    justify-content: center;
    color: #ccc;
    margin-top: 3%;
}
@media only screen and (max-width: 668px){
/* fixed icon */
.fixed-icon{
    left: 75%;
}
/* styling app cards */
.cards .element1{
    display: flex;
    flex-direction: row;
    width: 100%;
}
.cards .element2 h2{
    font-size: 1.1rem;
}
.cards .element1 h4{
    padding-top: 7%;
}
.cards .element1 img{
    width: 75px;
    height: 75px;
}
topnav a.icon {
    padding-right: 5px;
} 

}

@keyframes button-shine {
0% {
background-position: -5000px 0;
}
100% {
    background-position: 5000px 0;
}
}