/*Car loan banner section*/
.car-loan-banner {
    background-image: url("../../Images/Tesla/cover-loan.jpg");
    width: 100%;
    height: 458px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100% 100%;
}

.car-loan-banner-text-1 {
    color: #ffec19;
    font-size: 63px;
    font-family: orbitron-black, serif;
}

.car-loan-banner-text-2 {
    color: #ffffff;
    font-size: 75px;
    font-family: orbitron-black, serif;
}


/* Loan calculator section */
.car-loan-calculator-section {
    background-color: #ebebeb;
}

.car-loan-calculator select, input {
    width: 100%;
    color: #8d8d8d;
    background-color: transparent;
    padding: 10px;
    border: 2px solid #e0e0e0;
    border-radius: 5px;
    font-family: gotham-book;
    margin-bottom: 10px;
}


.car-loan-calculator input::placeholder {
    color: #8d8d8d;
}

.car-loan-calculator input:focus, textarea:focus, select:focus {
    outline: none;
}

.car-loan-calculator label {
    color: #64646f;
    font-size: 20px;
    font-weight: 900;
}

.calculator-btn {
    color: #ffffff;
    background: linear-gradient(to right, #a70004, #cd1217);
    padding: 5px 10px;
}

.amount-display {
    background-color: #0175bc;
    width: 100%;
}

.amount-display h3 {
    color: #ffffff;
    line-height: 0;
    font-family: gotham-book, serif;
}

.amount-display p {
    color: #ffffff;
    font-family: gotham-bold, serif;
}


@media only screen and (max-width: 600px) {
    /*Car loan banner section*/
    .car-loan-banner {
        height: 250px;
    }

    .car-loan-banner-text-1 {
        color: #ffec19;
        font-size: 30px;
        font-family: orbitron-black, serif;
    }

    .car-loan-banner-text-2 {
        color: #ffffff;
        font-size: 40px;
        font-family: orbitron-black, serif;
    }
    .car-loan-calculator label {
        font-size: 15px;
    }
}