@charset "utf-8";

html {
    font-size: clamp(20px, min(1.563vw, 2.778vh), 30px);
}

body {
    font-family: "Avenir Next Condensed";
    font-weight: 500;
    padding: 0;
    font-size: 1rem;
    color: #fff;
    background-color: #c20102;
    background-image: url("../img/main-bg.jpg");
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
}

.page-wrapper {
    overflow-x: hidden;
    position: relative;
}

section,
.section {
    position: relative;
}

.hook {
    top: -1.5rem;
    position: absolute;
}

/* Typography */
h1 {
    font-size: 1.749rem;
    text-transform: uppercase;
    text-align: center;
    color: #f6d40a;
    line-height: 1.16;
    width: fit-content;
    font-weight: bold;
}

h2 {
    font-size: min(10vw, 3rem);
    text-transform: uppercase;
    text-align: center;
    color: #f6d40a;
    line-height: 1.16;
    font-weight: bold;
    margin-bottom: 2.5rem;
}

h3 {
    font-size: 1.467rem;
    text-transform: uppercase;
    text-align: center;
    color: #f6d40a;
    line-height: 1.16;
    font-weight: bold;
}

.btn.btn-primary {
    font-size: 1rem;
    background-color: #fff;
    width: 11.767rem;
    padding: 0.4rem 0 0.133rem 0;
    height: 1.533rem;
    line-height: 1;
    border-radius: calc(0.5 * 1.533rem);
    color: #c20102;
    border: 0;
    margin-left: auto;
    margin-right: auto;
    margin-top: 3rem;
    display: block;
    position: relative;
    font-weight: bold;
    text-transform: uppercase;
    min-width: 11.767rem;
}

/* Navbar */
nav .nav-item .nav-link {
    color: #fff;
    font-size: 0.759rem;
    font-weight: 500;
    text-transform: uppercase;
    padding: 0.5rem 0.5rem;
    transition: all 0.3s ease-In-Out;
}

nav .nav-item .nav-link:hover {
    transform: scale(1.1);
}

nav .nav-item .nav-link.active {
    color: #f6d40a;
}

nav.navbar {
    padding: 0;
}

@media (min-width: 768px) {
    .navbar-collapse {
        min-height: fit-content;
    }

    nav.navbar {
        background-color: rgba(248, 3, 2, 0);
        box-shadow: 0 1px 0 rgba(17, 17, 26, 0),
        0 0 8px rgba(17, 17, 26, 0);
        transition: all 0.3s ease-In-Out;
        padding: 1.5rem 0;
    }

    nav.top-nav-collapse {
        background-color: rgba(248, 3, 2, 1);
        box-shadow: 0 1px 0 rgba(17, 17, 26, 0.05),
        0 0 8px rgba(17, 17, 26, 0.1);
        padding: 0;
    }
}

@media (max-width: 768px) {
    nav .nav-item .nav-link {
        background-color: rgba(248, 3, 2, 0.85);
        box-shadow: 0 1px 0 rgba(17, 17, 26, 0),
        0 0 8px rgba(17, 17, 26, 0);
        text-align: center;
        margin: 5px;
        border-radius: 5px;
    }
    nav .navbar-nav {
        padding-top: 5px;
    }
}

/* Hamburger  */
.navbar-toggler {
    padding: 0.5rem 0.75rem;
    border: 0;
    text-decoration: none;
    background-color: #f80302;
    border-radius: 0 0 0.75rem 0.75rem;
    margin: 0 auto;
    box-shadow: 0px 1px 0px rgba(17, 17, 26, 0.05),
    0px 0px 8px rgba(17, 17, 26, 0.1);
}

.navbar-toggler-icon {
    background-image: none;
    position: relative;
    width: 23px;
    height: 16px;
    padding: 0;
}

button:focus,
.navbar-toggler:focus {
    outline: 0 !important;
    box-shadow: 0 0 0 0;
}

.navbar-toggler-icon .bar {
    height: 2px;
    background-color: #fff;
    border-radius: 1px;
    position: absolute;
    left: 0;
    right: 0;
    transition: all 0.5s ease;
}

