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

html,
body{
    width:100%;
    height:100%;
    font-family:'Montserrat',sans-serif;
    background:#f5f5f5;
}

/* WRAPPER */

.site-wrapper{
    display:flex;
    width:100%;
    min-height:100vh;
}

/* SIDEBAR */

.sidebar{
    width:350px;
    min-width:350px;
    background:#073763;
    color:#fff;

    display:flex;
    flex-direction:column;
    align-items:center;

    padding:35px 30px;

    position:fixed;
    left:0;
    top:0;
    bottom:0;

    z-index:1000;
}

.logo-box{
    margin-bottom:55px;
}

.logo-box img{
    width:145px;
    height:auto;
    display:block;
}

/* MENU */

.sidebar-menu{
    width:100%;
    display:flex;
    flex-direction:column;
}

.sidebar-menu a{
    color:#fff;
    text-decoration:none;

    font-size:20px;
    font-weight:400;

    padding:18px 20px;

    transition:all .25s ease;
}

.sidebar-menu a:hover{
    background:rgba(255,255,255,.08);
}

.menu-title{
    color:rgba(255,255,255,.55)!important;
    font-weight:300!important;
    margin-bottom:15px;
}

/* SOCIAL */

.socials{
    margin-top:auto;

    display:flex;
    gap:12px;

    margin-bottom:40px;
}

.socials a{
    width:38px;
    height:38px;

    display:flex;
    align-items:center;
    justify-content:center;

    background:#0c4f8b;
    border-radius:5px;

    color:#fff;
    text-decoration:none;

    font-size:13px;
    font-weight:700;
    text-transform:uppercase;
}

.socials a:nth-child(2){
    background:#E1306C;
}

.socials a:nth-child(3){
    background:#000;
}

.socials a:nth-child(4){
    background:#FF0000;
}

.socials a:nth-child(5){
    background:#000;
}

.socials a:nth-child(6){
    background:#0077B5;
}

/* BOTTOM */

.sidebar-bottom{
    width:100%;
    text-align:center;
}

.sidebar-bottom a{
    color:#fff;
    text-decoration:none;
    font-size:18px;
}

/* MAIN */

.main-content{
    margin-left:350px;
    width:calc(100% - 350px);
}

/* HERO */

.hero-section{
    position:relative;
    width:100%;
    height:100vh;
    overflow:hidden;
    background:#000;
}

/* VIDEO */

.hero-video{
    position:absolute;
    top:0;
    left:0;

    width:100%;
    height:100%;

    object-fit:cover;

    z-index:1;
}

/* OVERLAY */

.hero-overlay{
    position:absolute;
    inset:0;

    background:rgba(0,0,0,.20);

    z-index:2;
}

/* TITLE */

.hero-title{
    position:absolute;

    top:50%;
    left:50%;

    transform:translate(-50%,-50%);

    width:70%;
    max-width:1200px;

    background:rgba(120,160,190,.55);

    padding:30px 40px;

    text-align:center;

    z-index:3;
}

.hero-title h1{
    color:#fff;

    font-size:82px;
    font-weight:700;

    line-height:1.1;
}

/* RESPONSIVE */

@media(max-width:1200px){

    .hero-title h1{
        font-size:60px;
    }

}

@media(max-width:900px){

    .site-wrapper{
        flex-direction:column;
    }

    .sidebar{
        position:relative;

        width:100%;
        min-width:100%;
        height:auto;
    }

    .main-content{
        margin-left:0;
        width:100%;
    }

    .hero-section{
        height:70vh;
    }

    .hero-title{
        width:90%;
    }

    .hero-title h1{
        font-size:42px;
    }

}

/* INFO SECTION */

.info-section{
    background:#ffffff;
    padding:80px 70px;
}

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

/* UPIS BOX */

.upis-box{
    position:relative;
    width:100%;
    height:350px;

    background:url('../assets/img/upis.jpg') center center/cover no-repeat;

    margin-bottom:70px;

    overflow:hidden;
}

.upis-overlay{
    position:absolute;
    inset:0;

    background:rgba(0,0,0,.45);

    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;

    text-align:center;

    color:#fff;
}

.upis-overlay h3{
    font-size:52px;
    margin-bottom:20px;
    font-weight:700;
}

.upis-overlay p{
    font-size:22px;
    max-width:850px;
    line-height:1.6;
}

/* WELCOME */

.welcome-section h2{
    color:#073763;
    font-size:28px;
    font-weight:400;
    margin-bottom:20px;
}

