:root {
    --fs-xxl: clamp(1rem, 1vw + 1rem, 3rem);
    --fs-600: 2rem;
    --fs-400: 1rem;
    --red-100: rgb(87, 0, 0)
}

.red {
    color: #8a0000;

}
html {
    scroll-behavior: smooth;
}
html, body {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

.main-wrapper {
    max-width: 1920px;
}


/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: 700;
    font-style: normal;
    color: #fff;
    background-color: #000000;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
    font-family: "Montserrat", sans-serif;
      -webkit-user-select: none; /* Safari */
  -ms-user-select: none; /* IE 10 and IE 11 */
  user-select: none;
}

h1 {
    font-size: var(--fs-xxl);
}

.site-wrapper {
    margin: 0 auto; /* Wyśrodkowanie poziome */
    width: 100%;
    max-width: 1920px;
    position: relative;
    display: flex; /* Włączenie Flexbox */
    flex-direction: column; /* Elementy układają się w kolumnie */
    justify-content: center; /* Wyśrodkowanie pionowe */
    align-items: center; /* Wyśrodkowanie poziome */
    min-height: 100vh; /* Całkowita wysokość okna przeglądarki */
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: 15px;
    z-index: 996;
    background: #ffc451;
    width: 40px;
    height: 40px;
    border-radius: 4px;
    transition: all 0.4s;
}

.back-to-top i {
    font-size: 28px;
    color: #151515;
    line-height: 0;
}

.back-to-top:hover {
    background: #151515;
}

.back-to-top:hover i {
    color: #ffc451;
}

.back-to-top.active {
    visibility: visible;
    opacity: 1;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    overflow: hidden;
    background: #151515;
}


.password-input-container {
    position: relative;
    width: 100%;
}

.password-input-container input {
    padding-right: 2.5rem; /* miejsce na ikonę */
}

#password-check-icon {
    cursor: pointer;
    font-size: 1.5rem;
}

@keyframes animate-preloader {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
    [data-aos-delay] {
        transition-delay: 0s !important;
    }
    .container-search {
         top: 10px;
          right: 30px;
    }
    .break_1 {
        display: none;
    }
}

@supports (-webkit-touch-callout: none) {
  /* Tylko Safari na iOS */
  .break_1 {
    display: none;
  }
}

@media (pointer: coarse) and (hover: none) and (-webkit-touch-callout: none) {
  /* Prawdopodobnie urządzenie iOS (dotykowe) */
   .break_1 {
    display: none;
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
    margin-left: auto;
    margin-right: auto;
    display: flex;
    justify-content: center;
    transition: 0.5s;
    z-index: 997;
    padding: 0 0;
    max-width: 1920px;
    background-color: hsla(240, 100%, 50%, 0);
    background-image: radial-gradient(ellipse farthest-corner at center top, hsl(0, 0%, 0%) 0%, hsla(240, 100%, 27%, 0.55) 40%, hsla(240, 100%, 50%, 0) 70%, hsla(240, 100%, 50%, 0) 100%);;




}
.nav-wrapper {
    width: 100%;
    max-height: 61px;
    max-width: 1920px;
}


#header.header-scrolled,
#header.header-inner-pages {
    background: rgba(0, 0, 0, .8);
    /*background: linear-gradient(180deg, rgba(0,0,0,1) 0%, rgba(0,0,0,1) 47%, rgba(0,0,0,0.5998993347338936) 85%, rgba(0,0,0,0) 100%);*/
}


/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* SEARCH BAR */
.container-search {
    height: 50px;
    position: absolute;
    top: 10px;
    right: 120px    ;


    display: grid;
    place-items: end;
    z-index: 999;
}


.search {
    position: absolute;
    width: 36px;
    height: 36px;
    top: 10px;
    right: 60px;

    /*background-color: #ffffff;*/
    border-radius: 4rem;
    padding: 1px;
    overflow: hidden;
    transition: width 0.5s cubic-bezier(0.9, 0, 0.3, 0.9);
    z-index: 999;

}

.search__input {
    border: none;
    outline: none;
    width: 550px;
    color: #020202;
    height: 100%;
    border-radius: 4rem;
    padding-left: 14px;
    font-family: sans-serif;
    font-size: 16px;
    font-weight: 500;
    opacity: 0;
    pointer-events: none;
    transition: opacity .5s;
    z-index: 998;
}

.search__input:-webkit-autofill {
    box-shadow: 0 0 0 100px rgb(239, 239, 239) inset;
}

.search__button {
    width: 34px;
    height: 34px;
    /*background-color: #FFFFFF;*/
    border-radius: 50%;
    position: absolute;
    top: 1px;
    bottom: 0;
    right: 1px;
    display: grid;
    place-items: center;
    cursor: pointer;
    transition: transform 0.6s cubic-bezier(0.9, 0, 0.3, 0.9);
    z-index: 99;
}

.search__icon, .search__close {
    color: #fafafa;
    font-size: 1.7rem;
    position: absolute;
    padding: 2px;
    transition: opacity 0.5s cubic-bezier(0.9, 0, 0.3, 0.9);
    z-index: 99;
}

.search__close {
    opacity: 0;
}

/* Search animated */
.show-search {
    width: 200px;
}

.show-search .search__input {
    opacity: 1;
    pointer-events: initial;
}

.show-search .search__button {
    transform: rotate(90deg);
}

.search__button:hover {
    background: orange;
    transition: 0.5s;
}

.show-search .search__icon {
    opacity: 0;
}

.show-search .search__close {
    opacity: 1;
    color: #d1860d;

}

/* END SEARCHBAR */

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/

