@import url('https://fonts.googleapis.com/css2?family=Bellota:wght@400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Amita:wght@700&display=swap');

@media (min-width: 1200px){
.container {
    max-width: 1400px;
}
}
@media (min-width: 992px){
#header .header-nav-main nav > ul > li {
    height: auto;
    -ms-flex-item-align: stretch;
    align-self: stretch;
    margin-left: 2px;
}
}
@media (max-width: 991px){
#header .header-nav-main nav > ul li a {
    font-size: 13px;
    font-style: normal;
    padding: 13px 10px 8px 10px;
    margin: 0px 0px 0px 0px;
    border-radius: 4px;
    text-align: left;
    line-height: 2.5rem;
}
	}

@media (max-width: 991px){
#header .header-nav-main:not(.header-nav-main-mobile-dark) nav > ul > li > a {
    color: #4c3156;
}
	    .sub-menu {
display: none;
}
}

@media (max-width: 991px){
#header .header-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: block;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-item-align: stretch;
    align-self: stretch;
    max-height: 100%;
}
	#header .header-column .header-row {
    -webkit-box-pack: inherit;
    -ms-flex-pack: inherit;
    justify-content: inherit;
       display: flex;
		padding-top: 10px;
}
}

@media (min-width: 992px){
#header .header-nav-bar .header-nav {
        min-height: 85px;
    padding: 1.5rem 0rem 1rem 0rem !important;
}
}

@media (max-width: 700px){
	.slider-text-text {
		display:none !important;
	}
}

a:hover {
    color: #fecc00;
	font-weight: 700;
}
a:focus {
    color: #fecc00;
}
p {
    color: #fff;
    line-height: 26px;
    margin: 0 0 20px;
    font-size: 1.2rem;
    font-family: 'Bellota', cursive;
    font-weight: 400;
}
a {
    color: #fecc00;
}

li {

    font-family: 'Bellota', cursive;
}
body {
    background-color: #4c3156;
    color: #fff;
    font-family: "Open Sans", Arial, sans-serif;
    font-size: 14px;
    line-height: 26px;
    margin: 0;
}
html .btn-primary:active, html .btn-primary.active {
    background-color: #fecc00 !important;
    background-image: none !important;
    border-color: #fecc00 !important;
}
html { scroll-behavior: smooth; }


/*  FORMULARZ WYGLĄD START */

.confirm-msg {
    padding: 1rem;
    margin-top: 1rem;
    background-color: #0C6A20;
    color: #fff;
    border: 2px solid #012A00;
    border-radius: .3rem;
}
.error-msg {
    padding: 1rem;
    margin-top: 1rem;
    background-color: #d50e0e;
    color: #fff;
    border: 2px solid #410202;
    border-radius: .3rem;
}

input[type=checkbox], input[type=radio] {
    box-sizing: border-box;
    padding: 1rem;
    transform: scale(2);
    margin: 1rem;
    cursor: pointer;
}
.form-button-container {
	margin-top: 2rem;
}
.label-check {
	display: inline;
}

.gwiazdka {
	color: darkred;
}
.container-form {
    font-family: 'Bellota', cursive;
    color: #000;
    width: 80%;
    margin: 20px auto;
    background-color: #ffffffc2;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.column-form {
    float: left;
    width: 50%;
    padding: 10px;
    box-sizing: border-box;
}

