@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,wght@1,400;1,500;1,700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Karla:ital,wght@0,200..800;1,200..800&display=swap');

body {
    font-family: var(--poppins-regular);
    background-color: var(--body-background);
}

html,
body {
    overflow-x: hidden;
    color: whitesmoke;
}

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

header,
section {
    overflow-x: hidden;
}

.fix-overflow-bug {
    overflow-y: hidden;
}

a {
    text-decoration: none;
}

:root {
    --dmsans-bold: "DM Sans", sans-serif;
    --dmsans-medium: "DM Sans", sans-serif;
    --dmsans-italic: 'DM Sans', sans-serif;
    --poppins-regular: "Poppins", sans-serif;
    --poppins-semibold: "Poppins", sans-serif;
    --poppins-medium: "Poppins", sans-serif;
    --blue-text: #346EC1;
    --header-bg: transparent radial-gradient(closest-side at 70% 54%, #2DABE2 0%, #346EC1 100%) 0% 0% no-repeat padding-box;
    --body-background: #282827;
    --blue-lighter: #66A3CC;
    --blue-darker: #00689E;
    --orange: #F9B72A;
    --pink-darker: #CF2E4C;
    --purple-darker: #7B2B8C;
    --purple-lighter: #804292;
    --blue: #15B4C2;
    --pink-lighter: #F06990;
    --yellow: #F7B526;
    --green: #63B946;
}

/* GENERAL */

.section-heading {
    color: var(--blue);
    font-size: 32px;
    font-weight: 900;
    margin-bottom: 0;
}

button {
    background-color: var(--blue);
    color: white;
    font-weight: bold;
    font-size: 19px;
    border-radius: 12px;
    border: none;
    padding: 14px;
}

button:disabled {
    opacity: 0.6;
    cursor: default;
}

.show-all-buttons {
    display: flex;
    justify-content: end;
}

.section-logo {
    width: 5%;
}

.section-title {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 5px;
    margin-left: 20px;
    margin-bottom: 20px;
}

.section-element {
    width: 25%;
    position: absolute;
    top: 0;
    right: 0;
}

.section-element-bottom {
    width: 15%;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 1;
}

/* COOKIES BOX */
.cc-window {
    border-radius: 25px !important;
    box-shadow: 0px 0px 60px #000000;
}

.cc-message {
    font-family: var(--poppins-semibold);
    font-weight: 500;
}

.cc-compliance a {
    font-family: 'DM Sans';
    font-weight: 600;
    font-size: 18px;
    text-decoration: unset;
}

.navtransblue .navbar-brand img {
    display: none;
}

.navtransblue .navbar-brand img+img {
    display: block;
}

.navbar {
    position: fixed;
    width: 100%;
    height: 100px;
    z-index: 9999;
    background-color: var(--body-background) !important;
    backdrop-filter: blur(8px);
    transition: 0.2s ease;
}

.navbar-nav {
    margin-left: auto;
    padding-right: 0.5em;
}

.collapse:not(.show) {
    display: block;
}

.navbar-collapse {
    max-height: 0;
    overflow: hidden;
    transition: 0.4s ease;
}

.navbar-collapse.show {
    max-height: fit-content;
    overflow: visible;
}

.navbar-collapse.show .navbar-nav {
    flex-direction: column;
    justify-content: end;
    align-items: end;
    transition: 0.2s ease;
}

.navbar-toggler {
    display: block !important;
    font-size: 2em;
    margin-right: 10px;
    z-index: 999;
}

.navtransblue .menu-wrapper {
    margin-left: auto;
}

.navbar .nav-link {
    color: white !important;
    font-weight: 600;
}

.navbar .nav-link:hover {
    color: var(--orange) !important;
}

.navbar-expand-lg {
    justify-content: start;
    gap: 15px;
}

.mobile-nav {
    display: none;
}

.desktop-nav {
    display: block;
}

.menu-wrapper {
    position: relative;
    margin-left: 0;
    transition: margin-left 0.5s ease;
}

.menu-wrapper .navbar-collapse {
    position: absolute;
    top: 140%;
    right: 0;
    min-width: 16vw;
    background: var(--body-background);
    z-index: 9999;
}

.collapsing {
    max-height: 0;
    overflow: hidden;
    transition: 0.4s ease;
}

.collapsing .navbar-nav {
    display: flex !important;
    flex-direction: column;
    justify-content: end;
    align-items: end;
}

.navbarindex {
    background-color: unset;
}

.navtransblue .nav-item a {
    color: white !important;
}

.navtransblue .header-element {
    transform: translateY(-50px);
    opacity: 0;
    pointer-events: none;
}

.navabout {
    background-color: white;
}

.navbar a {
    font-size: 18px;
    font-family: var(--poppins-regular);
    font-weight: 400;
    color: #346EC1;
    letter-spacing: 0.09px;
}

.navbar-toggler:focus {
    box-shadow: unset;
}

.navbarindex a {
    font-family: var(--poppins-regular);
    font-size: 18px;
    font-weight: 400;
    letter-spacing: 0.09px;
    color: #2DABE2 !important;
}

.nav-item {
    padding-bottom: 0.8em;
}

.navbar-nav .active {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.underline {
    outline: 1px solid #346ec1;
    width: 79%;
}

.navbar-brand img+img {
    display: none;
}

.nav-link:hover {
    color: #0d2747 !important;
}

.navtransblue .ispis-mobile,
.ispis-mobile {
    display: none;
}

/* HEADER */
header {
    border-radius: 0px 0px 52px 52px;
    height: 100vh;
    z-index: -1;
}

.header-element {
    position: absolute;
    width: 45%;
    top: 0;
    right: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.header-img-desktop {
    display: block;
}

.header-img-mobile {
    display: none;
}

.mobile-logo {
    display: none !important;
}

.desktop-logo {
    width: 200px;
    margin: 0;
}

.desktop-logo-natpis {
    width: 35%;
    margin-top: 5px;
}

.container-header {
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 26px;
}

.container-header img {
    width: 100%;
    margin-top: -12%;
}

/* COUNTER */
.counter {
    margin-top: -100px;
}

.counter .container .counter-box,
.section-o-nama .container .counter-box {
    box-shadow: 0px 0px 46px #346ec133;
    border-radius: 18px;
    margin-bottom: 50px;
    position: relative;
    text-align: left;
    padding: 35px 50px;
    background-color: var(--orange);
}

.counter-title {
    color: var(--blue-darker);
    font-size: 32px;
    text-align: left;
    font-weight: 900;
    margin-bottom: 15px;
}

.counter-box p {
    font-size: 20px;
    text-align: left;
    color: var(--blue-darker);
    margin-bottom: 0;
    padding-bottom: 5px;
    width: 31%;
}

/* O NAMA */
.section-o-nama {
    margin-top: 0;
}

.section-o-nama .counter-box p {
    width: 100%;
}

.section-o-nama .counter-title {
    margin-bottom: 20px;
}

/* SECTION TIM */
.section-tim {
    padding: 50px 110px 50px 110px;
    position: relative;
    overflow: visible;
}

.section-tim .section-title {
    margin-bottom: 50px;
}

.section-tim .grid-item {
    flex: 0 0 14%;
    max-width: 100%;
    box-sizing: border-box;
    padding: 20px 10px 20px 10px;
    text-align: center;
    background-color: var(--blue);
    border-radius: 20px;
    height: auto;
    display: block;
}

.section-tim .grid-item img {
    height: 120px;
    width: 120px;
    border-radius: 50%;
    object-fit: cover;
}

.section-tim .grid-item p {
    margin-top: 15px;
    margin-bottom: -5px;
    color: white;
    font-size: 19px;
    font-weight: bold !important;
}

.section-tim .grid-item span {
    color: white;
    font-size: 14px;
}

.section-tim .social-icons {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: -5px;
}

.section-tim .social-icons img {
    height: auto;
    width: auto;
    border-radius: 0;
}

.section-tim .slider-track {
    justify-content: center;
    gap: 10%;
}

/* SECTION NOVOSTI */
.section-novosti {
    background-color: var(--orange);
    padding: 70px 110px 50px 110px;
    /* border-radius: 18px; */
    position: relative;
    margin-top: 50px;
}

.section-novosti .grid-item img {
    background-color: white;
    object-fit: contain;
}

.section-novosti .grid-item {
    flex: 0 0 25%;
}

button i {
    margin-left: 8px;
}

/* SECTION DOGADJAJI */
.section-dogadjaji {
    padding: 50px 110px 50px 110px;
}

.section-dogadjaji .section-element {
    margin-top: -70px;
    top: unset;
}

.card-wrapper {
    display: flex;
    justify-content: center;
    align-items: stretch;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8%;
    margin-top: 30px;
    margin-bottom: 40px;
}

.card {
    background-color: var(--blue);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 15px 10px 15px 10px;
    width: 20%;
    margin-bottom: 40px;
}

.card img {
    width: 100%;
    height: 220px;
    border-radius: 20px;
    margin-bottom: 10px;
    object-fit: cover;
}

.card p,
.card a {
    color: white;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 0;
    width: 95%;
}

.card p:hover,
.card span:hover {
    color: var(--blue-darker);
}

.card span {
    color: white;
    font-size: 14px;
    display: block;
    width: 95%;
}

/* SECTION UČESNICI O NAMA */
.section-ucesnici {
    background-color: var(--orange);
    padding: 50px 110px 50px 110px;
    /* border-radius: 18px 18px 0 0; */
    position: relative;
    margin-top: 20px;
}

.section-ucesnici button i {
    margin-left: 20px;
}

/* SECTION PRIJATELJI */
.section-prijatelji {
    background-color: var(--blue);
    padding: 50px 110px 50px 110px;
    position: relative;
}

.section-prijatelji .section-heading {
    color: var(--orange);
}

.section-prijatelji button i {
    margin-left: 20px;
}

.section-prijatelji button {
    background-color: var(--orange);
}

/* SECTION PARTNERI */
.section-partneri {
    background-color: var(--orange);
    padding: 50px 110px 50px 110px;
    position: relative;
    /* border-radius: 0 0 18px 18px; */
}

.section-partneri .grid-item p {
    font-weight: 700;
    text-align: center;
}

.section-partneri button i {
    margin-left: 20px;
}

/* SECTION KONTAKT */
.section-kontakt {
    padding: 30px 110px 20px 110px;
    margin-top: -20px;
}

.section-kontakt .section-title {
    margin-top: 30px;
    margin-left: 0;
}

.kontakt-container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin-top: 50px;
    margin-bottom: 20px;
}

.kontakt-item {
    display: flex;
    flex-direction: row;
    place-items: center;
    gap: 0.5em;
}

.kontakt-item img {
    width: 55px;
    height: 55px;
}

.kontakt-item p,
.kontakt-item a {
    font-size: 14px;
    color: white;
    font-weight: 700;
    margin: 0;
}

#kontakt-hr {
    height: 2px;
    background-color: var(--orange);
    border-radius: 10px;
    opacity: 1;
    width: 90%;
    margin: 0 auto;
}

/* SECTION PREDAVACI */
.section-predavaci {
    padding: 50px 110px 50px 110px;
    border-radius: 20px 20px 0 0;
    box-shadow: 0px -10px 8px 0px rgba(249, 183, 42, 0.4);
}

.predavaci-container {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    gap: 80px;
}

.predavaci-container img {
    width: 25%;
    border-radius: 10px;
}

/* PREDAVACI STRANICA */
.svi-predavaci {
    padding: 140px 70px 50px 70px;
}

.svi-predavaci .predavaci-container {
    justify-content: flex-start;
    margin-bottom: 50px;
    gap: 20px;
}

.svi-predavaci .predavaci-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 4rem;
}

