@import url('styles.css');

.hero-section{
    background: white;
    padding: 100px 0px;
    position: relative;
    z-index: 1;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1; 
    height: 60vh;
    width: 100%;
    background-image: url('../images/feeCalc-bg.webp');
    background-size: cover; 
    background-repeat: no-repeat; 
    background-position: center;
}

.hero-header h1{
    color: #D4B06B;
    font-size: 2.5rem;
    font-weight: bold;
}

.hero-header h6{
    color: #EAEEEF;
    font-weight: 400;
    font-size: 0.9rem;
}

.calc-container{
    background-color: #F2F3EB;
    border-radius: 20px;
}

.card{
    border: 0.5px solid #003134;
    border-radius: 12px;

    h3{
        font-weight: 600;
        font-size: 1.1rem;
        text-transform: uppercase;
    }

    .input-group-text{
        background: none;
        border: none;
        padding: 0px!important;
        margin-right: 1rem;
        font-weight: 500;
    }

    input{
        border-top-left-radius : .375rem!important;
        border-bottom-left-radius :.375rem!important;
    }

    input:focus{
        border: 1px solid var(--primary-100)!important;
        box-shadow: none!important;
        background-color: var(--primary-5);
    }
}



.table-bordered>:not(caption)>*>* {
    border-width: 0;
}

table{
    border: 1px solid #dee2e6 !important;
    border-radius: 10px;

}




.input-group .input-group-text{
    padding: 10px;
    color: var(--primary-100);
}

th{
    color: var(--dark-grey);
    font-weight: 600!important;
    border: 1px solid #dee2e6;
}

td{
    border: 1px solid #dee2e6;
}

table th,td{
    padding: 25px 10px 25px 10px!important;
}

.amcBox{
    border-right: 1px solid black;
}

.bdr {
    border-radius: 6px;
    overflow: hidden;
  }

  .top-row th{
    color: #58746E!important;
    font-size: 1rem;
}
.input-group:not(.has-validation)>.dropdown-toggle:nth-last-child(n+3), .input-group:not(.has-validation)>.form-floating:not(:last-child)>.form-control, .input-group:not(.has-validation)>.form-floating:not(:last-child)>.form-select, .input-group:not(.has-validation)>:not(:last-child):not(.dropdown-toggle):not(.dropdown-menu):not(.form-floating) {
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
}

.table-group-divider {
    border-top: 1.6px solid #003134;
}

.table-footer-note h6{
    font-weight: 600;
    color: var(--primary-100);
}

.table-footer-note p{
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--medium-gray);
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}

@media only screen and (max-width: 767px) {
    .amcBox{
        border-right: none;
    }
    .calc-container{
        border-radius: 0px;
    }

    .illustration-card{
        border-radius: 10px 0px 0px 10px;
    }

    body{
        overflow-x: hidden;
    }

    .table-container{
        padding : 0;
    }

    .illustration-card{
        margin-right: -1.5rem;
    }

    .illustration-card .card-body{
        
        padding-right: 0!important;
    }


    
}