.break_1 {
    width: 100%;
    height: 70vh;
    max-height: 800px;
    object-fit: scale-down;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;

}
.gradient-mask {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, .3) 30%, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0) 100%);
}
section {
    overflow: hidden;
}

.section-title {
    padding-bottom: 40px;
}

.section-title h2 {
    font-size: 14px;
    font-weight: 500;
    padding: 0;
    line-height: 1px;
    margin: 0 0 5px 0;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #aaaaaa;
    font-family: "Poppins", sans-serif;
}

.section-title h2::after {
    content: "";
    width: 120px;
    height: 1px;
    display: inline-block;
    background: #ffde9e;
    margin: 4px 10px;
}

.section-title p {
    margin: 0;
    font-size: 36px;
    font-weight: 700;
    text-transform: uppercase;
    font-family: "Poppins", sans-serif;
    color: #151515;
}


@keyframes animate-loading {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}


/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
    padding: 0 0 30px 0;
    color: #fff;
    font-size: 14px;
    width: 100%;

}

#footer .footer-top {
    width: 100%;
    height: auto;
    border-bottom: 1px solid #222222;
    padding: 60px 0 30px 0;
}

#footer .footer-top .footer-info {
    margin-bottom: 30px;
}

#footer .footer-top .footer-info h3 {
    font-size: 28px;
    margin: 0 0 20px 0;
    padding: 2px 0 2px 0;
    line-height: 1;
    font-weight: 700;
    text-transform: uppercase;
}

#footer .footer-top .footer-info h3 span {
    color: #ffc451;
}

#footer .footer-top .footer-info p {
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 0;
    color: #a9acb0;
}

#footer .footer-top .social-links a {
    font-size: 18px;
    display: inline-block;
    background: #292929;
    color: #fff;
    line-height: 1;
    padding: 8px 0;
    margin-right: 4px;
    border-radius: 4px;
    text-align: center;
    width: 36px;
    height: 36px;
    transition: 0.5s;
}

#footer .footer-top .social-links a:hover {
    background: #dc3445;
    color: #151515;
    text-decoration: none;
    transform: scale(1.1);
}

#footer .footer-top h4 {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    position: relative;
    padding-bottom: 12px;
}

#footer .footer-top .footer-links {
    margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

#footer .footer-top .footer-links ul i {
    padding-right: 2px;
    color: #ffc451;
    font-size: 18px;
    line-height: 1;
}

#footer .footer-top .footer-links ul li {
    padding: 10px 0;
    display: flex;
    align-items: center;
}

#footer .footer-top .footer-links ul li:first-child {
    padding-top: 0;
}

#footer .footer-top .footer-links ul a {
    color: #a9acb0;
    transition: 0.3s;
    display: inline-block;
    line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
    color: #ffc451;
}

#footer .footer-top .footer-newsletter form {
    margin-top: 30px;
    padding: 2px 20px;
    position: relative;
    border-radius: 4px;
}

#footer .footer-top .footer-newsletter form input[type=email] {
    border: 1px;
    background-color: white;
    color: #000;
    padding: 4px;
    width: calc(100% - 110px);
    height: 3rem;
}

#footer .footer-top .footer-newsletter form input[type=text] {
    border: 1px;
    background-color: white;
    color: #000;
    padding: 4px;
    width: calc(100% - 110px);
    height: 3rem;
}

#footer .footer-top .footer-newsletter form input[type=submit] {
    position: absolute;
    top: 0;
    right: -2px;
    bottom: 0;
    border: 0;
    font-size: 14px;
    padding: 0 20px;
    background: #dc3545;
    color: #fff;
    transition: 0.3s;
    border-radius: 0 1px 1px 0;
}

#footer .footer-top .footer-newsletter form input[type=submit]:hover {
    background: #ffcd6b;
}

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

#footer .credits {
    padding-top: 10px;
    text-align: center;
    font-size: 13px;
    color: #fff;
}

.footer-newsletter input:active {
    background-color: #fff;
}


/*--------------------------------------------------------------
# MAIN
--------------------------------------------------------------*/
img {
    object-fit: cover;
}
.img-ico {
    width: 100px;
}

.logo-footer {
    width: 10rem;
}

.text-content {
    font-size: 14px;
    color: #ffffff;
    mix-blend-mode: difference;

}

.play-video img {
    font-size: 120px;
    color: #a9acb0;
    opacity: 30%;
    transition: .5s;

}

.play-video img:hover {
    transform: scale(1.2);
    opacity: 100%;

}


/*--------------------------------------------------------------
# MODAL VIDEO
--------------------------------------------------------------*/


.modal-dialog {
    max-width: 800px;
    margin: 30px auto;
}

.modal-body {
    position: relative;
    padding: 0;
}

.btn-close {
    position: absolute;
    right: -30px;
    top: 0;
}


.cookie-container {
    position: fixed;
    width: 100vw;
    height: 200px;
    right: 0;
    bottom: -100%;
    background: #2f3640;
    color: #f5f6fa;
    padding: 32px 32px;
    text-align: center;
    box-shadow: 0 -2px 46px rgba(47, 54, 64, 0.8);
    transition: 1s;
}

.cookie-container.active {
    bottom: 100px;
    z-index: 999;
}

.cookie-container p {
    color: white;
}

.cookie-container a {
    color: #f4d106;

}

.cookie-btn {
    background: #9e1c1c;
    border: 0;
    color: #8be9fd;
    padding: 12px 48px;
    font-size: 18px;
    margin-bottom: 8px;
    margin-top: 20px;
    border-radius: 8px;
    cursor: pointer;

}

.product__icons {
        position: absolute;
        bottom: 0;
        left: 0;
    }

