html {
    scroll-behavior: smooth;
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    height: 100%;
}

body {
    background: #fff;
    color: #444;
    font-family: "Open Sans", sans-serif;
    height: 100%;
}

a {
    color: rgb(9, 194, 80);
    transition: 0.5s;
}

a:hover, a:active, a:focus {
    color: #444;
    outline: none;
    text-decoration: none;
}

p {
    padding: 0;
    margin: 0 0 30px 0;
}

h1, h2, h3, h4, h5, h6 {
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
    margin: 0 0 20px 0;
    padding: 0;
}

.padding_zero{
    padding:0;
}

h1{
    font-size: 50px;
    text-transform: uppercase;
    line-height: 1.1;
    color:#fffff;
}

img {
    max-width: 100%;
}

.container__content {
    max-width: 1600px;
}

.container__full {
    max-width: 1600px;
}

/* Back to top button */
.back-to-top {
    position: fixed;
    display: none;
    background: #2c522c;
    color: #fff;
    padding: 6px 12px 9px 12px;
    font-size: 16px;
    border-radius: 2px;
    right: 15px;
    bottom: 15px;
    transition: background 0.5s;
    z-index: 888;
}

@media (max-width: 768px) {
    .back-to-top {
        bottom: 15px;
    }
}

.back-to-top:focus {
    background: #2c522c;
    color: #fff;
    outline: none;
}

.back-to-top:hover {
    background: #2c522c;
    color: #fff;
}

.section-header {
    margin-bottom: 30px;
}

.section-header h2 {
    font-size: 28px;
    text-transform: uppercase;
    font-weight: 700;
    position: relative;
    padding: 20px 0;
}

.section-header h2::before {
    content: '';
    position: absolute;
    display: block;
    width: 50px;
    height: 3px;
    background: #aac838;
    bottom: 0;
    left: 0;
}

/*#Header
--------------------------------------------------------------*/
#header {
    position: relative;
    z-index: 997;
    box-shadow: 0px 6px 9px 0px rgba(0, 0, 0, 0.06);
    line-height: 60px;
}

#logo {
    display: flex;
    justify-content: center;
}

#header img {
    height: 50px;
}

@media (min-width: 768px) {
    #logo {
        justify-content: left;
    }

    #header #logo img {
        max-height: 40px;
    }
    h1{
        font-size:80px;
    }
}

/*--------------------------------------------------------------
# Intro Section
--------------------------------------------------------------*/
#intro {
    width: 100%;
    position: relative;
    background-image: url('backgroundyell.png');
    //background-color:#f3e000;
    background-position: 50% 50%;
    background-size: cover;
    background-repeat: no-repeat;
    margin-bottom: 30px;
    display: flex;
    flex-direction: row;
    align-items: center;
}

/*#intro:before {
    content: ' ';
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.5;
    background: #000;
    background-repeat: no-repeat;
    background-position: 50% 0;
    background-size: cover;
}*/

#intro .logo__click {
    display: none;
    position: absolute;
    padding: 8px 5px 30px 4px;
    top: 50px;
    left:50px;
    z-index: 999;
    background-color: transparent;
    max-width: 250px;
    //-webkit-border-top-right-radius: 20px;
    //-webkit-border-bottom-right-radius: 20px;
    //-moz-border-radius-topright: 20px;
    //-moz-border-radius-bottomright: 20px;
    //border-top-right-radius: 20px;
    //border-bottom-right-radius: 20px;
    font-weight: bold;
    font-size: 18px;
}

.logo__click span {
    display: inline-block;
    color: #2c522c;
}

.image {
    width: 100%;
}

.logo__click span {
    color: #aac838;
}

.intro__content {
    position: relative;
    height: 100%;
    width: 100%;
    z-index: 999;
    overflow: hidden;
    padding: 0 15px;
}

.intro__left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #ffff;
    flex:1;
    padding: 0;
    overflow: hidden;
    z-index: 999;
}

