*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body{

    font-family: 'Poppins', sans-serif;
    background-image: linear-gradient(to bottom, #7796c4, #63799e, #4f5d79, #3b4356, #272b36);


    overflow:auto;
    height: 100vh;
    min-height: 100%;
   
    
}

ul{
    list-style: none;
}

a{
    text-decoration: none;
}

header{
    position: sticky;
    top: 0px;
    background-color:#1F2E44;
    width: 100%;
    z-index: 1000;
}

footer{
    position: sticky;
    position: relative;
    bottom: 0px;
    width:100%;
    max-height: 3rem;
    
    padding-top: 10px;
    padding-left: 10px;
    border-top: 2px solid #fff;
    background-color:#1F2E44 ;
    color: #fff;
    
    display: flex;
   
}


footer div:nth-child(1) {
    flex:1;
     flex-shrink: 1;
     font-size: 0.9rem;
}

footer div:nth-child(2){
    flex:1;
    flex-shrink: 3;
    font-size: .7rem;
}

footer div:nth-child(3){
    flex:1;
     flex-shrink: 1;
     font-size: .8rem;
    text-align: right;
}






/*.foot {
    width: 100%;
    height: 40px;
    border-top:2px solid #fff;
}*/

main{
    position: relative;
    height: calc(100vh - 5rem);
    width: 100%;
    
    /*background-image: linear-gradient(to bottom, #7796c4, #63799e, #4f5d79, #3b4356, #272b36);*/
    /*overflow-y: auto;*/
    overflow-y: auto;
    overflow-x: hidden;
}

/*.overlay{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    
}*/

.nav-container{
    max-width: 140rem;
    padding: 0 rem;
    margin: 0 auto;
    border-bottom: 2px solid whitesmoke;
    display: flex;
    justify-content: space-between;
    position: relative;
}

.logo-container{
    flex: 1;
    display: flex;

    position relative;
    align-items: center;
    /*margin-left: -20px;*/
}

.nav-btn{
    flex: 3;
    display: flex;
}

.nav-links{
    flex: 1;
}

.log-sign{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding-left: 30%;
    flex: 1;
}

.logo{
    padding-left:10px;
    color: #fff;
    font-size: 1.6rem; /*1.1*/
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    line-height: 3rem;
}

.logo span{
    font-weight: 300;
}

.logo-container div {
    position:absolute;
    top:3rem;
    color:#fff;
    background-color: #1F2E44;
    padding: .2rem 1rem .4rem 1rem;
    border-bottom: 2px solid whitesmoke;
    border-right: 2px solid whitesmoke;
    border-radius: 0px 0px 20px 10px;
    width: 15vw;

}

.logo-container p span {
    padding-left: 10%;
 }  

.btn{
    display: inline-block;
    padding: .5rem 1.3rem;
    font-size: 0.8rem; /*0.8*/
    border: 2px solid #fff;
    border-radius: 2rem;
    line-height: 1;
    margin: 0 .2rem;
    transition: .3s;
    text-transform: uppercase;
}

.btn.solid, .btn.transparent:hover{
    background-color: #fff;
    color: #1F2E44;
}

.btn.transparent, .btn.solid:hover{
    background-color: transparent;
    color: #fff;
}

.nav-links > ul{
    display: flex;
    justify-content: center;
    align-items: center;
}

.nav-link{
    position: relative;
}

.nav-link > a{
    line-height: 3rem;
    color: #fff;
    padding: 0 .8rem;
    letter-spacing: 1px;
    font-size: 1rem; /*0.95*/
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: .5s;
}

.nav-link > a > i{
    margin-left: .2rem;
}

.nav-link:hover > a{
    transform: scale(1.1);
}

.dropdown{
    position: absolute;
    top: 100%;
    left: 0;
    width: 18rem;
    transform: translateY(10px);
    opacity: 0;
    pointer-events: none;
    transition: .5s;
}

.dropdown ul{
    position: relative;
}

.dropdown-link > a{
    display: flex;
    background-color: #484e7c;
    color: #fff;
    padding: .5rem 1rem;
    font-size: .9rem;
    align-items: center;
    justify-content: space-between;
    transition: .3s;
}

.dropdown-link:hover > a{
    background-color: #3498db;
    color: #fff;
}

.dropdown-link:not(:nth-last-child(2)){
    border-bottom: 1px solid #efefef;
}

.dropdown-link i{
    transform: rotate(-90deg);
}

.arrow{
    position: absolute;
    width: 11px;
    height: 11px;
    top: -5.5px;
    left: 32px;
    background-color: #fff;
    transform: rotate(45deg);
    cursor: pointer;
    transition: .3s;
    z-index: -1;
}

.dropdown-link:first-child:hover ~ .arrow{
    background-color: #3498db;
}

.dropdown-link{
    position: relative;
}

.dropdown.second{
    top: 0;
    left: 100%;
    padding-left: .8rem;
    cursor: pointer;
    transform: translateX(10px);
}

.dropdown.second .arrow{
    top: 10px;
    left: -5.5px;
}

.nav-link:hover > .dropdown,
.dropdown-link:hover > .dropdown{
    transform: translate(0, 0);
    opacity: 1;
    pointer-events: auto;
}

.hamburger-menu-container{
    flex: 1;
    display: none;
    align-items: center;
    justify-content: flex-end;
}

.hamburger-menu{
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.hamburger-menu div{
    width: 1.6rem;
    height: 3px;
    border-radius: 3px;
    background-color: #fff;
    position: relative;
    z-index: 1001;
    transition: .5s;
}

.hamburger-menu div:before,
.hamburger-menu div:after{
    content: '';
    position: absolute;
    width: inherit;
    height: inherit;
    background-color: #fff;
    border-radius: 3px;
    transition: .5s;
}

.hamburger-menu div:before{
    transform: translateY(-7px);
}

.hamburger-menu div:after{
    transform: translateY(7px);
}

#check{
    position: absolute;
    top: 50%;
    right: 1.5rem;
    transform: translateY(-50%);
    width: 2.5rem;
    height: 2.5rem;
    z-index: 90000;
    cursor: pointer;
    opacity: 0;
    display: none;
}

#check:checked ~ .hamburger-menu-container .hamburger-menu div{
    background-color: transparent;
}