.welcome-section h1{
    font-size:56px;
    color:#111;
    line-height:1.15;
    margin-bottom:35px;
    max-width:1000px;
}

.welcome-section p{
    font-size:20px;
    line-height:1.8;
    color:#333;
    margin-bottom:25px;
    max-width:1100px;
}

/* STUDY GRID */

.study-grid{
    margin-top:60px;

    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.study-card{
    background:#073763;
    color:#fff;

    padding:40px 35px;

    transition:.3s;
}

.study-card:hover{
    transform:translateY(-5px);
    background:#0b4c86;
}

.study-card h3{
    font-size:30px;
    margin-bottom:18px;
}

.study-card p{
    color:rgba(255,255,255,.85);
    font-size:17px;
    line-height:1.7;
}

/* CONTACT */

.contact-section{
    background:#f3f5f7;
    padding:70px;
}

.contact-grid{
    max-width:1200px;
    margin:0 auto;

    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:35px;
}

.contact-card{
    background:#073763;
    color:#fff;

    padding:45px;
}

.contact-card h3{
    font-size:32px;
    margin-bottom:25px;
}

.contact-card a{
    color:#fff;
    text-decoration:none;
    font-size:22px;
    display:block;
    margin-bottom:18px;
}

.contact-card p{
    font-size:22px;
}

/* MOBILE */

@media(max-width:900px){

    .info-section{
        padding:50px 25px;
    }

    .upis-box{
        height:250px;
    }

    .upis-overlay h3{
        font-size:34px;
    }

    .upis-overlay p{
        font-size:18px;
        padding:0 20px;
    }

    .welcome-section h1{
        font-size:36px;
    }

    .study-grid{
        grid-template-columns:1fr;
    }

    .contact-section{
        padding:40px 20px;
    }

    .contact-grid{
        grid-template-columns:1fr;
    }

}

.admission-content{
    background:#ffffff;
    padding:90px 70px;
}

.admission-inner{
    max-width:1180px;
    margin:0 auto;
}

.section-label{
    display:inline-block;
    background:#073763;
    color:#fff;
    padding:14px 28px;
    font-size:20px;
    font-weight:700;
    margin-bottom:35px;
    letter-spacing:1px;
}

.admission-content h1{
    font-size:54px;
    line-height:1.15;
    color:#111;
    margin-bottom:30px;
    max-width:1000px;
}

.admission-content h2{
    font-size:30px;
    color:#073763;
    margin-bottom:18px;
    font-weight:500;
}

.admission-content h3{
    font-size:23px;
    color:#073763;
    margin:30px 0 15px;
}

.admission-content p{
    font-size:19px;
    line-height:1.8;
    color:#333;
    margin-bottom:20px;
}

.admission-content a{
    color:#073763;
    font-weight:700;
    text-decoration:none;
}

.text-block{
    margin-top:45px;
}

.blue-list{
    margin:25px 0 45px 25px;
}

.blue-list li{
    font-size:24px;
    color:#073763;
    font-weight:700;
    margin-bottom:12px;
}

.highlight-box{
    background:#073763;
    color:#fff;
    padding:35px 40px;
    font-size:22px;
    line-height:1.6;
    font-weight:700;
    margin:55px 0 35px;
    text-transform:uppercase;
}

.study-type-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
    margin-bottom:60px;
}

.study-type-card{
    border:2px solid #073763;
    padding:30px;
    background:#f8fafc;
}

.study-type-card h3{
    margin-top:0;
    font-size:24px;
}

.study-type-card p{
    margin-bottom:0;
    font-weight:600;
}

.content-card{
    background:#f7f9fb;
    border-left:7px solid #073763;
    padding:40px 45px;
    margin-bottom:35px;
}

.content-card ul{
    margin-left:25px;
}

.content-card li{
    font-size:18px;
    line-height:1.8;
    margin-bottom:10px;
    color:#333;
}

.notice-box{
    background:#eaf1f8;
    padding:40px 45px;
    margin:45px 0;
    border:1px solid #cbdceb;
}

.admission-contact{
    background:#073763;
    color:#fff;
    padding:50px;
    margin-top:50px;
}

.admission-contact h2,
.admission-contact p,
.admission-contact a{
    color:#fff;
}

.main-button{
    display:inline-block;
    margin-top:20px;
    background:#fff;
    color:#073763!important;
    padding:16px 28px;
    font-weight:700;
}

