*{
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}

.t-and-p{
    width: 100%;
    height: auto;
    padding: 40px;
    background-image: url('bg.png');
    background-size: cover;
    background-repeat: no-repeat;
    
    background-position: right bottom;
    z-index: 1;
}
.t-and-p-sub{
    width: 100%;
    height: 100%;
    background: none;
}
.t-and-p-text{
    width: 100%;
    text-align: center;
    justify-content: center;
    align-items: center;
    font-size: 50px;
    font-weight: bold;
    text-transform: uppercase;
}
.t-1{
    padding: 7px;
    padding-left: 30px;
    padding-right: 0%;
    padding-top: 0%;
    margin: 0px;
    background-color: #3B4EF8;
    border: none;
    border-top-left-radius: 50px;
}
.t-2{
    padding: 5px;
    border-radius: 0%;
    background: white;
    border-bottom: 2px solid #3B4EF8;
}
.t-and-p-ptag{
    width: 80%;
    padding: 15px;
    text-align: center;
    font-size: 26px;
    margin: auto;
    margin-top: 25px;
}

.t-and-p-cards{
    width: 90%;
    padding: 10px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
}
.t-p-card{
    width: 28%;
    height: auto;
    background: #f5f5f5;
    border: none;
    border-radius: 10px;
    padding: 20px 0px 0px 20px;
    box-shadow: 0px 0px 10px #b4b4b4;
}
.t-p-arrow-icon{
    border: none;
    background: none;
    font-size: 20px;
}
.t-p-card-text{
    text-align: start;
    margin-top: 5px;
    font-size: 27px;
    text-transform: capitalize;
    
}
.t-p-token-div{
    width: 100%;
    height: 90px;
    display: flex;
    align-items: end;
    justify-content: end;
    margin-top: -15px;
}
.t-p-card-token{
    width: 200px;
    height: 100%;
    background-color: #f64a60;
    display: flex;
    padding: 0px 32px;
    text-align: center;
    text-transform: capitalize;
    justify-content: space-between;
    
}
.t-p-inside{
    width: 100%;
    justify-content: space-between;
}
.t-p-v-simple-text{
    text-align: center;
    height: 100%;
    margin-top: -10px;
}
.t-p-vertical-text{
    width: 90px;
    height: 20px;
    transform: rotate(90deg);
  transform-origin: left top;
  white-space: nowrap;
  letter-spacing: 4px;
  font-weight: bold;
  font-size: 18px;
  padding: 1px;
  padding-left: 3px;
  border-bottom: 1px solid black;
  border-top: 1px solid black;
}
.t-p-vertical-text2{
    width: 90px;
    height: 20px;
    transform: rotate(90deg);
  transform-origin: left top;
  white-space: nowrap;
  letter-spacing: 4px;
  font-weight: bold;
  font-size: 18px;
  padding: 1px;
  padding-left: 3px;
  border-bottom: 1px solid black;
  border-top: 1px solid black;
  position: relative;
  left: 115%;
  bottom: 110%;
}
.t-green{
    background-color: #64c188;
}
.t-purple{
    background-color: #d796ec;
}


@media (max-width: 768px){
    .t-and-p-text{
        width: 100%;
        font-size: 25px;
    }
    .t-and-p-ptag{
        width: 100%;
        font-size: 20px;
        font-weight: 600;
    }
    .t-and-p-cards{
        width: 98%;
        display: grid;
        grid-template-columns: repeat(2, 1fr); /* 2 columns */
        gap: 10px; /* gap between items */
        padding: 10px;
        margin-top: 1px;
    }
    .t-p-card{
        width: 100%;
        height: auto;
        margin-top: 15px;
    }
}

@media (max-width: 500px){
    .t-and-p-text{
        width: 100%;
        font-size: 25px;
    }
    .t-and-p-ptag{
        width: 100%;
        font-size: 20px;
        font-weight: 600;
    }
    .t-and-p-cards{
        width: 98%;
        display: block;
        margin-top: 1px;
    }
    .t-p-card{
        width: 100%;
        height: auto;
        margin-top: 15px;
    }
}