#check:checked ~ .hamburger-menu-container .hamburger-menu div:before{
    transform: translateY(0) rotate(-45deg);
}

#check:checked ~ .hamburger-menu-container .hamburger-menu div:after{
    transform: translateY(0) rotate(45deg);
}

@keyframes animation{
    from{
        opacity: 0;
        transform: translateY(15px);
    }
    to{
        opacity: 1;
        transform: translateY(0px);
    }
}







.container-head {
    flex:1;
    position: relative;
    display: flex;
    margin-top: 1rem;
}

.left-text {
    flex:1;
    flex-shrink: 3;
    padding: 4rem 1rem;

}

.left-text h1 {
    font-size: 2rem;
    text-align: center;
}

.left-text p {
    padding: auto;
    text-align: center;
    margin:3rem auto 0rem auto;
    font-size: 1.2rem;
    width: 20rem;

}



.slide-container {
    flex: 1;
    flex-shrink: 1;

    padding: 2rem;
        

}

.slider-wrapper {
    position: relative;
    max-width: 30vw;

    margin: 0 auto;
    }

.slider {
    display: flex;
    aspect-ratio: 24/13;
    overflow-x: hidden;
    scroll-snap-type:x mandatory;
    scroll-behavior: smooth;
    box-shadow: 0 1.5rem 3rem -0.75rem hsla(0, %, %, 0.25);
}

.slider img{
    flex: 1 0 100%;
    scroll-snap-align:start; 
    border-radius: 0.5rem;
    object-fit:cover;
}