@media(max-width:900px){

    .admission-content{
        padding:55px 25px;
    }

    .admission-content h1{
        font-size:36px;
    }

    .study-type-grid{
        grid-template-columns:1fr;
    }

    .highlight-box{
        font-size:18px;
        padding:25px;
    }

    .content-card{
        padding:30px 25px;
    }
}

/* SIDEBAR */

.sidebar{
    width:350px;
    min-width:350px;
    background:#073763;
    color:#fff;

    display:flex;
    flex-direction:column;

    padding:5px 5px;

    position:fixed;
    left:0;
    top:0;
    bottom:0;

    overflow-y:auto;

    z-index:1000;
}

/* LOGO */

.logo-box{
    text-align:center;
    margin-bottom:5px;
}

.logo-box img{
    width:145px;
    height:auto;
}

/* MENU */

.sidebar-menu{
    display:flex;
    flex-direction:column;
    margin-bottom:20px;
}

.sidebar-menu a{
    color:#fff;
    text-decoration:none;

    font-size:20px;
    font-weight:400;

    padding:14px 18px;

    transition:.25s ease;
}

.sidebar-menu a:hover{
    background:rgba(255,255,255,.08);
    padding-left:28px;
}

.menu-title{
    color:rgba(255,255,255,.55)!important;
    font-weight:300!important;
    margin-bottom:10px;
}

.integrisani-link{
    margin-top:15px;
    border-top:1px solid rgba(255,255,255,.15);
    padding-top:20px!important;
}

/* CONTACT */

.sidebar-contact{
    margin-top:0px;
}

.contact-block{
    margin-bottom:30px;
    padding:5px;
    background:rgba(255,255,255,.05);
    border-left:3px solid rgba(255,255,255,.35);
}

.contact-block h4{
    font-size:17px;
    margin-bottom:15px;
    color:#fff;
    line-height:1.5;
}

.contact-block a{
    display:block;
    color:#fff;
    text-decoration:none;
    font-size:15px;
    margin-bottom:10px;
    word-break:break-word;
}

.contact-block p{
    color:rgba(255,255,255,.8);
    font-size:15px;
}

/* SOCIAL */

.socials{
    margin-top:auto;

    display:flex;
    flex-wrap:wrap;
    gap:12px;

    padding-top:0px;
}

.socials a{
    width:35px;
    height:35px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:6px;

    color:#fff;
    text-decoration:none;

    font-size:17px;

    transition:.25s ease;
}

.socials a:hover{
    transform:translateY(-3px);
}

/* ORIGINAL COLORS */

.facebook{
    background:#1877F2;
}

.instagram{
    background:#E4405F;
}

.x-twitter{
    background:#000000;
}

.youtube{
    background:#FF0000;
}

.tiktok{
    background:#111111;
}

.linkedin{
    background:#0A66C2;
}

/* MOBILE */

@media(max-width:900px){

    .sidebar{
        position:relative;
        width:100%;
        min-width:100%;
        height:auto;
    }

}
.mobile-menu-toggle,
.mobile-overlay{
    display:none;
}

@media(max-width:900px){

    body.menu-open{
        overflow:hidden;
    }

    .mobile-menu-toggle{
        display:flex;
        position:fixed;
        top:18px;
        right:18px;
        width:52px;
        height:52px;
        border:0;
        border-radius:8px;
        background:#073763;
        color:#fff;
        align-items:center;
        justify-content:center;
        font-size:24px;
        z-index:3000;
        box-shadow:0 8px 25px rgba(0,0,0,.25);
    }

    .mobile-overlay{
        display:block;
        position:fixed;
        inset:0;
        background:rgba(0,0,0,.55);
        opacity:0;
        visibility:hidden;
        transition:.25s ease;
        z-index:1999;
    }

    body.menu-open .mobile-overlay{
        opacity:1;
        visibility:visible;
    }

    .sidebar{
        position:fixed;
        top:0;
        left:-100%;
        width:82%;
        max-width:360px;
        min-width:0;
        height:100vh;
        padding:28px 24px;
        transition:.35s ease;
        z-index:2500;
    }

    body.menu-open .sidebar{
        left:0;
    }

    .logo-box{
        margin-bottom:28px;
    }

    .logo-box img{
        width:120px;
    }

    .sidebar-menu{
        margin-bottom:22px;
    }

    .sidebar-menu a{
        font-size:17px;
        padding:11px 12px;
    }

    .contact-block{
        padding:14px;
        margin-bottom:16px;
    }

    .contact-block h4{
        font-size:15px;
        margin-bottom:10px;
    }

    .contact-block a,
    .contact-block p{
        font-size:14px;
    }

    .socials{
        margin-top:15px;
        padding-top:15px;
        gap:9px;
    }

    .socials a{
        width:36px;
        height:36px;
        font-size:15px;
    }

    .main-content{
        margin-left:0;
        width:100%;
    }

    .hero-section{
        height:70vh;
        min-height:420px;
    }

    .hero-title{
        width:88%;
        padding:18px 22px;
    }

    .hero-title h1{
        font-size:34px;
        line-height:1.15;
    }

    .admission-content{
        padding:45px 22px;
    }

    .admission-content h1{
        font-size:32px;
    }

    .admission-content h2{
        font-size:23px;
    }

    .admission-content p{
        font-size:16px;
    }

    .study-type-grid{
        grid-template-columns:1fr;
    }
}

