/* bh28sw */
/* Zmienne */
:root {
    --color-border: rgba(255, 255, 255, 0.50);
    --color-primary: #01204E;
    --color-red: #C4261D;
    --color-white: #FFFFFF;

    --font-family: 'source-sans-pro', 'Roboto', Arial;
    --font-weight-bold: 900;
    --font-weight-semibold: 700;
    --font-weight-medium: 600;
    --font-weight-normal: 300;

    --padding-frame-mobi: 2.4rem;
    --padding-frame-tablet: 2.4rem;
    --padding-frame-desktop: 9rem;
}

/* Reset i podstawowe style */
*,
*:before,
*:after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html,
body {
    max-width: 100vw;
    overflow-x: hidden;
}

html {
    font-size: 62.5%;
    scroll-behavior: smooth;
}

body {
    background-color: var(--color-white);
    color: var(--color-white);
    font-display: swap;
    font-family: var(--font-family), sans-serif;
    font-size: 1.2rem;
    font-weight: var(--font-weight-normal);
    line-height: 1;
    min-width: 320px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Utils */

img {
    display: block;
    height: auto;
    max-width: 100%;
}

ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

/* Kontener */

.container {
    margin: 0 auto;
    max-width: 1440px;
}

/* Header */

header {
    padding: 0;
}

/* Banner z wideo */
.banner {
    background-color: #7c7d79;
    min-height: 586px;
    overflow: hidden;
    position: relative;
    width: 100%;
}

.banner-video {
    height: 100%;
    left: 0;
    object-fit: cover;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 0;
}

.banner-header,
.banner-menu {
  position: relative;
  width: 100%;
  z-index: 2;
}

.banner-header {
  border-bottom: 1px solid var(--color-border);
}

.banner-menu {
    align-items: center;
    display: flex;
    justify-content: center;
    padding: 0.8rem;
}

.banner-menu svg {
    height: 40px;
    width: 129px;
}

.banner-content {
    align-items: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    /*min-height: 100vh;*/
    padding: 2.6rem calc(var(--padding-frame-mobi) + 1.6rem) 4rem;
    position: relative;
    text-align: center;
    z-index: 1;
}

.banner-title {
    color: var(--color-white);
    font-size: 2.4rem;
    font-weight: var(--font-weight-bold);
    line-height: 1.2;
    margin-bottom: 1rem;
    max-width: 24rem;
}

.banner-subtitle {
    color: var(--color-white);
    font-size: 1.5rem;
    font-weight: var(--font-weight-normal);
    line-height: 1.4;
    max-width: 24rem;
}

/* Buttons */
.button {
    background-color: var(--color-red);
    border: none;
    color: var(--color-white);
    cursor: pointer;
    display: inline-block;
    font-size: 1.5rem;
    font-weight: var(--font-weight-semibold);
    padding: 0.8rem 1.6rem;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.button:hover {
    background: #E60000;
    box-shadow: 0 4px 12px rgba(255, 0, 0, 0.3);
}

.button:active {
    transform: translateY(0);
}

/* Licznik czasu */
.countdown {
    align-items: flex-end;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3rem;
}

.countdown-section {
    align-items: flex-end;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.countdown-item {
    --size: 7.2rem;
    align-items: center;
    background: var(--color-white);
    display: flex;
    flex-direction: column;
    font-weight: 900;
    height: var(--size);
    justify-content: center;
    position: relative;
    width: var(--size);
}

.countdown-number {
    color: var(--color-primary);
    font-size: 4.4rem;
    font-weight: var(--font-weight-bold);
    line-height: 1;
}

.countdown-label {
    bottom: 1rem;
    color: var(--color-primary);
    font-size: 0.8rem;
    font-weight: var(--font-weight-semibold);
    left: 50%;
    position: absolute;
    transform: translateX(-50%);
    white-space: nowrap;
}

.countdown-separator {
    --size: 2rem;
    align-items: center;
    align-self: end;
    background: var(--color-red);
    display: inline-flex;
    flex-direction: column;
    gap: 0;
    grid-column: 2 / span 1;
    grid-row: 1 / span 1;
    height: var(--size);
    justify-content: flex-end;
    padding: 0;
    width: var(--size);
}

/* Benefity */
.benefits {
    opacity: 1;
    transform: translateY(0);
    transition: transform 1s ease-out;
}

.benefits-container {
    display: flex;
    flex-direction: column;
    gap: 1.6rem;
    margin: 0 auto;
    max-width: 126rem;
    padding: 0 var(--padding-frame-mobi);
}

.benefit-box {
    align-content: center;
    align-items: center;
    background: radial-gradient(50% 50% at 50% 50%, #063275 0%, #01204E 100%);
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    padding: 1.3rem;
    text-align: center;
    opacity: 0;
    filter: blur(2px);
    transform: translateY(20px);
    transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1),
                filter 1s cubic-bezier(0.16, 1, 0.3, 1),
                transform 1s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, filter, transform;
}

.benefits.js-animate-in .benefit-box {
    opacity: 1;
    filter: blur(0);
    transform: translateY(-6rem);
}

.benefits.js-animate-in .benefit-box:nth-child(1) {
    transition-delay: 0.15s;
}

.benefits.js-animate-in .benefit-box:nth-child(2) {
    transition-delay: 0.3s;
}

.benefits.js-animate-in .benefit-box:nth-child(3) {
    transition-delay: 0.45s;
}

.benefit-icon {
    --size: 4.5rem;
    fill: var(--color-white);
    height: var(--size);
    margin-right: 1.6rem;
    width: var(--size);
}

.benefit-icon path {
    stroke: var(--color-white);
    stroke-width: 0.5;
    fill: var(--color-white);
    stroke-linecap: round;
    stroke-linejoin: round;
}

.benefit-icon path {
    stroke-width: 0.5;
}

.benefit-title {
    color: var(--color-white);
    font-size: 1.5rem;
    font-weight: var(--font-weight-semibold);
    margin: 0;
}

/* Wanted Section */
.wanted {
    background: var(--color-white);
    margin-bottom: 0;
    overflow: hidden;
    padding: 0;
    position: relative;
}

.wanted::after {
    background-image: url('assets/wanted_background_mobile_kn48rt.png');
    background-image:  image-set(
        url('assets/wanted_background_mobile_kn48rt.avif') type('image/avif'),
        url('assets/wanted_background_mobile_kn48rt.png') type('image/png')
    );
    background-position: center bottom;
    background-repeat: no-repeat;
    background-size: contain;
    bottom: 0;
    content: '';
    height: 70%;
    left: 0;
    position: absolute;
    width: 100%;
    z-index: 0;
}

.wanted-container {
    display: flex;
    flex-direction: column;
    margin: 0 auto;
    max-width: 126rem;
    overflow: hidden;
    padding: 0 0 8rem 0;
    position: relative;
    z-index: 1;
}

.wanted-images {
    align-items: center;
    display: flex;
    justify-content: center;
    min-height: 40rem;
    overflow: hidden;
    padding: 0 var(--padding-frame-mobi);
    position: relative;
    width: 100%;
}

.wanted-decor {
    height: auto;
    position: absolute;
    width: 15rem;
    z-index: 1;
}

.wanted-decor-1 {
    left: var(--padding-frame-mobi);
    top: 7rem;
}

.wanted-decor-2 {
    bottom: 7rem;
    right: var(--padding-frame-mobi);;
}

.wanted-paper {
    aspect-ratio: 270 / 388;
    display: block;
    height: auto;
    max-width: 27rem;
    position: relative;
    width: 100%;
    z-index: 2;
    transform: translateY(25rem);
    transition: transform 1s ease-out;
}

.wanted-paper.js-animate-in {
    transform: translateY(0);
}

.wanted-content {
    color: var(--color-primary);
    padding: 4rem 2rem;
}

.wanted-content-animate .wanted-title,
.wanted-content-animate .wanted-text {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s ease-out, transform 1s ease-out;
}

.wanted-content-animate.js-animate-in .wanted-title,
.wanted-content-animate.js-animate-in .wanted-text {
    opacity: 1;
    transform: translateY(0);
}

.wanted-content-animate.js-animate-in .wanted-title {
    transition-delay: 0.5s;
}

.wanted-content-animate.js-animate-in .wanted-text:nth-of-type(1) {
    transition-delay: 0.7s;
}

.wanted-content-animate.js-animate-in .wanted-text:nth-of-type(2) {
    transition-delay: 0.9s;
}

.wanted-content-animate.js-animate-in .wanted-text:nth-of-type(3) {
    transition-delay: 1.1s;
}

.wanted-content-animate.js-animate-in .wanted-text:nth-of-type(4) {
    transition-delay: 1.3s;
}

.wanted-title {
    color: var(--color-primary);
    font-size: 2.4rem;
    font-weight: var(--font-weight-bold);
    margin-bottom: 2rem;
    text-align: center;
}

.wanted-text {
    color: var(--color-primary);
    font-size: 1.6rem;
    font-weight: var(--font-weight-medium);
    margin-bottom: 1.6rem;
    text-align: center;
}

p {
    font-size: 1.6rem;
    line-height: 1.6;
}

/* Newsletter Section */
.newsletter {
    background: radial-gradient(78% 107.56% at 76.53% 108.12%, #033276 0%, #01204E 65.87%);
}

.newsletter-container {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    margin: 0 auto;
    max-width: 126rem;
    padding: 4rem var(--padding-frame-mobi) 0 var(--padding-frame-mobi);
}

.newsletter-content {
    margin: 0 auto;
    max-width: 100%;
}

.newsletter-title {
    color: var(--color-white);
    font-size: 2.4rem;
    font-weight: var(--font-weight-bold);
    margin-bottom: 1.6rem;
    text-align: center;
}

.newsletter-description {
    color: var(--color-white);
    font-size: 1.6rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    text-align: center;
}

.newsletter-form {
    background: transparent;
}

.newsletter-form-title {
    color: var(--color-white);
    font-size: 1.6rem;
    font-weight: var(--font-weight-semibold);
    line-height: 1.5;
    margin-bottom: 1.6rem;
}

.newsletter-bottom {
    width: 100%;
    padding: 4rem 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.newsletter-bottom svg {
    height: 55px;
    width: 178px;
}

.newsletter-rules {
  padding: 1.6rem 0;
  text-align: center;
  width: 100%;
}

.newsletter-rules a {
    color: var(--color-white);
    font-size: 1.6rem;
    font-weight: var(--font-weight-normal);
    line-height: 1.5;
    margin: 1.6rem auto;
}

.form-group {
    margin-bottom: 2rem;
}

.form-group.--centered-mobile {
    text-align: center;
}

.form-label {
    color: var(--color-white);
    display: none;
    font-size: 1.2rem;
    font-weight: 400;
    margin-bottom: 1.2rem;
}

.form-input {
    align-items: center;
    align-self: stretch;
    background: rgba(154, 157, 193, 0.10);
    border-radius: 5px;
    border: 1px solid #FFF;
    color: var(--color-white);
    display: flex;
    font-size: 1.2rem;
    height: 48px;
    justify-content: center;
    padding: 0 15px 3px 15px;
    width: 100%;
}

.form-input option {
    background: #112D5A;
    color: var(--color-white);
    cursor: pointer;
}

select.form-input {
  cursor: pointer;
}

.form-input::placeholder,
select.form-input.placeholder-selected,
select.form-input option.form-group-option-placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.form-input:focus {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--color-white);
}

.form-input-position-other {
  display: none;
  margin-top: 2rem;
}

.form-checkboxes {
    margin-bottom: 3rem;
}

.form-checkbox-group {
    align-items: flex-start;
    display: flex;
    margin-bottom: 1.6rem;
}

.form-checkbox {
    accent-color: var(--color-red);
    appearance: none;
    background: rgba(154, 157, 193, 0.10);
    border-radius: 5px;
    border: 1px solid #FFF;
    color: var(--color-white);
    cursor: pointer;
    height: 2rem;
    margin-right: 1.2rem;
    min-width: 2rem;
    position: relative;
    transition: all 0.2s ease;
    width: 2rem;
    -moz-appearance: none;
    -webkit-appearance: none;
}

.form-checkbox:checked {
    background: var(--color-red);
    border-color: var(--color-red);
}

.form-checkbox:checked::after {
    color: var(--color-white);
    content: '✔';
    font-size: 1.4rem;
    font-weight: bold;
    left: 50%;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
}

.form-checkbox:hover {
    border-color: rgba(255, 255, 255, 0.8);
}

.form-checkbox-label {
    color: var(--color-white);
    cursor: pointer;
    font-size: 1.2rem;
    font-weight: 400;
    line-height: 1.4;
    user-select: none;
}

.rodo-text {
    color: var(--color-white);
    font-size: 1.2rem;
    line-height: 1.5;
    font-weight: 400;
    margin-bottom: 2rem;
}

.toggle-short,
.toggle-full {
    display: inline;
}

.toggle-trigger {
    background: transparent;
    border: none;
    color: var(--color-white);
    cursor: pointer;
    font-size: 1.2rem;
    font-weight: var(--font-weight-bold) !important;
    margin-left: 0.5rem;
    padding: 0;
    text-decoration: none;
}

/* Komunikaty formularza */
.form-message {
    border-radius: 0.4rem;
    font-size: 1.4rem;
    font-weight: var(--font-weight-semibold);
    margin-bottom: 1.6rem;
    padding: 1.2rem 1.6rem;
    animation: slideIn 0.3s ease-out;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.form-message--success {
    background-color: rgba(34, 197, 94, 0.15);
    border: 1px solid rgba(34, 197, 94, 0.5);
    color: #22c55e;
}

.form-message--error {
    background-color: rgba(239, 68, 68, 0.15);
    border: 1px solid rgba(239, 68, 68, 0.5);
    color: #ef4444;
}

.button--loading {
    opacity: 0.7;
    cursor: not-allowed;
}

footer {
    font-size: 1.4rem;
    opacity: 0.8;
    padding: 2.4rem 0;
    text-align: center;
}

/* Media queries */
@media (min-width: 425px) {
    .banner-content {
        padding: 3rem var(--padding-frame-mobi) 6rem;
    }

    .banner-title {
        font-size: 3.6rem;
        max-width: 36rem;
    }

    .banner-subtitle {
        font-size: 1.6rem;
        max-width: 36rem;
    }

    .countdown-item {
        --size: 8rem;
        height: var(--size);
        width: var(--size);
    }

    .countdown-number {
        font-size: 5.5rem;
    }

    .countdown-label {
        font-size: 1rem;
    }

    .benefit-box {
        flex-direction: column;
        gap: 1rem;
        padding: 1.6rem;
    }

    .benefit-title {
        font-size: 1.6rem;
    }

    .benefit-icon path {
        stroke-width: 1;
    }

    .wanted-title {
        font-size: 2.8rem;
        margin-bottom: 2.5rem;
    }

    .wanted-text {
        font-size: 1.7rem;
        margin-bottom: 1.7rem;
    }

    .wanted-decor-1 {
        --paper-size: 30rem;
        left: calc(50% - 0.65 * var(--paper-size));
    }

    .wanted-decor-2 {
        --paper-size: 30rem;
        right: calc(50% - 0.65 * var(--paper-size));
    }

    .wanted-paper {
        --paper-size: 33rem;
        aspect-ratio: 330 / 474;
        max-width: var(--paper-size);
    }

    .newsletter-title {
        font-size: 2.8rem;
    }

    .newsletter-description {
        font-size: 1.7rem;
    }

    .rodo-text {
        font-size: 1.3rem;
    }

    .toggle-trigger {
        color: var(--color-white);
        font-size: 1.3rem;
        font-weight: var(--font-weight-bold) !important;
    }

    .form-label {
        font-size: 1.3rem;
        margin-bottom: 1.3rem;
    }

    .form-input {
        font-size: 1.3rem;
    }

    .form-checkbox-label {
        font-size: 1.3rem;
    }
}

@media (min-width: 768px) {
    .banner-content {
        padding: 5rem var(--padding-frame-tablet) 12rem;
    }

    .banner-menu {
        padding: calc(0.5 * var(--padding-frame-tablet)) var(--padding-frame-tablet);
        justify-content: space-between;
    }

    .banner-menu svg {
        height: 62px;
        width: 199px;
    }

    .button {
        padding: 0.8rem 1.6rem;
        font-size: 2rem;
    }

    .banner-title {
        font-size: 4.6rem;
        max-width: 46rem;
    }

    .banner-subtitle {
        font-size: 1.8rem;
        max-width: 46rem;
    }

    .countdown-item {
        --size: 10rem;
        height: var(--size);
        width: var(--size);
    }

    .countdown-number {
        font-size: 6.4rem;
    }

    .countdown-label {
        font-size: 1.2rem;
    }

    .countdown {
         flex-direction: row;
        gap: 1.5rem;
    }

    .countdown-section {
        gap: 1.5rem;
    }

    .countdown-separator {
        --size: 2.5rem;
        height: var(--size);
        width: var(--size);
    }

    .benefits-container {
        flex-direction: row;
        justify-content: space-between;
        padding: 0 var(--padding-frame-tablet);
    }

    .benefit-box {
        flex-direction: column;
        flex: 1;
        gap: 1rem;
        padding: 1.6rem var(--padding-frame-tablet);
    }

    .benefit-icon {
        --size: 5rem;
        height: var(--size);
        margin: 0;
        width: var(--size);
    }

    .benefit-icon path {
        stroke-width: 1;
    }

    .benefit-title {
        font-size: 1.8rem;
    }

    .wanted::after {
        background-image: url('assets/wanted_background_tablet_kn48rt.png');
        background-image: image-set(
            url('assets/wanted_background_tablet_kn48rt.avif') type('image/avif'),
            url('assets/wanted_background_tablet_kn48rt.png') type('image/png')
        );
    }

    .wanted-container {
        align-items: center;
        flex-direction: row;
        padding: 3rem 0 13rem 0;
    }

    .wanted-images {
        flex: 1;
        min-height: 50rem;
    }

    .wanted-content {
        flex: 1;
        padding: 4rem 3rem;
    }

    .wanted-decor {
        width: 18rem;
    }

    .wanted-title {
        font-size: 3.2rem;
        text-align: left;
    }

    .wanted-text {
        font-size: 1.8rem;
        text-align: left;
    }

    .newsletter-container {
        flex-direction: row;
      padding: 5rem var(--padding-frame-tablet) 0 var(--padding-frame-tablet);
    }

    .newsletter-title {
        font-size: 3.2rem;
    }

    .newsletter-description {
        font-size: 1.7rem;
    }

    .newsletter-form-title {
        font-size: 2.2rem;
    }

    .newsletter-title {
        font-size: 3.2rem;
    }

    .newsletter-description {
        font-size: 1.8rem;
    }

    .newsletter-bottom {
        width: 100%;
        padding: 6rem 0;
    }

    .newsletter-bottom svg {
        height: 96px;
        width: 309px;
    }

    .form-label {
        font-size: 1.4rem;
        margin-bottom: 1.4rem;
    }

    .form-input {
        font-size: 1.4rem;
    }

    .form-checkbox-label {
        font-size: 1.4rem;
    }

    .rodo-text {
        font-size: 1.4rem;
    }

    .toggle-trigger {
        color: var(--color-white);
        font-size: 1.4rem;
        font-weight: var(--font-weight-bold) !important;
    }
}

@media (min-width: 1024px) {
    .newsletter-form {
        column-gap: 3rem;
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto auto;
    }

    .newsletter-form-part:nth-child(1) {
        grid-column: 1;
        grid-row: 1;
    }

    .newsletter-form-part:nth-child(2) {
        grid-column: 2;
        grid-row: 1;
    }

    .newsletter-form-part:nth-child(3) {
        grid-column: 1;
        grid-row: 2;
    }

    .newsletter-form-part:nth-child(4) {
        grid-column: 2;
        grid-row: 2;
    }

    .newsletter-form-subpart {
        display: grid;
        gap: 3rem;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 1fr;
    }

    .newsletter-rules {
        padding: 3.2rem 0;
    }

    .form-group.--centered-mobile {
        text-align: unset;
        margin: 0;
    }
}

@media (min-width: 1366px) {
  .banner {
    min-height: 800px;
  }

    .banner-content {
        padding: 14rem var(--padding-frame-desktop) 4rem;
    }

    .banner-menu {
        padding: 1.2rem var(--padding-frame-desktop);
        justify-content: space-between;
    }

    .banner-title {
        font-size: 5.6rem;
        max-width: 120rem;
    }

    .banner-subtitle {
        font-size: 2.8rem;
        max-width: 120rem;
    }

    .countdown-item {
        --size: 18rem;
        height: var(--size);
        width: var(--size);
    }

    .countdown-number {
        font-size: 10.6rem;
    }

    .countdown-label {
        font-size: 1.8rem;
    }

    .countdown {
        flex-direction: row;
        gap: 4.5rem;
        margin-bottom: 4rem;
    }

    .countdown-section {
        gap: 4.5rem;
    }

    .countdown-separator {
        --size: 5rem;
        height: var(--size);
        width: var(--size);
    }

    .benefits-container {
        gap: 10rem;
        max-width: none;
        padding: 0 var(--padding-frame-desktop);
    }

    .benefit-box {
        gap: 2rem;
        padding: var(--padding-frame-tablet);
    }

    .benefit-icon {
        --size: 8rem;
        height: var(--size);
        width: var(--size);
    }

    .benefit-icon path {
        stroke-width: 1.25;
    }

    .benefit-title {
        font-size: 2.4rem;
    }

    .wanted::after {
        background-image: url('assets/wanted_background_desktop_kn48rt.png');
        background-image: image-set(
            url('assets/wanted_background_desktop_kn48rt.avif') type('image/avif'),
            url('assets/wanted_background_desktop_kn48rt.png') type('image/png')
        );
    }

    .wanted-container {
        padding: 10rem 0 30rem 0;
    }

    .wanted-images {
        min-height: 60rem;
        padding: 6rem 4rem 6rem 0;
    }

    .wanted-content {
        padding: 6rem 0;
    }

    .wanted-decor {
        width: 22rem;
    }

    .wanted-decor-1 {
        top: 7rem;
        left: 2rem;
        width: 31rem;
    }

    .wanted-decor-2 {
        bottom: 15rem;
        right: 6rem;
    }

    .wanted-paper {
        aspect-ratio: 1 / 1;
        max-width: 49rem;
    }

    .wanted-title {
        font-size: 5.7rem;
        margin-bottom: 3rem;
    }

    .wanted-text {
        font-size: 2.8rem;
        margin-bottom: 2rem;
    }

    .newsletter-container {
      padding: 6rem 0 0 0;
    }

    .newsletter-bottom {
        padding: 8rem 6rem;
    }

    .newsletter-bottom p {
        font-size: 2rem;
    }

    .newsletter-title {
        font-size: 4.6rem;
        margin-bottom: 3rem;
    }

    .newsletter-description {
        font-size: 2.1rem;
        margin-bottom: 3rem;
    }

    .newsletter-form-title {
        font-size: 2.4rem;
        margin-bottom: 3rem;
    }

    .newsletter-image {
        margin-top: -4rem;
    }

    .form-label {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .form-input {
        font-size: 1.5rem;
    }

    .form-checkbox-label {
        font-size: 1.5rem;
    }

    .button {
        font-size: 2rem;
        padding: 1.6rem 4rem;
    }
}

@media (min-width: 1930px) {
  .wanted::after {
    background-image: url('assets/wanted_background_tv_kn48rt.png');
    background-image: image-set(
      url('assets/wanted_background_tv_kn48rt.avif') type('image/avif'),
      url('assets/wanted_background_tv_kn48rt.png') type('image/png')
    );
    background-size: cover;
    height: 80%;
  }
}

/* Devices */
.to-tablet {
    display: block;
}

.from-tablet {
    display: none;
}

@media (min-width: 768px) {
    .to-tablet {
        display: none;
    }

    .from-tablet {
        display: block;
    }
}