.slider-nav {
    display: flex;
    column-gap: 1rem;
    position: absolute;
    bottom: 1.25rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

.slider-nav a {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    background-color: #fff;
    opacity: 0.75;
    transition:opacity ease 250ms;
}


.right-text {
    flex:1;
    flex-shrink: 3;
    padding: 0rem 3rem;
    font-size: 1.5rem;
    text-align: center;
}



.work-time {
    max-width: 25vw;
    min-height: 26vh;
    font-size: .9rem;
    padding: .8rem;

    color:#1F2E44 ;
    background-color: floralwhite;
    border: 10px solid #1F2E44;
    border-radius: 30px 30px 30px 30px;
    
   margin: 3rem auto 0rem auto;
}



.work-time table {
    width: 100%;
}

.work-time div {
    text-align: center;
}










.container-anchor {
    position: relative;
    flex:1;
    display:flex;
    flex-direction: column;
    width: 80vw;
    margin:0rem auto 1rem auto;
     
    min-height: 25vh;
}

 .head-anchor {
flex: 1;
align-self: center;
border:4px solid #1F2E44;

margin-top: 25px;
padding-left:9px;
padding-top: 7px;
width: 17rem;
max-height: 3rem;

background-color:#1F2E44;
font-size: 1rem;
color: whitesmoke;
border-radius: 30px 30px 0px 0px;
}


.container-article {
    flex:1;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    flex-wrap: wrap;
    background-color: #1F2E44;
    height: 1200px;

    border-radius: 30px;
}

.container-article .gallery-links {
    
    flex:1;
    background-color: whitesmoke;
    max-width: 180px;
    padding:0.5rem;
    border-radius: 30px;
    /*margin:5px;*/
}



.container-article .gallery-links img {
    width: 100%;
    height: auto;

    border-radius: 30px 30px 30px 30px;



}

.container-article .gallery-links {
    
    
    background-color:#1F2E44;
    color: #fff;
    font-size: .9rem;
    
}

.container-article .gallery-links:hover {
    transform: scale(1.2);
    font-size: 0.97rem;
    color: #fff;
}




.container-main {
    flex:1;
    position:relative;
    width: 100%;
    
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    margin-top: 1 rem;
    
}

.gallery {
    position: relative;
    flex:1;
    background-color: whitesmoke;
    max-width: 200px;
    max-height: 270px;
    border: 1px solid hsl(0,0%, 60%);
    border-radius: 30px;
    margin:5px;
}

.gallery .ticket {
    position:absolute;
    top:-10px;
    left:-15px;
    background-color: green;
    color:#fff;
    padding:10px;
    font-weight: bold;
    border-radius: 10px;



}

.gallery  .description {
    padding: 5px;
    text-align: center;
}



.gallery:hover {
    border: 1px solid hsl(0,0%, 20%);
}

.gallery img {
    width: 100%;
    height: auto;
    border-radius: 30px 30px 0px 0px;
}











@media (min-width: 700px) and (max-width: 1500px) {
        main {
            overflow-y: inherit;
        }  

        .logo-container div {
         width: 25vw;

        }

        .nav-links{
            flex: 2;
        }

        .log-sign{
            display: flex;
            justify-content: flex-start;
            align-items: center;
            padding-left: 10%;
            flex: 2;
        }

        
}










@media (max-width: 920px){
            .hamburger-menu-container{
                display: flex;
            }

            #check{
                display: block;
            }

            .nav-btn{
                position: fixed;
                height: calc(100vh - 3rem);
                top: 3rem;
                left: 0;
                width: 100%;
                background-color: #69bde7;
                flex-direction: column;
                align-items: center;
                justify-content: space-between;
                overflow-x: hidden;
                overflow-y: auto;
                transform: translateX(100%);
                transition: .65s;
            }

            #check:checked ~ .nav-btn{
                transform: translateX(0);
            }

            #check:checked ~ .nav-btn .nav-link,
            #check:checked ~ .nav-btn .log-sign{
                animation: animation .5s ease forwards var(--i);
            }

            .nav-links{
                flex: initial;
                width: 100%;
            }

            .nav-links > ul{
                flex-direction: column;
            }

            .nav-link{
                width: 100%;
                opacity: 0;
                transform: translateY(15px);
            }

            .nav-link > a{
                line-height: 1;
                padding: 1.6rem 2rem;
            }

            .nav-link:hover > a{
                transform: scale(1);
                background-color: #50a9d6;
            }

            .dropdown, .dropdown.second{
                position: initial;
                top: initial;
                left: initial;
                transform: initial;
                opacity: 1;
                pointer-events: auto;
                width: 100%;
                padding: 0;
                background-color: #3183ac;
                display: none;
            }
            
            .nav-link:hover > .dropdown,
            .dropdown-link:hover > .dropdown{
                display: block;
            }

            .nav-link:hover > a > i,
            .dropdown-link:hover > a > i{
                transform: rotate(360deg);
            }

            .dropdown-link > a{
                background-color: transparent;
                color: #fff;
                padding: 1.2rem 2rem;
                line-height: 1;
            }

            .dropdown.second .dropdown-link > a{
                padding: 1.2rem 2rem 1.2rem 3rem;
            }

            .dropdown.second .dropdown.second .dropdown-link > a{
                padding: 1.2rem 2rem 1.2rem 4rem;
            }

            .dropdown-link:not(:nth-last-child(2)){
                border-bottom: none;
            }

            .arrow{
                z-index: 1;
                background-color: #69bde7;
                left: 10%;
                transform: scale(1.1) rotate(45deg);
                transition: .5s;
            }

            .nav-link:hover .arrow{
                background-color: #50a9d6;
            }

            .dropdown .dropdown .arrow{
                display: none;
            }

            .dropdown-link:hover > a{
                background-color: #3a91bd;
            }

            .dropdown-link:first-child:hover ~ .arrow{
                background-color: #50a9d6;
            }

            .nav-link > a > i{
                font-size: 1.1rem;
                transform: rotate(-90deg);
                transition: .7s;
            }

            .dropdown i{
                font-size: 1rem;
                transition: .7s;
            }

            .log-sign{
                flex: initial;
                width: 100%;
                margin-top: 15px;
                padding: 1.5rem 1.9rem;
                justify-content: flex-start;
                opacity: 0;
                transform: translateY(15px);
            }


            .logo-container div {
                min-width: 15rem;
                border-radius: ;
                

            }

            main{
                overflow-y: inherit;
            }




            .container-head {
                flex:1;
                position: relative;
                flex-direction: column-reverse;
                display: flex;
                margin-top: 3rem;
            }

            .left-text {
                 flex:1;
                 padding: 0rem 1rem;
                 font-size: 1rem;
            }

            .slide-container {
                flex: 1;
                padding: 1.2rem;

                    

            }

            .left-text h1 {
                font-size: 2rem;
               text-align: center; 
               margin-top: 2rem;
            }

            .left-text p {
                margin-top:1rem;
                margin-bottom: 2rem;
            }

            

                .slide-container {
                    flex: 1;
                    padding: 2rem;
                        

                }

                .slider-wrapper {
                    position: relative;
                    max-width: 70vw;

                    margin: 0 auto;
                    }

                .slider {
                    display: flex;
                    aspect-ratio: 24/13;
                    overflow-x: hidden;
                    scroll-snap-type:x mandatory;
                    scroll-behavior: smooth;
                    box-shadow: 0 1.5rem 3rem -0.75rem hsla(0, %, %, 0.25);
                }

                .slider img{
                    flex: 1 0 100%;
                    scroll-snap-align:start; 
                    border-radius: 0.5rem;
                    object-fit:cover;
                }


                .slider-nav {
                    display: flex;
                    column-gap: 1rem;
                    position: absolute;
                    bottom: 1.25rem;
                    left: 50%;
                    transform: translateX(-50%);
                    z-index: 1;
                }

                .slider-nav a {
                    width: 0.5rem;
                    height: 0.5rem;
                    border-radius: 50%;
                    background-color: #fff;
                    opacity: 0.75;
                    transition:opacity ease 250ms;
                }



                .right-text {
                    flex:1;
                    padding: 0rem 3rem;
                    font-size: 1.2rem;
                    text-align: center;
                }

               .work-time {
                    display: none;
                    max-width: 20vw;
                    min-height: 26vh;
                    font-size: .9rem;
                    padding: .8rem;

                    color:#1F2E44 ;
                    background-color: floralwhite;
                    border: 10px solid #1F2E44;
                    border-radius: 0px 0px 30px 30px;
                    margin-top: -2vh;
                    margin-left: 3vh;
                }

                .work-time .right-cell {
                    text-align: right;
                }

            .work-time table {
                width: 100%;
            }

            .work-time div {
                text-align: center;
            }