/* SUBMENU */

.menu-item{
    width:100%;
}

.submenu-main{
    display:flex!important;
    justify-content:space-between;
    align-items:center;
}

.submenu-main i{
    font-size:13px;
    transition:.25s ease;
}

.submenu{
    display:none;
    flex-direction:column;
    background:rgba(0,0,0,.13);
    margin:0 0 10px 0;
    padding:8px 0;
}

.has-submenu:hover .submenu{
    display:flex;
}

.has-submenu:hover .submenu-main i{
    transform:rotate(180deg);
}

.submenu a{
    font-size:15px!important;
    padding:10px 18px 10px 32px!important;
    color:rgba(255,255,255,.88)!important;
}

.submenu a:hover{
    background:rgba(255,255,255,.08);
}

/* PROGRAM PAGES */

.page-hero,
.page-title-section{
    background:#073763;
    color:#fff;
    padding:80px 70px;
}

.page-hero h1,
.page-title-section h1{
    font-size:54px;
    line-height:1.15;
    margin-bottom:15px;
}

.breadcrumb{
    font-size:15px;
    color:rgba(255,255,255,.75);
}

.program-section,
.single-program{
    background:#fff;
    padding:80px 70px;
}

.program-inner,
.single-program{
    max-width:1150px;
}

.program-section h1,
.single-program h1{
    font-size:48px;
    color:#111;
    margin-bottom:25px;
}

.program-section h2,
.single-program h2{
    color:white;
    font-size:32px;
    margin-bottom:25px;
}

.program-section p,
.single-program p{
    font-size:19px;
    line-height:1.8;
    color:#333;
    margin-bottom:22px;
}

.program-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:28px;
    margin-top:50px;
}

.program-card{
    background:#073763;
    color:#fff;
    padding:40px;
    min-height:220px;
    text-decoration:none;
    transition:.25s ease;
}

.program-card:hover{
    background:#0b4c86;
    transform:translateY(-5px);
}

.program-card h3{
    color:#fff;
    font-size:30px;
    margin-bottom:15px;
}

.program-card p{
    color:rgba(255,255,255,.85);
    font-size:17px;
}

.download-box{
    margin-top:45px;
    background:#f3f6f9;
    border-left:6px solid #073763;
    padding:35px;
}

.download-box h3{
    color:#073763;
    margin-bottom:18px;
}

.download-btn{
    display:inline-block;
    background:#073763;
    color:#fff;
    padding:15px 25px;
    text-decoration:none;
    font-weight:700;
}

@media(max-width:900px){

    .submenu{
        display:none;
    }

    .has-submenu.open .submenu{
        display:flex;
    }

    .program-grid{
        grid-template-columns:1fr;
    }

    .page-hero,
    .page-title-section,
    .program-section,
    .single-program{
        padding:50px 25px;
    }

    .page-hero h1,
    .page-title-section h1{
        font-size:34px;
    }

    .program-section h1,
    .single-program h1{
        font-size:32px;
    }

    .single-program h2{
        font-size:26px;
    }
}

/* MENU */

.sidebar-menu{
    display:flex;
    flex-direction:column;
    width:100%;
}

/* MAIN LINKS */

.sidebar-menu > a,
.submenu-main{
    width:100%;

    display:flex;
    align-items:center;
    justify-content:space-between;

    color:#fff;
    text-decoration:none;

    font-size:20px;
    font-weight:400;

    padding:15px 18px;

    transition:.25s ease;
}

.sidebar-menu > a:hover,
.submenu-main:hover{
    background:rgba(255,255,255,.08);
    padding-left:28px;
}

/* TITLE */

.menu-title{
    color:rgba(255,255,255,.55)!important;
    font-weight:300!important;
    margin-bottom:10px;
}

