﻿main .calculator__row{
    display:grid;
    grid-template-columns: calc(60% - 60px) 40%;
    gap:60px;
}
main .calculator__row .main__title{
    font-size:28px;
    font-weight:600;
    margin-bottom:32px;
}
.calculator-inp-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-direction: column;
    margin-bottom: 32px;
    position: relative;
}
.calculator-inp-wrap > div{
    display: flex;
    justify-content: space-between;
}
.calculator-inp-label {
    color: #000;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    pointer-events: none;
    width: 60%;
}
.num-inp-wrap {
    border: 1px solid #e3e1e1;
    border-radius: 3px;
    display: inline-flex;
    gap: 5px;
    padding: 5px 8px;
    text-align: right;
}
.input-prefix {
    color: #333;
    font-family: Titillium Web;
    font-weight: 700;
}
#loan-amt-inp {
    width: 95px;
}
.calculator-num-inp {
    border: none;
    color: #555;
    font-size: 16px;
    font-weight: 700;
    line-height: 15px;
    outline: none;
    text-align: left;
}
.range-input {
    -webkit-appearance: none;
    background: #ddd;
    border-radius: 5px;
    cursor: pointer;
    height: 7px;
    margin-top: 15px;
    outline: none;
    width: 100%;
    z-index: 1;
    background: linear-gradient(to right, rgb(0, 75, 142) 0%, rgb(0, 75, 142) 56.4516%, rgb(242, 242, 240) 56.4516%, rgb(242, 242, 240) 100%);
}
input[type='range']::-webkit-slider-runnable-track {
    height: 20px;
    -webkit-appearance: none;
    color: #13bba4;
    margin-top: -1px;
}

input[type='range']::-webkit-slider-thumb {
    width: 20px;
    -webkit-appearance: none;
    height: 20px;
    cursor: ew-resize;
    background: #fff;
    border-radius:20px;
    border:2px solid #05379a;
    box-shadow:0 6px 16px rgba(0,0,0,0.12);
}
.min-max-wrap{
    display:flex;
    align-items:center;
    justify-content:space-between;
    margin-top:10px;
}
.max-inp-amt, .min-inp-amt {
    color: gray;
    font-size: 14px;
    font-weight: 400;
    line-height: 24px;
}

.banking__partners{
    display:flex;
    align-items:center;
    justify-content:space-between;
}
.banking__partners img{
    width:100px;
}

.home__loan__form__row {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 30px;
    background: #f6fafe;
    border-radius: 22px;
    padding: 45px 60px 70px;
}
.home__loan__form__row .content{
    overflow:hidden
}
#bank__partners__slider{
    margin-top:20px;
}
#bank__partners__slider .bank__slide{
    display:flex;
    align-items:center;
    flex-direction:column;
    gap:4px;
}
#bank__partners__slider p.bank__name{
    font-weight:500;
    font-size:12px;
    text-align:center;
}
#bank__partners__slider.owl-carousel .owl-dots{
    display:block;
}
.home__loan__form__row .content h3 {
    font-size: 28px;
    line-height: 1.4;
    margin-bottom: 20px;
}
.home__loan__form__row .content li{
    font-size:14px;
    padding-bottom:12px;
    line-height:24px;
    position:relative;
    display:flex;
    align-items:flex-start;
    gap:8px;
}
.home__loan__form__row .content li svg{
    margin-top:6px;
}
.home__loan__form__row .form__row{
    background:#fff;
    padding:20px;
    height:max-content;
}
.home__loan__form__row .form__row .title{
    font-size:20px;
    margin-bottom:24px;
}

.home__loan__form__row .form__row form .form-group{
    margin-bottom:20px;
}
.home__loan__form__row .form__row form input{
    border-radius: 8px;
    border: 1px solid #e9eef2;
    background: #fafbfd;
    padding: 8px 16px;
    box-shadow: none;
    resize: none;
    width:100%;
    font-size:14px;
}
.home__loan__form__row .form__row form .err{
    font-size:10px;
    padding-top:4px;
}
.home__loan__form__row .form__row form input::placeholder{
    font-size:12px;
}
.home__loan__form__row .form__row form button{
    margin-top:12px;
    display:flex;
    align-items:center;
    justify-content:center;
    max-width:max-content;
    padding-inline:32px;
    height:40px;
    background:#05379a;
    color:#fff;
    font-weight:600;
    border-radius:6px;
    cursor:pointer;
}

@media (max-width:800px){
    .home__loan__form__row{
        padding:30px 20px;
    }
}