.container-anchor {
    position: relative;
    flex:1;
    display:flex;
    flex-direction: column;
    width: 100%;
    margin:0rem auto 1rem auto;
     
    min-height: 25vh;
}

 .head-anchor {
flex: 1;
align-self: center;
border:4px solid #1F2E44;

margin-top: 25px;
padding-left:9px;
width: 17rem;

background-color:#1F2E44;

color: whitesmoke;
border-radius: 30px 30px 0px 0px;
}


.container-article {
    flex:1;
    display: flex;

    flex-direction: row;       /* izmena dodato */
    justify-content: space-evenly;
    align-items: center;
    flex-wrap: wrap;
    background-color: #1F2E44;
    max-width: 90%; /* izmena dodato*/
    margin:0px auto 0px auto;
    height: 1200px;

    border-radius: 30px;
}

.container-article .gallery-links {
    
    flex:1;
    background-color: whitesmoke;
    min-width: 35vw;  /*izmena*/
    padding: 1rem;
    border-radius: 30px;
    /*margin:5px;*/
}



.container-article .gallery-links img {
    width: 100%;
    height: auto;
    border-radius: 30px 30px 30px 30px;



}

.container-article .gallery-links {
    
    
    background-color:#1F2E44;
    color: #fff;
    font-size: 1.3rem;
    
}