.predavaci-info {
    width: min-content;
}

.predavaci-bio {
    text-align: justify;
}

.image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    margin-bottom: 1rem;
}

.hide-seminar {
    display: none;
}

/* TESTEMONIALS */
.section-testemonials {
    padding: 50px 110px 50px 110px;
    border-radius: 0 0 20px 20px;
    box-shadow: 0px 10px 8px 0px rgba(249, 183, 42, 0.4);
}

.testemonials-container {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    column-gap: 80px;
    row-gap: 40px;
}

.testemonial-img {
    width: 100%;
    border-radius: 10px;
}

.testemonial-wrapper {
    display: flex;
    flex-direction: column;
    width: min-content;
    font-family: 'Karla', sans-serif;
}

.testemonial-text {
    color: white;
    margin-top: 10px;
    text-align: justify;
    margin-bottom: 15px;
}

.testemonial-text p {
    margin: 0;
}

.image-wrapper {
    position: relative;   
    display: inline-block;
    width: 330px;
    flex: 0 0 auto; 
}

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

.image-text {
    position: relative;
    text-shadow: 0 0 5px #000;
    padding: 0px 10px;
    border-radius: 6px;
}

.testemonials-info {
    position: absolute;
    bottom: 20%;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    z-index: 2;
}

.testemonials-ime {
    font-size: 26px;
    color: var(--blue-darker);
    font-weight: bold;
}

