@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300&display=swap');
.body{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}
.box{
    padding: 5px;
    border-radius: 5px;
    position: absolute;
    z-index:-999;
    opacity: 0.2;
}
.lg{
    width: 3rem;
    height: 3rem;
}
.md{
    width: 1rem;
    height: 1rem;
}
.sm{
    width: 2rem;
    height:2rem;
}
.green{
    background: rgb(18, 156, 103);
    top: 13rem;
    right: 2rem;
    transform: rotate(50deg);
    
}
.blue{
    background: rgb(6, 46, 179);
    top: 5rem;
    left: 2rem;
    transform: rotate(50deg);

}
.yellow{
    background: rgb(245, 231, 32);
    top: 8rem ;
    left: 8rem ;
    transform: rotate(50deg);
}
.menu__logo{
    width: 3rem;
}
.container{
    margin: 0 1rem 0 1rem;
    
}
.menu__bar{
    width: 100%;
   

}
.content__section{
    
    margin-top: -6rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.header__section h1{
    text-align: center;
    font-size: 1.8rem;
    color:#7db991;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;

}

.search__section{
    display: flex;
}
.search__section input{
    padding: 8px;
    outline: none;
}
.search__icon{
    border: 1px solid #ced4da;
    padding: 4px;
    background-color: #e9ecef;
    border-top-left-radius: 6px;
    border-bottom-left-radius: 6px;
}
.search__icon img{
    transform: scale(0.7);
}
.para__section p{
    font-size: 24px;
    text-align: center;
    line-height: 2rem;
    font-family: 'Poppins', sans-serif;
    color: #2d404cb6;
}
.wallet__section{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.card__section{
    width:13rem;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 0.7rem;
    background: #5a7d9b0c;
    margin-top: 4rem;
    padding: 8px;
    text-decoration: none;
    color: #000;
    border-radius: 10px;
    border:none;
}

.card__section img{
    width: 4rem;
    
}
.text__section h2{
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
    color: #1d2c24cb;
}

.text__section p{
   text-align: left;
   line-height: 25px;
   font-family: 'Poppins', sans-serif;
   color: #2d404cb6;
}
.main___section{
    margin-top: 2rem;
}
.home__section{
    background-color: #e9ecef;
    width: 6rem;
    padding: 10px;
    border-radius: 5px;
    text-decoration: none;
    color: #000;
}
.panel__section{
    width: 13rem;
    background-color: #e9ecef;
    height: 10rem;
    margin-top: 1rem;
    padding: 10px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    align-items: center;
}
.tabcontent input{
  outline:none;
  border:1px solid #ced4da;
  width: 8rem;
  padding: 5px;
  border-radius: 3px;
  margin-bottom: 4px;
}
.tabs button{
    border: none;
    border-bottom: 1px solid #7db991;
}

.tabcontent button{
    background: #7db991;
    border: none;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 5px;
    width: 100%;
    text-align: center;
}
.tabcontent textarea{
    border: none;
    padding: 5px;
}
.tabs__head{
    display: none;
}.footer__section{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 10rem;
    background: #e9ecef;
    clear: both;
}
.keyphrase{
  width: 10rem;
  height: 4rem;
}
@media screen and (min-width:320px) {
    .panel__section{
        width: 20rem;
        height: 16rem;
        padding: 2px;
        margin-bottom: 6rem;
    }
}
@media screen and (min-width:720px){
    .container{
        margin: 5rem;
    }
    .wallet__section{
       display: grid;
       grid-template-columns: repeat(2,1fr);
       width: 100%;
       margin: 5rem auto;
       
    }
    .card__section{
        width: 25rem;
    }
    .content__section{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .header__section h1{
        width: 40rem;
        text-align: center;
        font-size: 60px;
    }
   
    .para__section p{
        margin-top: 1rem;
        width: 30rem;
        font-size: 20px;
    }
    .search__section input{
        width: 30rem ;
    }
    .search__section input{
        border: none;
        outline: none;
        background-color: #e9ecef;
    }
    .footer__section{
       flex-direction: row;
        padding: 15px;
        border-radius: 1rem;
        display: flex;
        justify-content: space-between;
    }
    .logo__section{
        width: 3rem;
        height: 3rem;
        background-color: #ced4da;
        border-radius: 4px;
    }
    .logo__section img{
        transform: scale(0.5);
    }
    .green{
        
        top: 20rem;
        left:25rem;
        transform: rotate(50deg);
        
    }
    .blue{
        top: 9rem;
        left: 28rem;
        transform: rotate(50deg);
    
    }
    .yellow{
        top: 18rem ;
        left: 48rem ;
        transform: rotate(50deg);
    }
    .lg{
        width: 4rem;
        height: 4rem;
    }
    .md{
        width: 4rem;
        height: 4rem;
    }
    .sm{
        width: 3rem;
        height:3rem;
    }
    .main___section{
        margin: 0 auto;
        margin-bottom: 2rem;
    }
    .panel__section{
        width: 50%;
        margin: 0 auto;
        justify-content: flex-start;
        align-items: flex-start;
        margin-top: 5rem;
    }
    .home__section{
        position: relative;
        left: 17rem;
        top: 3rem;
    }
    .tabs button{
        padding: 5px;
    }
    .tabcontent input{
        width: 35em;
        padding: 1rem;
    }
    .keyphrase{
        width: 30rem;
        height: 6rem;
      }
      
}