html {
    margin: 0;
    padding: 0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}



body {
    margin: 0;
    padding: 0;
    font-family: "Montserrat", sans-serif !important;
    color: #081452 !important;
    font-weight: 500 !important;
}


/* Stylizacja dla sierotek/wdów */
p {
 
}

p::first-line {
    margin-right: 0.25em; /* Dodaj odstęp na końcu pierwszej linii */
}




/* Menu */
#navbar {
    position: fixed;
    top: 0;
    width: 100%;
    display: flex
;
    justify-content: space-between;
    align-items: center;
    padding: 15px 2vw;
    background-color: rgba(35, 38, 79, 0.7);
    transition: all 0.3s ease;
    z-index: 1000;
    opacity: 0;
    background: #00041F;
background: linear-gradient(117deg, rgba(0, 4, 31, 1) 0%, rgba(9, 20, 86, 1) 100%);
}


#navbar.sticky {
    background: #00041F;
    background: linear-gradient(117deg, rgba(0, 4, 31, 0.98) 0%, rgba(9, 20, 86, 0.98) 100%);
    align-items: center;
    padding: 15px 3vw;
    opacity: 1;
}

.logo a {

    color: white;
    text-decoration: none;
    transition: font-size 0.3s ease;
}

#navbar.sticky .logo a {
    font-size: 18px;
}


.logo img {
    width: auto;
    height: 35px;
    transition: 0.3s all ease-in-out;
}


.menu {
    list-style: none;
    display: flex
;
    gap: 12px;
    margin-bottom: 0;
    align-items: center;
}

.menu li {
    display: inline;
}

.menu li.social {
    margin-top: 2px;
}

.menu li.flags img {
width: 30px;
height: 20px;
}


.menu li a {
    color: white;
    text-decoration: none;
    padding: 10px;
    transition: color 0.3s;
    text-transform: uppercase;
    font-weight: 500;
    font-size: 1rem;
        background: rgba(255, 255, 255, 0.0);
    border-radius: 2px;
    border: 1px solid rgba(255, 255, 255, 0.0);
}


.menu li a:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 2px;
    border: 1px solid rgba(255, 255, 255, 0.5);
}


.menu li.regmenu a {
    background: #f3e32c;
    color: #081452;
  border: 1px solid rgba(255, 255, 255, 0.5);
  font-weight: 600;
}


.menu li.regmenu a:hover {
    color: #f3e32c !important;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 2px;
    border: 1px solid #f3e32c;
}




.menu li.flags a {
padding: 0px 0px;
}



.menu li.social a {
    padding: 10px 0px;
    font-size: 1.6rem;
}



.menu li.social a:hover, .menu li.flags a:hover {
    background: transparent;
}





.buy-ticket-btn {
    background-color: #ed761c;
    color: #23264f;
    padding: 10px 20px;
    border-radius: 5px;
    text-transform: uppercase;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.buy-ticket-btn:hover {
    background-color: #23264f;
    color: #fff !important;
}

/* Mobile menu */
.mobile-menu-icon {
    display: none;
    font-size: 30px;
    cursor: pointer;
}

@media screen and (max-width: 1025px) {
.menu {
        position: fixed;
        top: 70px;
        right: 0;
        height: calc(100vh - 70px);
        width: 100%;
        max-width: 100%;
        background: linear-gradient(117deg, rgba(0, 4, 31, 1) 0%, rgba(9, 20, 86, 1) 100%);
        display: flex
;
        flex-direction: column;
        padding: 20px;
        box-shadow: -4px 0 12px rgba(0, 0, 0, 0.3);
        transform: translateX(100%);
        transition: transform 0.4s ease-in-out;
        z-index: 999;
    }
.menu.open {
    transform: translateX(0%);
}


.menu li {
        text-align: center;
        padding: 10px 0px 25px 0px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
        width: 80%;
    }

    .menu li a {
        color: white;
    }

    .mobile-menu-icon {
        display: block;
        color: white;
        color: #fff !important;
    }


    .menu.open .social {
        display: none;
    }
}



section {
    padding: 80px 0px;
    margin: 0;
    overflow: hidden;
}


section h1 {
    font-size: 2.1rem;
    font-weight: 800;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 20px;
}

section h2 {
    font-size: 1.8rem;
    font-weight: 800;
    text-transform: uppercase;
    text-align: center;
    margin-top: -20px;
}


img {
    max-width: 100%;
}


a {
    text-decoration: none;

}

a:hover {
    color: inherit;
    text-decoration: none;
}




button {
    font-size: 1.4rem;
    font-weight: 500;
    border: 0px;
    padding: 10px 30px;
    font-family: inherit;
    color: #000;
    background: #F3E32C;
    border: 1px solid #F3E32C;
    border-radius: 2px;
    width: auto;
    cursor: pointer;
    transition: 0.5s all ease-in-out;
    width: 100%;
    margin-top: 20px !important;
    max-width: 400px;
}


button:hover {
    background: #142090;
    color: #F3E32C;;
    border: 1px solid #142090;
}



.bluefont {
    color: #081452;
}



/* BANNER */



#bstatic_desktop, #bstatic_mobile {
    margin: 0;
    padding: 0;
}


#bstatic_desktop img, #bstatic_mobile img {
  max-width: 100%;
}



#bstatic_mobile {
    display: none;
}



#banner {
    min-height: 100vh;
    background: rgb(20, 32, 144);
    background: linear-gradient(121deg, rgba(20, 32, 144, 1) 58%, rgba(58, 43, 196, 1) 100%);
    background-image: url(assets/banner_bg.jpg);
    background-size: cover;
    background-position: top right;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    align-content: space-between;
    flex-wrap: wrap;
    padding: 50px 0px;
    font-weight: 600;
}

.banner_content {
    padding: 20px;
    max-width: 90vw;
    width: calc(100% - 40px);
    margin-left: auto;
    margin-right: auto;
    color: #fff;
    text-transform: uppercase;
    position: relative;
    z-index: 2;
}

.mainbcontent {
    display: flex
;
    align-items: center;
    position: relative;
}

.banner_main_left {
    width: 45%;
}

.banner_main_right {
    width: 53%;
    position: absolute;
    right: 5%;
    bottom: -35%;
}


.banner_content img {
    max-width: 460px;
}

.banner_main_right img {
    max-width: 100%;
}


.banner_big {
    font-size: 4.3rem;
    font-weight: 800;
    line-height: 1;
}

.banner_small {
    font-size: 1.6rem;
    font-weight: 200;
    margin-top: 10px;
    line-height: 1.2;
}

.banner_small.confirmation {
    text-transform: none;
}

.banner_small.confirmation b {
    font-weight: 700;
}

.emph {
    color: #F3E32C;
  
}

.line3 {
    font-size: 3rem;
}