.navbar-toggler.collapsed .bar.bar1 {
    top: 0;
    transform: rotate(0deg);
}

.navbar-toggler.collapsed .bar.bar2 {
    transform: rotate(0deg);
    opacity: 1;
}

.navbar-toggler.collapsed .bar.bar3 {
    bottom: 0;
    transform: rotate(0deg);
}

.navbar-toggler-icon .bar.bar1 {
    top: calc(50% - 1px);
    transform: rotate(45deg);
}

.navbar-toggler-icon .bar.bar2 {
    top: calc(50% - 1px);
    transform: rotate(45deg);
    opacity: 0;
}
.navbar-toggler-icon .bar.bar3 {
    bottom: calc(50% - 1px);
    transform: rotate(-45deg);
}

@media (max-width: 991.98px) {
    .hero {
        min-height: 100vh;
        min-height: 100dvh;
        background-image: url("../img/hero-01.png");
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center top;
        position: relative;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        margin-top: 5rem;
    }

    .hero02 {
        height: 63.508vw;
        background-image: url("../img/hero-02.png");
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center top;
        position: relative;
    }
}

@media (min-width: 992px) {
    .hero {
        height: 100vh;
        height: 100dvh;
        min-height: 430px;
        max-height: 36rem;
        background-image: url("../img/hero-01.png");
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center top;
        position: relative;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
    }

    .hero02 {
        height: 100vh;
        height: 100dvh;
        min-height: 430px;
        max-height: 36rem;
        background-image: url("../img/hero-02.png");
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center top;
        position: relative;
    }

    .hero h1 {
        position: absolute;
        top: clamp(150px, min(37.24vw,66.204vh) ,715px);
        left: calc(50% + 5.667rem);
    }

    .hero .btn.btn-primary {
        font-size: 1.567rem;
        background-color: #fff;
        font-weight: bold;
        width: fit-content;
        padding: 0.4rem 1rem 0.133rem 1rem;
        height: 2.167rem;
        line-height: 1;
        border-radius: 0.733rem;
        color: #c20102;
        border: 0;
        display: inline-block;
        position: relative;
        box-shadow: 0.133rem 0.133rem 1rem 0.433rem rgba(119, 1, 1, 0.75);
    }
}

/* Hero animation */
.hero02 {
    animation: showhero 3s ease-in-out 0s infinite alternate forwards;
    transform-origin: 35% 70%;
}

@keyframes showhero {
    0% {
        transform: translateY(1.5%) scale(0.95) rotate(-3deg);
    }

    45% {
        transform: translateY(0) scale(1.1) rotate(4deg);
    }

    100% {
        transform: translateY(0) scale(1) rotate(0);
    }
}

.share {
    position: fixed;
    right: 0.5rem;
    bottom: 0;
    z-index: 999;
}

.share img {
    width: min(40vw, 9.333rem);
    height: auto;
}

.content-section {
    padding-top: 4rem;
    padding-bottom: 1rem;
}

/* Form */
.form .form-container {
    max-width: 560px;
    margin: 0 auto;
}

.form-label {
    font-size: 0.6rem;
    font-weight: bold;
    padding-left: 0.667rem;
    margin-bottom: 0.167rem;
}
.form-control {
    height: 40px;
    padding-left: 20px;
    font-weight: 500;
    color: #939598;
    letter-spacing: -0.01rem;
    font-size: 0.667rem;
    border-radius: 20px;
    border: 0;
}

.kod .form-label {
    width: 100%;
    padding: 0;
    text-align: center;
    color: #f6d40a;
    font-size: 1rem;
    font-weight: bold;
    text-transform: uppercase;
}

.kod .form-control {
    max-width: 260px;
    height: 70px;
    font-size: 1.283rem;
    color: #000;
    text-align: center;
    padding: 0.45rem 20px 0.25rem 20px;
    margin-left: auto;
    margin-right: auto;
}

.kod .form-control::placeholder {
    color: #000;
}

.form-check-label {
    font-size: 0.615rem;
    text-align: justify;
}

.form-check {
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    line-height: 1;
    cursor: pointer;
}

