@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,600;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Anton&display=swap');

:root {
    --yellow-color: #fed15b;
    --blue-color: #23445f;
    --blue-darken-color: #1a202b;
}
body {
    margin: 0;
    padding: 0;
    font-family: 'Lato', sans-serif;
}

img {
    max-width: 100%;
}

a {
    text-decoration: none;
}

.arrow {
    width: 64px;
    height: 64px;
}

/* Sections */
section {
    padding: 75px 0;
}
.section-blue {
    background-color: var(--blue-color);
    color: #CFD6E3;
}

.section-title-large {
  width: 100%;
  position: relative;
  text-align: center;
  margin-bottom: 100px;
}

.section-title-large h2 {
    font-size: 96px;
    text-transform: uppercase;
    font-family: 'Anton', 'Lato', sans-serif;
    font-weight: 400;
    color: var(--blue-color);
    position: relative;
    display: inline-block;
}

.section-title-large .line {
    height: 10px;
    background-color: #FFCF52;
    position: absolute;
    left: calc(50% - (300px / 2));
    top: calc(100% - 26px);
    width: calc(50% + (300px / 2));
    transform: translateX(0);
    z-index: 0;
}

.section-title-left {
  width: 100%;
  position: relative;
  margin-bottom: 50px;
}

.section-title-left h2 {
    font-size: 96px;
    text-transform: uppercase;
    font-family: 'Anton', 'Lato', sans-serif;
    font-weight: 400;
    color: var(--blue-color);
    position: relative;
    display: inline-block;
}

.section-title-left .line {
    height: 10px;
    background-color: #FFCF52;
    position: absolute;
    left: 0;
    top: calc(100% - 26px);
    width: 100%;
    transform: translateX(0);
    z-index: -1;
}

.section-title-sm {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 50px
}

.section-title-sm h2 {
    font-size: 40px;
    text-transform: uppercase;
    font-family: 'Anton', 'Lato', sans-serif;
    font-weight: 400;
    color: var(--blue-color);
    border-bottom: 10px solid var(--yellow-color);
    line-height: 34px;
    padding-left: 100px;
}

.section-blue .section-title h2 {
    color: #CFD6E3;
}

#register h3 {
    font-size: 28px;
    font-weight: 600;
    line-height: 40px;
    margin-bottom: 50px;
}

#register p {
    margin-top: 30px;
    font-size: 16px;
    line-height: 29px;
}

.yellow {
    color: var(--yellow-color);
}

#register h3 .yellow {
    display: block;
}

#unauthorized .container {
    height: calc(100vh - 150px);
}

/* Header section */

#header p {
    color: #23445f;
    font-size: 16px;
}

#header .container {
    background-image: url('../../../assets/images/header-bg.webp');
    background-size: 60%;
    background-repeat: no-repeat;
    background-position-x: right;
    background-position-y: bottom;
}

/* Form */
input[type="text"], input[type="email"], input[type="tel"], select {
    width: 100%;
    border:none;
    border-bottom: 2px solid #CFD6E3;
    background: none;
    outline: none;
    color: #CFD6E3;
    font-size: 20px;
    padding: 10px 0;
    border-radius: 0;
}

input[type="text"]::placeholder,
input[type="email"]::placeholder,
input[type="tel"]::placeholder {
    color: #CFD6E3;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus {
    outline: none;
    box-shadow: none;
    background: none;
    color: #CFD6E3;
    border-color: #CFD6E3;
}

.form-floating>.form-control-plaintext~label::after, 
.form-floating>.form-control:focus~label::after, 
.form-floating>.form-control:not(:placeholder-shown)~label::after, 
.form-floating>.form-select~label::after,
.form-floating>.form-control-plaintext~label,
.form-floating>.form-control:focus~label,
.form-floating>.form-control:not(:placeholder-shown)~label, 
.form-floating>.form-select~label,
.form-floating>label {
    color: #CFD6E3;
    background: none;
    font-size: 20px;
}