.banner_ekg {
    position: absolute;
    top: 25vh;
    left: 0;
    width: 100%;
    pointer-events: none;
    z-index: 1;
}

.banner_footer {
    display: flex;
    justify-content: space-between;
    font-size: 1.5rem;
    align-items: flex-end;
}


.banner_footer a {
    text-decoration: none;
    color:#F3E32C;
}

.banner_dates {
    display: flex;
    justify-content: space-between;
}


.banner_date.d1 {
    padding-right: 20px;
    margin-right: 20px;
    border-right: 1px solid #fff;
}

.banner_date.d2 {
    color: #F3E32C;
}


.banner_type {
    color: #fff;
    font-weight: 300;
}






/* DNI */



.info_tiles {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}


.info_tile {
    width: 48%;
    background: #142090;
    padding: 40px;
    color: #fff;
    display: flex;
    flex-wrap: wrap;
    background: #2D70F6;
background: radial-gradient(circle, rgba(45, 112, 246, 1) 0%, rgba(28, 76, 226, 1) 25%, rgba(19, 50, 184, 1) 48%, rgba(12, 30, 118, 1) 75%, rgba(12, 30, 118, 1) 100%);
}

.info_tile.d2 {
    background: #142090;
    background: #2D70F6;
background: radial-gradient(circle, rgba(45, 112, 246, 1) 0%, rgba(28, 76, 226, 1) 25%, rgba(19, 50, 184, 1) 48%, rgba(12, 30, 118, 1) 75%, rgba(12, 30, 118, 1) 100%);

}

.info_full {
    font-size: 1.2rem;
    font-weight: 600;
    margin: auto;
}

.info_full h2 {
    color: #081452;
    margin-top: -20px;
    text-transform: uppercase;
    font-size: 1.8rem;
}


.info_full h3 {
    color: #081452;
    margin-top: 20px;
    text-transform: none;
    font-size: 1.4rem;
    font-weight: 600;
}




.info_full.emph {
   color: #081452;
}

.info_full img {
    max-width: 100%;
    margin-bottom: 30px;
}


.tile_date {
    font-weight: 600;
    width: fit-content;
    padding-right: 10px;
    margin-right: 10px;
    border-right: 1px solid #fff;
    font-size: 1.2rem;
}


.tile_title {
    font-weight: 700;
    width: calc(100% - 140px);
    color: #F3E32C;
    text-transform: uppercase;
    font-size: 1.2rem;
}

.tile_formula {
    font-weight: 300;
    text-transform: uppercase;
    font-size: 1.2rem;
}

.tile_location {
    width: 100%;
    font-weight: 500;
    margin-top: 5px;
}
.tile_desc {
    font-size: 0.9rem;
    margin-top: 10px;
}



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

.info_button button {
    font-size: 1.4rem;
    padding: 15px 40px;
    font-weight: 700;
}


.info_button a {
    margin-left: 5px;
    margin-right: 5px;
}





/* TIMER */


#timer {
    background: #142090;
    text-align: center;
    padding: 30px 0px;
    color: #fff;
    background: #01031C;
background: linear-gradient(123deg, rgba(1, 3, 28, 1) 0%, rgba(12, 26, 106, 1) 25%, rgba(14, 36, 135, 1) 49%, rgba(20, 43, 163, 1) 76%, rgba(14, 77, 192, 1) 100%);
position: relative;
}

.timer_inner {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    background-image: url(assets/szarfa.jpg);
    background-size: cover;
    background-position: center;
    opacity: 0.1;
}

#countdown {
    margin-top: 20px;
    /* width: 500px; */
    margin-left: auto;
    margin-right: auto;
    display: flex;
    justify-content: center;
}

.info_countdown {
    font-weight: 600;
    font-size: 1.8rem;
    position: relative;
}



.time-part {
    background: #3A2BC4;
   margin-left: 5px;
   margin-right: 5px;
    border-radius: 10px;
    padding: 20px;
    min-width: 120px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.2);
}






/* INFO KONGRES */


#info {
    text-align: center;
    
}


.kongres_tiles {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 20px;
  
}

.kongres_tile {
    width: 32%;
    color: inherit;
    padding: 30px;
    font-weight: 600;
}

.kongres_tile_icon {

    display: flex;
    justify-content: center;
    align-items: center;
    width: fit-content;
    /* padding: 20px; */
    text-align: center;
    margin: auto;
    border-radius: 50%;
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
}




.kongres_tile_icon img {
    max-width: 120px;
    max-height: 120px;
}








/* KOTWICE */

#kotwice {
    background: #01031C;
    background: linear-gradient(175deg, rgba(1, 3, 28, 1) 0%, rgba(12, 26, 106, 1) 25%, rgba(14, 36, 135, 1) 49%, rgba(20, 43, 163, 1) 76%, rgba(14, 77, 192, 1) 100%);
position: relative;
}


.kotwice_shapes {
    position: absolute;
    top: 0;
    right: -30%;
    width: 50%;
}

.kotwice_element {
    position: absolute;
    top: 0;
    right: 0;
}


#kotwice h1 {
    position: relative;
    z-index: 1;
    color: #fff;
}


.kotwice_title {
    position: relative;
}

.kotwice_title img {
    position: absolute;
    top: -50px;
    height: 150px;
    left: calc(50% - 72px);
    right: auto;
    display: none;
}

.anchors {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 50px;
}

.anchor, .anchork {
    background: transparent;
    font-size: 0.9rem;
    padding: 15px 15px;
    font-weight: 600;
    margin-left: 7px;
    margin-right: 7px;
    margin-bottom: 0px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    /* min-height: 60px; */
    /* min-width: 200px; */
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    position: relative;
}


.anchor {
    justify-content: CENTER;
    align-items: center;
    width: 320px;
    margin-bottom: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px;
}

.anchor::before, .anchork::before {
    content: '';
    background-image: url('assets/punktor1.png');
    background-size: contain; /* Dopasowanie obrazu do kontenera */
    background-repeat: no-repeat;
    width: 24px; /* Szerokość obrazka */
    height: 24px; /* Wysokość obrazka */
    position: absolute;
    left: -15px;
}


.anchor::before {
    top: -15px;
    left: auto;
    right: auto;
    width: 40px;
    height: 30px;
}

.anchorsk_row {
    width: 100%;
    display: flex
;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
}






/* KALEJDOSKOP */


#kalejdoskop {
    background: #fff;
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    justify-content: center;
    background: #01031C;
    background: linear-gradient(87deg, rgba(1, 3, 28, 1) 0%, rgba(12, 26, 106, 1) 25%, rgba(14, 36, 135, 1) 49%, rgba(20, 43, 163, 1) 76%, rgba(14, 77, 192, 1) 100%);
    position: relative;

}