/* MENU ITEM */

.menu-item{
    position:relative;
    width:100%;
}

/* SUBMENU */

.submenu{
    display:none;
    flex-direction:column;

    background:rgba(0,0,0,.13);

    margin-bottom:8px;

    border-left:2px solid rgba(255,255,255,.12);
}

.menu-item:hover .submenu{
    display:flex;
}

/* SUBMENU LINKS */

.submenu a{
    color:rgba(255,255,255,.88);
    text-decoration:none;

    font-size:15px;
    line-height:1.5;

    padding:11px 18px 11px 32px;

    transition:.25s ease;
}

.submenu a:hover{
    background:rgba(255,255,255,.08);
    padding-left:40px;
}

/* ICON */

.submenu-main i{
    font-size:12px;
    transition:.25s ease;
}

.menu-item:hover .submenu-main i{
    transform:rotate(180deg);
}

/* MOBILE */

@media(max-width:900px){

    .submenu{
        display:none;
    }

    .menu-item.open .submenu{
        display:flex;
    }

}

/* III CIKLUS */

.doctoral-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:28px;
    margin:45px 0;
}

.doctoral-card{
    background:#f4f7fa;
    border-top:6px solid #073763;
    padding:35px 30px;
}

.doctoral-card h3{
    color:#073763;
    font-size:24px;
    margin-bottom:18px;
}

.doctoral-card p{
    font-size:17px;
    line-height:1.7;
}

.doctoral-card strong{
    display:block;
    margin-top:20px;
    color:#073763;
    font-size:16px;
    line-height:1.6;
}

/* VIDEO GALERIJA */

.video-gallery-section{
    background:#fff;
    padding:80px 70px;
}

.video-gallery-inner{
    max-width:1150px;
    margin:0 auto;
}

.video-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:35px;
}

.video-card{
    display:block;
    text-decoration:none;
    background:#f5f7fa;
    transition:.25s ease;
}

.video-card:hover{
    transform:translateY(-5px);
}

.video-thumb{
    height:260px;
    background:#073763;
    display:flex;
    align-items:center;
    justify-content:center;
}

.video-thumb i{
    font-size:72px;
    color:#fff;
}

.video-card h3{
    color:#073763;
    font-size:26px;
    padding:25px;
}

@media(max-width:900px){

    .doctoral-grid,
    .video-grid{
        grid-template-columns:1fr;
    }

    .video-gallery-section{
        padding:50px 25px;
    }

    .video-thumb{
        height:210px;
    }
}


/* VIDEO EMBED */

.video-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:35px;
}

.video-card{
    background:#fff;
    border:1px solid #e5e5e5;
    overflow:hidden;

    box-shadow:0 10px 30px rgba(0,0,0,.08);

    transition:.25s ease;
}

.video-card:hover{
    transform:translateY(-5px);
}

.video-embed{
    position:relative;
    width:100%;
    padding-top:56.25%;
    overflow:hidden;
    background:#000;
}

.video-embed iframe{
    position:absolute;
    inset:0;

    width:100%;
    height:100%;
}

.video-content{
    padding:25px;
}

.video-content h3{
    font-size:26px;
    color:#073763;
    margin-bottom:20px;
}

.watch-btn{
    display:inline-block;

    background:#FF0000;
    color:#fff;
    text-decoration:none;

    padding:14px 24px;

    font-weight:700;

    transition:.25s ease;
}

.watch-btn:hover{
    background:#cc0000;
}

@media(max-width:900px){

    .video-grid{
        grid-template-columns:1fr;
    }

}


.admission-contact{
    background:#073763;
    color:#ffffff;
    padding:50px;
}

.admission-contact h2,
.admission-contact p{
    color:#ffffff;
}

.admission-contact a{
    color:#ff3b3b;
    text-decoration:none;
    font-weight:700;
}

.admission-contact a:hover{
    color:#ff6b6b;
}

.program-media-section{
    margin-top:60px;
}

.program-video-box,
.program-pdf-box{
    background:#f7f9fb;
    padding:40px;
    margin-bottom:45px;
    border-left:6px solid #073763;
}

.program-video-box h2,
.program-pdf-box h2{
    color:#073763;
    font-size:30px;
    margin-bottom:25px;
}

.program-video-embed{
    position:relative;
    width:100%;
    padding-top:56.25%;
    background:#000;
    overflow:hidden;
}

.program-video-embed iframe{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
}