.form-check-label a {
    color: inherit;
}

.form-check .form-check-input[type="checkbox"] {
    width: 12px;
    height: 12px;
    border-radius: 6px;
    margin-left: -20px;
    margin-top: 0;
}

.form-check-input:checked[type="checkbox"] {
    background-color: #f6d40a;
    border-color: #f6d40a;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23000' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='m6 10 3 3 6-6'/%3e%3c/svg%3e");
}

.steps {
    color: #eedeb9;
    font-size: 1.267rem;
    line-height: 1.18;
    font-family: "Avenir Next Condensed Demi";
    font-weight: 600;
}

.steps .step img {
    width: auto;
    height: 6.333rem;
    transition: all 0.3s ease-In-Out;
}

.steps .step img:hover {
    transform: scale(1.1);
}

.zasady p {
    color: #fff;
    font-size: 0.833rem;
}

@media (min-width: 768px) {
    .nagrody .img-fluid {
        max-width: min(98.438vw, 175vh);
        height: auto;
    }
}

.nagrody-anime.trig {
    animation: jump 2s ease 0s 1 normal forwards;
}

@keyframes jump {
    0% {
        animation-timing-function: ease-out;
        transform: scale(1);
        transform-origin: center center;
    }

    10% {
        animation-timing-function: ease-in;
        transform: scale(0.91);
    }

    17% {
        animation-timing-function: ease-out;
        transform: scale(0.98);
    }

    33% {
        animation-timing-function: ease-in;
        transform: scale(0.87);
    }

    45% {
        animation-timing-function: ease-out;
        transform: scale(1);
    }
}

.zwyciezcy .table {
    background-color: transparent;
    color: #fff;
    max-width: 33.667rem;
    width: 80%;
    margin-left: auto;
    margin-right: auto;
}

.zwyciezcy .carousel-item h2 {
    max-width: 33.667rem;
    width: 80%;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
    margin-bottom: 0;
    padding-left: 1.25rem;
}

.zwyciezcy .table > :not(caption) > * > * {
    padding: 0.25rem 0.5rem;
    color: #fff;
    background-color: transparent;
    border-bottom-width: 0;
}

.zwyciezcy .table th {
    font-size: 0.6rem;
}

.zwyciezcy .table td {
    font-size: 1rem;
}

@media (min-width: 768px) {
    .zwyciezcy .table th {
        font-size: 1rem;
    }

    .zwyciezcy .table td {
        font-size: 2rem;
        color: rgba(255, 255, 255, 0.5);
    }
}

.zwyciezcy .table td:last-child {
    font-weight: bold;
}

.zwyciezcy .btn-table {
    color: #fff;
    text-decoration: none;
    position: relative;
    display: inline-block;
    z-index: 2;
    cursor: pointer;
}

.zwyciezcy .btn-table.active::before {
    content: "";
    display: block;
    width: 1.5em;
    height: 1.5em;
    border-radius: 50%;
    background-color: #810a10;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
    box-shadow: 0.25em 0.25em 0.5em 0.15em rgba(10, 14, 28, 0.38);
}

.carousel-control-next,
.carousel-control-prev {
    opacity: 1;
}

@media (max-width: 768px) {
    .carouselMonth .carousel-control-next,
    .carouselMonth .carousel-control-prev {
        opacity: 1;
        height: min(10vw, 3rem);
    }
}

.carousel-control-next img,
.carousel-control-prev img {
    width: 1.333rem;
    height: auto;
}

.carousel {
    max-width: 42.667rem;
    margin-left: auto;
    margin-right: auto;
}

.zwyciezcy .winner {
    background-color: #fff;
    color: #c20102;
    font-size: 1.5rem;
    text-align: center;
    width: 70%;
    max-width: 27.927rem;
    margin-left: auto;
    margin-right: auto;
    border-radius: 0.733rem;
    font-weight: bold;
    padding-top: 0.1rem;
}

@media (min-width: 768px) {
    .zwyciezcy .winner {
        font-size: 2.373rem;
        padding-top: 0.3rem;
    }
}

.carousel-winners {
    max-width: 38rem;
    margin-left: auto;
    margin-right: auto;
}