.kalejdoskop_shapes {
    position: absolute;
    top: -40%;
    left: -10%;
    width: 60%;
    transform: rotate(180deg);
}

#kalejdoskop h1 {
    color: #fff;
}

.k_title {
    width: 50%;
    padding-top: 100px;
    padding-bottom: 100px;
    background: rgb(255, 255, 255);
    background: radial-gradient(circle, rgba(255, 255, 255, 1) 73%, rgba(180, 188, 209, 0.5) 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    flex-wrap: wrap;
    align-content: center;
}

.k_title div {
    width: 100%;
    text-align: center;
}

.k_title img {
    max-width: 500px;
}


.k_title::after {
position: absolute;
content: '';
width: 7%;
height: 100%;
background: #3A2BC4;
top: 0;
right: 0;
display: none;
}


.kaleidoscope {
    position: relative;
    width: 100%;
    height: auto;
    min-height: 700px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 100px;
    padding-bottom: 100px;
   
}

.kaleidoscope .item {
    position: absolute;
    width: 120px;
    height: 120px;
    background: rgb(58,43,196);
    background: radial-gradient(circle, rgba(58,43,196) 51%, rgba(20,32,144, 1) 100%);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    cursor: pointer;
    transition: transform 0.3s;
    color: #fff;
    padding: 20px;
    font-size: 0.8rem;
    line-height: 1.2;
    font-weight: 600;
}




.kaleidoscope .item.active {
    width: 135px;
    height: 135px;
    z-index: 10;
font-weight: 600;
background: rgb(243, 227, 44);
    background: radial-gradient(circle, rgba(243, 227, 44, 1) 51%, rgba(245, 198, 24, 1) 100%);
    color: #081452;
    font-size: 0.9rem;
}

.kaleidoscope .item i {
    font-size: 2em;
}

.kaleidoscope .item span {
    display: block;
    transform: rotate(0deg);
}

.kaleidoscope .center {
    position: absolute;
    width: 300px;
    height: 300px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    padding: 40px;
    background: rgb(255,255,255);
    background: radial-gradient(circle, rgba(255,255,255,1) 51%, rgba(180,188,209,0.8352591036414566) 100%);

}

.kaleidoscope .content h3 {
    font-size: 1.2em;
    margin-bottom: 10px;
}

.kaleidoscope .content p {
    font-size: 0.9em;
}










#stopka {

    background: #142090;
  padding: 0;

    background: linear-gradient(175deg, rgba(1, 3, 28, 1) 0%, rgba(12, 26, 106, 1) 25%, rgba(14, 36, 135, 1) 49%, rgba(20, 43, 163, 1) 76%, rgba(14, 77, 192, 1) 100%);
}

#stopka .container {
    width: 100%;
    max-width: 100%;
    padding: 0;
}

.whole_contact {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    align-items: center;
    
color: #fff;
font-size: 0.9rem;
}


.whole_contact h3 {
    color: #fff;
    font-weight: 500;
    font-size: 1.1rem;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding: 10px;
    max-width: 90%;
    margin: auto;
    margin-bottom: 10px;
}


.map_container {
    width: 55%;
    height: 500px;
}


.contact_container {
    width: 45%;
    text-align: left;
}


.location {
    width: 90%;
    margin: auto;
    padding: 10px;
    margin-bottom: 20px;
}


.stronger {
    font-weight: 500;
}


.contact_cols {
    display: flex
;
    font-size: 0.8rem;
    max-width: 90%;
    margin: auto;
    text-align: left;
    gap: 10px;
    font-weight: 300;
}

.contact_cols h5 {
    font-size: 0.8rem;
    text-transform: uppercase;
    font-weight: 500;
    /* border-bottom: 1px solid rgba(255, 255, 255, 0.2); */
    padding-bottom: 5px;
}


.contact_col1, .contact_col2 {
    width: calc(50% - 0px);
    padding: 10px;
}

.contact_cols.emph {
    font-weight: 500;
}



.contact_cols a {
    font-weight: 500;
    color: #f3e32c;
    text-decoration: none;
}



.contact_cols a:hover {
    text-decoration: underline;
}











/* ZOBOWIAZANIA */



#zobowiazania {
    background: #fff;
    padding-bottom: 0;
}

#zobowiazania .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.zobowiazania_left {
    width: 48%;
    background: #fff;
    padding: 20px;
}

.zobowiazania_right {
    width: 48%;
}

.zobowiazania_right img {
    max-width: 100%;
}




/* OBIETNICE */

#obietnice {

}


#obietnice .container, #konkurs .container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
}

.obietnice_left, .obietnice_left2 {
width: 48%;
padding: 20px;
}



.obietnice_right, .obietnice_right2 {
    width: 48%;
    background: #fff;
    padding: 20px;
}


.list_obietnice {
    list-style: none; /* Ukryj domyślne punktory */
    padding-left: 0; /* Dostosuj odstępy według potrzeb */
}

.list_obietnice li {
    position: relative;
    padding-left: 40px;
    margin-bottom: 10px;
}

.list_obietnice li::before {
    content: "";
    background-image: url('assets/punktor1.png');
    background-size: contain; /* Dopasowanie obrazu do kontenera */
    background-repeat: no-repeat;
    width: 24px; /* Szerokość obrazka */
    height: 24px; /* Wysokość obrazka */
    position: absolute;
    left: 0; /* Pozycja obrazka */
  
}









/* POSTULATY */

#postulaty {
padding-top: 20px;
}

#postulaty .container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
}

.postulaty_left {
width: 48%;
}



.postulaty_right {
    width: 48%;
}





/*AGENDA */


#program {
  background: #01031C;
    background: linear-gradient(95deg, rgba(1, 3, 28, 1) 0%, rgba(12, 26, 106, 1) 25%, rgba(14, 36, 135, 1) 49%, rgba(20, 43, 163, 1) 76%, rgba(14, 77, 192, 1) 100%);
        background-image: url(assets/program_bg.jpg);
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

#program .container {
    max-width: 90vw;
} 

#program h1 {
    color: #fff;
}

.agenda_dates {
    display: flex;
    justify-content: flex-start;
    margin-top: 30px;
    margin-bottom: 30px;
    padding-left: 145px;
}

.agenda_switcher {
    width: 40%;
}

.agenda_date_button {
    margin-left: 10px;
    margin-right: 10px;
    background: transparent;
    color: #142090;
    border: 1px solid #142090;
    
}


.agenda_date_button:hover {
    background: #142090;
    color: #fff;
    border: 1px solid #142090;
}


.agenda_date_button:focus {
    background: #142090;
    color: #fff;
    outline: none;
    border: 1px solid #142090;
}


.day_title {
    font-weight: 600;
    text-align: center;
    line-height: 0.9;
    text-transform: none;
    font-size: 1.1rem;
    font-weight: 500;
}