.intro__left p {
    font-size: 27px;
    font-weight: 600;
    display: none;
}

.intro__left ul{
    list-style-type: none;
}

.intro__left li {
    font-size: 19px;
}

.intro__left h1{  
text-shadow: 2px 2px 6px rgba(134, 134, 134, 1);
}

.intro__left h2 {
    text-transform: uppercase;
    font-size: 25px;
    font-weight: bold;
    text-align: center;
    padding: 15px 0 0;
}

.intro__left img {
    max-width: 100%;
}

.intro__right {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    align-content: center;
    padding: 0px;
    flex: 1;
    z-index: 999;

    /* margin-top: 10px; */
}

.imgBack {
    width: 100%;
    z-index: 1;
}

.loan_calculator {
    width: 100%;
    background-color: white;
    padding: 30px 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.loan_calculator h3 {
    font-size: 30px;
    color: #00bf63;
}

.loan_calculator h2 {
    font-size: 18px;
}



.skokLecie p{

}

@media (min-width: 768px) {
    .loan_calculator {
        width: 80%;
    }
    .intro__left {
        padding: 15px 15px 15px 40px;
    }
    .intro__left h2 {
        text-align: left;
        padding: 0;
    }

    .intro__left p{
        align-items: left;
        width: 100%;
        display: block;
    }


}

@media (min-width: 992px) {
    .loan_calculator {
        width: 100%;
    }

    .intro__left {
        align-items: left;
    }

    #intro .logo__click {
        display: block;
    }
    .imgBack {
    position:absolute;
    right: -20px;
    width: 65%;
    
    z-index:-1;    
   
}
}


.specification{
    padding: 20px 5px;
}
.specification li{
    font-size: 22px;
    line-height: 33px;
}



/*--------------------------------------------------------------
# Calculator section
--------------------------------------------------------------*/
#special-offer {

  min-height: 50px;
 background-color: white;  /* Jasnozielone tło */
  color: #1e1e1e;             /* Ciemnozielony tekst */
  border: 1px solid #09c250;  /* Zielona ramka */
  padding: 10px 15px;         /* Wewnętrzny margines */
  font-weight: 600;         /* Pogrubiony tekst */
  border-radius: 5px;         /* Zaokrąglone rogi */
  font-size: 16px;            /* Większa czcionka */
  margin-bottom: 15px;        /* Odstęp od innych elementów */
   
  text-align: left;         /* Wyśrodkowany tekst */
  transition: opacity 0.5s ease, visibility 0.5s ease;
  opacity: 0;                 /* Początkowo komunikat jest niewidoczny */
  visibility: hidden;         /* Początkowo ukryty */
}

#special-offer.show {
  opacity: 1;                 /* Ustawiamy pełną widoczność */
  visibility: visible;        /* Ustawiamy widoczność */
}

/* Ukrywanie komunikatu "Pożyczka na oświadczenie" */
#loan-description {
    display: flex;
    align-items: center;
  min-height: 80px;
     margin-top:15px;
  background-color: white;  /* Jasnoczerwone tło */
  color: #1e1e1e;             /* Ciemnoczerwony tekst */
  border: 1px solid #09c250;  /* Czerwona ramka */
  padding: 0px 15px;         /* Wewnętrzny margines */
          /* Pogrubiony tekst */
  border-radius: 5px;         /* Zaokrąglone rogi */
  font-size: 16px;            /* Większa czcionka */
  margin-bottom: 15px;        /* Odstęp od innych elementów */
  text-align: left;         /* Wyśrodkowany tekst */
  transition: opacity 0.5s ease, visibility 0.5s ease;
  opacity: 0;                 /* Początkowo komunikat jest niewidoczny */
  visibility: hidden;         /* Początkowo ukryty */
}

#loan-description.show {
  opacity: 1;                 /* Ustawiamy pełną widoczność */
  visibility: visible;        /* Ustawiamy widoczność */
}
#widget {
    width: 100%;
}

.loan_calculator .form-group {
    margin-top: 15px;
}

