@media screen and (max-width: 800px){
    .calculator-section{
        background-color: #10012C;
        width: 100%;
        height: auto;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        flex-wrap: wrap;
        align-content: center;
        align-items: center;
        padding-block: 70px;
        padding-inline: 20px;
        gap: 70px;
    }
    
    .calculator-left{
        width: 100%;
        height: auto;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        padding: 20px;
        border: 1px solid white;
        border-radius: 33px;
        box-shadow: 0px 3px 15px rgba(255, 255, 255, 0.241);
        gap: 20px;
    }
    
    .calculator-left:hover{
        width: 100%;
        height: auto;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        padding: 20px;
        border: 1px solid #FFA01B;
        border-radius: 33px;
        box-shadow: 0px 3px 15px #ffa01b4d;
    }

    .calculator-right{
        width: 100%;
        height: auto;
        pad: 20px;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        gap: 20px;
    }
}


@media screen and (max-width: 600px){
    .calculator-left h1{
        font-size: 1.3rem;
    }
    .calculator-left h2{
        font-size: 1.2rem;
    }

    .white-box h2{
        font-size: 1rem;
    }
}

@media screen and (max-width: 400px){
    .white-box h2{
        font-size: 0.9rem;
    }
}