.day_name {
    font-size: 1.2rem;
    text-transform: uppercase;
    margin-bottom: 10px;
    font-weight: 600;
    line-height: 1.3;
}



.agenda_button_comment {
    text-align: center;
    font-size: 0.9rem;
    margin-top: -10px;
}



.session_time {
    width: 140px;
    font-size: 1.1rem;
    font-weight: 600;
    text-align: center;
    line-height: 1;
    display: flex;
    align-items: flex-start;
    justify-content: center;
}


.session_time.small {
    align-items: center;
}

.session_time_short {
    font-size: 2.2rem;
}


.session_content {
    width: calc(100% - 150px);
}



.session .session_content {
    background: rgba(255, 255, 255, 0);
    padding: 15px;
    border-radius: 2px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-left: 2px solid #142090;
}

.session_speaker {
    display: flex;
    justify-content: space-between;
    align-items: center;
    align-content: center;
    margin-top: 15px;
    cursor: pointer;
}






.company .speaker_image {
    width: 150px;
    height: auto;
}




.speaker_details {
    width: calc(100% - 60px);
    font-size: 0.9rem;
}



.company .speaker_details {
    width: calc(100% - 170px);
    
}


.speaker_name {
    font-weight: 600;

    font-size: 0.9rem;
    margin-bottom: -5px;
}





/* NEW AGENDA */


.single_session {
    display: flex;
    justify-content: space-between;
align-items: center;
align-content: center;
    
}


.single_session.block {
    margin-top: 30px;
}


.single_session.session {
    margin-top: 20px;
    margin-bottom: 15px;
    align-items: center;
}



.single_session.block .session_name {
    font-weight: 600;
    text-transform: uppercase;
    padding: 10px;
    border-radius: 2px;
}


.single_session.session .session_name {
    font-weight: 600;
    padding: 0px;
}


.session_description {
    font-size: 0.9rem;
}


.yellow {
    background: #F3E32C;
    color: #1d1d1b;

}



.red {
background: #142090;
color: #fff;
}



.blue {
    background: #142090;
    color: #fff;
    }




    .speaker_image {
        width: 45px;
        height: 45px;
        border-radius: 50%;
        overflow: hidden;
    }

    .speaker_details {
        width: calc(100% - 55px);
        font-size: 0.9rem;
    }

    
 
    
    .speaker_image img {
        max-width: 100%;
    }


    .speaker_initials {
        width: 100%;
        height: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 0.8rem;
        font-weight: 600;
    }




    .company .speaker_image {
        width: 120px;
        height: auto;
        border: 1px solid rgba(0, 0, 0, 0.2);
        border-radius: 0;
        filter: grayscale(1);
    }


    .company .speaker_image:hover {
        filter: grayscale(0);
    }

    .company .speaker_details {
        width: calc(100% - 130px);
    }





    .session_speaker {
        display: flex;
        justify-content: space-between;
        align-items: center;
        align-content: center;
        margin-top: 8px;
    }





    .complete .session_content {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        align-content: center;
    }


.complete .session_name {
width: 100%;
}


.complete .cspeakers {
    width: 120px;
}


.complete .ispeakers {
    width: calc(100% - 140px);
    display: flex;
   
}


.complete .ispeakers .session_speaker {
    width: 100%;
    min-width: 250px;
}



















/* POPUP */


#popup {
    font-family: "Montserrat", sans-serif !important;
}

#popup h2 {
    font-size: 1rem;
}


#popup p {
    font-size: 0.9rem;
}


.ui-widget.ui-widget-content {
    border: 0px !important;
    border-radius: 1px !important;
    font-family: "Montserrat", sans-serif !important;
}


.ui-dialog .ui-dialog-titlebar {
    font-size: 1.5rem;
    text-transform: uppercase;
    background: #fff;
    border: 0px;
    font-weight: 600;
    display: none;
}


.ui-dialog .ui-dialog-title::before {
    content: '';
    position: absolute;
    left: -1780px;
    top: 0;
    width: 1800px;
    background: #F3E32C;
    height: 100%;
    font-weight: 600;
    display: none;
}



.ui-dialog .ui-dialog-titlebar-close {
display: none !important;
}



.ui-button .ui-icon {
    background-image: none !important;
    position: relative !important;
}



.ui-dialog .ui-dialog-buttonpane {
    border: 0px;
}

.ui-widget-overlay {
    background: rgba(0, 0, 0, 0.8) !important;
    opacity: 1 !important;
}






.speaker_popup {
    max-width: 900px;
    display: flex;
    justify-content: space-between;
    padding: 30px 30px 10px 30px !important;
width: 95%;
}



.speaker_popup .speaker_image {
    width: 220px;
    height: 220px;
    border-radius: 0;
    overflow: hidden;
    position: relative;
    z-index: 5;
    padding: 0;
}

.speaker_popup .speaker_image img {
    width: 90%;
    height: auto;
    position: relative;
    z-index: 999;
    border-radius: 50%;
    margin-left: 10%;
}

.speaker_popup .speaker_image::before {
    position: absolute;
    content: '';
    top: 0.1px;
    left: 0px;
    background: #142090;
    background: radial-gradient(circle, rgba(45, 112, 246, 1) 0%, rgba(28, 76, 226, 1) 25%, rgba(19, 50, 184, 1) 48%, rgba(12, 30, 118, 1) 75%, rgba(12, 30, 118, 1) 100%);
    width: 55%;
    height: calc(90% - 1px);
    z-index: 3;
    opacity: 1;
}

.speaker_popup .speaker_image::after {
    position: absolute;
    content: '';
    top: -20px;
    right: -20px;
    background: #142090;
    width: 90%;
    height: 90%;
    z-index: 3;
    opacity: 0;
   }


   .speaker_popup .speaker_details {
    width: calc(100% - 240px);
    font-size: 0.9rem;
    color: #081452;
}