.form-label {
    color: #333;
}

.form-label-2 {
    color: #333;
    font-size: 16px;
}

.form-label-2 #selected-duration, .selected-mounth {
    font-weight: bold;
    color: #000;
}

.form-range {
    display: flex;
}

.form-range span {
    display: block;
    width: 100px;
    text-align: center;
    font-weight: 400;
}

.form-rate {
    font-size: 24px;
}

.form-rate .payment, .form-group #selected-amount, .form-add {
    color: #000;
    font-weight: 700;
    font-size: 45px;
    font-family: "Raleway", sans-serif;
}

.form-add {
    font-size: 30px;
}

.loan_calculator input[type="range" i] {
    width: 100%;
}

input[type=range] {
    -webkit-appearance: none;
    width: 100%;
    margin: 8.4px 0;
}

input[type=range]:focus {
    outline: none;
}

input[type=range]::-webkit-slider-runnable-track {
    width: 100%;
    height: 12.9px;
    cursor: pointer;

    /* box-shadow: 1px 1px 1px #000000, 0px 0px 1px #0d0d0d; */
    background: rgb(9, 194, 80);
    border-radius: 5px;

    /* border: 0.2px solid #010101; */
}

input[type=range]::-webkit-slider-thumb {
    box-shadow: 1px 1px 1px #000000, 0px 0px 1px #0d0d0d;
    border: 0px solid #000;
    height: 25px;
    width: 25px;
    border-radius: 50%;
    -moz-border-radius: 50%;
    -moz-box-shadow: 2px 5px 5px black;
    background: #fff;
    cursor: pointer;
    -webkit-appearance: none;
    margin-top: -7px;
}

input[type=range]:focus::-webkit-slider-runnable-track {
    background: rgb(9, 194, 80);
}

input[type=range]::-moz-range-track {
    width: 100%;
    height: 8px;
    cursor: pointer;
    border-radius: 5px;
}

/* input[type=range]:focus::-moz-range-track {
    background: #df0400;
} */

input[type=range]::-moz-range-thumb {
    box-shadow: 1px 1px 1px #000000, 0px 0px 1px #0d0d0d;
    border: 1px solid #000;
    height: 24px;
    width: 24px;
    border-radius: 50%;
    background: #fff;
    cursor: pointer;
}

input[type=range]::-ms-track {
    width: 100%;
    height: 7px;
    cursor: pointer;
    background: transparent;
    border-color: transparent;
    color: transparent;
}

/* input[type=range]::-ms-fill-lower {
    background: green;
    border: 0.2px solid #010101;
    border-radius: 2.6px;
    box-shadow: 1px 1px 1px #000000, 0px 0px 1px #0d0d0d;
} */

input[type=range]::-ms-fill-upper {
    background: #df0400;
    border: 0.2px solid #010101;
    border-radius: 2.6px;
    box-shadow: 1px 1px 1px #000000, 0px 0px 1px #0d0d0d;
}

*/

input[type=range]::-ms-thumb {
    box-shadow: 1px 1px 1px #000000, 0px 0px 1px #0d0d0d;
    border: 1px solid #000;
    height: 25px;
    width: 25px;
    border-radius: 3px;
    background: rgb(9, 194, 80);
    cursor: pointer;
    height: 7px;
}

/* input[type=range]:focus::-ms-fill-lower {
    background: red;
}

input[type=range]:focus::-ms-fill-upper {
    background:red;
} */

/** FF*/
input[type="range"]::-moz-range-progress {
    background-color: rgb(9, 194, 80);
    height: 7px;
}

input[type="range"]::-moz-range-track {
    background-color: #dde4e6;
}

input[type="range"]::-webkit-range-track {
    background-color: #dde4e6;
}

/* IE*/
input[type="range"]::-ms-fill-lower {
    background-color: rgb(9, 194, 80);
}

input[type="range"]::-ms-fill-upper {
    background-color: #dde4e6;
}

.cta {
    height: 100%;
    display: flex;
    justify-content: center;
}