.form-floating>label.active {
    font-size: 15px !important;
}

select:focus {
    outline: none;
}
  
select option {
    background-color: white; /* Tło rozwijanego menu */
    color: black; /* Kolor tekstu */
}
  

/* Select2 */

.select2-container--default .select2-selection--single {
    background: none;
    height: 48px;
    border: none;
    border-bottom: 2px solid #CFD6E3;
    border-radius: 0;
    color: #CFD6E3;
    font-size: 20px;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 48px;
    color: #CFD6E3;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    top: 50%;
    transform: translate(0, -50%);
}

.select2-container {
    width: 100% !important;
}

.select2-dropdown {
    background: #1B212C;
    border: none;
    color: white;
}

.select2-search__field {
    background: none;
    border: none;
    border-bottom: 2px solid white;
    color: white;
}

.select2-container--default .select2-results__option--selected,
.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
    background: #fed15b;
    color: #1B212C;
}

/* Label */

.form-label-min {
    height: 10px;
    padding: 0;
    margin: 10px 0 0 10px;
    font-size: 15px;
}

.form-label-large {
    font-size: 20px;
    color:#CFD6E3;
    margin-bottom: 20px;
}

.error {
    color: red;
    font-size: 14px;
    display: none;
}

.required {
    color: red;
}

.button-group {
    margin-top: 15px;
    display: flex;
    justify-content: flex-end;
}

.button-group button {
    background: none;
    border: none;
    font-size: 20px;
    color: white;
    transition: all 0.3s;
    font-family: 'Anton', sans-serif;
    font-weight: 400;
    border-bottom: 10px solid var(--yellow-color);
    line-height: 17px;
    padding: 0 10px;
}

.button-group button:hover {
    cursor: pointer;
    transform: scale(1.1);
}

/* Menu */

nav ul {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

nav li {
    display: inline;
    margin-right: 25px;
    font-size: 16px;
    color: #23445f;
}

nav li a {
    text-decoration: none;
    color: #23445f;
    border-bottom: 2px solid transparent;
    transition: all 0.3s;
}

nav li a:hover {
    border-bottom: 2px solid #fed15b;
    font-weight: bold;
}

/* Footer */
footer {
    background-color: white;
    color: var(--blue-color);
    padding: 20px;
    position: relative;
    bottom: 0;
    width: 100%;
    font-weight: 700;
}

footer a {
    color: var(--blue-color);
    text-decoration: none;
}

.hide {
    display: none;
}

.top {
    background-image: url('/assets/images/top-bg.png');
    background-size: cover;
    background-position: bottom left;
    background-repeat: no-repeat;
    background-size: 100%;
}

.top h2,
.subheader h2 {
    font-family: 'Anton', sans-serif;
    font-size: 40px;
    font-weight: 400;
    color: var(--blue-color);
    margin-bottom: 30px;
}

.subheader h4 {
    font-size: 20px;
    font-weight: 400;
    color: var(--blue-color);
}

.yellow {
    color: var(--yellow-color);
}

.button-top {
    background-color: var(--blue-color);
    color: white;
    padding: 20px;
    margin-left: 10px;
}

.faq-item.active {
    color: var(--blue-color);
}
.faq-item {
    cursor: pointer;
    margin-bottom: 10px;
    font-size: 16px;
    font-family: 'Anton', sans-serif;
    font-weight: 400;
    color: #7895A4;
    text-transform: uppercase;
}
.faq-menu {
    list-style-type: none;
    padding-left: 0;
}
.faq-section h2 {
    font-size: 27px;
    font-family: 'Anton', sans-serif;
    font-weight: 400;
    color: var(--blue-color);
}

.faq-section p {
    font-size: 16px;
    font-family: 'Lato', sans-serif;
    color: var(--blue-color);
}

.faq-section a {
    text-decoration: underline;
    color: var(--blue-color);
}

.faq-section a:hover {
    color: #7895A4;
}

.back-link {
    background: url(/assets/images/back.png);
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: center;
    padding: 5px 10px 19px 30px;
    font-family: 'Anton', sans-serif;
    color: var(--blue-color);
    font-size: 16px;
    display: inline-block;
    margin-top: 30px;
    margin-bottom: 50px;
}

#partnerzy h3 {
    font-family: 'Lato', sans-serif;
    font-size: 20px;
    font-weight: 500;
    color: var(--blue-color);
}