.ui-dialog .ui-dialog-buttonpane button {
    margin: 0;
    cursor: pointer;
    position: absolute;
    top: -30px;
    right: -30px;
    border: 0px;
    border-radius: 50%;
    background: #142090;
    color: #fff;
    font-weight: 600;
    height: 50px;
    width: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Usuń obramowanie focusa dla wszystkich elementów wewnątrz popupu */
.speaker_popup *:focus {
    outline: none !important;
}


.speaker_popup *:focus-visible {
    outline: none !important;
}


.ui-dialog .ui-dialog-buttonpane button:focus-visible {
    outline: none !important;
}

.ui-dialog .ui-dialog-buttonpane button:focus {
    outline: none !important;
}





.speaker_popup .speaker_name {
    font-weight: 600;
    /* text-transform: uppercase; */
    font-size: 1.3rem;
    min-width: 400px;
    margin-left: 0;
}

.speaker_popup .speaker_info {
    font-weight: 500;
    font-size: 0.9rem;
    margin-top: 10px;
    margin-bottom: 0px;
    line-height: 1.1;
}

.speaker_popup .speaker_company {
    font-weight: 600;
    font-size: 1.1rem;
}

.speaker_popup .speaker_bio {
    margin-top: 15px;
    font-size: 0.85rem;
    line-height: 1.3;
}

.speaker_popup .ui-dialog-title {

    color: #fff !important;
}



.speaker_popup .initials {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    align-content: center;
    position: relative;
    z-index: 99;
    color: #fff;
    font-size: 3rem;
    font-weight: 600;
}





/* SPEAKERS */


#prelegenci {

    background: linear-gradient(87deg, rgba(1, 3, 28, 0.1) 0%, rgba(12, 26, 106, 0.1) 25%, rgba(14, 36, 135, 0.1) 49%, rgba(20, 43, 163, 0.1) 76%, rgba(14, 77, 192, 0.1) 100%);

}

#prelegenci .container {
        max-width: 85vw;
}

.speakers_grid {
    display: grid
;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.speakers_grid .speaker_card {
    border: 1px solid #fff;
    padding: 20px 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 3px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
    position: relative;
    /* min-height: 200px; */
    margin-top: 50px;
    padding-top: 85px;
    margin-bottom: 20px;
    min-height: 200px;
}

.speakers_grid .speaker_card:hover {
    background: #142090;
    color: #fff;
    transition: all 0.3s ease;
}

.speakers_grid .speaker_image {
    width: 100%;
    text-align: center;
    height: auto;
    position: absolute;
    top: -60px;
    left: 0;
    transition: all 0.3s ease;
}





.speakers_grid .speaker_image img {
    max-width: 100%;
    height: auto;
    border-radius: 50%;
    width: 180px;
    height: 180px;
    border: 2px solid #fff;
    z-index: 5;
    position: relative;
}


.speakers_grid .speaker_initials {
    width: 180px;
    height: 180px;
    background: rgb(20,32,144);
    background: linear-gradient(121deg, rgba(20,32,144,1) 58%, rgba(58,43,196,1) 100%);
    color: #fff;
    font-size: 36px;
    text-align: center;
    line-height: 100px;
    border-radius: 50%;
    margin: 0 auto;
    z-index: 5;
    position: relative;
    transition: all 0.3s ease;
}

.speakers_grid .speaker_details {
    text-align: center;
    WIDTH: 100%;
    margin-top: 15px;
    z-index: 5;
    position: relative;
}


 .speaker_name {
    font-weight: 600;
    margin-top: 10px;
    line-height: 1.2;
    font-size: 0.9rem;
    background: blue;
    width: fit-content;
    margin: auto;
    padding: 7px 15px;
    color: #fff;
    background: #01031C;
    background: linear-gradient(123deg, rgba(1, 3, 28, 1) 0%, rgba(12, 26, 106, 1) 25%, rgba(14, 36, 135, 1) 49%, rgba(20, 43, 163, 1) 76%, rgba(14, 77, 192, 1) 100%);
    margin-top: -5px;
}

.speakers_grid .speaker_card:hover .speaker_name {
    background: #fff;
    color: #081452;
}


.speakers_grid .speaker_position {
    margin-top: 8px;
    font-size: 0.8rem;
    line-height: 1;
    font-weight: 400;
}

.speaker_card {
    position: relative;
    z-index: 5;
    transition: all 0.3s ease;
}


.speaker_card::before {
    position: absolute;
    top: 30px;
    right: 17%;
background: #01031C;
    background: linear-gradient(123deg, rgba(1, 3, 28, 1) 0%, rgba(12, 26, 106, 1) 25%, rgba(14, 36, 135, 1) 49%, rgba(20, 43, 163, 1) 76%, rgba(14, 77, 192, 1) 100%);
    pointer-events: none;
    width: 20%;
    height: 20%;
    content: '';
    border-radius: 5px;
    z-index: 7;
    transition: all 0.3s ease;
    background-image: url(assets/smudge_speaker.png);
    background-size: contain;
    background-repeat: no-repeat;
    display: none;
}


.speaker_card:hover::before {
    background-image: url(assets/smudge_speaker_yellow.png);
}


.speaker_card::after {
    position: absolute;
    top: 0px;
    right: 0px;
background: #01031C;
    background: linear-gradient(123deg, rgba(1, 3, 28, 1) 0%, rgba(12, 26, 106, 1) 25%, rgba(14, 36, 135, 1) 49%, rgba(20, 43, 163, 1) 76%, rgba(14, 77, 192, 1) 100%);
    pointer-events: none;
    width: 100%;
    height: 100%;
    content: '';
    border-radius: 5px;
    z-index: 2;
    transition: all 0.3s ease;
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0;
}


.speaker_card:hover::after {
    opacity: 1;
    transition: all 0.3s ease;
}

.speaker_card:hover .speaker_position {
color: rgba(255,255,255,0.8);
}

.speaker_card:hover {
    background: transparent;
}

.speakers_grid .speaker_company {
    /* color: #142090; */
    margin-top: 5px;
    font-size: 0.85rem;
    line-height: 1;
    font-weight: 600;
}

.speaker_card:hover .speaker_company {
    color: rgba(255,255,255,1);
    }


    .speakers_grid .speaker_image::after {
        position: absolute;
        top: 0;
        left: 0;
background: #01031C;
    background: linear-gradient(123deg, rgba(1, 3, 28, 1) 0%, rgba(12, 26, 106, 1) 25%, rgba(14, 36, 135, 1) 49%, rgba(20, 43, 163, 1) 76%, rgba(14, 77, 192, 1) 100%);
        pointer-events: none;
        width: 100%;
        height: 100%;
        opacity: 0;
        content: '';
        border-radius: 5px;
        z-index: 1;
        transition: all 0.3s ease;
    }

/*PARTNERS */

#partnerzy {
    background: linear-gradient(87deg, rgba(1, 3, 28, 0.1) 0%, rgba(12, 26, 106, 0.1) 25%, rgba(14, 36, 135, 0.1) 49%, rgba(20, 43, 163, 0.1) 76%, rgba(14, 77, 192, 0.1) 100%);
}

.partners {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 20px;
    margin-bottom: 40px;
    gap: 15px;
}


.single_partner {
    width: calc(20% - 12px);
    border-radius: 2px;

}






.single_partner img {
    max-width: 100%;
}


.partners_header {
    font-weight: 600;
    font-size: 1.1rem;
    text-transform: uppercase;
    text-align: center;
    border: 1px solid #fff;
    padding: 10px;
    margin-bottom: 20px;
    margin-top: 60px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 5px;
}