.btn {
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 16px 35px;
    border-radius: 5px;
    border: 2px solid white;
    transition: 0.5s;
    margin: 20px 0 0;
    border: 2px solid #fff;
    color: #fff;

    /* background-image: linear-gradient(to left, #df0400, #df0400, #df0400, #df0400, #df0400); */
    background: rgb(9, 194, 80);
    text-transform: uppercase;
    transition: .3s;
}

/* .cta a:hover, a:active, a:focus {
    color: #fff;
} */

.btn:hover {
    color: rgb(9, 194, 80);
    background: #fff;
    border: 2px solid rgb(9, 194, 80);
}

/*--------------------------------------------------------------
# END Calculator section
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# About section
--------------------------------------------------------------*/
#about {
    background-color: rgb(248, 248, 248);
}

.about__boxes {
    display: flex;
    justify-content: center;
}

.about__box {
    text-align: center;
    padding: 20px;
}

.about__box h6 {
    line-height: 1.4;
}

.about__box a {
    text-decoration: underline;
}

.about__box img {
    max-width: 35%;
}

.about__num {
    display: inline-block;
    height: 50px;
    width: 50px;
    border-radius: 50%;
    background-color: rgb(9, 194, 80);
    font-size: 25px;
    line-height: 50px;
    color: #fff;
}

@media (min-width: 992px) {
    .about__box img {
        max-width: 40%;
    }
}

/* Services Section
--------------------------------*/
#services {
    padding: 30px 0 0 0;
}

#services .box {
    padding: 40px;
    margin-bottom: 40px;
    box-shadow: 10px 10px 15px rgba(73, 78, 92, 0.1);
    background: #fff;
    transition: 0.4s;
}

/*#services .box:hover {
     box-shadow: 0px 0px 30px rgba(73, 78, 92, 0.15);
    transform: translateY(-10px);
    -webkit-transform: translateY(-10px);
    -moz-transform: translateY(-10px); */

#services .box .icon {
    float: left;
}

#services .box .icon i {
    color: #444;
    font-size: 55px;
    transition: 0.5s;
    line-height: 0;
    margin-top: 34px;
}

#services .box .icon i:before {
    background: #47D67E;
    background: linear-gradient(45deg, #1A5C35 0%, rgb(9, 194, 80) 90%);
    background-clip: border-box;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

#services .box h4 {
    margin-left: 100px;
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 22px;
}

#services .box h4 a {
    color: #444;
}

#services .box p {
    font-size: 14px;
    margin-left: 100px;
    margin-bottom: 0;
    line-height: 24px;
}

@media (max-width: 767px) {
    #services .box .box {
        margin-bottom: 20px;
    }

    #services .box .icon {
        float: none;
        text-align: center;
        padding-bottom: 15px;
    }

    #services .box h4, #services .box p {
        margin-left: 0;
        text-align: center;
    }
}

/* Call To Action Section
--------------------------------*/
#call-to-action {
    background: #09C250;
    background-size: cover;
    padding: 25px 0;
    position: sticky;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 887;
    display: none;
}

.cta__box {
    font-size: 14px;
    font-weight: 400;
    color: #fff;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}

.cta__box span {
    display: none;
}

.cta__box .extra-bold {
    font-weight: 600;
}

.btn-second {
    color: #ffff;
    background: rgb(245, 81, 59);
    margin: 0;
}

/*.cta a:hover, a:active, a:focus {
     color: #fff; */

.btn-second:hover {
    display: inline-block;
    color: rgb(245, 81, 59);
    background: #ffff;
    border: 2px solid #fff;
}

@media (min-width: 768px) {
    .cta__box span {
        display: inline-block;
    }
}

@media (min-width: 998px) {
    .cta__box {
        font-size: 18px;
    }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
    background-color: rgb(248, 248, 248);
    padding: 0 0 30px 0;
    font-size: 16px;
}

#footer .business {
    text-align: center;
    padding-top: 30px;
}