.prod {
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: 58.594vw;
}

@media (min-width: 768px) {
    .prod {
        width: auto;
        max-width: 100%;
        height: auto;
        max-height: 31.25vw;
    }
}

.prod-l.trig {
    animation: wiggle 2s normal forwards ease-in-out;
}

@keyframes wiggle {
    0%,
    100% {
        transform: translateX(0%);
        transform-origin: 50% 50%;
    }

    15% {
        transform: translateX(-30px) rotate(-6deg);
    }

    30% {
        transform: translateX(15px) rotate(6deg);
    }

    45% {
        transform: translateX(-15px) rotate(-3.6deg);
    }

    60% {
        transform: translateX(9px) rotate(2.4deg);
    }

    75% {
        transform: translateX(-6px) rotate(-1.2deg);
    }
}

.prod-r.trig {
    animation: wiggle2 2s normal forwards ease-in-out;
}

@keyframes wiggle2 {
    0%,
    100% {
        transform: translateX(0%);
        transform-origin: 50% 50%;
    }

    15% {
        transform: translateX(-30px) rotate(6deg);
    }

    30% {
        transform: translateX(15px) rotate(-6deg);
    }

    45% {
        transform: translateX(-15px) rotate(3.6deg);
    }

    60% {
        transform: translateX(9px) rotate(-2.4deg);
    }

    75% {
        transform: translateX(-6px) rotate(1.2deg);
    }
}

.produkty h3 {
    color: #fff;
    font-size: 1.645rem;
}

.produkty .kup img {
    width: auto;
    height: min(13vw, 2.733rem);
}

.contact-form {
    max-width: 560px;
    margin: 0 auto;
}

textarea.form-control {
    height: 7.167rem;
}

.contact-form .form-check {
    max-width: 100%;
}

#lottery_form_regulations {
    margin-top: 6px;
}

.upload-file-text {
    text-align: justify;
}

footer {
    background-color: #810a10;
    padding: 1rem 0;
}

footer .nav-link,
footer .nav-link:focus,
footer .nav-link:hover {
    color: #fff;
    padding: 0;
}

footer .nav li {
    padding: 0.5rem;
    font-size: 0.567rem;
    text-transform: uppercase;
}

/* Parallax */
.rogal {
    position: absolute;
    z-index: 1;
}

.rogal-r {
    width: min(35.208vw, 62.593vh);
    max-width: 676px;
    height: auto;
    left: calc(50% + 300px);
    top: 25%;
}

.rogal-l {
    width: min(30.885vw, 54.907vh);
    max-width: 593px;
    height: auto;
    left: 0;
}

section:has(.rogal) .container-fluid {
    position: relative;
    z-index: 3;
}