#rejestracja {
    background: rgb(20, 32, 144);
    background: linear-gradient(121deg, rgba(20, 32, 144, 1) 58%, rgba(58, 43, 196, 1) 100%);
    color: #fff;
    background-image: url(assets/reg_bg.jpg);
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}


#rejestracja .container {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 50px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.2);
    max-width: 800px;
    margin: 0 auto;
}


/* FORM */

.regForm {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}


.regForm {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    padding: 20px;
}


.formbutton:hover {
background: transparent;
color: #F3E32C;
border: 1px solid #F3E32C;
}

.half-width {
    display: flex
;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 20px;
    gap: 15px;
}

.half-width .input-group {
    width: calc(50% - 8px);
}


.full-width .input-group {
    width: 100%;
}

.input-group.radio.half {
    display: flex;
    flex-wrap: wrap;
}

.radio-question, .additional_info {
    width: 100%;
    margin-top: 20px;
}


.regForm input, .regForm select {
    width: 100%;
    padding: 12px;
    border: 1px solid #fff;
    border-radius: 0;
    background: transparent;
    color: #fff;
    font-size: 0.85rem;
}


.regForm select {
        width: 100%;
        background: #24316f;
}

.regForm a {
    color: #F3E32C;
    font-weight: 500;
    text-decoration: underline;
}


.additional_info {
    font-size: 0.8rem;
    margin-top: 0px;
    margin-bottom: 10px;
}


.additional_info.addmargin {
    margin-top: 30px;
    margin-bottom: 0px;
}


::placeholder, .defselect {
    color: rgba(255,255,255,0.9);
    font-weight: 400;
    
  }


  .checkboxes_header {
    color: #F3E32C;
    font-size: 0.9rem;
    font-weight: 500;
}


.multicheckboxes {
    margin-top: 30px;
}




.multicheck {
    width: 100%;
    display: flex;
    justify-content: space-evenly;
    font-size: 1rem !important;
    text-transform: uppercase;
    margin-top: -10px;
}

.multicheck .checkbox_container {
font-size: 1rem;
}


.butcontainer {
    text-align: center;
    margin-top: 40px;
}







/* Customize the label (the container) */
.radio_container {
    display: block;
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 1rem;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    margin-right: 20px;
    margin-top: 10px;
}



/* Hide the browser's default radio button */
.radio_container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

/* Create a custom radio button */
.radio_container .checkmark {
    position: absolute;
    top: -3px;
    left: 0;
    height: 20px;
    width: 20px;
    background-color: #eee;
    border-radius: 50%;
}

/* On mouse-over, add a grey background color */
.radio_container:hover input ~ .checkmark {
    background-color: #ccc;
}

/* When the radio button is checked, add a #F3E32C background */
.radio_container input:checked ~ .checkmark {
    background-color: #F3E32C;
}

/* Create the indicator (the dot/circle - hidden when not checked) */
.radio_container .checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the indicator (dot/circle) when checked */
.radio_container input:checked ~ .checkmark:after {
    display: block;
}

/* Style the indicator (dot/circle) */
.radio_container .checkmark:after {
    top: 4px;
    left: 4px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #000;
}

/* Customize the label (the container) */
.checkbox_container {
    display: block;
    position: relative;
    padding-left: 35px;
    margin-top: 15px;
    margin-bottom: 10px;
    cursor: pointer;
    font-size: 0.7rem;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Hide the browser's default checkbox */
.checkbox_container input {
    position: absolute;
    top: 0;
    left: 0;
    height: 15px;
    width: 15px;
    background-color: #eee;
}

/* Create a custom checkbox */
.checkbox_container .checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 20px;
    width: 20px;
    background-color: #eee;
}

/* On mouse-over, add a grey background color */
.checkbox_container:hover input ~ .checkmark {
    background-color: #ccc;
}