.testemonials-kompanija {
    font-size: 18px;
    color: #fff;
    white-space: normal;
    word-break: break-word;
    display: inline-block;
}

.testemonials-info.long-name {
    bottom: 16%;
}

.testemonials-kompanija hr {
    border: 1.5px solid var(--pink-darker);
    margin: 0;
    opacity: 1;    
}

.testemonial-person-img {
    position: absolute;
    width: 200px;
    height: 200px;
    top: 15%;
    right: 5px;
    z-index: 1;
}

.testemonial-person-img img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: -12px 0px 8px 8px rgba(0, 0, 0, 0.6);
}

.testemonial-date-img {
    position: absolute;
    width: 75%;
    bottom: 5px;
    right: 5px;
}

.testemonial-date-img img {
    width: 100%;
    height: auto;
}

.section-testemonials.all-testemonials {
    padding-top: 140px;
}

/* KONTAKT FORMA */
.kontakt-forma {
    display: flex;
    justify-content: center;
}

.kontakt-forma-container {
    padding: 50px 110px 50px 110px;
    width: 50%;
}

.kontakt-forma-container button {
    margin: 40px auto 0 auto;
    display: block;
}

.input-container {
    display: flex;
    flex-direction: column;
    gap: 0.3em;
    margin-bottom: 0.3em;
}