#panelisci {
    background-color: #1a202b;
}

#panelisci h2 {
    color: white;
}

#panelisci h3 {
    font-size: 28px;
    font-weight: 600;
    line-height: 40px;
    margin-bottom: 50px;
    color: rgb(207, 214, 227);
}

/* Karuzela */
.carousel{
     position:relative;
}
 .viewport{
     overflow-x:auto;
     -ms-overflow-style:none;
     scrollbar-width:none;
}
 .viewport::-webkit-scrollbar{
     display:none;
}
 .track{
     display:flex;
     gap:16px;
     padding:0 0 16px;
     cursor:grab;
}
 .track:active{
     cursor:grabbing;
}
.carousel .card{
     flex:0 0 400px;
     border:none;
     background: none;
     padding:0;
     user-select:none;
}
/* Zdjęcie kwadrat */
 .photo{
     width:100%;
     aspect-ratio:1/1;
     overflow:hidden;
     background:#243242;
     
}
 .photo img{
     width:100%;
     height:100%;
     object-fit:cover;
     display:block;
       -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
     -khtml-user-select: none; /* Konqueror HTML */
       -moz-user-select: none; /* Old versions of Firefox */
        -ms-user-select: none; /* Internet Explorer/Edge */
            user-select: none;
}
/* Teksty demo */
 .meta{
     margin-top:10px;
     color: white;
}
 .no{
     font-size:24px;
     line-height:1;
     font-family: 'Montserrat', sans-serif;
     color: #FED15B;
}
 .name{
     font-weight:700;
     margin-top:2px;
}
 .role{
     font-size:12px;
     opacity:.7;
}
/* --- Pasek postępu: cienka ścieżka + gruby kciuk --- */
 .progress{
     position:relative;
     height:3px;
     background:rgba(255,255,255,.28);
     border-radius:999px;
     margin-top:12px;
     user-select:none;
}
 .progress .thumb{
     position:absolute;
     top:calc((3px - 12px)/2);
     height:12px;
     width:60px;
     background:#fff;
     border-radius:999px;
     transform:translateX(0);
     transition:transform .06s linear, width .12s linear;
     cursor:grab;
}
 .progress .thumb:active{
     cursor:grabbing;
}
 @media (max-width:500px){
     .card{
         flex-basis:220px;
    }
}

/* Agenda mobile */
.pc {
  display: block;
}

.mobile {
  display: none;
}

.buttons {
    display: flex;
    justify-content: end;
}

@media (max-width: 767px) {
    .pc {
        display: none;
    }
    .mobile {
        display: block;
    }
    .buttons {
        display: flex;
        justify-content: center;
        flex-direction: column;
    }

    .buttons a {
        margin-left: 0;
        margin-top: 20px;
    }
}

.pdf-wrapper {
  width: 100%;
  aspect-ratio: 210 / 297; /* proporcje A4 */
}

.pdf-wrapper embed {
  width: 100%;
  height: 100%;
}

.panelisci>div>img {
    max-height: 63px;
    max-width: 100%;
    margin-bottom: 30px;
}

.panelista {
    margin-top: 20px;
}

.panelista img {
    border-radius: 5px;
}

.panelista h4 {
    font-family: 'Lato', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #23445F;
    margin-top: 20px;
}

.panelista h5 {
    font-family: 'Lato', sans-serif;
    font-size: 14;
    font-weight: 300;
    color: #23445F;
}

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #7895A4;
  margin: 4rem 0;
  padding: 0;
}