.container-article .gallery-links:hover {
    
    font-size: 0.97rem;
    color: #fff;
}












.container-main {
    flex:1;
    position:relative;
    width: 100%;
    
    display: flex;
    flex-direction: row;
    flex-wrap: wrap; /*dodatak izmena*/
    justify-content: space-evenly;
    margin-top: 3rem;
    margin-bottom: 3rem;
    
}

.gallery {
    position: relative;
    flex:1;
    background-color: whitesmoke;
    min-width: 35vw; 
    

    border: 1px solid hsl(0,0%, 60%);
    border-radius: 30px;
    margin:1rem;
}

.gallery .ticket {
    position:absolute;
    top:-10px;
    left:-15px;
    background-color: green;
    color:#fff;
    padding:10px;
    font-weight: bold;
    border-radius: 10px;


.gallery  .description {
    padding: 10px;
    text-align: center;
}


.gallery:hover {
    border: 1px solid hsl(0,0%, 20%);
}

.gallery img {
    width: 100%;
    height: auto;
    border-radius: 30px 30px 0px 0px;
}

.text-box {
    flex:1;
    max-width: 100%;
    
    padding: 1rem;
}


}
















@media (max-width:420px) { 
    .logo-container img{
            min-height: 100%;
            padding: 0;
            
        }  

        .logo{
            padding-left:10px;
            color: #fff;
            font-size: 1rem; /*1.1*/
            font-weight: 600;
            letter-spacing: 2px;
            text-transform: uppercase;
            line-height: 3.1rem;
        }


        .left-text h1 {
            /*color:#b80502;*/
            color:#0a3c82;
            font-size: 2rem;
    }

        main {
            position: relative;
            height: calc(100vh - 7rem);
            width: 100%;
            
            
            overflow: auto;
        }

        .gallery-box {
            flex:1;
            display: flex;
            flex-wrap: wrap;
            min-width: 100%;
            justify-content:center;
           
    
        }

        footer{
            position: sticky;
            position: relative;
            bottom: 0px;
            width:100%;
            min-height: 5rem;
            
            padding-top: 10px;
            padding-left: 10px;
            border-top: 2px solid #fff;
            background-color: #1F2E44;
            color: #fff;
            
            display: flex;
            flex-wrap: wrap;
           
        }


        footer div:nth-child(1) {
            flex:1;
             
             min-width: 45%;
             order:1;
             font-size: .8rem;
        }

        footer div:nth-child(2){
            flex:1;
            flex-shrink: 1;
            order:3;
            font-size: .8rem;
            text-align: center;
            padding-bottom: 1rem;
        }

        footer div:nth-child(3){
            flex:1;
             
             min-width: 45%;
             order: 2;
             font-size: .7rem;
            text-align: right;
        }

        .logo-container div {
            position:absolute;
            top:3rem;
            color:#fff;
            background-color: #1F2E44;
            padding: .2rem auto .4rem auto;
            border-radius: 0px 0px 20px 0px;
            font-size:.8rem;
            /*min-width: 15vw;*/



}








