/* ==================== FONTS ==================== */

p, a, span, textarea, input, input::placeholder, textarea::placeholder {
    font-family: "poppins", sans-serif;
    font-weight: 300;
    font-style: normal;
}

h1, h2, h3, h4, h5, h6 {
    font-family: "poppins", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.ultraBold {
    font-family: "poppins", sans-serif;
    font-weight: 700;
    font-style: normal;
}

.productDesc {
	font-family: "poppins", sans-serif !important;
    font-weight: 300 !important;
    font-style: normal;
}

.productDesc strong {
	color: rgba(249,115,22,1) !important;
}

/* ==================== BACKGROUNDS ==================== */

.heroSection {
    position: relative;
    min-height: 70vh;
    overflow: hidden;
    background-image: url("https://jak-leci.pl/wp-content/uploads/2024/02/hero-bg-min-scaled.webp");
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    transition: background-size 0.5s ease;
}

.boxGradient {
    background: rgb(17,17,17);
    background: -moz-linear-gradient(0deg, rgba(17,17,17,0.8842130602240896) 0%, rgba(17,17,17,0) 100%);
    background: -webkit-linear-gradient(0deg, rgba(17,17,17,0.8842130602240896) 0%, rgba(17,17,17,0) 100%);
    background: linear-gradient(0deg, rgba(17,17,17,0.8842130602240896) 0%, rgba(17,17,17,0) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#111111",endColorstr="#111111",GradientType=1);
}

.orangeGradient {
    background: rgb(249,115,22);
    background: -moz-linear-gradient(90deg, rgba(249,115,22,1) 0%, rgba(249,115,22,1) 50%, rgba(249,115,22,0) 100%);
    background: -webkit-linear-gradient(90deg, rgba(249,115,22,1) 0%, rgba(249,115,22,1) 50%, rgba(249,115,22,0) 100%);
    background: linear-gradient(90deg, rgba(249,115,22,1) 0%, rgba(249,115,22,1) 50%, rgba(249,115,22,0) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#f97316",endColorstr="#f97316",GradientType=1);
}

/* ==================== BUTTONS ==================== */

.whiteButton {
    background-color: #fff;
    color: rgba(249,115,22,1);
    border: 1px solid #fff;
    transition: 0.3s ease-in-out;
    padding: 6px 15px 3px 15px;
    border-radius: 5px;
}

.whiteButton:hover {
    background-color: rgba(249,115,22,1);
    color: #fff;
    transition: 0.3s ease-in-out;
}

.orangeButton {
    background-color: rgba(249,115,22,1);
    color: #fff;
    border: 1px solid rgba(249,115,22,1);
    transition: 0.3s ease-in-out;
    padding: 6px 15px 3px 15px;
    border-radius: 5px;
}

.orangeButton:hover {
    background-color: #fff;
    color: rgba(249,115,22,1);
    transition: 0.3s ease-in-out;
}

/* ==================== COLORS ==================== */

.mainColor {
    color: rgba(249,115,22,1);
}

.turquoiseBg {
    background-color: #32b8ad;
}