.input-container label {
    color: white;
    font-weight: 500;
}

.input-container input,
textarea,
select {
    background-color: #FDFDFD;
    border-radius: 4px;
    border: 1px solid var(--blue);
    box-shadow: inset 0 3px 33px rgba(0, 0, 0, 0.25);
    height: 40px;
    padding-left: 8px;
}

.input-container textarea {
    height: 210px;
    padding-top: 8px;
}

.select2-container--default .select2-selection--single {
    background-color: #FDFDFD !important;
    border: 1px solid var(--blue) !important;
    border-radius: 4px !important;
    height: 40px !important;
    box-shadow: inset 0 3px 33px rgba(0, 0, 0, 0.25) !important;
    display: flex;
    align-items: center;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 40px !important;
    padding-left: 8px !important;
    color: #222 !important;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 38px !important;
}

.select2-results__option {
    color: #222 !important;
    padding: 8px 12px;
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
    background-color: var(--blue) !important;
    color: white !important;
}

.select2-container--default .select2-search--dropdown .select2-search__field {
    border: 1px solid var(--blue) !important;
    border-radius: 4px;
    padding: 6px;
    color: #222;
}

.select2-selection__clear {
    display: none !important;
}

/* SLIDER */
.slider-wrapper {
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 100%;
    margin-bottom: 20px;
    z-index: 99;
}

.slider-container {
    padding-right: 10px;
    padding-left: 20px;
}

.slider-track {
    display: flex;
    justify-content: start;
    transition: transform 0.3s ease-in-out;
    width: 100%;
    gap: 40px;
}

.grid-item {
    width: 100%;
    box-sizing: border-box;
    padding: 20px 0 20px 0;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.grid-item img {
    height: 180px;
    width: 200px;
    border-radius: 10px;
    object-fit: cover;
    box-shadow: 0px 0px 15px rgb(0 0 0 / 15%);
}

.grid-item p,
.grid-item a {
    margin-top: 30px;
    margin-bottom: -5px;
    color: white;
    font-size: 20px;
    font-weight: 600;
    text-align: center;
}

.grid-item a:hover {
    color: var(--blue-darker);
}

.slider-buttons {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.8em;
}

.slider-arrow {
    background-color: transparent !important;
    border: none;
    padding: 10px 15px;
    font-size: 20px;
    cursor: pointer;
    z-index: 2;
    border-radius: 50%;
}

.lower-opacity-button {
    opacity: 0.5;
}

/* ELEKTRONSKA PRIJAVA */
.section-elektronska-prijava {
    padding: 140px 110px 50px 85px;
}

.section-elektronska-prijava .kontakt-forma-container {
    padding: 0;
    padding-top: 30px;
}

.section-elektronska-prijava .kontakt-forma-container button {
    margin: 0;
    margin-top: 20px;
}

.input-container select option {
    background: #FDFDFD !important;
}

.input-container.checkbox-container {
    flex-direction: row;
    align-items: center;
    gap: 10px;
}

.input-container.checkbox-container input {
    width: 18px;
    box-shadow: none;
}

.input-container.paket-input {
    width: 100% !important;
}

.multiple-inputs-container {
    display: flex;
    flex-direction: column;
    margin-bottom: 15px;
}

.people-info-container,
.company-info-container {
    display: flex;
    flex-direction: row;
    gap: 15px;
}

.people-info-container {
    margin-bottom: 15px;
    flex-wrap: wrap;
    row-gap: 0;
}

.company-info-container .input-container {
    flex: 1;
}

.multiple-inputs-container .input-container.napomena-container {
    width: unset;
}

.multiple-inputs-container .input-container {
    width: 23%;
}

#osobe-container {
    margin-top: 20px;
}

