.title-section_Calculator {
    text-align: center;
    color: var(--text-color-313A48);
    margin-top: 40px;
    font-size: clamp(1.5rem, 2vw + 1rem, 1.875rem);
}

.title-section_Calculator span {
    position: relative;
}

/* .title-section_Calculator span::after {
     content: "";
     background-image: url("/new/assets/Images/texture/topview.png");
     background-position: center;
     background-repeat: no-repeat;
     background-size: cover;
     width: 70px;
     height: 40px;
     position: absolute;
     left: -25px;
     top: -5px;
     z-index: -1;
     transform: rotate(15deg);
 } */

.calculator_container {
    border: 1px solid #E9EAEA;
    padding: 40px 20px;
    border-radius: 0 20px 0 0;
    margin-bottom: 50px;
}

.input_calculator {
    width: 100%;
    border: 1px solid #C4C6CA;
    font-size: 14px;
    padding: 10px;
    border-radius: 0 15px 0 0;
}

.text-dark {
    color: #313A48 !important;
}

.button-Calculator {
    background-color: var(--bg-color-main-5597CD);
    color: var(--text-color-white);
    font-size: 14px;
    padding: 20px 10px;
    border-radius: 0 20px 0 0;
    text-align: center !important;
    cursor: pointer;
    border: none;
    display: flex;
    justify-content: center;
}

.result-calculator_container {
    position: static;
    top: 0;
    left: 0;
    background: linear-gradient(#E5F3FF 10%, #FFFFFF 90%);
    padding: 30px;
    border-radius: 0 30px 0 0;
    box-shadow: 0 0 10px #0000003c;
}

@media (min-width: 992px) {
    .calculator_container {
        margin-bottom: 350px;
        padding: 40px;
    }

    .result-calculator_container {
        box-shadow: 0 0 20px #0000003c;
    }
}