/* --- START: main.css --- */
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

body
{
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    scroll-behavior: smooth;
    display: flex;
    align-items: center;
    flex-direction: column;
}


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


main {
    width: 100%;
    max-width: 100vw;
    padding: 0 12.5%;
    background-color: #fff;
}




.logo1
{
    font-size: 5em;
    color: #0B2D46;
    font-family: Inter;
    font-weight: 800;
    letter-spacing: 0%;
    margin: 0;
}

.logo2
{
    color: #3993D5;
    font-style: italic;
}

nav
{
    display: flex;
    justify-content: space-between;
    flex-direction: row-reverse;
    align-items: center;
    margin-top: 20px;
    width: 100%;
    margin: 10px 0 60px 0;
}

nav > ul
{
    list-style: none;
    display: flex;
    gap: 20px;
}

nav > ul > li
{
    font-size: 1em;
    font-family: Inter;
    font-weight: 400;
    letter-spacing: 0%;
    color: #0B2D46;
    text-decoration: none;
    user-select: none;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

nav > ul > li:hover
{
    color: #3993D5;
}

.underLogoText
{
    font-size: 1.5em;
    color: #0B2D46;
    font-family: Inter;
    font-weight: 200;
    letter-spacing: 0%;
}

.underLogoTextContainer
{
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: start;
}

.strongText
{
    font-size: 1.5em;
    color: #0B2D46;
    font-family: Montserrat;
    font-weight: 500;
    letter-spacing: 0%;
}

.underLogoDescription
{
    max-width: 900px;
    margin-top: 20px;
}




.emptySeparator
{
    width: 100%;
    height: 40px;
}

.lineSeparator
{
    width: 100%;
    height: 1px;
    background-color: #0B2D46;
    margin: 20px 0;
}

.lineSeparator2
{
    width: 80%;
    height: 1px;
    background-color: #3993D5;
    margin: 20px 0;
}

.centerButtonContainer
{
    width: 100%;
    display: flex;
    justify-content: center;
}

.signUpButtonContainer
{
    background-color: #3993D5;
    border-radius: 100px;
    width: 400px;
    padding: 12px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: none;
    cursor: pointer;
    color: #fff;
}

.signUpButton
{
    font-size: 2em;
    font-family: Montserrat;
    font-weight: 800;
    letter-spacing: 0%;
    background: none;
    border: none;
    color: inherit;
    padding: 0;
    display: flex;
    gap: 10px;
}


.centerContainer
{
    width: 100%;
    display: flex;
    justify-content: center;
}

section
{
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.moreDescriptionContainer
{
    display: flex;
    gap: 15px;
}

.registeryContainer
{
    align-items: start;
    gap: 50px;

    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 50px;
}

.registeryBlock
{
    width: 375px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
    gap: 10px;
    border: 3px solid #3993D5;
    border-radius: 20px;
    min-height: 400px;
    height: auto;

    
    
}
.registeryBlockSection
{
    display: flex;
    width: calc(100% - 40px);
    justify-content: center;
    align-items: start;
    flex-direction: column;
    gap: 10px;
    padding: 20px;

}
.registeryBlockDate
{
    font-size: 1em;
    font-family: Montserrat;
    font-weight: 500;
    letter-spacing: 0%;
    color: #0B2D46;
}

.registeryBlockDescription
{
    font-size: 1.8em;
    font-family: Montserrat;
    font-weight: 500;
    letter-spacing: 0%;
    color: #3993D5;
}

.signUpButtonContainerRegistery
{
    background-color: #0B2D46;
    border-radius: 100px;
    width: 95%;
    padding: 12px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: none;
    cursor: pointer;
    color: #fff;
    text-decoration: none;
}

.signUpButtonRegistery
{
    font-size: 1.7rem;
    font-family: Montserrat;
    font-weight: 800;
    letter-spacing: 0%;
    background: none;
    border: none;
    color: inherit;
    padding: 0;
    display: flex;
    gap: 10px;
    white-space: nowrap;

}

.signUpButtonContainerRegistery2
{
    background-color: #00000000;
    border-radius: 100px;
    border: 3px solid #0B2D46;
    width: 95%;
    padding: 12px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    color: #0B2D46;
    text-decoration: none;
}

.signUpButtonRegistery2
{
    font-size: 1.7rem;
    font-family: Montserrat;
    font-weight: 800;
    letter-spacing: 0%;
    background: none;
    border: none;
    color: inherit;
    padding: 0;
    display: flex;
    gap: 10px;
}

.centerText
{
    text-align: center;
}

.centerLogoContainer
{
    margin: 50px 0 50px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.hamburger {
    display: none;
    font-size: 2em;
    cursor: pointer;
    color: #0B2D46;
    padding: 10px;
}

footer
{
    width: 100vw;
    display: flex;
    gap: 20px;
    flex-direction: column;
    align-items: center;
    padding: 60px 0 30px 0;
    background-color: #0B2D46;
}

footer a
{
    text-decoration: none;
    color: #fff;
    text-decoration: underline;
}

.footerInfoContainer
{
    display: flex;
    justify-content: center;
    gap: 20px;
}
.infoBox
{
    display: flex;
    width: 320px;
    gap: 20px;
    flex-direction: column;
    color: #fff;
}

.footerInfoTitle
{
    font-size: 1.5em;
    font-family: Montserrat;
    font-weight: 700;
    letter-spacing: 0%;
    color: #3993D5;
}

.footerInfo
{
    font-size: 1em;
    font-family: Montserrat;
    letter-spacing: 0%;
    color: #fff;
}

.footerText
{
    font-size: 0.8em;
    font-family: Montserrat;
    letter-spacing: 0%;
    color: #fff;
}

.patronLogo
{
    height: 150px;
    margin: 0;
}

.footerInfoInteractive
{
    text-decoration: underline;
    color: #fff;
    cursor: pointer;
    transition: color 0.3s ease-in-out;
}


@media (max-width: 1024px) {
    main {
        width: 100vw;
        padding: 0 5%;
    }
    .logo1 {
        font-size: 3em;
    }
    .underLogoText, .strongText {
        font-size: 1.2em;
    }
    nav > ul {
        flex-direction: column;
        gap: 10px;
        align-items: flex-end;
    }
    .registeryContainer {
        flex-direction: column;
        gap: 30px;
    }
    .registeryBlock {
        width: 100%;
        height: auto;
    }
    .signUpButtonContainer, .signUpButtonContainerRegistery, .signUpButtonContainerRegistery2 {
        width: 100%;
    }
    .signUpButton, .signUpButtonRegistery, .signUpButtonRegistery2 {
        font-size: 1.3em;
    }
    .footerInfoContainer {
        flex-direction: column;
        align-items: center;
    }
    .infoBox {
        width: 100%;
    }
    .moreDescriptionContainer {
        flex-direction: column;
    }
    html, body {
        width: 100%;
        min-width: 100vw;
        box-sizing: border-box;
        max-width: 100%;
    }
}

@media (max-width: 600px) {
    .logo1 {
        font-size: 2.2em;
    }
    .underLogoText, .strongText {
        font-size: 1em;
    }
    nav {
        flex-direction: column;
        align-items: flex-start;
    }
    nav > ul {
        align-items: flex-start;
    }
    .signUpButton {
        font-size: 1.2em;
        flex-direction: column;
        gap: 5px;
        text-align: center;
    }
    .registeryBlockDescription {
        font-size: 1.3em;
        text-align: center;
    }
    .registeryBlockDate {
        text-align: center;
    }
    .centerLogoContainer {
        flex-direction: column;
    }
    .patronLogo {
        height: 100px;
    }
    footer {
        padding: 30px 0 20px 0;
    }

    .signUpButtonContainer {
        width: 90%;
        padding: 10px 15px;
        border-radius: 50px;
    }

    .signUpButton {
        font-size: 1.1em;
        flex-direction: row;
        gap: 8px;
        align-items: center;
        justify-content: center;
    }

    .signUpButton img {
        height: 24px;
        width: 24px;
    }
    nav {
        flex-direction: column;
        align-items: flex-start;
    }

    .hamburger {
        display: block;
    }

    nav ul {
        display: none;
        flex-direction: column;
        gap: 10px;
        width: 100%;
        margin: 0;
        padding: 10px 0;
    }

    nav ul.show {
        display: flex;
    }

    nav {
        margin-bottom: 10px;
    }

    footer {
        width: 100vw;
        padding: 40px 10px 20px 10px;
        align-items: flex-start;
    }

    .footerInfoContainer {
        flex-direction: column;
        gap: 30px;
        width: 100%;
    }

    .infoBox {
        width: 100%;
    }

    .footerText {
        text-align: center;
        width: 80%;
    }
}

/* --- START: konferencja17.css --- */
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

body
{
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    scroll-behavior: smooth;

}

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


main {
    width: 100%;
    max-width: 100vw;
    padding: 0 12.5%;
    box-sizing: border-box;
}

.logo1
{
    font-size: 5em;
    color: #0B2D46;
    font-family: Inter;
    font-weight: 800;
    letter-spacing: 0%;
    margin: 0;
}

.logo2
{
    color: #3993D5;
    font-style: italic;
}

nav
{
    display: flex;
    justify-content: space-between;
    flex-direction: row-reverse;
    align-items: center;
    margin-top: 20px;
    width: 100%;
    margin: 10px 0 60px 0;
}

nav > ul
{
    list-style: none;
    display: flex;
    gap: 20px;
}

nav > ul > li
{
    font-size: 1em;
    font-family: Inter;
    font-weight: 400;
    letter-spacing: 0%;
    color: #0B2D46;
    text-decoration: none;
    user-select: none;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

nav a:hover
{
    color: #3993D5;
}

.underLogoText
{
    font-size: 1.5em;
    color: #0B2D46;
    font-family: Inter;
    font-weight: 200;
    letter-spacing: 0%;
}

.underLogoTextContainer
{
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: start;
}

.strongText
{
    font-size: 1.5em;
    color: #0B2D46;
    font-family: Montserrat;
    font-weight: 500;
    letter-spacing: 0%;
}

.underLogoDescription
{
    max-width: 900px;
    margin-top: 20px;
}

.emptySeparator
{
    width: 100%;
    height: 40px;
}

.lineSeparator
{
    width: 100%;
    height: 1px;
    background-color: #0B2D46;
    margin: 20px 0;
}

.lineSeparator2
{
    width: 80%;
    height: 1px;
    background-color: #3993D5;
    margin: 20px 0;
}

.centerButtonContainer
{
    width: 100%;
    display: flex;
    justify-content: center;
}

.signUpButtonContainer
{
    background-color: #3993D5;
    border-radius: 100px;
    width: 400px;
    padding: 12px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: none;
    cursor: pointer;
    color: #fff;
}

.signUpButton
{
    font-size: 2em;
    font-family: Montserrat;
    font-weight: 800;
    letter-spacing: 0%;
    background: none;
    border: none;
    color: inherit;
    padding: 0;
    display: flex;
    gap: 10px;
}

.centerButtonContainer2
{
    width: 100%;
    display: flex;
    justify-content: center;
}

.signUpButtonContainer2
{
    border-radius: 100px;
    border: 3px solid #3993D5;
    width: 400px;
    padding: 12px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    color: #3993D5;
    background-color: #fff;
}

.signUpButton2
{
    font-size: 2em;
    font-family: Montserrat;
    font-weight: 800;
    letter-spacing: 0%;
    background: none;
    border: none;
    color: inherit;
    padding: 0;
    display: flex;
    gap: 10px;
    color: #3993D5;
}

.centerContainer
{
    width: 100%;
    display: flex;
    justify-content: center;
}

section
{
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.moreDescriptionContainer
{
    display: flex;
    gap: 15px;
}

.registeryContainer
{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
}

.registeryBlock
{
    width: 375px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
    gap: 10px;
    border: 3px solid #3993D5;
    border-radius: 20px;
    height: 460px;
}
.registeryBlockSection
{
    display: flex;
    width: calc(100% - 40px);
    justify-content: center;
    align-items: start;
    flex-direction: column;
    gap: 10px;
    padding: 20px;

}
.registeryBlockDate
{
    font-size: 1em;
    font-family: Montserrat;
    font-weight: 500;
    letter-spacing: 0%;
    color: #0B2D46;
}

.registeryBlockDescription
{
    font-size: 1.8em;
    font-family: Montserrat;
    font-weight: 500;
    letter-spacing: 0%;
    color: #3993D5;
}

.signUpButtonContainerRegistery
{
    background-color: #0B2D46;
    border-radius: 100px;
    width: 95%;
    padding: 12px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: none;
    cursor: pointer;
    color: #fff;
}

.signUpButtonRegistery
{
    font-size: 1.7em;
    font-family: Montserrat;
    font-weight: 800;
    letter-spacing: 0%;
    background: none;
    border: none;
    color: inherit;
    padding: 0;
    display: flex;
    gap: 10px;
}

.signUpButtonContainerRegistery2
{
    background-color: #00000000;
    border-radius: 100px;
    border: 3px solid #0B2D46;
    width: 95%;
    padding: 12px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    color: #0B2D46;
}

.signUpButtonRegistery2
{
    font-size: 1.7em;
    font-family: Montserrat;
    font-weight: 800;
    letter-spacing: 0%;
    background: none;
    border: none;
    color: inherit;
    padding: 0;
    display: flex;
    gap: 10px;
}

.centerText
{
    text-align: center;
}

.centerLogoContainer
{
    margin: 50px 0 50px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

footer
{
    width: 100vw;
    display: flex;
    gap: 20px;
    flex-direction: column;
    align-items: center;
    padding: 60px 0 30px 0;
    background-color: #0B2D46;
}

footer a
{
    text-decoration: none;
    color: #fff;
    text-decoration: underline;
}

.additionalInformationContainer a
{
    text-decoration: none;
    color: #0B2D46;
    text-decoration: underline;
}

.footerInfoContainer
{
    display: flex;
    justify-content: center;
    gap: 20px;
}
.infoBox
{
    display: flex;
    width: 320px;
    gap: 20px;
    flex-direction: column;
    color: #fff;
}

.footerInfoTitle
{
    font-size: 1.5em;
    font-family: Montserrat;
    font-weight: 700;
    letter-spacing: 0%;
    color: #3993D5;
}

.footerInfo
{
    font-size: 1em;
    font-family: Montserrat;
    letter-spacing: 0%;
    color: #fff;
}

.footerText
{
    font-size: 0.8em;
    font-family: Montserrat;
    letter-spacing: 0%;
    color: #fff;
}

.patronLogo
{
    height: 150px;
    margin: 0;
}

.eventDateContainer
{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 10px;
    border: 3px solid #0B2D46;
    border-radius: 100px;
    padding: 20px 50px;
}

.eventTitle
{
    font-size: 2em;
    font-family: Montserrat;
    font-weight: 500;
    letter-spacing: 0%;
    color: #0B2D46;
}
.eventDate
{
    font-size: 1.5em;
    font-family: Montserrat;
    font-weight: 500;
    letter-spacing: 0%;
    color: #0B2D46;
}

.mainDescriptionText
{
    text-align: center;
    width: 700px;
}

.eventScheduleStrongText
{
    font-size: 4em;
    font-family: Montserrat;
    font-weight: 500;
    letter-spacing: 0%;
    color: #3993D5;
    font-weight: 700;
}

.eventScheduleStrongText2, .additionalInformationStrongText
{
    font-size: 3em;
    font-family: Montserrat;
    font-weight: 500;
    letter-spacing: 0%;
    color: #3993D5;
    font-weight: 700;
}

.eventScheduleText, .additionalInformationText
{
    margin: 5px 0;
}

.additionalInformationContainer
{
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.centerButtonContainer a
{
    text-decoration: none;
}

nav a
{
    text-decoration: none;
    color: #0B2D46;
    font-family: Inter;
}

/* --- START: konferencja1-4.css --- */
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

body
{
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

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


main {
    width: 100%;
    max-width: 100vw;
    padding: 0 12.5%;
    box-sizing: border-box;
}

.logo1
{
    font-size: 5em;
    color: #0B2D46;
    font-family: Inter;
    font-weight: 800;
    letter-spacing: 0%;
    margin: 0;
}

.logo2
{
    color: #3993D5;
    font-style: italic;
}

nav
{
    display: flex;
    justify-content: space-between;
    flex-direction: row-reverse;
    align-items: center;
    margin-top: 20px;
    width: 100%;
    margin: 10px 0 60px 0;
}

nav > ul
{
    list-style: none;
    display: flex;
    gap: 20px;
}

nav > ul > li
{
    font-size: 1em;
    font-family: Inter;
    font-weight: 400;
    letter-spacing: 0%;
    color: #0B2D46;
    text-decoration: none;
    user-select: none;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

nav > ul > li:hover
{
    color: #3993D5;
}

.underLogoText
{
    font-size: 1.5em;
    color: #0B2D46;
    font-family: Inter;
    font-weight: 200;
    letter-spacing: 0%;
}

.underLogoTextContainer
{
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: start;
}

.strongText
{
    font-size: 1.5em;
    color: #0B2D46;
    font-family: Montserrat;
    font-weight: 500;
    letter-spacing: 0%;
}

.underLogoDescription
{
    max-width: 900px;
    margin-top: 20px;
}

.emptySeparator
{
    width: 100%;
    height: 40px;
}

.lineSeparator
{
    width: 100%;
    height: 1px;
    background-color: #0B2D46;
    margin: 20px 0;
}

.lineSeparator2
{
    width: 80%;
    height: 1px;
    background-color: #3993D5;
    margin: 20px 0;
}

.centerButtonContainer
{
    width: 100%;
    display: flex;
    justify-content: center;
}

.signUpButtonContainer
{
    background-color: #3993D5;
    border-radius: 100px;
    width: 400px;
    padding: 12px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: none;
    cursor: pointer;
    color: #fff;
}

.signUpButton
{
    font-size: 2em;
    font-family: Montserrat;
    font-weight: 800;
    letter-spacing: 0%;
    background: none;
    border: none;
    color: inherit;
    padding: 0;
    display: flex;
    gap: 10px;
}

.centerButtonContainer2
{
    width: 100%;
    display: flex;
    justify-content: center;
}

.signUpButtonContainer2
{
    border-radius: 100px;
    border: 3px solid #3993D5;
    width: 400px;
    padding: 12px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    color: #3993D5;
    background-color: #fff;
}

.signUpButton2
{
    font-size: 2em;
    font-family: Montserrat;
    font-weight: 800;
    letter-spacing: 0%;
    background: none;
    border: none;
    color: inherit;
    padding: 0;
    display: flex;
    gap: 10px;
    color: #3993D5;
}

.centerContainer
{
    width: 100%;
    display: flex;
    justify-content: center;
}

section
{
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.moreDescriptionContainer
{
    display: flex;
    gap: 15px;
}

.registeryContainer
{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
}

.registeryBlock
{
    width: 375px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
    gap: 10px;
    border: 3px solid #3993D5;
    border-radius: 20px;
    height: 460px;
}
.registeryBlockSection
{
    display: flex;
    width: calc(100% - 40px);
    justify-content: center;
    align-items: start;
    flex-direction: column;
    gap: 10px;
    padding: 20px;

}
.registeryBlockDate
{
    font-size: 1em;
    font-family: Montserrat;
    font-weight: 500;
    letter-spacing: 0%;
    color: #0B2D46;
}

.registeryBlockDescription
{
    font-size: 1.8em;
    font-family: Montserrat;
    font-weight: 500;
    letter-spacing: 0%;
    color: #3993D5;
}

.signUpButtonContainerRegistery
{
    background-color: #0B2D46;
    border-radius: 100px;
    width: 95%;
    padding: 12px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: none;
    cursor: pointer;
    color: #fff;
}

.signUpButtonRegistery
{
    font-size: 2em;
    font-family: Montserrat;
    font-weight: 800;
    letter-spacing: 0%;
    background: none;
    border: none;
    color: inherit;
    padding: 0;
    display: flex;
    gap: 10px;
}

.signUpButtonContainerRegistery2
{
    background-color: #00000000;
    border-radius: 100px;
    border: 3px solid #0B2D46;
    width: 95%;
    padding: 12px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    color: #0B2D46;
}

.signUpButtonRegistery2
{
    font-size: 2em;
    font-family: Montserrat;
    font-weight: 800;
    letter-spacing: 0%;
    background: none;
    border: none;
    color: inherit;
    padding: 0;
    display: flex;
    gap: 10px;
}

.centerText
{
    text-align: center;
}

.centerLogoContainer
{
    margin: 50px 0 50px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

footer
{
    width: 100vw;
    display: flex;
    gap: 20px;
    flex-direction: column;
    align-items: center;
    padding: 60px 0 30px 0;
    background-color: #0B2D46;
}

footer a
{
    text-decoration: none;
    color: #fff;
    text-decoration: underline;
}

.additionalInformationContainer a
{
    text-decoration: none;
    color: #0B2D46;
    text-decoration: underline;
}

.footerInfoContainer
{
    display: flex;
    justify-content: center;
    gap: 20px;
}
.infoBox
{
    display: flex;
    width: 320px;
    gap: 20px;
    flex-direction: column;
    color: #fff;
}

.footerInfoTitle
{
    font-size: 1.5em;
    font-family: Montserrat;
    font-weight: 700;
    letter-spacing: 0%;
    color: #3993D5;
}

.footerInfo
{
    font-size: 1em;
    font-family: Montserrat;
    letter-spacing: 0%;
    color: #fff;
}

.footerText
{
    font-size: 0.8em;
    font-family: Montserrat;
    letter-spacing: 0%;
    color: #fff;
}

.patronLogo
{
    height: 150px;
    margin: 0;
}

.eventDateContainer
{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 10px;
    border: 3px solid #0B2D46;
    border-radius: 100px;
    padding: 20px 50px;
}

.eventTitle
{
    font-size: 2em;
    font-family: Montserrat;
    font-weight: 500;
    letter-spacing: 0%;
    color: #0B2D46;
}
.eventDate
{
    font-size: 1.5em;
    font-family: Montserrat;
    font-weight: 500;
    letter-spacing: 0%;
    color: #0B2D46;
}

.mainDescriptionText
{
    text-align: center;
    width: 700px;
}

.eventScheduleStrongText
{
    font-size: 4em;
    font-family: Montserrat;
    font-weight: 500;
    letter-spacing: 0%;
    color: #3993D5;
    font-weight: 700;
}

.eventScheduleStrongText2, .additionalInformationStrongText
{
    font-size: 3em;
    font-family: Montserrat;
    font-weight: 500;
    letter-spacing: 0%;
    color: #3993D5;
    font-weight: 700;
}

.eventScheduleText, .additionalInformationText
{
    margin: 5px 0;
}

section .eventScheduleText
{
    margin: 20px 0 30px 0;
}

.additionalInformationContainer
{
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.additionalInformationList
{
    margin: 0;
}

.centerButtonContainer a
{
    text-decoration: none;
}

nav a
{
    text-decoration: none;
    color: #0B2D46;
    font-family: Inter;
}

/* --- START: konferencja5-6.css --- */
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

body
{
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    scroll-behavior: smooth;

}

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


main {
    width: 100%;
    max-width: 100vw;
    padding: 0 12.5%;
    box-sizing: border-box;
}

.logo1
{
    font-size: 5em;
    color: #0B2D46;
    font-family: Inter;
    font-weight: 800;
    letter-spacing: 0%;
    margin: 0;
}

.logo2
{
    color: #3993D5;
    font-style: italic;
}

nav
{
    display: flex;
    justify-content: space-between;
    flex-direction: row-reverse;
    align-items: center;
    margin-top: 20px;
    width: 100%;
    margin: 10px 0 60px 0;
}

nav > ul
{
    list-style: none;
    display: flex;
    gap: 20px;
}

nav > ul > li
{
    font-size: 1em;
    font-family: Inter;
    font-weight: 400;
    letter-spacing: 0%;
    color: #0B2D46;
    text-decoration: none;
    user-select: none;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

nav > ul > li:hover
{
    color: #3993D5;
}

.underLogoText
{
    font-size: 1.5em;
    color: #0B2D46;
    font-family: Inter;
    font-weight: 200;
    letter-spacing: 0%;
}

.underLogoTextContainer
{
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: start;
}

.strongText
{
    font-size: 1.5em;
    color: #0B2D46;
    font-family: Montserrat;
    font-weight: 500;
    letter-spacing: 0%;
}

.underLogoDescription
{
    max-width: 900px;
    margin-top: 20px;
}

.emptySeparator
{
    width: 100%;
    height: 40px;
}

.lineSeparator
{
    width: 100%;
    height: 1px;
    background-color: #0B2D46;
    margin: 20px 0;
}

.lineSeparator2
{
    width: 80%;
    height: 1px;
    background-color: #3993D5;
    margin: 20px 0;
}

.centerButtonContainer
{
    width: 100%;
    display: flex;
    justify-content: center;
}

.signUpButtonContainer
{
    background-color: #3993D5;
    border-radius: 100px;
    width: 400px;
    padding: 12px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: none;
    cursor: pointer;
    color: #fff;
}

.signUpButton
{
    font-size: 2em;
    font-family: Montserrat;
    font-weight: 800;
    letter-spacing: 0%;
    background: none;
    border: none;
    color: inherit;
    padding: 0;
    display: flex;
    gap: 10px;
}

.centerButtonContainer2
{
    width: 100%;
    display: flex;
    justify-content: center;
}

.signUpButtonContainer2
{
    border-radius: 100px;
    border: 3px solid #3993D5;
    width: 400px;
    padding: 12px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    color: #3993D5;
    background-color: #fff;
}

.signUpButton2
{
    font-size: 2em;
    font-family: Montserrat;
    font-weight: 800;
    letter-spacing: 0%;
    background: none;
    border: none;
    color: inherit;
    padding: 0;
    display: flex;
    gap: 10px;
    color: #3993D5;
}

.centerContainer
{
    width: 100%;
    display: flex;
    justify-content: center;
}

section
{
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.moreDescriptionContainer
{
    display: flex;
    gap: 15px;
}

.registeryContainer
{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
}

.registeryBlock
{
    width: 375px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
    gap: 10px;
    border: 3px solid #3993D5;
    border-radius: 20px;
    height: 460px;
}
.registeryBlockSection
{
    display: flex;
    width: calc(100% - 40px);
    justify-content: center;
    align-items: start;
    flex-direction: column;
    gap: 10px;
    padding: 20px;

}
.registeryBlockDate
{
    font-size: 1em;
    font-family: Montserrat;
    font-weight: 500;
    letter-spacing: 0%;
    color: #0B2D46;
}

.registeryBlockDescription
{
    font-size: 1.8em;
    font-family: Montserrat;
    font-weight: 500;
    letter-spacing: 0%;
    color: #3993D5;
}

.signUpButtonContainerRegistery
{
    background-color: #0B2D46;
    border-radius: 100px;
    width: 95%;
    padding: 12px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: none;
    cursor: pointer;
    color: #fff;
}

.signUpButtonRegistery
{
    font-size: 2em;
    font-family: Montserrat;
    font-weight: 800;
    letter-spacing: 0%;
    background: none;
    border: none;
    color: inherit;
    padding: 0;
    display: flex;
    gap: 10px;
}

.signUpButtonContainerRegistery2
{
    background-color: #00000000;
    border-radius: 100px;
    border: 3px solid #0B2D46;
    width: 95%;
    padding: 12px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    color: #0B2D46;
}

.signUpButtonRegistery2
{
    font-size: 2em;
    font-family: Montserrat;
    font-weight: 800;
    letter-spacing: 0%;
    background: none;
    border: none;
    color: inherit;
    padding: 0;
    display: flex;
    gap: 10px;
}

.centerText
{
    text-align: center;
}

.centerLogoContainer
{
    margin: 50px 0 50px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

footer
{
    width: 100vw;
    display: flex;
    gap: 20px;
    flex-direction: column;
    align-items: center;
    padding: 60px 0 30px 0;
    background-color: #0B2D46;
}

footer a
{
    text-decoration: none;
    color: #fff;
    text-decoration: underline;
}

.additionalInformationContainer a
{
    text-decoration: none;
    color: #0B2D46;
    text-decoration: underline;
}

.footerInfoContainer
{
    display: flex;
    justify-content: center;
    gap: 20px;
}
.infoBox
{
    display: flex;
    width: 320px;
    gap: 20px;
    flex-direction: column;
    color: #fff;
}

.footerInfoTitle
{
    font-size: 1.5em;
    font-family: Montserrat;
    font-weight: 700;
    letter-spacing: 0%;
    color: #3993D5;
}

.footerInfo
{
    font-size: 1em;
    font-family: Montserrat;
    letter-spacing: 0%;
    color: #fff;
}

.footerText
{
    font-size: 0.8em;
    font-family: Montserrat;
    letter-spacing: 0%;
    color: #fff;
}

.patronLogo
{
    height: 150px;
    margin: 0;
}

.eventDateContainer
{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 10px;
    border: 3px solid #0B2D46;
    border-radius: 100px;
    padding: 20px 50px;
}

.eventTitle
{
    font-size: 2em;
    font-family: Montserrat;
    font-weight: 500;
    letter-spacing: 0%;
    color: #0B2D46;
}
.eventDate
{
    font-size: 1.5em;
    font-family: Montserrat;
    font-weight: 500;
    letter-spacing: 0%;
    color: #0B2D46;
}

.mainDescriptionText
{
    text-align: center;
    width: 700px;
}

.eventScheduleStrongText
{
    font-size: 4em;
    font-family: Montserrat;
    font-weight: 500;
    letter-spacing: 0%;
    color: #3993D5;
    font-weight: 700;
}

.eventScheduleStrongText2, .additionalInformationStrongText
{
    font-size: 3em;
    font-family: Montserrat;
    font-weight: 500;
    letter-spacing: 0%;
    color: #3993D5;
    font-weight: 700;
}

.eventScheduleText, .additionalInformationText
{
    margin: 5px 0;
}

.additionalInformationContainer
{
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.additionalInformationList
{
    margin: 0;
}

.centerButtonContainer a
{
    text-decoration: none;
}

nav a
{
    text-decoration: none;
    color: #0B2D46;
    font-family: Inter;
}

/* --- START: rejestracja1-4.css --- */
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

body
{
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    scroll-behavior: smooth;

}

main
{
    width: calc(100vw - 25%);
    background-color: #FBFEFF;
    padding: 0 12.5%;
}

.logo1
{
    font-size: 5em;
    color: #0B2D46;
    font-family: Inter;
    font-weight: 800;
    letter-spacing: 0%;
    margin: 0;
}

.logo2
{
    color: #3993D5;
    font-style: italic;
}

nav
{
    display: flex;
    justify-content: space-between;
    flex-direction: row-reverse;
    align-items: center;
    margin-top: 20px;
    width: 100%;
    margin: 10px 0 60px 0;
}

nav > ul
{
    list-style: none;
    display: flex;
    gap: 20px;
}

nav > ul > li
{
    font-size: 1em;
    font-family: Inter;
    font-weight: 400;
    letter-spacing: 0%;
    color: #0B2D46;
    text-decoration: none;
    user-select: none;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

nav > ul > li:hover
{
    color: #3993D5;
}

.underLogoText
{
    font-size: 1.5em;
    color: #0B2D46;
    font-family: Inter;
    font-weight: 200;
    letter-spacing: 0%;
}

.underLogoTextContainer
{
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: start;
}

.strongText
{
    font-size: 1.5em;
    color: #0B2D46;
    font-family: Montserrat;
    font-weight: 500;
    letter-spacing: 0%;
}

.underLogoDescription
{
    max-width: 900px;
    margin-top: 20px;
}

.emptySeparator
{
    width: 100%;
    height: 40px;
}

.lineSeparator
{
    width: 100%;
    height: 1px;
    background-color: #0B2D46;
    margin: 20px 0;
}

.lineSeparator2
{
    width: 80%;
    height: 1px;
    background-color: #3993D5;
    margin: 20px 0;
}

.centerButtonContainer
{
    width: 100%;
    display: flex;
    justify-content: center;
}

.signUpButtonContainer
{
    background-color: #3993D5;
    border-radius: 100px;
    width: 400px;
    padding: 12px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: none;
    cursor: pointer;
    color: #fff;
}

.signUpButton
{
    font-size: 2em;
    font-family: Montserrat;
    font-weight: 800;
    letter-spacing: 0%;
    background: none;
    border: none;
    color: inherit;
    padding: 0;
    display: flex;
    gap: 10px;
}

.centerButtonContainer2
{
    width: 100%;
    display: flex;
    justify-content: center;
}

.signUpButtonContainer2
{
    border-radius: 100px;
    border: 3px solid #3993D5;
    width: 400px;
    padding: 12px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    color: #3993D5;
    background-color: #fff;
}

.signUpButton2
{
    font-size: 2em;
    font-family: Montserrat;
    font-weight: 800;
    letter-spacing: 0%;
    background: none;
    border: none;
    color: inherit;
    padding: 0;
    display: flex;
    gap: 10px;
    color: #3993D5;
}

.centerContainer
{
    width: 100%;
    display: flex;
    justify-content: center;
}

section
{
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.moreDescriptionContainer
{
    display: flex;
    gap: 15px;
}

.registeryContainer
{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
}

.registeryBlock
{
    width: 375px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
    gap: 10px;
    border: 3px solid #3993D5;
    border-radius: 20px;
    height: 460px;
}
.registeryBlockSection
{
    display: flex;
    width: calc(100% - 40px);
    justify-content: center;
    align-items: start;
    flex-direction: column;
    gap: 10px;
    padding: 20px;

}
.registeryBlockDate
{
    font-size: 1em;
    font-family: Montserrat;
    font-weight: 500;
    letter-spacing: 0%;
    color: #0B2D46;
}

.registeryBlockDescription
{
    font-size: 1.8em;
    font-family: Montserrat;
    font-weight: 500;
    letter-spacing: 0%;
    color: #3993D5;
}

.signUpButtonContainerRegistery
{
    background-color: #0B2D46;
    border-radius: 100px;
    width: 95%;
    padding: 12px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: none;
    cursor: pointer;
    color: #fff;
}

.signUpButtonRegistery
{
    font-size: 2em;
    font-family: Montserrat;
    font-weight: 800;
    letter-spacing: 0%;
    background: none;
    border: none;
    color: inherit;
    padding: 0;
    display: flex;
    gap: 10px;
}

.signUpButtonContainerRegistery2
{
    background-color: #00000000;
    border-radius: 100px;
    border: 3px solid #0B2D46;
    width: 95%;
    padding: 12px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    color: #0B2D46;
}

.signUpButtonRegistery2
{
    font-size: 2em;
    font-family: Montserrat;
    font-weight: 800;
    letter-spacing: 0%;
    background: none;
    border: none;
    color: inherit;
    padding: 0;
    display: flex;
    gap: 10px;
}

.centerText
{
    text-align: center;
}

.centerLogoContainer
{
    margin: 50px 0 50px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

footer
{
    width: 100vw;
    display: flex;
    gap: 20px;
    flex-direction: column;
    align-items: center;
    padding: 60px 0 30px 0;
    background-color: #0B2D46;
}

footer a
{
    text-decoration: none;
    color: #fff;
    text-decoration: underline;
}

.additionalInformationContainer a
{
    text-decoration: none;
    color: #0B2D46;
    text-decoration: underline;
}

.footerInfoContainer
{
    display: flex;
    justify-content: center;
    gap: 20px;
}
.infoBox
{
    display: flex;
    width: 320px;
    gap: 20px;
    flex-direction: column;
    color: #fff;
}

.footerInfoTitle
{
    font-size: 1.5em;
    font-family: Montserrat;
    font-weight: 700;
    letter-spacing: 0%;
    color: #3993D5;
}

.footerInfo
{
    font-size: 1em;
    font-family: Montserrat;
    letter-spacing: 0%;
    color: #fff;
}

.footerText
{
    font-size: 0.8em;
    font-family: Montserrat;
    letter-spacing: 0%;
    color: #fff;
}

.patronLogo
{
    height: 150px;
    margin: 0;
}

.eventDateContainer
{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 10px;
    border: 3px solid #0B2D46;
    border-radius: 100px;
    padding: 20px 50px;
}

.eventTitle
{
    font-size: 2em;
    font-family: Montserrat;
    font-weight: 500;
    letter-spacing: 0%;
    color: #0B2D46;
}
.eventDate
{
    font-size: 1.5em;
    font-family: Montserrat;
    font-weight: 500;
    letter-spacing: 0%;
    color: #0B2D46;
}

.mainDescriptionText
{
    text-align: center;
    width: 700px;
}

.eventScheduleStrongText
{
    font-size: 4em;
    font-family: Montserrat;
    font-weight: 500;
    letter-spacing: 0%;
    color: #3993D5;
    font-weight: 700;
}

.eventScheduleStrongText2, .additionalInformationStrongText
{
    font-size: 3em;
    font-family: Montserrat;
    font-weight: 500;
    letter-spacing: 0%;
    color: #3993D5;
    font-weight: 700;
}

.eventScheduleText, .additionalInformationText
{
    margin: 5px 0;
}

.additionalInformationContainer
{
    display: flex;
    flex-direction: column;
    gap: 10px;
}


form
{
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
    user-select: none;
}
form > label
{
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
    font-size: 1.5em;
    font-family: Montserrat;
}

form input[type="text"], form input[type="email"], form input[type="password"], form textarea
{
    width: 100%;
    padding: 10px;
    border-radius: 10px;
    border: 3px solid #3993D5;
    font-size: 1em;
    font-family: Montserrat;
    font-weight: 500;
    letter-spacing: 0%;
    color: #0B2D46;
}

form input[type="radio"]
{
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 3px solid #3993D5;
    cursor: pointer;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
    font-size: 1.5em;
    font-family: Montserrat;
    user-select: none;
  }
  

  form textarea
  {
    height: 250px;
  }

  .checkboxLabel
  {
    display: flex;
    flex-direction: row;
  }


  form input[type="checkbox"]
  {
    width: 20px;
    height: 20px;
    border-radius: 5px;
    border: 3px solid #3993D5;
    cursor: pointer;
  }

  .checkbox-container {
    display: flex;
    align-items: center;
    flex-direction: row;
    font-family: Montserrat;
    font-size: 1.2em;
    cursor: pointer;
  }
  
  .checkbox-container input[type="checkbox"] {
    display: none;
  }
  
  .custom-checkbox {
    width: 20px;
    height: 20px;
    border-radius: 5px;
    border: 3px solid #3993D5;
    margin-right: 10px;
    position: relative;
    display: inline-block;
  }
  
  .checkbox-container input[type="checkbox"]:checked + .custom-checkbox::after {
    content: "";
    position: absolute;
    left: 5px;
    top: 1px;
    width: 6px;
    height: 12px;
    border: solid #3993D5;
    border-width: 0 3px 3px 0;
    transform: rotate(45deg);
  }
  
  .custom-input {
    display: flex;
    align-items: center;
    font-family: Montserrat;
    font-size: 1.2em;
    cursor: pointer;
    gap: 10px;
  }
  
  .custom-input input[type="checkbox"],
  .custom-input input[type="radio"] {
    display: none;
  }
  
  .custom-box {
    width: 20px;
    height: 20px;
    border: 3px solid #3993D5;
    display: inline-block;
    position: relative;
    flex-shrink: 0;
  }
  
  .custom-box.checkbox {
    border-radius: 5px;
  }
  
  .custom-box.radio {
    border-radius: 50%;
  }
  
  /* Ptaszek do checkboxa */
  .custom-input input[type="checkbox"]:checked + .custom-box::after {
    content: "";
    position: absolute;
    left: 5px;
    top: 1px;
    width: 6px;
    height: 12px;
    border: solid #3993D5;
    border-width: 0 3px 3px 0;
    transform: rotate(45deg);
  }
  
  /* Kropka do radio buttona */
  .custom-box.radio {
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .custom-input input[type="radio"]:checked + .custom-box::after {
    content: "";
    width: 8px;
    height: 8px;
    background-color: #3993D5;
    border-radius: 50%;
  }
  
  

/* --- START: rejestracja5-6.css --- */
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

body
{
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    scroll-behavior: smooth;

}

main
{
    width: calc(100vw - 25%);
    background-color: #FBFEFF;
    padding: 0 12.5%;
}

.logo1
{
    font-size: 5em;
    color: #0B2D46;
    font-family: Inter;
    font-weight: 800;
    letter-spacing: 0%;
    margin: 0;
}

.logo2
{
    color: #3993D5;
    font-style: italic;
}

nav
{
    display: flex;
    justify-content: space-between;
    flex-direction: row-reverse;
    align-items: center;
    margin-top: 20px;
    width: 100%;
    margin: 10px 0 60px 0;
}

nav > ul
{
    list-style: none;
    display: flex;
    gap: 20px;
}

nav > ul > li
{
    font-size: 1em;
    font-family: Inter;
    font-weight: 400;
    letter-spacing: 0%;
    color: #0B2D46;
    text-decoration: none;
    user-select: none;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

nav > ul > li:hover
{
    color: #3993D5;
}

.underLogoText
{
    font-size: 1.5em;
    color: #0B2D46;
    font-family: Inter;
    font-weight: 200;
    letter-spacing: 0%;
}

.underLogoTextContainer
{
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: start;
}

.strongText
{
    font-size: 1.5em;
    color: #0B2D46;
    font-family: Montserrat;
    font-weight: 500;
    letter-spacing: 0%;
}

.underLogoDescription
{
    max-width: 900px;
    margin-top: 20px;
}

.emptySeparator
{
    width: 100%;
    height: 40px;
}

.lineSeparator
{
    width: 100%;
    height: 1px;
    background-color: #0B2D46;
    margin: 20px 0;
}

.lineSeparator2
{
    width: 80%;
    height: 1px;
    background-color: #3993D5;
    margin: 20px 0;
}

.centerButtonContainer
{
    width: 100%;
    display: flex;
    justify-content: center;
}

.signUpButtonContainer
{
    background-color: #3993D5;
    border-radius: 100px;
    width: 400px;
    padding: 12px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: none;
    cursor: pointer;
    color: #fff;
}

.signUpButton
{
    font-size: 2em;
    font-family: Montserrat;
    font-weight: 800;
    letter-spacing: 0%;
    background: none;
    border: none;
    color: inherit;
    padding: 0;
    display: flex;
    gap: 10px;
}

.centerButtonContainer2
{
    width: 100%;
    display: flex;
    justify-content: center;
}

.signUpButtonContainer2
{
    border-radius: 100px;
    border: 3px solid #3993D5;
    width: 400px;
    padding: 12px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    color: #3993D5;
    background-color: #fff;
}

.signUpButton2
{
    font-size: 2em;
    font-family: Montserrat;
    font-weight: 800;
    letter-spacing: 0%;
    background: none;
    border: none;
    color: inherit;
    padding: 0;
    display: flex;
    gap: 10px;
    color: #3993D5;
}

.centerContainer
{
    width: 100%;
    display: flex;
    justify-content: center;
}

section
{
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.moreDescriptionContainer
{
    display: flex;
    gap: 15px;
}

.registeryContainer
{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
}

.registeryBlock
{
    width: 375px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
    gap: 10px;
    border: 3px solid #3993D5;
    border-radius: 20px;
    height: 460px;
}
.registeryBlockSection
{
    display: flex;
    width: calc(100% - 40px);
    justify-content: center;
    align-items: start;
    flex-direction: column;
    gap: 10px;
    padding: 20px;

}
.registeryBlockDate
{
    font-size: 1em;
    font-family: Montserrat;
    font-weight: 500;
    letter-spacing: 0%;
    color: #0B2D46;
}

.registeryBlockDescription
{
    font-size: 1.8em;
    font-family: Montserrat;
    font-weight: 500;
    letter-spacing: 0%;
    color: #3993D5;
}

.signUpButtonContainerRegistery
{
    background-color: #0B2D46;
    border-radius: 100px;
    width: 95%;
    padding: 12px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: none;
    cursor: pointer;
    color: #fff;
}

.signUpButtonRegistery
{
    font-size: 2em;
    font-family: Montserrat;
    font-weight: 800;
    letter-spacing: 0%;
    background: none;
    border: none;
    color: inherit;
    padding: 0;
    display: flex;
    gap: 10px;
}

.signUpButtonContainerRegistery2
{
    background-color: #00000000;
    border-radius: 100px;
    border: 3px solid #0B2D46;
    width: 95%;
    padding: 12px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    color: #0B2D46;
}

.signUpButtonRegistery2
{
    font-size: 2em;
    font-family: Montserrat;
    font-weight: 800;
    letter-spacing: 0%;
    background: none;
    border: none;
    color: inherit;
    padding: 0;
    display: flex;
    gap: 10px;
}

.centerText
{
    text-align: center;
}

.centerLogoContainer
{
    margin: 50px 0 50px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

footer
{
    width: 100vw;
    display: flex;
    gap: 20px;
    flex-direction: column;
    align-items: center;
    padding: 60px 0 30px 0;
    background-color: #0B2D46;
}

footer a
{
    text-decoration: none;
    color: #fff;
    text-decoration: underline;
}

.additionalInformationContainer a
{
    text-decoration: none;
    color: #0B2D46;
    text-decoration: underline;
}

.footerInfoContainer
{
    display: flex;
    justify-content: center;
    gap: 20px;
}
.infoBox
{
    display: flex;
    width: 320px;
    gap: 20px;
    flex-direction: column;
    color: #fff;
}

.footerInfoTitle
{
    font-size: 1.5em;
    font-family: Montserrat;
    font-weight: 700;
    letter-spacing: 0%;
    color: #3993D5;
}

.footerInfo
{
    font-size: 1em;
    font-family: Montserrat;
    letter-spacing: 0%;
    color: #fff;
}

.footerText
{
    font-size: 0.8em;
    font-family: Montserrat;
    letter-spacing: 0%;
    color: #fff;
}

.patronLogo
{
    height: 150px;
    margin: 0;
}

.eventDateContainer
{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 10px;
    border: 3px solid #0B2D46;
    border-radius: 100px;
    padding: 20px 50px;
}

.eventTitle
{
    font-size: 2em;
    font-family: Montserrat;
    font-weight: 500;
    letter-spacing: 0%;
    color: #0B2D46;
}
.eventDate
{
    font-size: 1.5em;
    font-family: Montserrat;
    font-weight: 500;
    letter-spacing: 0%;
    color: #0B2D46;
}

.mainDescriptionText
{
    text-align: center;
    width: 700px;
}

.eventScheduleStrongText
{
    font-size: 4em;
    font-family: Montserrat;
    font-weight: 500;
    letter-spacing: 0%;
    color: #3993D5;
    font-weight: 700;
}

.eventScheduleStrongText2, .additionalInformationStrongText
{
    font-size: 3em;
    font-family: Montserrat;
    font-weight: 500;
    letter-spacing: 0%;
    color: #3993D5;
    font-weight: 700;
}

.eventScheduleText, .additionalInformationText
{
    margin: 5px 0;
}

.additionalInformationContainer
{
    display: flex;
    flex-direction: column;
    gap: 10px;
}


form
{
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
    user-select: none;
}
form > label
{
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
    font-size: 1.5em;
    font-family: Montserrat;
}

form input[type="text"], form input[type="email"], form input[type="password"], form textarea
{
    width: 100%;
    padding: 10px;
    border-radius: 10px;
    border: 3px solid #3993D5;
    font-size: 1em;
    font-family: Montserrat;
    font-weight: 500;
    letter-spacing: 0%;
    color: #0B2D46;
}

form input[type="radio"]
{
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 3px solid #3993D5;
    cursor: pointer;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
    font-size: 1.5em;
    font-family: Montserrat;
    user-select: none;
  }
  

  form textarea
  {
    height: 250px;
  }

  .checkboxLabel
  {
    display: flex;
    flex-direction: row;
  }


  form input[type="checkbox"]
  {
    width: 20px;
    height: 20px;
    border-radius: 5px;
    border: 3px solid #3993D5;
    cursor: pointer;
  }

  .checkbox-container {
    display: flex;
    align-items: center;
    flex-direction: row;
    font-family: Montserrat;
    font-size: 1.2em;
    cursor: pointer;
  }
  
  .checkbox-container input[type="checkbox"] {
    display: none;
  }
  
  .custom-checkbox {
    width: 20px;
    height: 20px;
    border-radius: 5px;
    border: 3px solid #3993D5;
    margin-right: 10px;
    position: relative;
    display: inline-block;
  }
  
  .checkbox-container input[type="checkbox"]:checked + .custom-checkbox::after {
    content: "";
    position: absolute;
    left: 5px;
    top: 1px;
    width: 6px;
    height: 12px;
    border: solid #3993D5;
    border-width: 0 3px 3px 0;
    transform: rotate(45deg);
  }
  
  .custom-input {
    display: flex;
    align-items: center;
    font-family: Montserrat;
    font-size: 1.2em;
    cursor: pointer;
    gap: 10px;
  }
  
  .custom-input input[type="checkbox"],
  .custom-input input[type="radio"] {
    display: none;
  }
  
  .custom-box {
    width: 20px;
    height: 20px;
    border: 3px solid #3993D5;
    display: inline-block;
    position: relative;
    flex-shrink: 0;
  }
  
  .custom-box.checkbox {
    border-radius: 5px;
  }
  
  .custom-box.radio {
    border-radius: 50%;
  }
  
  /* Ptaszek do checkboxa */
  .custom-input input[type="checkbox"]:checked + .custom-box::after {
    content: "";
    position: absolute;
    left: 5px;
    top: 1px;
    width: 6px;
    height: 12px;
    border: solid #3993D5;
    border-width: 0 3px 3px 0;
    transform: rotate(45deg);
  }
  
  /* Kropka do radio buttona */
  .custom-box.radio {
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .custom-input input[type="radio"]:checked + .custom-box::after {
    content: "";
    width: 8px;
    height: 8px;
    background-color: #3993D5;
    border-radius: 50%;
  }
  
  

/* --- START: rejestracja17.css --- */
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

body
{
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    scroll-behavior: smooth;

}

main
{
    width: calc(100vw - 25%);
    background-color: #FBFEFF;
    padding: 0 12.5%;
}

.logo1
{
    font-size: 5em;
    color: #0B2D46;
    font-family: Inter;
    font-weight: 800;
    letter-spacing: 0%;
    margin: 0;
}

.logo2
{
    color: #3993D5;
    font-style: italic;
}

nav
{
    display: flex;
    justify-content: space-between;
    flex-direction: row-reverse;
    align-items: center;
    margin-top: 20px;
    width: 100%;
    margin: 10px 0 60px 0;
}

nav > ul
{
    list-style: none;
    display: flex;
    gap: 20px;
}

nav > ul > li
{
    font-size: 1em;
    font-family: Inter;
    font-weight: 400;
    letter-spacing: 0%;
    color: #0B2D46;
    text-decoration: none;
    user-select: none;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

nav > ul > li:hover
{
    color: #3993D5;
}

.underLogoText
{
    font-size: 1.5em;
    color: #0B2D46;
    font-family: Inter;
    font-weight: 200;
    letter-spacing: 0%;
}

.underLogoTextContainer
{
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: start;
}

.strongText
{
    font-size: 1.5em;
    color: #0B2D46;
    font-family: Montserrat;
    font-weight: 500;
    letter-spacing: 0%;
}

.underLogoDescription
{
    max-width: 900px;
    margin-top: 20px;
}

.emptySeparator
{
    width: 100%;
    height: 40px;
}

.lineSeparator
{
    width: 100%;
    height: 1px;
    background-color: #0B2D46;
    margin: 20px 0;
}

.lineSeparator2
{
    width: 80%;
    height: 1px;
    background-color: #3993D5;
    margin: 20px 0;
}

.centerButtonContainer
{
    width: 100%;
    display: flex;
    justify-content: center;
}

.signUpButtonContainer
{
    background-color: #3993D5;
    border-radius: 100px;
    width: 400px;
    padding: 12px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: none;
    cursor: pointer;
    color: #fff;
}

.signUpButton
{
    font-size: 2em;
    font-family: Montserrat;
    font-weight: 800;
    letter-spacing: 0%;
    background: none;
    border: none;
    color: inherit;
    padding: 0;
    display: flex;
    gap: 10px;
}

.centerButtonContainer2
{
    width: 100%;
    display: flex;
    justify-content: center;
}

.signUpButtonContainer2
{
    border-radius: 100px;
    border: 3px solid #3993D5;
    width: 400px;
    padding: 12px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    color: #3993D5;
    background-color: #fff;
}

.signUpButton2
{
    font-size: 2em;
    font-family: Montserrat;
    font-weight: 800;
    letter-spacing: 0%;
    background: none;
    border: none;
    color: inherit;
    padding: 0;
    display: flex;
    gap: 10px;
    color: #3993D5;
}

.centerContainer
{
    width: 100%;
    display: flex;
    justify-content: center;
}

section
{
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.moreDescriptionContainer
{
    display: flex;
    gap: 15px;
}

.registeryContainer
{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
}

.registeryBlock
{
    width: 375px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
    gap: 10px;
    border: 3px solid #3993D5;
    border-radius: 20px;
    height: 460px;
}
.registeryBlockSection
{
    display: flex;
    width: calc(100% - 40px);
    justify-content: center;
    align-items: start;
    flex-direction: column;
    gap: 10px;
    padding: 20px;

}
.registeryBlockDate
{
    font-size: 1em;
    font-family: Montserrat;
    font-weight: 500;
    letter-spacing: 0%;
    color: #0B2D46;
}

.registeryBlockDescription
{
    font-size: 1.8em;
    font-family: Montserrat;
    font-weight: 500;
    letter-spacing: 0%;
    color: #3993D5;
}

.signUpButtonContainerRegistery
{
    background-color: #0B2D46;
    border-radius: 100px;
    width: 95%;
    padding: 12px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: none;
    cursor: pointer;
    color: #fff;
}

.signUpButtonRegistery
{
    font-size: 1.7em;
    font-family: Montserrat;
    font-weight: 800;
    letter-spacing: 0%;
    background: none;
    border: none;
    color: inherit;
    padding: 0;
    display: flex;
    gap: 10px;
}

.signUpButtonContainerRegistery2
{
    background-color: #00000000;
    border-radius: 100px;
    border: 3px solid #0B2D46;
    width: 95%;
    padding: 12px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    color: #0B2D46;
}

.signUpButtonRegistery2
{
    font-size: 1.7em;
    font-family: Montserrat;
    font-weight: 800;
    letter-spacing: 0%;
    background: none;
    border: none;
    color: inherit;
    padding: 0;
    display: flex;
    gap: 10px;
}

.centerText
{
    text-align: center;
}

.centerLogoContainer
{
    margin: 50px 0 50px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

footer
{
    width: 100vw;
    display: flex;
    gap: 20px;
    flex-direction: column;
    align-items: center;
    padding: 60px 0 30px 0;
    background-color: #0B2D46;
}

footer a
{
    text-decoration: none;
    color: #fff;
    text-decoration: underline;
}

.additionalInformationContainer a
{
    text-decoration: none;
    color: #0B2D46;
    text-decoration: underline;
}

.footerInfoContainer
{
    display: flex;
    justify-content: center;
    gap: 20px;
}
.infoBox
{
    display: flex;
    width: 320px;
    gap: 20px;
    flex-direction: column;
    color: #fff;
}

.footerInfoTitle
{
    font-size: 1.5em;
    font-family: Montserrat;
    font-weight: 700;
    letter-spacing: 0%;
    color: #3993D5;
}

.footerInfo
{
    font-size: 1em;
    font-family: Montserrat;
    letter-spacing: 0%;
    color: #fff;
}

.footerText
{
    font-size: 0.8em;
    font-family: Montserrat;
    letter-spacing: 0%;
    color: #fff;
}

.patronLogo
{
    height: 150px;
    margin: 0;
}

.eventDateContainer
{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 10px;
    border: 3px solid #0B2D46;
    border-radius: 100px;
    padding: 20px 50px;
}

.eventTitle
{
    font-size: 2em;
    font-family: Montserrat;
    font-weight: 500;
    letter-spacing: 0%;
    color: #0B2D46;
}
.eventDate
{
    font-size: 1.5em;
    font-family: Montserrat;
    font-weight: 500;
    letter-spacing: 0%;
    color: #0B2D46;
}

.mainDescriptionText
{
    text-align: center;
    width: 700px;
}

.eventScheduleStrongText
{
    font-size: 4em;
    font-family: Montserrat;
    font-weight: 500;
    letter-spacing: 0%;
    color: #3993D5;
    font-weight: 700;
}

.eventScheduleStrongText2, .additionalInformationStrongText
{
    font-size: 3em;
    font-family: Montserrat;
    font-weight: 500;
    letter-spacing: 0%;
    color: #3993D5;
    font-weight: 700;
}

.eventScheduleText, .additionalInformationText
{
    margin: 5px 0;
}

.additionalInformationContainer
{
    display: flex;
    flex-direction: column;
    gap: 10px;
}


form
{
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
    user-select: none;
}
form > label
{
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
    font-size: 1.5em;
    font-family: Montserrat;
}

form input[type="text"], form input[type="email"], form input[type="password"], form textarea
{
    width: 100%;
    padding: 10px;
    border-radius: 10px;
    border: 3px solid #3993D5;
    font-size: 1em;
    font-family: Montserrat;
    font-weight: 500;
    letter-spacing: 0%;
    color: #0B2D46;
}

form input[type="radio"]
{
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 3px solid #3993D5;
    cursor: pointer;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
    font-size: 1.5em;
    font-family: Montserrat;
    user-select: none;
  }
  

  form textarea
  {
    height: 250px;
  }

  .checkboxLabel
  {
    display: flex;
    flex-direction: row;
  }


  form input[type="checkbox"]
  {
    width: 20px;
    height: 20px;
    border-radius: 5px;
    border: 3px solid #3993D5;
    cursor: pointer;
  }

  .checkbox-container {
    display: flex;
    align-items: center;
    flex-direction: row;
    font-family: Montserrat;
    font-size: 1.2em;
    cursor: pointer;
  }
  
  .checkbox-container input[type="checkbox"] {
    display: none;
  }
  
  .custom-checkbox {
    width: 20px;
    height: 20px;
    border-radius: 5px;
    border: 3px solid #3993D5;
    margin-right: 10px;
    position: relative;
    display: inline-block;
  }
  
  .checkbox-container input[type="checkbox"]:checked + .custom-checkbox::after {
    content: "";
    position: absolute;
    left: 5px;
    top: 1px;
    width: 6px;
    height: 12px;
    border: solid #3993D5;
    border-width: 0 3px 3px 0;
    transform: rotate(45deg);
  }
  
  .custom-input {
    display: flex;
    align-items: center;
    font-family: Montserrat;
    font-size: 1em;
    cursor: pointer;
    gap: 10px;
  }
  
  .custom-input input[type="checkbox"],
  .custom-input input[type="radio"] {
    display: none;
  }
  
  .custom-box {
    width: 20px;
    height: 20px;
    border: 3px solid #3993D5;
    display: inline-block;
    position: relative;
    flex-shrink: 0;
  }
  
  .custom-box.checkbox {
    border-radius: 5px;
  }
  
  .custom-box.radio {
    border-radius: 50%;
  }
  
  /* Ptaszek do checkboxa */
  .custom-input input[type="checkbox"]:checked + .custom-box::after {
    content: "";
    position: absolute;
    left: 5px;
    top: 1px;
    width: 6px;
    height: 12px;
    border: solid #3993D5;
    border-width: 0 3px 3px 0;
    transform: rotate(45deg);
  }
  
  /* Kropka do radio buttona */
  .custom-box.radio {
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .custom-input input[type="radio"]:checked + .custom-box::after {
    content: "";
    width: 8px;
    height: 8px;
    background-color: #3993D5;
    border-radius: 50%;
  }
  
  @media (max-width: 1024px) {
    main {
        width: 100vw;
        padding: 0 5%;
    }
    .logo1 {
        font-size: 3em;
    }
    .underLogoText, .strongText {
        font-size: 1.2em;
    }
    nav > ul {
        flex-direction: column;
        gap: 10px;
        align-items: flex-end;
    }
    .registeryContainer {
        flex-direction: column;
        gap: 30px;
    }
    .registeryBlock {
        width: 100%;
        height: auto;
    }
    .signUpButtonContainer, .signUpButtonContainerRegistery, .signUpButtonContainerRegistery2 {
        width: 100%;
    }
    .signUpButton, .signUpButtonRegistery, .signUpButtonRegistery2 {
        font-size: 1.3em;
    }
    .footerInfoContainer {
        flex-direction: column;
        align-items: center;
    }
    .infoBox {
        width: 100%;
    }
    .moreDescriptionContainer {
        flex-direction: column;
    }
    html, body {
        width: 100%;
        min-width: 100vw;
        box-sizing: border-box;
        max-width: 100%;
    }
}

@media (max-width: 600px) {
    .logo1 {
        font-size: 2.2em;
    }
    .underLogoText, .strongText {
        font-size: 1em;
    }
    nav {
        flex-direction: column;
        align-items: flex-start;
    }
    nav > ul {
        align-items: flex-start;
    }
    .signUpButton {
        font-size: 1.2em;
        flex-direction: column;
        gap: 5px;
        text-align: center;
    }
    .registeryBlockDescription {
        font-size: 1.3em;
        text-align: center;
    }
    .registeryBlockDate {
        text-align: center;
    }
    .centerLogoContainer {
        flex-direction: column;
    }
    .patronLogo {
        height: 100px;
    }
    footer {
        padding: 30px 0 20px 0;
    }

    .signUpButtonContainer {
        width: 90%;
        padding: 10px 15px;
        border-radius: 50px;
    }

    .signUpButton {
        font-size: 1.1em;
        flex-direction: row;
        gap: 8px;
        align-items: center;
        justify-content: center;
    }

    .signUpButton img {
        height: 24px;
        width: 24px;
    }
    nav {
        flex-direction: column;
        align-items: flex-start;
    }

    .hamburger {
        display: block;
    }

    nav ul {
        display: none;
        flex-direction: column;
        gap: 10px;
        width: 100%;
        margin: 0;
        padding: 10px 0;
    }

    nav ul.show {
        display: flex;
    }

    nav {
        margin-bottom: 10px;
    }

    footer {
        width: 100vw;
        padding: 40px 10px 20px 10px;
        align-items: flex-start;
    }

    .footerInfoContainer {
        flex-direction: column;
        gap: 30px;
        width: 100%;
    }

    .infoBox {
        width: 100%;
    }

    .footerText {
        text-align: center;
        width: 80%;
    }
}

main {
    width: 100%;
    max-width: 100vw;
    padding: 0 12.5%;
    background-color: #fff;
}