.section-elektronska-prijava-sajt {
    padding: 30px 110px 30px 110px;
    margin-bottom: 30px;
}

.section-elektronska-prijava-sajt .section-title {
    margin-bottom: 0;
}

.section-title button {
    margin-left: 50px;
}

.add-company {
    width: fit-content;
    margin-top: 10px !important;
    margin-bottom: 10px !important;
    background-color: transparent;
    font-size: 14px;
    font-weight: 600;
    border: 1px solid var(--blue);
}

.form-submit-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.no-active-seminars {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    width: 90vw;
    margin-top: 150px;
}

.seminar-uslovi {
    width: 65vw;
    margin-top: 20px;
}

/* POSLATA PRIJAVA */
.section-poslata-prijava {
    padding: 140px 110px 50px 85px;
    color: white;
}

.section-poslata-prijava .section-heading {
    color: #63b946;
    margin-bottom: 20px;
}

.detalji-prijave {
    color: white;
}

.detalji-prijave h2 {
    font-size: 24px;
    color: var(--pink-darker);
}

.detalji-prijave .row {
    width: 75%;
}

.redirect-buttons {
    display: flex;
    flex-direction: row;
    gap: 20px;
    justify-content: start;
}

/* DETALJI SEMINARA */
.section-message {
    padding: 140px 110px 50px 85px;
    color: white;
    width: 80%;
    font-size: 16px;
}

.section-message h2 {
    color: #4472C4;
    font-weight: 600;
}

.section-message table {
    color: white;
}

.section-message a:hover {
    color: white !important;
}

.seminar-info {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 15px;
    margin-bottom: 5px;
}

.seminar-info img {
    width: 5%;
}

.button-group {
    display: flex;
    flex-direction: row;
    gap: 40px;
    width: 100%;
    margin: auto;
}

.btn-link,
.seminar-naslov {
    background: #4472C4;
    color: white;
    text-align: center;
    padding: 15px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16pt;
    display: block;
    transition: background 0.3s ease;
    width: 100%;
}

.seminar-naslov {
    display: flex;
    justify-content: center;
    align-items: center;
}

.seminar-naslov p {
    padding: 0;
    margin: 0;
}

.btn-link:hover {
    background: #32528f;
}

.info-box {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 15px;
    margin: 20px 0 20px;
}

.info-logo img,
.info-qr img {
    display: block;
}

.info-text {
    font-size: 12px;
    line-height: 16px;
}

.info-text p {
    margin: 0;
}

.info-text strong {
    font-weight: bold;
}

/* SECTION VIDEO */
.section-video, .section-naslovna-slika {
    padding: 50px 110px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    gap: 20px;
    border-radius: 0 0 20px 20px;
}

#video {
    box-shadow: 0px -10px 8px 0px rgba(249, 183, 42, 0.4);
}

.section-video p {
    margin: 0;
}

.section-video video {
    border-radius: 12px;
    width: 60%;
}

.section-video .section-title {
    align-self: flex-start;
}

.section-video .section-title .section-logo {
    width: 10%;
}

.video-opis {
    width: 80%;
}

/* FOTO GALERIJA */
.section-foto-galerija {
    padding: 50px 110px;
    box-shadow: 0px 10px 8px 0px rgba(42, 156, 249, 0.4);
}

.section-foto-galerija .grid-item {
    width: min-content;
}

.section-foto-galerija .grid-item img {
    object-fit: cover;
}

.section-naslovna-slika img {
    width: 50%;
    border-radius: 10px;
    box-shadow: 0px 0px 15px rgb(0 0 0 / 50%);
}

/* SLIKE */
.section-slike {
    padding: 140px 110px 50px 85px;
}

.section-slike .section-video {
    box-shadow: none;
}

.slike-container {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: start;
    gap: 50px;
    padding: 0 45px;
}

.slike-hidden {
    display: none;
}

.slika-opis {
    color: white;
    text-align: center;
}

.slika-opis p {
    margin-top: 15px;
    font-size: 16px;
    margin-bottom: 0;
}

.slika-opis img, .slika-opis video {
    width: 280px;
    box-shadow: 0px 0px 15px rgb(0 0 0 / 50%);
    border-radius: 10px;
    height: 254px;
    object-fit: cover;
}