.form-laureat-container {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.form-check-l {
    max-width: 100%;
}

.custom-file {
    max-width: 190px;
    margin: auto;
    cursor: pointer;
}

.custom-file .custom-file-label::after {
    display: none;
}

.custom-file-input {
    position: relative;
    z-index: 2;
    width: 100%;
    margin-top: -24px;
    opacity: 0;
    cursor: pointer;
}
.custom-file-label {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1;
    cursor: pointer;
}

.upload-file {
    color: #f6d40a;
    font-size: 0.615rem;
}

.upload-file .btn.btn-primary {
    min-width: 5.467rem;
    width: auto;
    margin-left: auto;
    margin-right: auto;
    margin-top: 0.6rem;
}

.photo-prev {
    width: 208px;
    height: 112px;
    border: solid 4px #710205;
    margin-left: auto;
    margin-right: auto;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    border-radius: 5px;
}

.info-about-send {
    color: #f6d40a;
    font-size: 0.615rem;
    text-align: center;
}

.thx {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.thx .ok {
    width: 8.733rem;
    max-width: 50%;
    height: auto;
}

.thx h1 {
    color: #fff;
    text-transform: none;
    font-size: min(6.75vw, 1.667rem);
    line-height: normal;
    font-weight: bold;
    width: 100%;
}

.zaslepka {
    height: 25rem;
    width: 100%;
    background-image: url("../img/zaslepka.png");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: auto 100%;
    font-size: min(6vw, 1.722rem);
    font-weight: bold;
    letter-spacing: -0.033rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-content: center;
    justify-content: center;
}

.zaslepka strong {
    display: block;
    font-size: 135%;
}

.zaslepka strong.data {
    color: #f6d40a;
    display: block;
    font-size: 140%;
}

.zaslepka-inner {
    transform: rotate(-4.5deg);
    line-height: 1.29;
}

.zaslepka.before {
    min-height: 100vh;
    background-image: url("../img/bg.jpg");
    background-repeat: no-repeat;
    background-position: right top;
    background-size: cover;
    background-attachment: fixed;
    display: flex;
    padding: 2rem 1rem 3rem 1rem;
    text-align: left;
}

.zaslepka.before .inner {
    width: 100%;
    max-width: 47.333rem;
    margin: auto;
}

.zaslepka.before .zlap {
    width: 90%;
    max-width: 32.133rem;
    position: relative;
    z-index: 2;
}

.zaslepka.before .box {
    width: 100%;
    margin-left: auto;
    margin-right: 0;
    background-color: #810a10;
    border-radius: 2.1rem;
    transform: rotate(-4.46deg);
    padding: 5rem 1rem 1rem 1rem;
    margin-top: -5rem;
    position: relative;
    z-index: 1;
    box-shadow: 4.1rem 2.1rem 1.633rem 1rem rgba(10, 14, 28, 0.33);
}

@media (min-width: 768px) {
    .zaslepka.before .box {
        width: 94%;
        padding: 1rem;
        margin-top: -7.4rem;
    }
}

.zaslepka.before h1 {
    text-transform: uppercase;
    color: #f6d40a;
    font-size: 2.42rem;
    text-align: center;
    letter-spacing: -0.06rem;
    text-shadow: 0.333rem 0.333rem 0.8rem rgba(0, 0, 0, 0.27);
    width: 100%;
    max-width: 35.333rem;
    margin: 1rem auto;
}

@media (min-width: 768px) {
    .zaslepka.before h1 {
        text-align: right;
    }
}

.zaslepka.before ul li {
    font-size: 1.722rem;
    text-shadow: 0.333rem 0.333rem 0.8rem rgba(0, 0, 0, 0.27);
    letter-spacing: -0.06rem;
    text-indent: -0.5rem;
}

.zaslepka.before li::marker {
    color: #f6d40a;
}

.zaslepka.before ol,
.zaslepka.before ul {
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
}

.zaslepka.before p {
    font-size: 1.722rem;
    text-shadow: 0.333rem 0.333rem 0.8rem rgba(0, 0, 0, 0.27);
    letter-spacing: -0.06rem;
    text-align: center;
    margin-bottom: 0;
}

/* Modal */
.modal-backdrop.show {
    opacity: 0;
}

.modal-content {
    background-color: rgba(255, 255, 255, 0.82);
    border-radius: 1rem;
    border: 0;
    padding: 0.75rem;
}

.modal-header {
    border: 0;
    background-color: transparent;
}

.modal-header .btn-close {
    padding: 0;
    width: 1.967rem;
    height: 1.967rem;
    opacity: 1;
    background-image: none;
}

.modal-header .btn-close img {
    width: 100%;
    height: auto;
}

.modal-body h2 {
    text-align: center;
    color: #810a10;
    font-size: 1.784rem;
}

/* Thx */
.thx .not-winner {
    font-size: min(12vw, 3.05rem);
    text-shadow: 0.333rem 0.333rem 0.8rem rgba(0, 0, 0, 0.27);
}

.thx .winner {
    font-size: clamp(65px, 11vw, 4.5rem);
    text-shadow: 0.333rem 0.333rem 0.8rem rgba(0, 0, 0, 0.27);
    line-height: 1.1;
}

.thx .winner strong {
    display: inline-block;
    font-size: 130%;
}

.thx p {
    max-width: 40rem;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.067rem;
    font-weight: bold;
}

.invalid-feedback {
    color: #ffffff;
}

.is-invalid {
    color: #ff0202;
}
