@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;700;900&family=Open+Sans:wght@300;400;500;600;700;800&display=swap');

body{
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    color: #212121;
    font-weight: 500;
    background-color: #f5f5f5;
}
a{
    color: #212121;
    font-weight: 500;
    text-decoration: none;
}
.btn{
    border-radius: 12px;
    position: relative;
}
.btn-success{
    background-color: #85df7f;
    border-color: #85df7f;
}
.cgreen{
    color: #85df7f;
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    /* display: none; <- Crashes Chrome on hover */
    -webkit-appearance: none;
    margin: 0; /* <-- Apparently some margin are still there even though it's hidden */
}

input[type=number] {
    -moz-appearance:textfield; /* Firefox */
}
.text-left{
    text-align: left;
}
.text-right{
    text-align: right;
}



/*
** Navigation
*/
.navigation{
    width: 100%;
    position: fixed;
    top: 0;
    background-color: #ffffff;
    box-shadow: 0 .125rem .25rem rgba(0,0,0,.075);
    z-index: 99;
}
.navbar-brand {
    width: 200px;
}
.navbar-brand img {
    height: 50px;
}
.navbar-expand-lg .navbar-nav .nav-link {
    padding-right: 15px!important;
    padding-left: 15px!important;
    font-size: 15px;
    font-weight: 500;
    color: #212121;
}
.navbar-expand-lg .navbar-nav .nav-link:hover {
    color: #85df7f;
}
.nav-actions{
    display: flex;
    align-items: center;
}
.nav-actions a{
    margin-left: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    height: 40px;
}
.nav-actions i{
    font-size: 18px;
    margin-right: 10px;
}

/*
** Main banner
*/
.main-banners{
    margin-top: 95px;
}
.main-banner{
    width: 100%;
    height: 500px;
    background: linear-gradient(rgba(14, 62, 116, 0.7), rgba(14, 62, 116, 0.7)), url("/assets/images/banner.webp") no-repeat center / cover;
    box-shadow: 0 .125rem .25rem rgba(0,0,0,.075);
    border-radius: 12px;
    position: relative;
    color: #fff;
    padding: 10px 30px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-evenly;
}
.banner-decor{
    width: 80%;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    z-index: 0;
    opacity: 0.2;
    user-select: none;
}
.main-banner h1{
    font-size: 42px;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 0;
    position: relative;
    z-index: 1;
}
.main-banner h4{
    margin-bottom: 0;
    position: relative;
    z-index: 1;
}
.main-banner a{
    margin-bottom: 0;
    position: relative;
    z-index: 1;
}
.btn-viber-whatsapp{
    position: absolute;
    bottom: -16px;
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
    line-height: 1;
    font-size: 12px;
}
.main-slider{
    width: 100%;
    height: 400px;
    border-radius: 12px;
    position: relative;
    color: #fff;
}
.main-slider img{
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 .125rem .25rem rgba(0,0,0,.075);
}
.owl-stage-outer{
    border-radius: 12px;
}
.owl-dots{
    display: none;
}
.main-slider-item{
    border-radius: 12px;
    position: relative;
}
.main-slider-item-title{
    width: 100%;
    text-align: center;
    color: #fff;
    font-size: 12px;
    position: absolute;
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
    bottom: 10px;
}
.main-slider-controls{
    width: 90%;
    height: 50px;
    background-color: rgba(3, 32, 98, 0.8);
    border-radius: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    position: absolute;
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
    bottom: 10px;
    z-index: 2;
    color: #FFFFFF;
}
.main-slider-controls .owl-cprev{
    cursor: pointer;
    user-select: none;
    width: 20px;
}
.main-slider-controls .owl-cnext{
    cursor: pointer;
    user-select: none;
    width: 20px;
}




/*
** Calculator
*/
.calculator{
    margin-top: 35px;
}
.calculator-buttons{
    width: 100%;
    height: 350px;
    background-color: #FFFFFF;
    box-shadow: 0 .125rem .25rem rgba(0,0,0,.075);
    padding: 0;
    border-radius: 12px;
}
.calculator-filter{
    display: flex;
    align-items: center;
    justify-content: space-between;
    overflow: hidden;
    border-top-right-radius: 12px;
    border-top-left-radius: 12px;
    background-color: #ebebeb;
}
.calculator-filter .calculator-filter-item{
    width: 100%;
    padding: 15px;
    background-color: #ebebeb;
    padding-left: 40px;
    cursor: default;
    user-select: none;
}
.calculator-filter .calculator-filter-item:hover{
    background-color: #ccc;
}
.calculator-filter-active{
    background-color: #FFFFFF!important;
}
.calculator-inputs{
    padding: 25px 50px;
    display: none;
    flex-direction: column;
    justify-content: space-between;
    height: 300px;
}
.calculator-input{
    display: flex;
    flex-direction: column;
}
#calculatorSuma{
    width: 100%;
}
#calculatorTerm{
    width: 100%;
}
.calculator-input label{
    margin-bottom: 5px;
    font-size: 16px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    position: relative;
}
.calculator-input label input{
    width: 75px;
    border: none;
    border-bottom: 1px solid #9c9c9c;
    text-align: right;
    font-size: 16px;
    outline: none;
    padding-right: 18px;
    font-weight: 500;
}
#calculatorTermValue{
    padding-right: 35px;
}
.calculator-input label span{
    position: absolute;
    top: 1px;
    right: 0;
    font-weight: 500;
}
.calculator-input-limits{
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 12px;
}
#preferat{
    display: flex;
}
.pr36px{
    padding-right: 36px!important;
}


