/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/

@font-face {
    font-family: 'Futuramdbt';
    src: url('/assets/vendor/fonts/futuramdbt.eot'); /* IE9 Compat Modes */
    src: url('/assets/vendor/fonts/futuramdbt.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */ url('/assets/vendor/fonts/futuramdbt.woff2') format('woff2'), /* Super Modern Browsers */ url('/assets/vendor/fonts/futuramdbt.woff') format('woff'), /* Pretty Modern Browsers */ url('/assets/vendor/fonts/futuramdbt.ttf') format('truetype'), /* Safari, Android, iOS */ url('/assets/vendor/fonts/futuramdbt.svg#svgFontName') format('svg'); /* Legacy iOS */
    font-weight: normal;
    font-style: normal;
}

body {
    color: #444444;
}

a {
    color: #ffb727;
    text-decoration: none;
}

a:hover {
    color: #ffc85a;
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Futuramdbt", sans-serif;
}

.komunikat-mail {
    padding: 10px 0;
    margin: 0 0 30px 0;
    text-align: center;
    box-shadow: 0 0 10px rgba(255, 237, 133, 0.6);
    color: #ffffff;
    font-weight: bold;
    font-size: 25px;
}

.komunikat-mail.blad {
    color: #ff0000;
}

.komunikat-mail.ok {
    color: #00ff2d;
}

/*--------------------------------------------------------------
PRELOADER
 --------------------------------------------------------------*/

#preloader {
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background-color: #090909;
    z-index: 9999;
}

.spinner {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 70px;
    height: 70px;
    margin: -35px 0 0 -35px;
    border: 10px solid #f0e9a3;
    border-top: 10px solid #cfb92d;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: 15px;
    z-index: 996;
    background: #fff066;
    width: 40px;
    height: 40px;
    border-radius: 4px;
    transition: all 0.4s;
}

.back-to-top i {
    font-size: 28px;
    color: #000000;
    line-height: 0;
}

.back-to-top:hover {
    background: #cfb92d;
    color: #000000;
}

.back-to-top.active {
    visibility: visible;
    opacity: 1;
}

#pulsating-icon {
    position: absolute;
    bottom: 0px;
    left: 30px;
    animation: pulse 1.6s infinite;
    z-index: 999;
}

#pulsating-icon img {
    width: 35px;
    height: 35px;
}

@keyframes pulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        transform: translate(-50%, -50%) scale(1.2);
    }
    100% {
        transform: translate(-50%, -50%) scale(1);
    }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
    z-index: 997;
    transition: all 0.5s;
    flex-direction: row-reverse;
    height: 80px;
    background: rgba(25, 28, 31, 0.8);
}

#header.header-transparent {
    background: transparent;
}

#header.header-scrolled {
    height: 60px;
    background: rgba(25, 28, 31, 0.8);
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
    padding: 0;
}

.navbar ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
}

.navbar li {
    position: relative;
}

.navbar a,
.navbar a:focus {
    padding: 10px 15px;
    color: #fff;
    white-space: nowrap;
    transition: 0.3s;
    font-size: 12px;
    font-family: "Futuramdbt", sans-serif;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
    text-align: center;
}

.navbar a i,
.navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover > a {
    color: #ffb727;
}

.navbar .dropdown ul {
    display: block;
    position: absolute;
    left: 14px;
    top: calc(100% + 30px);
    margin: 0;
    padding: 10px 0;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    transition: 0.3s;
    border-radius: 4px;
}

.navbar .dropdown ul li {
    min-width: 200px;
}

.navbar .dropdown ul a {
    padding: 10px 20px;
    font-size: 14px;
    text-transform: none;
    font-weight: 400;
    color: #3b434a;
    letter-spacing: 1px;
}

.navbar .dropdown ul a i {
    font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover > a {
    color: #ffb727;
}

.navbar .dropdown:hover > ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
}

.navbar .dropdown .dropdown ul {
    top: 0;
    left: calc(100% - 30px);
    visibility: hidden;
}

.navbar .dropdown .dropdown:hover > ul {
    opacity: 1;
    top: 0;
    left: 100%;
    visibility: visible;
}

@media (max-width: 1366px) {
    .navbar .dropdown .dropdown ul {
        left: -90%;
    }

    .navbar .dropdown .dropdown:hover > ul {
        left: -100%;
    }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
    color: #fff;
    font-size: 28px;
    cursor: pointer;
    display: none;
    line-height: 0;
    transition: 0.5s;
    margin-right: 25px;
}

.mobile-nav-toggle {
    display: block;
}

.navbar ul {
    display: none;
}

.navbar-mobile {
    position: fixed;
    overflow: hidden;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    transition: 0.3s;
    z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
    position: absolute;
    top: 15px;
    right: -15px;
}

.navbar-mobile ul {
    display: block;
    position: absolute;
    top: 55px;
    right: 15px;
    left: 15px;
    padding: 10px 0;
    border-radius: 10px;
    background-color: #fff;
    overflow-y: auto;
    transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
    padding: 10px 20px;
    font-size: 25px;
    color: #3b434a;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover > a {
    color: #ffb727;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
    margin: 15px;
}