label {
    display: block;
    margin-bottom: 5px;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"],
textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    transition: border-color 0.3s ease;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
input[type="number"]:focus,
textarea:focus {
    border-color: #4c3156;
    outline: none;
}

input[type="submit"],
input[type="reset"] {
    background-color: #4c3156;
    color: white;
    padding: 15px 45px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;

}
input[type="submit"] {
	font-size: 1.5rem;	
}


input[type="submit"]:hover,
input[type="reset"]:hover {
    background-color: #fecc00;
}
.wyczysc {
	background-color: #555555 !important;
    padding: 5px 10px !important;
}
.wyczysc:hover {
	background-color: #fecc00 !important;
}
.container-form {
    animation: fadeIn 1s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@media (max-width: 768px) {
    .column-form {
        float: none;
        width: 100%;
    }
	.img-bottom-kontakt {
		padding: 0px !important;
	}

    .container-form {
        width: 100%;
        padding: 10px;
    }
}
/*  FORMULARZ WYGLĄD END */

.anchor {
    display: block;
    height: 92px;
    margin-top: -92px;
    visibility: hidden;
}
.nav {
	position: relative;
}
.nav ul {
	
  background: #371f40;
  height: 0;
  left: 5rem;
  opacity: 0;
  position: absolute;
  transition: all .5s ease;
  top: 40px;
  width: auto;
	z-index: 99999;
}
.nav li:hover ul {
  height: auto;
  opacity: 1;
  transform: translateY(0);
}

.nav ul a {
  color: #fff;
  display: block;
  padding: 5px 20px;
}
.heading.heading-middle-border:before {
    border-top: 1px solid #eaeaea;
    content: "";
    height: 0;
    left: 5rem;
    position: absolute;
    right: 0;
    top: 50%;
    width: 100%;
}
.title-icon {
font-size: 2.5rem;
    padding-right: 0.8rem;
    color: #fecc00;
    width: 3.5rem;
}

.space-p {
	margin-bottom: 3rem;
}
.row-leasing {
	margin-bottom: 10rem;
}
.box-center {
	text-align: center;
}

.slider-container.light {
    background-color: #4c3156;
}

.page-header-kontakt {
	margin: 0 !important;
}
.kontakt-row {
	display: inline-flex;
}
.punktowanie {
	color: #fff
}

.featured-boxes-flat {
	width: 100%;
}

@media (min-width: 992px){
.col-lg-3-icon {
    -ms-flex: 0 0 16% !important;
    flex: 0 0 16% !important;
    max-width: 16% !important;
}
}

.oferta-icon {
	    vertical-align: middle;
    border-style: none;
    padding-bottom: 0.4rem;
}

.row-oferta {
	margin-bottom: 25px;
}

html .featured-box-primary .box-content-border-bottom {
    border-bottom-color: #371f40;
}

html .featured-box-primary h4 {
    color: #371f40;
}

html .featured-box-primary .icon-featured {
    background-color: #371f40;
}
html .featured-box-effect-2.featured-box-primary .icon-featured:after {
    -webkit-box-shadow: 0 0 0 3px #371f40;
    box-shadow: 0 0 0 3px #371f40;
}

.featured-boxes-flat .featured-box .box-content {
    background: #fecc00;
    margin-top: 65px;
}

.featured-box {
    background: #fecc00;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    border-bottom: 0px;
    border-left: 0px;
    border-radius: 8px;
    border-right: 0px;
    -webkit-box-shadow: 0 2px 4px 0px rgba(0, 0, 0, 0.05);
    box-shadow: 0 2px 4px 0px rgba(0, 0, 0, 0.05);
    margin-bottom: 20px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 20px;
    height: 100px !important;
    position: relative;
    text-align: center;
    z-index: 1;
}

#onas #header .onas, #onas .menu-icon-onas, #pojazdy #header .pojazdy, #pojazdy .menu-icon-pojazdy, #pojazdy #header .pojazdy, #pojazdy .menu-icon-pojazdy, #maszyny #header .maszyny, #maszyny .menu-icon-maszyny, #agro #header .agro, #agro .menu-icon-agro, #fotowoltaika #header .fotowoltaika, #fotowoltaika .menu-icon-fotowoltaika, #oferta #header .oferta, #oferta .menu-icon-oferta, #nastart #header .nastart, #nastart .menu-icon-nastart, #ubezpieczenia #header .ubezpieczenia, #ubezpieczenia .menu-icon-ubezpieczenia, #kontakt #header .kontakt, #kontakt .menu-icon-kontakt,    {
   background-color: #fecc00 !important;
    color: #4c3156 !important;	
}

.alternative-font {
    color: #fecc00 !important;
    font-family: 'Amita', cursive;
    font-size: 1.1em;
    vertical-align: middle;
}
/* KONIEC WAZNYCH DEFINICJI */

.tparrows.arrows-style-1 {
	background: #fecc00 !important;
}
.tparrows.arrows-style-1:hover {
	background: #fff !important;
}

.featured-boxes-style-2 .featured-box .icon-featured {
    display: inline-block;
    font-size: 3em;
    height: 75px;
    line-height: 75px;
    padding: 0;
    width: 75px;
    margin-top: 0;
}

@media (min-width: 992px) {
.col-lg-99 {
    -ms-flex: 0 0 50%;
    flex: 50%;
    max-width: 50%;
}
}
.img-bottom {
    height: 400px;
	background-color: #4c3156;
}
.img-bottom-pojazdy {
	background: url(../img/slider/slider_02.webp) no-repeat center center; 
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}
.img-bottom-maszyny {
	background: url(../img/slider/slider_03.webp) no-repeat center center; 
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}
.img-bottom-agro {
	background: url(../img/slider/slider_04.webp) no-repeat center center; 
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}
.img-bottom-fotowoltaika {
	background: url(../img/slider/slider_05.webp) no-repeat center center; 
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}
.img-bottom-oferta {
	background: url(../img/slider/slider_06.webp) no-repeat center center; 
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}
.img-bottom-nastart {
	background: url(../img/slider/slider_07.webp) no-repeat center center; 
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}
.img-bottom-ubezpieczenia {
	background: url(../img/slider/slider_08.webp) no-repeat center center; 
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}
.img-bottom-kontakt {
	background: url(../img/slider/slider_09.webp) no-repeat center center; 
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
	height: auto;
	padding: 5rem;
}
.img-bottom-leasingzwrotny{
background: url(../img/slider/slider_10.webp) no-repeat center center; 
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}
.img-bottom-inne{
background: url(../img/slider/slider_11.webp) no-repeat center center; 
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}

html .btn-dark {
    background-color: #371f40;
    border-color: #371f40;
    color: #fecc00;
	    font-size: 1.6em;
    padding: 0.5rem 2rem;
	font-family: 'Bellota', cursive;
}
html .btn-dark:hover, html .btn-dark.hover {
    background-color: #fdcb00;
    border-color: #fdcb00;
    color: #371f40;
}

hr.solid {
    background: rgb(255 255 255);
}

.mt-5 {
    margin-top: 1rem!important;
}

.heading.heading-border {
    margin-bottom: 25px;
    margin-top: 25px;
}

.justify-content-end {
    -ms-flex-pack: end!important;
    justify-content: center !important;
}
.social-icons li:hover.social-icons-phone a {
    background: #fecc00;
}

.phone-head{
font-size: 3.6rem;
    padding-top: 1.4rem;
}

.heading.heading-middle-border h1, .heading.heading-middle-border h2, .heading.heading-middle-border h3, .heading.heading-middle-border h4, .heading.heading-middle-border h5, .heading.heading-middle-border h6 {
    position: relative;
    background: #4c3156;
    display: inline-block;
	color: #fff;
	    font-family: 'Bellota', cursive;
}

html .bg-color-hover-primary:hover, html .bg-hover-primary:hover {
    background-color: #371f40 !important;
}
html .box-shadow-1-primary:before {
    -webkit-box-shadow: 0 30px 90px #0088CC !important;
    box-shadow: 0 30px 90px #fff !important;
}
html .text-color-primary, html .text-primary {
    color: #4c3156 !important;
}
.card-text {
	    color: #4c3156;
}
.card-title {
	color: #4c3156;
	font-family: 'Bellota', cursive;
	    font-size: 1.5rem !important;
}

.bg-color-grey {
    background-color: #fecc00 !important;
}

section.page-header .page-header-title-border {
    background-color: #fecc00 !important;
}
.page-header.page-header-classic:after {
    content: '';
    width: 100%;
    height: 5px;
    background: rgb(254 204 0);
    position: absolute;
    bottom: 0;
    left: 0;
}
.page-header h1 {
    color: #ffffff;
    display: inline-block;
    font-size: 30px;
    line-height: 1;
    margin: 0;
    padding: 0;
    position: relative;
    top: 1px;
    font-family: 'Bellota', cursive;
    font-weight: 700;
    text-transform: uppercase;
}
.page-header {
    background-color: #371f40;
    margin: 0 0 35px 0;
    padding: 30px 0;
    position: relative;
    text-align: left;
}

.foot-icon {
font-size: 5rem !important;
    text-align: center;
    width: 100%;
    color: #4c3156;
	padding-top: 2rem;
}
.foot-icon:hover {
    color: #fff;
}

.foot-text {
	font-size: 2rem !important;
    text-align: center;
    width: 100%;
    color: #4c315 !important;
	font-family: 'Bellota', cursive;
	font-weight: 700;
}

#footer a:not(.btn) {
    color: #4c3156;
}
#footer a:not(.btn):focus, #footer a:not(.btn):active {
    color: #4c3156;
}
.foot-img {
    width: 100%;
    margin: 0 auto;
    text-align: center;
}
.py-5 {
	padding:0rem !important;
}