.calculator-result{
    width: 100%;
    height: 350px;
    background-color: #FFFFFF;
    box-shadow: 0 .125rem .25rem rgba(0,0,0,.075);
    padding: 20px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.calculator-result-item{
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 16px;
    line-height: 1;
    margin-bottom: 5px;
}
.calculator-result-item span{
    font-size: 21px;
    color: #212121;
}
.calculator-result a span{
    color: #212121;
}
.calculator-result-total{
    background-color: #ebebeb;
    padding: 10px 15px;
    text-align: center;
    width: 100%;
    border-radius: 10px;
    font-size: 14px;
    margin-bottom: 0;
}
.calculator-result-total span{
    font-size: 24px;
    font-weight: 700;
}
.calculator-grafic{
    width: 100%;
    text-align: center;
    color: #85df7f!important;
}
.calculator-grafic span{
    border-bottom: 1px solid #85df7f;
    color: #85df7f!important;
}
.calculator-result-phone{
    margin-bottom: 15px;
}

/*
**
*/
.irs--round .irs-from, .irs--round .irs-to, .irs--round .irs-single {
    background-color: #85df7f;
}
.irs--round .irs-bar {
    background-color: #85df7f;
}
.irs--round .irs-handle {
    top: 26px;
    width: 24px;
    height: 24px;
    border: 4px solid #85df7f;
    background-color: white;
    border-radius: 24px;
    box-shadow: 0 1px 3px rgba(93, 190, 25, 0.2);
}
.irs--round .irs-from:before, .irs--round .irs-to:before, .irs--round .irs-single:before {
    position: absolute;
    display: block;
    content: "";
    bottom: -6px;
    left: 50%;
    width: 0;
    height: 0;
    margin-left: -3px;
    overflow: hidden;
    border: 3px solid transparent;
    border-top-color: #85df7f;
}



/*
** About
*/
.about{
    margin-top: 70px;
}
.about-img {
    border-radius: 12px;
}
/*
** Why we
*/
.why-we{
    margin-top: 70px;
}
.whe-we-block{
    background-color: #0e3e74;
    padding: 50px;
    border-radius: 12px;
    color: #fff;
}
.ww-items{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.ww-item{
    width: 31%;
}
.ww-item p{
    padding-left: 50px;
    margin-bottom: 0;
}
.whe-we-block h3{
    text-align: center;
}
.whe-we-block h5 {
    padding-left: 50px;
    position: relative;
    margin-bottom: 15px;
    margin-top: 30px;
    text-transform: uppercase;
}
.whe-we-block h5 img{
    position: absolute;
    left: 0;
    top: -4px;
}


/*
** Regulaments
*/
.regulaments{
    margin-top: 70px;
}
.regulaments h4{
    margin-top: 30px;
}
.doc-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}
.doc{
    height: 100px;
    box-shadow: 0 .125rem .25rem rgba(0,0,0,.075);
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    border-radius: 12px;
    padding: 30px;
    font-size: 18px;
    line-height: 1;
    position: relative;
}
.doc:hover{
    background-color: #ccc;
    transition: 0.3s;
}
.doc img{
    margin-right: 50px;
}
/*
** Contacts
*/
.contacts{
    margin-top: 70px;
    margin-bottom: 50px;
}
.contacts-block{
    width: 100%;
    height: 350px;
    background-color: #0e3e74;
    color: #fff;
    border-radius: 12px;
    box-shadow: 0 .125rem .25rem rgba(0,0,0,.075);
    padding: 25px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.contacts-block a{
    width: 100%;
    margin-top: 15px;
    font-size: 18px;
    color: #fff;
    text-decoration: none;
    display: flex;
    align-items: center;
    line-height: 1;
}
.contacts-block a i{
    font-size: 27px;
    margin-right: 15px;
}
.contacts-block .btn{
    justify-content: center;
    margin-top: 0;
    margin-bottom: 0;
}
.contacts-block h3{
    text-align: center;
}
#map{
    width: 100%;
    height: 350px;
    background-color: #ebebeb;
    border-radius: 12px;
    box-shadow: 0 .125rem .25rem rgba(0,0,0,.075);
}


.footer{
    width: 100%;
    padding: 20px 0;
    background-color: #000D2C;
    color: #fff;
}
.footer a{
    color: #fff;
    text-decoration: none;
}
.footer-copyrights{
    text-align: left;
}
.footer-dev{
    text-align: right;
}
#daeResult{
    font-size: 32px;
    font-weight: 700;
}

.example{
    margin-top: 70px;
    margin-bottom: 60px;
}
.example h6{
    font-weight: 700;
    margin-bottom: 0;
    margin-top: 15px;
}
.example h5{
    font-weight: 700;
    margin-bottom: 0;
    margin-top: 15px;
}
.example p{
    margin-bottom: 0;
}
.fcredit-card{
    background-color: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 .125rem .25rem rgba(0,0,0,.075);
}