/* When the checkbox is checked, add a #F3E32C background */
.checkbox_container input:checked ~ .checkmark {
    background-color: #F3E32C;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkbox_container .checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the checkmark when checked */
.checkbox_container input:checked ~ .checkmark:after {
    display: block;
}

/* Style the checkmark/indicator */
.checkbox_container .checkmark:after {
left: 8px;
    top: 4px;
    width: 6px;
    height: 10px;
    border: solid #000;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}





#error-message {
    margin-top: 20px;
    border: 1px solid #F3E32C;
    padding: 10px;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

#success-message {
    margin-top: 20px;
    border: 0px solid #a3b708;
    border-radius: 2px;
    padding: 30px;
    background: transparent;
    text-align: center;
    font-size: 1rem;
    line-height: 1.3;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}



.support_info {
    text-align: center;
    margin-top: 20px;
}










.gm-style .review-box {
    padding-top: 5px;
    display: none !important;
}









.gm-style .place-card div, .gm-style .place-card a, .gm-style .default-card div, .gm-style .default-card a {
    display: none !important;
}










/* ANIMACJE */


/* Ukrycie elementów na start przez klasę hidden */
.hidden {
    opacity: 0;
    pointer-events: none; /* opcjonalne, żeby kliknięcia nie działały gdy ukryte */
    transition: opacity 0.3s ease; /* możesz dopasować */
}

/* === UNIWERSALNE KLASY ANIMACYJNE === */
.fadeIn {
    animation: fadeIn 1s forwards;
}
.fadeInSlow {
    animation: fadeIn 1.5s forwards;
}

.slideInUp {
    animation: slideInUp 1s forwards;
}
.slideInUpSlow {
    animation: slideInUp 1.5s forwards;
}

.slideInLeft {
    animation: slideInLeft 1s forwards;
}
.slideInLeftSlow {
    animation: slideInLeft 1.5s forwards;
}

.slideInRight {
    animation: slideInRight 1s forwards;
}
.slideInRightSlow {
    animation: slideInRight 1.5s forwards;
}

.slideInTop {
    animation: slideInTop 1s forwards;
}

.slideInBottom {
    animation: slideInBottom 1s forwards;
}

/* === OPCJONALNE: TRANSFORMACJE STARTOWE DLA EFEKTU PRZESUNIĘCIA === */
[data-animate="slideInLeft"] {
    transform: translateX(-100%);
}
[data-animate="slideInRight"] {
    transform: translateX(100%);
}
[data-animate="slideInUp"] {
    transform: translateY(50px);
}
[data-animate="slideInTop"] {
    transform: translateY(-100%);
}
[data-animate="slideInBottom"] {
    transform: translateY(100%);
}

/* === ANIMACJE === */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-100%);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(100%);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInTop {
    from {
        opacity: 0;
        transform: translateY(-100%);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInBottom {
    from {
        opacity: 0;
        transform: translateY(100%);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}






@keyframes flipIn {
  0% {
    transform: rotateY(90deg);
    opacity: 0;
  }
  100% {
    transform: rotateY(0);
    opacity: 1;
  }
}

.flipIn {
  animation: flipIn 1.3s forwards;
  transform-style: preserve-3d;
  backface-visibility: hidden;
}





@keyframes slideForward {
  0% {
    opacity: 0;
    transform: scale(0.5);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes heartbeat {
  0%, 100% {
    transform: scale(1);
  }
  10% {
    transform: scale(1.03); /* bardzo subtelne powiększenie */
  }
  60% {
    transform: scale(0.985); /* minimalne cofnięcie */
  }
}

.slideForward {
  animation: slideForward 0.8s ease-out forwards;
}

.heartbeat {
  animation: heartbeat 1.8s infinite ease-in-out;
}




@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale(0.7);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.zoomIn {
  animation: zoomIn 0.6s ease forwards;
}










@media only screen and (min-width: 1920px) {









}




@media only screen and (min-width: 2500px) {



}




@media only screen and (max-width: 1680px) {




}




@media only screen and (max-width: 1440px) {



}





@media only screen and (max-width: 1440px) and (max-height: 700){

}



@media only screen and (max-width: 1030px) {

#banner {

    background-size: cover;
    background-position: center;
    display: flex
;
    align-items: center;
    align-content: space-between;
    flex-wrap: wrap;
    padding: 50px 0px;

}


.mainbcontent {
    display: flex
;
    align-items: center;
    position: relative;
    flex-wrap: wrap;
    /* flex-direction: column-reverse; */
}


.banner_main_left {
    width: 100%;
}


.banner_main_right {
    width: 100%;
    position: relative;
    right: 0;
    bottom: 0;
    text-align: right;
}


.banner_main_right img {
    max-width: 60%;
}

}







@media only screen and (max-width: 991px) {

  

}











@media only screen and (max-width: 810px) {



.anchorsk_row {
    gap: 0px;
}



    .kongres_tile {
        width: 60%;
        margin: auto;

    }



    #postulaty .container {
        flex-direction: column-reverse;
    }


    .obietnice_right {
        width: 100%;
    }


    .obietnice_left {
        width: 100%;
    }


    .obietnice_right2 {
        width: 100%;
    }


    .obietnice_left2 {
        width: 100%;
        margin-top: -40px;
    }


    .zobowiazania_left {
        width: 100%;
    }


    .zobowiazania_right {
        width: 100%;
    }


    .postulaty_left {
       
        width: 100%;
    }



    .postulaty_right {
        width: 100%;
        margin-top: 20px;
    }



    .half-width .input-group {
        width: 100%;
    }





    .whole_contact {
        flex-direction: column-reverse;
    }


    .map_container {
        width: 100%;
        height: 450px;
    }

    .contact_container {
        width: 100%;
        padding: 40px 0px;
    }



        .info_tile
 {
    width: 100%;
    margin-bottom: 20px;
 }


 .single_partner {
    width: calc(30% - 12px);
    border-radius: 2px;
}



.banner_footer {
    flex-wrap: wrap;
}

.banner_dates {
    flex-wrap: wrap;
    margin-bottom: 20px;
}




#popup {

    max-width: 90vw;
}


.speaker_popup
 {
        flex-wrap: wrap;
        max-width: 90%;
    }
.speaker_popup .speaker_details {
    width: 100%;

}


.ui-dialog .ui-dialog-buttonpane button {
    top: -10px;
    right: 10px;
}

}













@media only screen and (max-width: 640px) {

.banner_big {
    font-size: 3.5rem;

}

.info_button {
    flex-wrap: wrap;
    opacity: 1;
        transform: none;
}

.info_button a {
    margin-left: 5px;
    margin-right: 5px;
    width: 100%;
    margin: auto;
    text-align: center;
}

    .single_partner {
        width: calc(50% - 12px);
        border-radius: 2px;
    }


    .speaker_popup .speaker_name {
    font-weight: 600;
    /* text-transform: uppercase; */
    font-size: 1.2rem;
    min-width: 1px;
    margin-left: 0;
    width: 100%;
}


.speaker_popup .speaker_info {
    font-weight: 500;
    font-size: 0.8rem;
    margin-top: 10px;
    margin-bottom: 0px;
    line-height: 1;
}

.speaker_popup .speaker_company {
    font-weight: 600;
    font-size: 1rem;
}


.speaker_popup {
    padding: 10px 10px 0px 10px !important;
    width: 10%;
}




.contact_cols {
    flex-wrap: wrap;
}

.contact_col1, .contact_col2 {
    width: 100%;

}

}

















@media only screen and (max-width: 480px) {
  
    .banner_big {
        font-size: 3rem;
    }



    .banner_content img {
    max-width: 90%;
}


.line3 {
    font-size: 2.5rem;
}







    section h1 {
        font-size: 2rem;
    }

    .info_countdown {
        
        font-size: 1rem;
    }
    


    .clocklabel h5 {
        
        font-size: 0.7rem !important;
    }
    
    
    
    .time-part {
font-size: 1.5rem;
min-width: 10px;
padding: 15px;
    }



    .banner_date.d1 {
    padding-right: 0px;
    margin-right: 0px;
    border-right: 0px solid #fff;
    border-bottom: 1px solid #fff;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

    .banner_small {
    font-size: 1.4rem;
    }



    #rejestracja .container {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    padding: 20px;
    background: rgba(255, 255, 255, 0.0);
    border-radius: 16px;
    padding: 30px 0px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.0);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.2);
    max-width: 800px;
    margin: 0 auto;
}

}





@media only screen and (max-width: 380px) {

    .banner_big {
        font-size: 2.5rem;
    }

        .line3 {
        font-size: 2rem;
    }

    .banner_small {
    font-size: 1.2rem;
    }

}






@media only screen and (max-width: 380px) {

    .banner_big {
        font-size: 2.5rem;
    }

        .line3 {
        font-size: 2rem;
    }

    .banner_small {
    font-size: 1.2rem;
    }

}






@media only screen and (max-width: 340px) {

    .banner_big {
        font-size: 2rem;
    }

        .line3 {
        font-size: 1.6rem;
    }

    .banner_small {
    font-size: 1rem;
    }


        .info_tile {
        width: 100%;
        margin-bottom: 20px;
        flex-wrap: wrap;
    }

    .tile_date {
    font-weight: 600;
    width: 100%;
    }

    .tile_title {
    font-weight: 700;
    width: 100%;
    }


}




/* AGENDA NEW */

.agenda_day_content {
    border-radius: 5px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.2);
}








.block_bar {
    background: rgba(255, 255, 255, 0);
    border-radius: 5px;
    padding: 0px 40px;
    margin-bottom: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    align-items: center;
    transition: all 0.5s ease-in-out;
}