#footer {
    background: #fecc00;
    border-top: 4px solid #fecc00;
    font-size: 0.9em;
    margin-top: 50px;
    padding: 0;
    position: relative;
    clear: both;
}

#footer .footer-copyright.footer-copyright-style-2 {
    background: #fecc00;
    border-top: 1px solid rgb(76 49 86);
	    padding-bottom: 0px !important;
}
#footer .footer-copyright p {
    color: #4c3156;
    margin: 0;
    padding: 0;
    font-size: 1em;
			font-family: 'Bellota', cursive;
	font-weight: 700;
}

html .btn-primary {
    background-color: #fecc00;
    border-color: #fecc00;
    color: #4c3156;
}
html .btn-primary:hover, html .btn-primary.hover {
    background-color: #4c3156;
    border-color: #4c3156;
    color: #FFF;
}

.slider-text {
	color: #fff;
		font-family: 'Bellota', cursive;
	font-weight: 700;
}
.slider-text-text {
    line-height: 1.4rem !important;
    margin-top: 1rem !important;
}
.slider-text-title {
	color: #fecc00;
	padding-bottom: 3rem;
}

.loading-overlay {
    -webkit-transition: visibility 0s ease-in-out 0.5s, opacity 0.5s ease-in-out;
    transition: visibility 0s ease-in-out 0.5s, opacity 0.5s ease-in-out;
    bottom: 0;
    left: 0;
    position: absolute;
    opacity: 0;
    right: 0;
    top: 0;
    visibility: hidden;
    background: #4c3156;
}
.bounce-loader .bounce1, .bounce-loader .bounce2, .bounce-loader .bounce3 {
	    background-color: #fecc00;
}