.pdf-viewer{
    width:100%;
    height:850px;
    background:#ddd;
    border:1px solid #ccc;
    margin:25px 0;
}

.pdf-viewer iframe{
    width:100%;
    height:100%;
}

@media(max-width:900px){

    .program-video-box,
    .program-pdf-box{
        padding:25px;
    }

    .pdf-viewer{
        height:620px;
    }
}

/* UPIS BANNER */

.upis-banner-section{
    background:#ffffff;
    padding:70px 60px;
}

.upis-banner-inner{
    max-width:1250px;
    margin:0 auto;

    display:grid;
    grid-template-columns:220px 1fr 220px;
    align-items:center;
    gap:40px;

    background:#f5f8fb;
    border-top:8px solid #073763;
    border-bottom:8px solid #073763;

    padding:55px 45px;
}

.upis-logo{
    display:flex;
    align-items:center;
    justify-content:center;
}

.upis-logo img{
    max-width:180px;
    max-height:180px;
    object-fit:contain;
}

.upis-banner-text{
    text-align:center;
}

.upis-banner-text h2{
    color:#073763;
    font-size:42px;
    font-weight:800;
    margin-bottom:25px;
    letter-spacing:1px;
}

.upis-banner-text p{
    color:#222;
    font-size:24px;
    line-height:1.6;
    margin-bottom:8px;
}

.upis-banner-text strong{
    color:#073763;
    font-weight:800;
}

/* MOBILE */

@media(max-width:900px){

    .upis-banner-section{
        padding:45px 22px;
    }

    .upis-banner-inner{
        grid-template-columns:1fr;
        gap:25px;
        padding:35px 25px;
        text-align:center;
    }

    .upis-logo img{
        max-width:130px;
        max-height:130px;
    }

    .upis-banner-text h2{
        font-size:30px;
    }

    .upis-banner-text p{
        font-size:18px;
    }
}

/* FAQ PAGE */

.faq-section{
    background:#ffffff;
    padding:80px 70px;
}

.faq-inner{
    max-width:1150px;
    margin:0 auto;
}

.faq-intro{
    font-size:20px;
    line-height:1.8;
    color:#333;
    max-width:900px;
    margin-bottom:45px;
}

.faq-list{
    display:flex;
    flex-direction:column;
    gap:18px;
}

.faq-item{
    background:#f7f9fb;
    border-left:6px solid #073763;
    box-shadow:0 10px 28px rgba(0,0,0,.06);
}

.faq-question{
    width:100%;
    list-style:none;
    color:#073763;
    padding:25px 28px;
    font-size:22px;
    font-weight:800;
    cursor:pointer;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:20px;
}

.faq-question::-webkit-details-marker{
    display:none;
}

.faq-answer{
    padding:0 28px 30px;
}

.faq-item[open] .faq-question i{
    transform:rotate(180deg);
}

.faq-answer p{
    font-size:18px;
    line-height:1.8;
    color:#333;
    margin-bottom:18px;
}

.faq-answer h3{
    color:#073763;
    font-size:21px;
    margin:25px 0 12px;
}

.faq-answer ul{
    margin:15px 0 25px 30px;
}

.faq-answer li{
    font-size:18px;
    line-height:1.8;
    color:#333;
    margin-bottom:8px;
}

.faq-answer a{
    color:#073763;
    font-weight:800;
    text-decoration:none;
}

@media(max-width:900px){
    .faq-section{
        padding:50px 25px;
    }

    .faq-question{
        font-size:18px;
        padding:22px;
    }

    .faq-answer{
        padding:0 22px 25px;
    }

    .faq-answer p,
    .faq-answer li{
        font-size:16px;
    }
}

/* FAQ FIX - MORA BITI NA KRAJU STYLE.CSS */

.faq-list details.faq-item{
    display:block;
    background:#f7f9fb;
    border-left:6px solid #073763;
    box-shadow:0 10px 28px rgba(0,0,0,.06);
}

.faq-list details.faq-item summary.faq-question{
    width:100%;
    list-style:none;
    color:#073763;
    padding:25px 28px;
    font-size:22px;
    font-weight:800;
    cursor:pointer;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:20px;
}

.faq-list details.faq-item summary.faq-question::-webkit-details-marker{
    display:none;
}

.faq-list details.faq-item .faq-answer{
    display:block !important;
    padding:0 28px 30px;
}

.faq-list details.faq-item:not([open]) .faq-answer{
    display:none !important;
}

.faq-list details.faq-item[open] .faq-question i{
    transform:rotate(180deg);
}