.navbar-mobile .dropdown ul {
    position: static;
    display: none;
    margin: 10px 20px;
    padding: 10px 0;
    z-index: 99;
    opacity: 1;
    visibility: visible;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
    min-width: 200px;
}

.navbar-mobile .dropdown ul a {
    padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
    font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover > a {
    color: #ffb727;
}

.navbar-mobile .dropdown > .dropdown-active {
    display: block;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
    width: 100%;
    height: 100vh;
    background: url("../img/hero-bg2.jpg") top right;
    background-size: cover;
    position: relative;
}

#hero:before {
    content: "";
    background: rgba(0, 0, 0, 0.75);
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
}

#hero .hero-container {
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 0 15px;
}

#hero h1 {
    margin: 0 0 10px 0;
    font-size: 64px;
    font-family: "Satisfy", serif;
    color: #fff;
}

#hero h2 {
    color: #eee;
    margin-bottom: 50px;
    font-size: 65px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
}

#hero .links {
    display: flex;
    justify-content: center;
    font-family: "Futuramdbt", sans-serif;
    margin-top: 50px;
}

#hero .links a {
    font-size: 37px;
    color: #f0e8a1;
    border: 1px solid #b89a59;
    border-radius: 5px;
    padding: 5px 15px;
    margin: 15px;
    position: relative;
    overflow: hidden;
    display: inline-block;
    transition: color 0.3s ease;
    z-index: 1;
}

#hero .links a::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(to top, #b89a59, transparent);
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.3s ease;
    z-index: -1;
}

#hero .links a:hover {
    color: #f0e8a1;
}

#hero .links a:hover::before {
    transform: scaleY(1);
}

#hero .btn-scroll {
    transition: 0.4s;
    color: #efe69f;
    animation: up-down .6s ease-in-out infinite alternate-reverse both;
    margin-top: 50px;
}

#hero .btn-scroll i {
    font-size: 70px;
}

#hero .btn-scroll:hover {
    color: #d1bb11;
}

#hero .logo {
    max-width: 600px;
}

@media (min-width: 1024px) {
    #hero {
        background-attachment: fixed;
    }
}

@media (max-width: 575px) {
    #hero h1 {
        font-size: 40px;
    }

    #hero h2 {
        text-align: center;
        margin-bottom: 30px;
    }

    #hero .links a {
        font-size: 30px;
    }
}

@keyframes up-down {
    0% {
        transform: translateY(5px);
    }

    100% {
        transform: translateY(-5px);
    }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
    padding: 60px 0;
}

.section-bg {
    background-color: white;
}

.section-title {
    text-align: center;
    padding: 30px 0;
    position: relative;
}

.section-title h2 {
    font-size: 32px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 20px;
    padding-bottom: 0;
    color: #f9de66;
    position: relative;
    z-index: 2;
}

.section-title span {
    position: absolute;
    top: 30px;
    color: #272727;
    left: 0;
    right: 0;
    z-index: 1;
    font-weight: 700;
    font-size: 52px;
    text-transform: uppercase;
    line-height: 0;
}

.section-title p {
    margin-bottom: 0;
    position: relative;
    z-index: 2;
}

@media (max-width: 575px) {
    .section-title h2 {
        font-size: 28px;
        margin-bottom: 15px;
    }

    .section-title span {
        font-size: 38px;
    }
}

@media (max-width: 768px) {

    #hero .logo {
        max-width: 85%;
    }

    #hero .links {
        flex-direction: column;
    }

    #hero .links a {
        text-align: center;
    }

}


/*--------------------------------------------------------------
# Lombard
--------------------------------------------------------------*/

#skupsprzedaz {
    background: #161616;
}

.lombard {
    display: flex;
    justify-content: center;
    align-items: center;
}

.lombard img {
    max-width: 500px;
}

.lombard p {
    color: #ffffff;
    font-size: 17px;
}

.lombard p span {
    font-weight: bold;
    color: #f9de66;
}

.lombard a {
    color: #f9de66;
    text-decoration: none;
    font-weight: bold;
}

.lombard a:hover {
    text-decoration: underline;
}

.lombard a.pdf-link {
    padding-left: 25px;
    background: url('../img/pdf.png') no-repeat left center;
    background-size: 20px;
}

/*--------------------------------------------------------------
# Epapierosy
--------------------------------------------------------------*/

#epapierosy {
    background: #080808;
}

.vape {
    display: flex;
    justify-content: center;
    align-items: center;
}

.vape img {
    max-width: 500px;
}

.vape p {
    color: #ffffff;
    font-size: 17px;
}

.vape p span {
    font-weight: bold;
    color: #f9de66;
}

/*--------------------------------------------------------------
# swipper marki
--------------------------------------------------------------*/
.marki {
    padding-top: 20px;
}

.marki span.title {
    display: block;
    text-align: center;
    color: #fff066;
    font-size: 17px;
    font-weight: bold;
    margin-bottom: 20px;
}

.marki .swiper-slide img {
    opacity: 0.5;
    transition: 0.3s;
    filter: grayscale(100);
}