#header .header-btn-collapse-nav {
    background: #fecc00;
}

#header .header-social-icons {
    margin-left: 16px;
    margin-left: 1rem;
        margin-right: 1rem;
}

.fa-facebook-f:before {
    font-size: 73px !important;
    line-height: 1.4;
    padding-right: 0.1rem;
}
.social-icons li a {
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
    border-radius: 100%;
    display: block;
    height: 100px;
    line-height: 28px;
    width: 100px;
    text-align: center;
    color: #fff !important;
    text-decoration: none;
    font-size: 12.8px;
    font-size: 1rem;
    background: #371f40;
}
html .bg-color-primary, html .bg-primary {
    background-color: #4c3156 !important;
    border-top: 1px solid #4c3156;
}
.menu-icon {
    font-size: 1.5rem;
    padding-right: 0.5rem;
    color: #fecc00;
    width: 2.3rem;
}
@media (min-width: 992px) {
#header .header-nav-main nav > ul > li> a:hover {
    background: #371f40;
	text-decoration: none;
	color: #fff !important;
}
}
@media (min-width: 992px){
#header .header-nav-main nav > ul > li.open > a, #header .header-nav-main nav > ul > li:hover > a {
    background: #371f40;
	color: #fff;
}
}

.menu-item  {
	font-family: 'Bellota', cursive;
	font-weight: 700;
}
.menu-item:hover {
color: #fff !important;
}