.slika-opis img:hover, video:hover {
    cursor: pointer;
}

.vijest-socialmedia {
    padding: 15px;
}

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

.image-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.9);
}

.image-modal img {
  margin: auto;
  display: block;
  border-radius: 10px;
  max-height: 90vh;
}

.image-modal video {
    margin: auto;
    max-width: 85%;
    border-radius: 10px;
}

.image-modal p {
  text-align: center;
  color: #ccc;
  margin-top: 10px;
  font-size: 18px;
}

.image-modal .close {
  position: absolute;
  top: 20px;
  right: 35px;
  color: white;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
}

.image-modal .close:hover {
  color: #bbb;
}

.image-modal,
.modal-slider-wrapper,
.modal-slider {
    overflow: visible !important;
}

.modal-slider-wrapper {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.modal-slider .tns-item {
    display: flex !important;
    justify-content: center;
    align-items: center;
}

.modal-slider img {
    touch-action: none;
    user-select: none;
    cursor: default !important;
    will-change: transform;
    transform: translateZ(0);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    -webkit-transform: translateZ(0);
}

.modal-slider {
    display: flex;
    position: relative;
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
}

.modal-slider > div {
    overflow: visible !important;
}

.modal-slider-wrapper .tns-controls {
    position: absolute;
    top: 50%;
    width: 100%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    pointer-events: auto;
    padding: 0 20px;
    z-index: 1000;
}

.modal-slider-wrapper .tns-controls button {
    pointer-events: all;
    top: 50%;
    background: transparent;
    color: #fff;
    border: none;
    font-size: 40px;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    cursor: pointer;
    transition: 0.3s;
}

.modal-arrow {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    font-size: 64px;         
    color: #fff;
    cursor: pointer;
    z-index: 1001;
    user-select: none;
    padding: 10px 20px;
    background: transparent;
    border-radius: 50%;
    transition: all 0.2s ease;
}

.modal-prev {
    left: 30px;
}

.modal-next {
    right: 30px;
}

/* SECTION KALENDAR */
.section-kalendar {
    padding: 50px 110px 50px 110px;
    border-radius: 20px 20px 0 0;
    box-shadow: 0px -10px 8px 0px rgba(249, 183, 42, 0.4);
}

.section-kalendar .card, .section-arhiva .card {
    font-weight: 600;
    padding: 10px;
}

.section-kalendar .card img, .section-arhiva .card img {
    height: 20vh;
    border-radius: 12px;
}

.section-kalendar .card p:hover,
.section-kalendar .card span:hover,
.section-arhiva .card span:hover {
    color: white;
}

.section-kalendar .card p, .section-arhiva .card p {
    width: 100%;
}

.section-kalendar .card span, .section-arhiva .card span {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    border-radius: 6px;
    padding-right: 8px;
    align-self: flex-start;
    width: fit-content !important;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.section-kalendar .card span img, .section-arhiva .card span img {
    width: 15px;
    height: auto;
    margin: 5px;
}

.kalendar-datum {
    background-color: var(--pink-darker);
}

.kalendar-lokacija {
    background-color: var(--orange);
    color: var(--purple-darker) !important;
}

.kalendar-dogadjaj-tip {
    background-color: var(--purple-darker);
}

.kalendar-dogadjaj-kategorija {
    padding: 0 8px;
}

/* SECTION ARHIVA */
.section-arhiva {
    padding: 50px 110px 50px 110px;
    box-shadow: 0px -10px 8px 0px rgba(249, 183, 42, 0.4);
}

.section-arhiva .card span:hover {
    color: white;
}

/* SECTION POSTAVI PITANJE */
.section-postavi-pitanje#postavi-pitanje {
    padding: 70px 110px;
    background-color: var(--orange);
}

.kontakt-forma-container.postavi-pitanje-forma {
    margin: 0 auto;
}

.section-postavi-pitanje#postavi-pitanje .input-container input, textarea, select {
    border-color: #3a3636;
}

.section-postavi-pitanje#postavi-pitanje .input-container label {
    color: #3a3636;
}

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

/* SECTION MEDIJI */
.section-media {
    padding: 50px 110px 50px 110px;
    box-shadow: 0px 10px 8px 0px rgba(249, 183, 42, 0.4);
    position: relative;
}

.section-media .grid-item img {
    background-color: white;
    object-fit: cover;
}

.section-media .grid-item {
    flex: 0 0 25%;
}

.section-media .slider-track {
    justify-content: center;
    flex-wrap: wrap;
    transform: none !important;
    gap: 30px;
}