.marki .swiper-slide img:hover {
    filter: none;
    opacity: 1;
}

.marki .swiper-pagination {
    margin-top: 35px;
    position: relative;
}

.marki .swiper-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: #ffffff;
    opacity: 1;
    background-color: #2b2b2b;
}

.marki .swiper-pagination .swiper-pagination-bullet-active {
    background-color: #ffc451;
}

/*--------------------------------------------------------------
# Contact Me
--------------------------------------------------------------*/

#kontakt {
    background: #161616;
}

#contact {
    background: #1c1c1c;
}

.contact .info-box {
    color: #444444;
    text-align: center;
    box-shadow: 0 0 10px rgba(255, 237, 133, 0.6);
    padding: 20px 0 30px 0;
}

.contact .info-box i.bx {
    font-size: 24px;
    color: #000000;
    border-radius: 50%;
    padding: 15px;
    background: #ffffff;
}

.contact .info-box h3 {
    font-size: 20px;
    color: #ffee53;
    font-weight: 400;
    margin: 10px 0;
}

.contact .info-box p {
    padding: 0;
    line-height: 24px;
    font-size: 14px;
    margin-bottom: 0;
    color: #ffffff;
}

.contact .social-links {
    margin-top: 15px;
    display: flex;
    justify-content: center;
}

.contact .social-links a {
    font-size: 18px;
    display: inline-block;
    color: #000000;
    line-height: 1;
    margin: 0 8px;
    transition: 0.3s;
    padding: 14px;
    border-radius: 50px;
    background: #fff066;
}

.contact .social-links a:hover {
    color: #ffffff;
    background: #cfb92d;
}

.contact .php-email-form {
    box-shadow: 0 0 10px rgba(255, 237, 133, 0.6);
    padding: 27px;
    min-height: 398px;
}

.contact .php-email-form .validate {
    display: none;
    color: red;
    margin: 0 0 15px 0;
    font-weight: 400;
    font-size: 13px;
}

.contact .php-email-form .error-message {
    display: none;
    color: #fff;
    background: #ed3c0d;
    text-align: left;
    padding: 15px;
    font-weight: 600;
}

.contact .php-email-form .error-message br + br {
    margin-top: 25px;
}

.contact .php-email-form .sent-message {
    display: none;
    color: #fff;
    background: #18d26e;
    text-align: center;
    padding: 15px;
    font-weight: 600;
}

.contact .php-email-form .loading {
    display: none;
    background: #fff;
    text-align: center;
    padding: 15px;
}

.contact .php-email-form .loading:before {
    content: "";
    display: inline-block;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    margin: 0 10px -6px 0;
    border: 3px solid #18d26e;
    border-top-color: #eee;
    animation: animate-loading 1s linear infinite;
}

.contact .php-email-form input,
.contact .php-email-form textarea {
    border-radius: 0;
    box-shadow: none;
    font-size: 14px;
}

.contact .php-email-form input::focus,
.contact .php-email-form textarea::focus {
    background-color: #ffb727;
}

.contact .php-email-form input {
    padding: 10px 15px;
}

.contact .php-email-form textarea {
    padding: 12px 15px;
}

.contact .php-email-form button[type=submit] {
    background: #fff066;
    border: 0;
    padding: 10px 24px;
    color: #000000;
    transition: 0.4s;
    border-radius: 5px;
}

.contact .php-email-form button[type=submit]:hover {
    background: #cfb92d;
}

@keyframes animate-loading {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
    background: url("../img/footer-bg.jpg") top center no-repeat;
    background-size: cover;
    color: #fff;
    font-size: 14px;
    text-align: center;
    padding: 80px 0;
    position: relative;
}

#footer::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
}

#footer .container {
    position: relative;
}

#footer h3 {
    font-size: 36px;
    font-weight: 400;
    color: #fff;
    position: relative;
    font-family: "Futuramdbt", serif;
    padding: 0;
    margin: 0 0 15px 0;
}

#footer h3 span {
    font-size: 27px;
}

#footer p {
    font-size: 15;
    font-style: italic;
    padding: 0;
    margin: 0 0 40px 0;
}

#footer .social-links {
    margin: 0 0 40px 0;
}

#footer .social-links a {
    font-size: 35px;
    display: inline-block;
    background: #fff066;
    color: #000000;
    line-height: 1;
    padding: 8px 0;
    margin-right: 4px;
    border-radius: 50%;
    text-align: center;
    width: 50px;
    height: 50px;
    transition: 0.3s;
}

#footer .social-links a:hover {
    background: #cfb92d;
    color: #fff;
    text-decoration: none;
}

@media (max-width: 1199px) {
    .vape img {
        max-width: 420px;
    }
}

@media (max-width: 992px) {
    .vape, .lombard {
        flex-direction: column;
    }
}

@media (max-width: 575px) {
    .vape img {
        max-width: 90%;
    }

    .vape p {
        margin: 0 10px;
    }

    .lombard img {
        max-width: 90%;
    }

    .lombard p {
        margin: 0 10px;
    }
}