




body{
    background-image: url("../images/calc/calc2.jpg");
    width: 100%;
    height: 100%;
    background-size: cover;
}




.calculator-sec{
    padding-block: 0px 250px;
}


.calculator-head{
    display: flex;
    align-items: center;
    flex-direction: column;
    padding-inline: 130px;
    padding-bottom: 31px;
}


.calculator-head h4{
    font-size: 25px;
    color: var(--text-color);
    font-family: 'kalame_bold';
    padding-bottom: 10px;
    margin-bottom: 0;
    text-align: center;
}

.calculator-head p{
    font-size: 15px;
    color: var(--text-color);
    text-align: center;
}


.col-calc-info{
    background-color: var(--primary-color);

    border-radius: 15px;

    position: relative;
    padding: 2.5rem 4rem;
    padding-bottom: 10rem;
}


.extra-calc{
    position: absolute;
    width: 240px;
    height: 223px;
    right: -79px;
    bottom: -41px;
}

.extra-calc img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}


.calc-info{
    display: flex;
    flex-direction: column;
}


.calc-info h5{
    font-size: 22px;
    color: #fff;
    font-family: 'kalame_bold';
    padding-bottom: 1.3rem;
    margin-bottom: 0;
}


.calc-info p{
    font-size: 15px;
    color: #fff;
    text-align: justify;
    margin-bottom: 3rem;
}


.calc-btn{
    align-self: flex-end;
    width: 80%;
    background-color: var(--secondary-color);
    padding: 10px 15px;
    color: var(--text-color);
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'kalame_bold';
}


.cal-box{
    border: 1px solid #E7E7E7;
    border-radius: 20px;
    padding: 30px 40px;
    position: relative;
}

.calc-head{
    padding-bottom: 10px;
}

.calc-head h5{
    font-size: 22px;
    color: var(--text-color);
    font-family: 'kalame_bold';
    padding-bottom: 10px;
    margin-bottom: 0;
}

.calc-head p{
    font-size: 15px;
}

.calc-input{
    margin-bottom: 30px;
}


.calc-input input{
    width: 100%;
    background-color: #fff;
    border-radius: 25px;
    padding: 10px 15px;
    border: unset;
}

.calc-item-box span{
    font-size: 15px;
    font-family: 'kalame_bold';
    margin-bottom: 3px;
}

.label-span{
    width: 100%;
}

.label-span span{
    font-size: 15px;
    font-family: 'kalame_bold';
    margin-bottom: 3px;
}


.radio-calc{
    display: flex;
    align-items: center;
    /*justify-content: space-between;*/
    gap: 0.4rem;
}

.radio-calc h6{
    font-family: 'kalame_bold';
    font-size: 16px;
    color: var(--text-color);
}

.all-levels{
    width: 100%;
    display: flex;
    gap: 6px;
}

.my-inputs{
    display: flex;
    flex-wrap: wrap;
    gap: .7rem;
}

.each-radio{
    border: 2px solid #fff;
    border-radius: 25px;
    padding: 5px 17px;
    width: max-content;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-right: 24px;
    position: relative;
    user-select: none;
    cursor: pointer;
}

.each-radio label{
    font-family: 'kalame_bold';
    font-size: 14px;
    color: var(--text-color);
    cursor: pointer;
}

.checkmark {
    --border-default: #bbbbc1;
    --border-hover: #9898a3;
    --active: #ff8c5c;
    --active-tick: #fff;
    position: absolute;
    top: 0;
    right: 0;
    height: 23px;
    width: 23px;
    /* background-color: #eee; */
    border-radius: 4px;
    -webkit-tap-highlight-color: transparent;
    transition: all .5s;
    /*border: 2px solid #ff8c5c;*/
}

.radio-calc .each-radio input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.each-radio .checkmark svg:nth-child(1) {
    opacity: 0;
}

.each-radio input[type="radio"]:checked + .checkmark svg:nth-child(1) {
    opacity: 1;
}

.each-radio input[type="radio"]:checked + .checkmark svg:nth-child(1) {
    opacity: 1;
}

.each-radio:has(input[type="radio"]:checked) {
    border-color: var(--primary-color);
}


.radio-calc{
    margin-bottom: 40px;
    flex-wrap: wrap;
}


.calc-button{
    background-color: var(--primary-color);
    width: 100%;
    color: #fff;
    font-family: 'kalame_bold';
    font-size: 16px;
    border: unset;
    border-radius: 27px;
    padding: 10px 20px;
    text-align: center;
}


.calculator-btn{
    background-color: var(--secondary-color);
    width: 300px;
    color: #fff;
    font-size: 16px;
    border: unset;
    border-radius: 27px;
    padding: 7px 20px;
    position: absolute;
    bottom: -25px;
}

.calculator-box{
    display: flex;
    align-items: center;
    justify-content: center;
    padding-bottom: 40px;
}


.backward-calc{
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 21px;
    color: var(--primary-color);
    cursor: pointer;
}


/*responsive*/
/*responsive*/
/*responsive*/
/*responsive*/


@media screen and (max-width: 1399px){

}


@media screen and (max-width: 1199px){

}


@media screen and (max-width: 991px){

    .calculator-head {
        padding-inline: 20px;
        padding-bottom: 20px;
    }

    .calculator-sec {
        padding-block: 50px 120px;
    }

    .col-calc-info {
        padding-bottom: 100px;
    }

    .extra-calc {
        width: 183px;
        height: 153px;
        right: -51px;
        bottom: -21px;
    }

    .calc-btn {
        width: 79%;
        padding: 8px 15px;
    }

    .calc-row{
        gap: 20px;
    }

    .calc-info h5 {
        font-size: 18px;
        padding-bottom: 6px;
    }

    .calc-head h5 {
        font-size: 18px;
        padding-bottom: 6px;
    }

}


@media screen and (max-width: 767px){

    .cal-box {
        padding: 25px 25px;
    }

}


@media screen and (max-width: 575px){

    .calc-btn {
        width: 68%;
        padding: 6px 15px;
        font-size: 14px;
    }

    .col-calc-info {
        border-radius: 0;
        padding: 1.9rem 1.3rem;
    }

    .calculator-head h4 {
        font-size: 20px;
        padding-bottom: 5px;
    }

    .radio-calc {
        margin-bottom: 20px;
    }

    .calc-input {
        margin-bottom: 20px;
    }

    .calc-head p {
        margin-bottom: 1px;
    }

    .calculator-box {
        padding-bottom: 20px;
    }

    .cal-box {
        padding: 20px 20px;
    }

    .radio-calc {
        flex-direction: column;
        gap: 13px;
        align-items: flex-start;
    }

    .calc-button {
        font-size: 15px;
        padding: 6px 18px;
    }

    .calculator-sec {
        padding-block: 15px 94px;
    }

    .radio-calc .each-radio {
        width: 100%;
    }

}


@media screen and (max-width: 425px){

}


@media screen and (max-width: 375px){

}


@media screen and (max-width: 320px){

}



/*responsive*/
/*responsive*/
/*responsive*/