.section-media .grid-item {
    flex: 0 0 20%;
    min-width: 180px;
}

/* SEMINARI */
.section-seminar {
    padding: 140px 85px 50px 85px;
}

.section-seminar .card-wrapper {
    gap: 8%;
}

.seminar-sections-wrapper {
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding: 50px 85px;
}

.seminar-section {
    background: #4472C4;
    border-radius: 10px;
}

.seminar-section-naslov {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 15px;
    background: #4472C4;
    color: white;    
    font-weight: 700;
    font-size: 16pt;
    border-radius: 10px;
    cursor: pointer;
}

.seminar-section-naslov p {
    margin: 0;
}

.seminar-section-naslov i {
    position: absolute;
    right: 10px;
    cursor: pointer;
}

.seminar-section-content {
    display: none;
    flex-direction: column;
    gap: 10px;
    width: 95%;
    margin: 20px auto;
}

.seminar-section-content.active {
    display: flex;
    margin-top: 0;
}

.seminar-section-naslov i,
.pitanje-text i {
    transition: transform 0.3s ease;
}

.seminar-section-naslov i.rotated,
.pitanje-text i.rotated {
    transform: rotate(180deg);
}

.seminar-section-content .testemonials-container {
    position: relative;
    padding: 1rem 0;
    background: #0e1420;
    border-radius: 10px;
}

.loadMore {
    position: absolute;
    right: 10px;
    bottom: 10px;
}

.seminar-section-content.pitanja-section .loadMore{
    position: unset;
    background-color: #060c19;
}

.pitanje-wrapper, .mediji-wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 1rem;
    background: #0e1420;
    border: 1px solid #4472C4;
    border-radius: 10px;
}

.pitanje-text, .mediji-text {
    display: flex;
    flex-direction: column;
}

.pitanje-text {
    cursor: pointer;
}

.pitanje-text i {
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
}

.pitanje-text p, .odgovor-text p {
    margin: 0;
}

.predavac_ime {
    color: var(--blue-text);
    text-align: end;
}

.odgovor-text {
    display: none;
    width: 95%;
}

.odgovor-text.active {
    display: block;
}

.media-url {
    color: whitesmoke;
}

/* SPINNER */
.loader {
  color: var(--blue);
  font-size: 35px;
  text-indent: -9999em;
  overflow: hidden;
  width: 1em;
  height: 1em;
  border-radius: 50%;
  position: relative;
  display: none;
  margin: 0 auto;
  transform: translateZ(0);
  animation: mltShdSpin 1.7s infinite ease, round 1.7s infinite ease;
}

@keyframes mltShdSpin {
  0% {
    box-shadow: 0 -0.83em 0 -0.4em,
    0 -0.83em 0 -0.42em, 0 -0.83em 0 -0.44em,
    0 -0.83em 0 -0.46em, 0 -0.83em 0 -0.477em;
  }
  5%,
  95% {
    box-shadow: 0 -0.83em 0 -0.4em, 
    0 -0.83em 0 -0.42em, 0 -0.83em 0 -0.44em, 
    0 -0.83em 0 -0.46em, 0 -0.83em 0 -0.477em;
  }
  10%,
  59% {
    box-shadow: 0 -0.83em 0 -0.4em, 
    -0.087em -0.825em 0 -0.42em, -0.173em -0.812em 0 -0.44em, 
    -0.256em -0.789em 0 -0.46em, -0.297em -0.775em 0 -0.477em;
  }
  20% {
    box-shadow: 0 -0.83em 0 -0.4em, -0.338em -0.758em 0 -0.42em,
     -0.555em -0.617em 0 -0.44em, -0.671em -0.488em 0 -0.46em, 
     -0.749em -0.34em 0 -0.477em;
  }
  38% {
    box-shadow: 0 -0.83em 0 -0.4em, -0.377em -0.74em 0 -0.42em,
     -0.645em -0.522em 0 -0.44em, -0.775em -0.297em 0 -0.46em, 
     -0.82em -0.09em 0 -0.477em;
  }
  100% {
    box-shadow: 0 -0.83em 0 -0.4em, 0 -0.83em 0 -0.42em, 
    0 -0.83em 0 -0.44em, 0 -0.83em 0 -0.46em, 0 -0.83em 0 -0.477em;
  }
}

@keyframes round {
  0% { transform: rotate(0deg) }
  100% { transform: rotate(360deg) }
}

/* AGENDA SLIDER */
.slide {
    height: 100vh;
    width: 100%;
}