.block_name::after, .session_block::after {
    position: absolute;
    top: -10px;
    left: -25px;
    background: rgba(255,255,255,0.05);
    width: 5px;
    content: '';
    height: calc(100% + 15px);
    transition: 0.3s all ease-in-out;
}


.block_bar:hover .block_name::after, .block_bar:hover .session_block::after {
    background: rgba(255,255,255,0.4);
   
}

.agenda_time {
    width: auto;
    /* font-weight: 600; */
    padding: 15px;
background: #F5D120;
background: linear-gradient(117deg, rgba(245, 209, 32, 1) 0%, rgba(243, 227, 44, 1) 100%);
    border-radius: 5px;
    text-align: center;
    color: #081452;
    display: flex;
    justify-content: center;
    align-items: center;
    align-content: center;
    margin-right: 50px;
    padding: 8px 8px 5px 8px;
   
    transition: 0.3s all ease-in-out;
}


.block_bar:hover .agenda_time {
    padding: 10px;
    font-weight: 700;
}






.agenda_position:hover .agenda_time {
   
    padding: 12px 12px 9px 12px;
    margin-right: 41px;
}






.block_name, .agenda_details_col {
    width: calc(100% - 180px);
    padding: 10px 30px;
    position: relative;
    border-radius: 5px;
    box-shadow: 0px 0px 25px 0px rgba(0, 0, 0, 0.11);
    padding: 40px;
    margin-top: 15px;
    margin-bottom: 15px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-right: 0;
    margin-left: auto;
    background: #fff;
}


.subsession .agenda_time {
display: none;
}



.session_organizer {
    margin-bottom: 0px;
    margin-top: 10px;
}



.session_organizer .single_party {
    padding: 0px;
    overflow: hidden;
    border-radius: 0px 50px 50px 0px;
}



.session_organizer  .single_party_details {
display: none;
}


.single_party_details {
    width: calc(100% - 80px);
}


.single_party {
    width: fit-content;
    background: #fff;
    border-radius: 0px;
margin-top: 10px;
}


.single_party {
    font-size: 0.8rem;
    display: flex
;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
    border-radius: 0px 50px 50px 0px;
    padding: 5px 10px 5px 5px;
    height: fit-content;
    margin-right: 5px;
    width: 300px;
}

.session_organizer .single_party {
  width: fit-content;
}


.lightborder {
    border: 1px solid rgba(28, 25, 36, 0.1);
}



.attendee_picture img {
    max-width: 100%;
    height: auto;
}



.session_organizer .attendee_picture img {
    max-width: 110%;
    height: auto;
}


.attendee_picture {
    width: 70px;
    height: 70px;
    overflow: hidden;
    border-radius: 50%;
    background: rgb(20, 32, 144);
    background: radial-gradient(circle, rgba(20, 32, 144, 1) 0%, rgba(58, 43, 196, 1) 100%);
    color: #fff;
    display: flex;
    justify-content: center;
    align-content: center;
    align-items: center;
    font-size: 1.2rem;
    font-weight: 500;
}

.attendee_picture.single_party_picture {
    width: 50px;
    height: 50px;
    margin-right: 10px;
    font-size: 0.8rem;
}


.session_organizer .attendee_picture.single_party_picture
 {
    width: 140px;
    height: 60px;
    border: 0px !important;
    overflow: hidden;
    border: 0 !important;
    margin-right: 0px;
    background: #fff !important;
}

.session_organizer .attendee_picture.single_party_picture img {
    border: 0 !important;
}

.area_col {
    display: none;
}


.session_block {
    width: calc(100% - 180px);
       position: relative;
           display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}




.agenda_position.subsession {
    width: 100%;
    margin-top: -20px;
}

.subsession .agenda_details_col {
    width: 100%;
    height: calc(100% - 20px);
    /* margin-top: -10px; */
    padding: 40px 40px 20px 40px;
}


.speakers_container {
    display: flex;
    flex-wrap: wrap;
}


.single_party_name {
    font-weight: 600;
    color: #081452;
}


.single_party_role {
    font-size: 0.7rem;
    color: #373738;
    margin-top: 3px;
    font-style: normal;
    font-weight: 700;
    text-transform: uppercase;
}


.single_party_company {
    color: #081452;
    line-height: 1.1;
     font-size: 0.7rem;
}


.session_title {
    margin-bottom: 10px;
    font-weight: 600;
    line-height: 1.2;
}



.block_title {
    
    font-weight: 600;
    line-height: 1.2;
}


#date-switches {

    border-radius: 2px;
    padding: 5px;
    margin-bottom: 10px;
    text-align: center;
}

.date-switch {
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    margin: 5px;
    font-size: 1.1rem;
    padding: 15px 35px;
    font-weight: 600;
    text-align: center;
    border-radius: 3px;
    line-height: 1.2;
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.5);
            backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.2);
}

.date-switch.active, .date-switch:hover {
    background: rgba(255, 255, 255, 1);
    border: 1px solid rgba(255, 255, 255, 1);
    color: #081452;
}


.agenda_header {
    display: none;
}


.agenda_liveinfo {
    display: none;
}











@media only screen and (max-width: 810px) {

    #program .container {
        max-width: 100%;
    }


    .block_bar {
    padding: 0;
    }

     .agenda_time {
        width: 100%;
        margin-right: 0;
    }

    .block_name, .agenda_details_col {
        width: 100%;
    }


    .block_name::after, .session_block::after {
display: none;
    }


.session_block {
    width: 100%;
    position: relative;
    display: grid
;
    grid-template-columns: repeat(1, 1fr);
    gap: 10px;
}


    .single_party {
        width: 100%;
    }


    .session_speakers {
        width: 100%;
    }




}



@media only screen and (max-width: 480px) {


.agenda_day_content {
    border-radius: 5px;
    padding: 0;
}


.block_name, .agenda_details_col
 {
    padding: 20px;

 }


 .subsession .agenda_details_col {
    width: 100%;
    height: calc(100% - 20px);
    /* margin-top: -10px; */
    padding: 20px;
}


}








#nagrania2 {
    background-color: rgba(131, 157, 206, 0.1);
}

.recordings_container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.single_recording {
    width: 32%;
    margin-bottom: 40px;
}


.single_recording_video {
    width: 100%;
    padding-bottom: 56.25%;
    position: relative;
    border-radius: 3px;
    overflow: hidden;

}


.single_recording_video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}


.single_recording_name {
    font-size: 0.9rem;
    font-weight: 600;
    margin-top: 10px;

}



.host {
    color: #fff;
    display: flex
;
    align-items: center;
    gap: 20px;
    justify-self: flex-end;
    width: calc(100% - 180px);
    padding: 10px 40px;
}


.host .single_party {
    background: transparent;
}

.host .single_party_name {
     color: #fff;
}

.host .single_party_company {
     color: #fff;
}