.tns-nav {
    width: 100%;
    height: 20px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 10px;
    z-index: 2;
    position: absolute;
    top: 95%;
}

.tns-nav button {
    height: 50%;
    width: 10px;
    border: 1px solid white;
    border-radius: 50%;
    background-color: transparent;
    padding: 5px;
}

.tns-nav .tns-nav-active {
    background-color: white;
}

/* POSTAVI PITANJE */
.section-postavi-pitanje {
    padding: 140px 110px 20px 85px;
}

.section-postavi-pitanje .kontakt-forma-container {
    padding: 0;
    padding-top: 30px;
}

.section-postavi-pitanje .kontakt-forma-container button {
    margin: 0;
    margin-top: 20px;
}

.section-postavi-pitanje button {
    float: left;
    margin: 20px;
}

/* IME MASKOTE */
.section-maskota-ime {
    padding: 140px 110px 50px 85px;
    color: white;
}

.section-maskota-ime .kontakt-forma-container {
    padding: 0;
    padding-top: 20px;
}

.section-maskota-ime .kontakt-forma-container button {
    margin: 0;
    margin-top: 20px;
}

/* NOVOSTI */
.section-novost {
    padding: 140px 110px 50px 85px;
}

.novost-container {
    color: whitesmoke;
    display: flex;
    justify-content: center;
    flex-direction: column;
    gap: 30px;
    width: 75%;
    margin: 0 auto;
}

.novost-container .info-item i {
    color: whitesmoke;
}

.novost-container .info-item:hover .link-text {
    color: var(--orange);
}

.info-item {
    display: inline-flex;
    align-items: center;
    gap: 0.4em;
    color: inherit;
    text-decoration: none;
    font-size: 1rem;
}

.info-item i {
    font-size: 0.95em;
}


.novost-container img {
    width: 60%;
    align-self: center;
    border-radius: 10px;
    box-shadow: 0px 0px 15px rgb(0 0 0 / 50%);
    padding: 20px;
}

.novost-container h1 {
    margin-top: 50px;
    margin-bottom: 20px;
}

.section-novost button {
    margin-left: 12%;
    margin-top: 20px;
}

/* FOOTER */
.page-footer {
    padding: 0 110px 50px 110px;
    border-radius: 20px 20px 0px 0px;
    box-shadow: 8px 8px 22px 12px rgba(249, 183, 42, 0.4);
}

.footer-container {
    margin-bottom: 100px;
}

.footer-container img {
    width: 200px;
    margin-bottom: -50px;
}

.footer-container a,
.footer-container p {
    font-size: 18px;
    font-weight: 700;
    color: var(--orange);
}

.footer-container p {
    margin-bottom: 10px;
}

.footer-container hr {
    height: 4px;
    background-color: var(--orange);
    border-radius: 10px;
    opacity: 1;
    margin-bottom: 50px;
}

.footer-info {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

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

.footer-copyright {
    background-color: var(--blue-darker);
    border-radius: 10px 10px 0px 0px;
    padding: 30px;
    position: absolute;
    width: 100%;
    margin-left: -110px;
    display: flex;
    justify-content: center;
}

/* KONTAKT.PHP */
.contact-page-header {
    display: flex;
    flex-direction: row;
    align-items: start;
    height: 70vh;
}

#contact-logo-mobile {
    display: none;
}

#contact-page-element-desktop {
    display: block;
    width: 50%;
    margin-left: -80px;
    overflow: hidden;
}

#contact-page-element-mobile {
    display: none;
}

#contact-logo-desktop {
    display: block;
    margin-top: 70px;
    width: 60%;
    margin-left: 20px;
}

#contact-ispis-desktop {
    display: block;
    width: 35%;
    flex: 0 0 auto;
    margin-top: 75px;
}

.contact-page-info {
    margin-left: 50px;
}

.contact-page-info p {
    font-size: 20px;
    color: #EC3865;
    margin-bottom: 0;
}

.contact-page-info span {
    font-size: 16px;
    color: white;
}

.contact-page-info hr {
    width: 50%;
    margin-left: 0;
}

.contact-page-contact {
    margin-left: 50px;
    margin-top: -12%;
}

.contact-page-item {
    display: flex;
    flex-direction: row;
    gap: 0.8em;
}

.contact-page-item .contact-name {
    color: #EC3865;
}

.contact-page-item img {
    width: 32px;
}

.contact-page-item p,
.contact-page-item a {
    font-size: 20px;
    color: white;
    margin: 0;
}