@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;300;400;500;600&display=swap');

/* Google Fonts - Poppins */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap");

:root{
    --yellow:#f9d806;
    --light-yellow:#ffee80;
    --black:#130f40;
    --light-color:#666;
    --box-shadow:0 .5rem 1rem rgba(0,0,0,.1);
    --border:.1rem solid rgba(0,0,0,.1);
}

*{
    font-family: 'Poppins', sans-serif;
    margin:0; padding:0;
    box-sizing: border-box;
    outline: none; border:none;
    text-decoration: none;
    /*text-transform: capitalize;*/
    transition: .2s linear;
}

html{
    font-size: 62.5%;
    overflow-x: hidden;
    scroll-padding-top: 7rem;
    scroll-behavior: smooth;
}

section{
    padding:2rem 9%;
}

.heading{
    padding-bottom: 2rem;
    text-align: center;
    font-size: 4.5rem;
    color:var(--black);
}

.heading span{
    position: relative;
    z-index: 0;
}

.heading span::before{
    content: '';
    position: absolute;
    bottom:1rem; left:0;
    height: 100%;
    width: 100%;
    background: var(--light-yellow);
    z-index: -1;
    clip-path: polygon(0 90%, 100% 80%, 100% 100%, 0% 100%);
}

/*for cookie*/
.wrapperNEW {
    position: fixed;
    bottom: 50px;
    /*max-width: 345px;*/
    max-width: 350px;
    width: 100%;
    background: #fff;
    border: 2px solid #e8e8e8;
    border-radius: 4px;
    padding: 15px 25px 22px;
    transition: right 0.3s ease;
    right: -370px;
    box-shadow: 0 5px 10px rgba(0,0,0,0.1);
    z-index: 1;
}

    .wrapperNEW.show {
        right: 20px;
    }

    .wrapperNEW .headerNEW {
        display: flex;
        align-items: center;
        column-gap: 15px;
    }

        .wrapperNEW .headerNEW i {
            color: #4070f4;
            font-size: 32px;
        }

        .wrapperNEW .headerNEW h2 {
            color: #4070f4;
            font-weight: 500;
        }

    .wrapperNEW .dataNEW {
        margin-top: 16px;
    }

        .wrapperNEW .dataNEW p {
            color: #333;
            font-size: 16px;
        }

            .wrapperNEW .dataNEW p a {
                color: #4070f4;
                text-decoration: none;
            }

                .wrapperNEW .dataNEW p a:hover {
                    text-decoration: underline;
                }

    .wrapperNEW .buttonsNEW {
        margin-top: 16px;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

        .wrapperNEW .buttonsNEW .buttonNEW {
            border: none;
            color: #fff;
            background: #4070f4;
            padding: 8px 0;
            border-radius: 4px;
            cursor: pointer;
            width: calc(100% / 2 - 10px);
            transition: all 0.2s ease;
        }

        .wrapperNEW .buttonsNEW #acceptBtn:hover {
            background: #034bf1;
        }

        .wrapperNEW .buttonsNEW #declineBtn {
            background: #fff;
            border: 2px solid #4070f4;
            color: #4070f4;
        }

            .wrapperNEW .buttonsNEW #declineBtn:hover {
                background: #4070f4;
                color: #fff;
            }

/*end cookie*/

.btn{
    display: inline-block;
    margin-top: 1rem;
    padding:.8rem 3rem;
    background:var(--light-yellow);
    color:var(--black);
    cursor: pointer;
    font-size: 1.7rem;
    border-radius: .5rem;
    font-weight: 500;
    text-align: center;
}

.btn:hover{
    background:var(--yellow);
}

/*logovanje dugmici*/
#btnLogin {
    display: inline-block;
    margin-top: 1rem;
    padding: .8rem 3rem;
    background: #db3c0b;
    color: #fff;
    cursor: pointer;
    font-size: 1.7rem;
    border-radius: .5rem;
    font-weight: 500;
    text-align: center;
}

    #btnLogin:hover {
        background: #a80505;
    }
#btnLogout1 {
    display: inline-block;
    margin-top: 1rem;
    padding: .8rem 3rem;
    background: #db3c0b;
    color: #fff;
    cursor: pointer;
    font-size: 1.7rem;
    border-radius: .5rem;
    font-weight: 500;
    text-align: center;
}

    #btnLogout1:hover {
        background: #a80505;
    }

#btnLogOut {
    display: inline-block;
    margin-top: 1rem;
    padding: .8rem 3rem;
    background: #db3c0b;
    color: #fff;
    cursor: pointer;
    font-size: 1.7rem;
    border-radius: .5rem;
    font-weight: 500;
    text-align: center;
}

    #btnLogOut:hover {
        background: #a80505;
    }

#btnRegistar {
    display: inline-block;
    margin-top: 1rem;
    padding: .8rem 3rem;
    background: #db3c0b;
    color: #fff;
    cursor: pointer;
    font-size: 1.7rem;
    border-radius: .5rem;
    font-weight: 500;
    text-align: center;
}

    #btnRegistar:hover {
        background: #a80505;
    }

#btnLogovanje {
    width: 320px;
    display: inline-block;
    margin-top: 1rem;
    padding: .8rem 3rem;
    background: #db3c0b;
    color: #fff;
    cursor: pointer;
    font-size: 1.7rem;
    border-radius: .5rem;
    font-weight: 500;
    text-align: center;
}

    #btnLogovanje:hover {
        background: #a80505;
    }
/*end dugmici za logovanje*/

.header{
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: fixed;
    top:0; left:0; right:0;
    padding:3rem 9%;
    z-index: 1000;
    opacity: 0.9;
    background: #fff;
    border-bottom: 2.5px solid #757575;
}
.header .img-logo{
    width: 150px;
    height: auto;
    align-items: center;
    align-content: center;
    padding: 5px;
}
.header .logo{
    font-size: 2rem;
    color: #0e0e45;
    font-weight: bold;
}

.header .logo span{
    color: #c40208;
}

.header .navbar a{
    margin:0 1rem;
    font-size: 1.7rem;
    color: #4070F4;
}

.header .navbar a:hover{
    color: #c40208;
}

#login-btn .btn{
    margin-top: 0;
}

#login-btn i{
    display: none;
    font-size: 2.5rem;
    color:var(--light-color);
}

.header.active{
    padding:2rem 9%;
    box-shadow: var(--box-shadow);
}

#menu-btn{
    font-size: 2.5rem;
    color:var(--light-color);
    display: none;
}

.home {
    width: 100%;
    height: 600px;
    /*padding-top: 10rem;*/
    text-align: center;
    overflow-x: hidden;
    /*background-image: url('../image/slika31.jpg');
    padding: 50px;*/

}
.naslov {
    width: 100%;
    /*padding-top: 10rem;*/
    text-align: center;
    overflow-x: hidden;
    margin-top: -280px;
    z-index: 1;
}

.naslov h3{
    color:var(--black);
    font-size: 4.0vw;
    /*text-transform: uppercase;*/  
}

.home img{
    width:100%;
    height: 550px;
    margin: 0;
    opacity: 0.3;
}
/*background*/
/*.backgr {*/
   /* padding-top: 100px;
    background-image: url('../images/koi_fish.jpeg');*/

    /* Full height */

    /*height: 100%;*/

    /* Center and scale the image nicely */

    /*background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    border-bottom: 2.5px solid #00121f;
}*/

owl-carousel {
    /*margin-top: 150px;*/
    width: 100%;
    height: 100vh;
    text-align: center;
    font-family: 'Poppins', sans-serif;
}

.slide {
    width: 100%;
    height: 100vh;
    position: relative;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    overflow: hidden;
}

    .slide::before {
        /*margin-top: 150px;*/
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: rgba(0, 0, 0, 0.5);
    }

.slide-1 {
    background-image: url('../images/pocetna1.png');
}

.slide-2 {
    background-image: url('../images/pocetna2.png');
}

.slide-3 {
    background-image: url('../images/pocetna3.png');
}

/*.slide-4 {
    background-image: url('../img/a3.jpg');
}*/

.slide-content {
    text-align: center;
    position: absolute;
    top: 40%;
    transform: translateY(-50%);
    color: #fff;
    padding: 0 20%;
}

    .slide-content h1 {
        text-align: center;
        font-family: 'Poppins', sans-serif;
        font-size: 42px;
        /*text-transform: uppercase;*/
        color: #060054;
        text-shadow: 1px 1px #fff;
    }

    .slide-content h3 {
        font-family: "Anton", serif;
        font-size: 45px;
        /*text-transform: uppercase;*/
        color: #fff;
    }

    .slide-content p {
        font-family: "Lato", serif;
        font-size: 18px;
        margin-bottom: 20px;
    }

    .slide-content button {
        font-family: "Roboto", serif;
        font-size: 25px;
        text-transform: uppercase;
        font-weight: bolder;
        padding: 10px 25px;
        border: none;
    }

.owl-dots {
    width: 100%;
    text-align: center;
    position: absolute;
    bottom: 1%;
}

    .owl-dots span {
        width: 20px !important;
        height: 20px !important;
    }

    .owl-dots button {
        border: none !important;
        outline: none !important;
    }

.owl-nav button {
    border: none !important;
    outline: none !important;
}

.owl-prev, .owl-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: #fff !important;
    font-size: 65px !important;
    font-weight: bolder !important;
    background: none !important;
}

.owl-prev {
    left: 1%;
}

.owl-next {
    right: 1%;
}

.glavni-naslov h3{
    font-family: 'Poppins', sans-serif;
    font-size: 45px;
    text-align: center;
    color:#fff;
    margin: 50px;
    text-shadow: 1px 1px #00121f;
   /* text-transform: uppercase; */
}
/*end-background*/
/*slides*/
.owl-carousel {
    width: 100%;
    /*height: 670px;*/
    height: 100vh;
}
/*15 - button*/
.button_15 {
        height: 50px;
        width: 150px;
        background:#fff;
        border-radius:40px;
        border-width: 10px;
        border: 4px solid #fff;
        padding-left:20px;
        padding-right:20px;
        color: #4070F4;
        opacity: .8; /*smanjena vidljivost*/
        cursor:pointer;
}
.button_15 {
    -webkit-transition-duration: 0.4s; /* Safari */
    transition-duration: 0.4s;
}

.button_15:hover {
    background-color: #4070F4;
    color: white;
}
/*30 - button*/
.button_30 {
        height: 50px;
        width: 150px;
        background:#fff;
        border-radius:40px;
        border-width: 10px;
        border: 4px solid #fff;
        padding-left:20px;
        padding-right:20px;
        color: #4070F4;
        opacity: .8; /*smanjena vidljivost*/
        cursor:pointer;
}
.button_30 {
    -webkit-transition-duration: 0.4s; /* Safari */
    transition-duration: 0.4s;
}

.button_30:hover {
    background-color: #4070F4;
    color: white;
}
/*neo - button*/
.button_neo {
        height: 50px;
        width: 150px;
        background:#fff;
        border-radius:40px;
        border-width: 10px;
        border: 4px solid #fff;
        padding-left:20px;
        padding-right:20px;
        color: #4070F4;
        opacity: .8; /*smanjena vidljivost*/
        cursor:pointer;
}
.button_neo {
    -webkit-transition-duration: 0.4s; /* Safari */
    transition-duration: 0.4s;
}

.button_neo:hover {
    background-color: #4070F4;
    color: white;
}

/*sledi css za semafor*/
.semafor {
    margin-top: 0px;
}
.container1{
	max-width: 1000px;
	min-height: 100vh;
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	margin: auto;
    margin-top: -150px;
}
.box1{
	max-width: 500px;
	min-height: 250px;
	position: relative;
	cursor: pointer;
}
.box1 .thumb{
	max-width: 250px;
	width: 100%;
	height: 250px;
	overflow: hidden;
	position: relative;
	border-radius: 50%;
	float: left;
	shape-outside: circle();
	margin-right: 20px;
}
.thumb img{
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
}
.thumb .social{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #fff4;
    /*background: #FF4D4F;*/
	text-align: center;
	line-height: 250px;
	z-index: 1;
	transition: 0.5s linear;
	box-shadow: inset 0 0 20px 6px #bda9a9;
	transform: translateY(-250px);
}
.box1:hover .thumb .social{
	transform: translateY(0);
}
.thumb .social a{
	background: #222;
	width: 30px;
	height: 30px;
	display: inline-block;
	line-height: 30px;
	color: #000;
	transition: 0.3s linear;
}
.thumb .social a:hover{
	border-radius: 50%;
	color: crimson;
}
/*drugi krug*/
.box1 .thumb1{
	max-width: 250px;
	width: 100%;
	height: 250px;
	overflow: hidden;
	position: relative;
	border-radius: 50%;
	float: left;
	shape-outside: circle();
	margin-right: 20px;
}
.thumb1 img{
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
}
.thumb1 .social1{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #fff4;
    /*background: #F7FF61;*/
	text-align: center;
	line-height: 250px;
	z-index: 1;
	transition: 0.5s linear;
	box-shadow: inset 0 0 20px 6px #bda9a9;
	transform: translateY(-250px);
}
.box1:hover .thumb1 .social1{
	transform: translateY(0);
}
.thumb1 .social1 a{
	background: #222;
	width: 30px;
	height: 30px;
	display: inline-block;
	line-height: 30px;
	color: #000;
	transition: 0.3s linear;
}
.thumb1 .social1 a:hover{
	border-radius: 50%;
	color: crimson;
}
/*end drugi krug*/

/*treci krug*/
.box1 .thumb2{
	max-width: 250px;
	width: 100%;
	height: 250px;
	overflow: hidden;
	position: relative;
	border-radius: 50%;
	float: left;
	shape-outside: circle();
	margin-right: 20px;
}
.thumb2 img{
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
}
.thumb2 .social2{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #fff4;
    /*background: #78FF81;*/
	text-align: center;
	line-height: 250px;
	z-index: 1;
	transition: 0.5s linear;
	box-shadow: inset 0 0 20px 6px #bda9a9;
	transform: translateY(-250px);
}
.box1:hover .thumb2 .social2{
	transform: translateY(0);
}
.thumb2 .social2 a{
	background: #222;
	width: 30px;
	height: 30px;
	display: inline-block;
	line-height: 30px;
	color: #000;
	transition: 0.3s linear;
}
.thumb2 .social2 a:hover{
	border-radius: 50%;
	color: crimson;
}
/*end treci krug*/
.box1 .text a{
	padding-top: 20px;
}
.box1 .text h2{
	/*text-transform: uppercase;*/
	letter-spacing: 2px;
}
.box .text p{
	margin: 15px 0;
}
.box1 .text a{
	text-decoration: none;
}
.box1 .text a:hover{
	color: crimson;
}
/*end semafor*/
/*logo*/
.log {
    margin-top: 80px;
}
.logo-semafor {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    /*padding: 10px 14px;*/
}
.logo-semafor .logo-semafor-img{
    height: 100%;
    width: 100%;
    object-fit: cover;
}
/*end-logo*/

/*slider*/
.slider-semaforposlova {
    margin-top: 0px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #EFEFEF;
}
.slide-container {
    max-width: 1120px;
    width: 100%;
    /*background-color: grey;*/
    padding: 40px 0;
}
.slide-content1 {
    margin: 0 40px;
    /*background-color: red;*/
    overflow: hidden;
    border-radius: 25px;
}
.card{
    border-radius: 25px;
    background-color: #FFF;
}
.image-content,
.card-content {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px 14px;
}
.image-content {
    position: relative;
    column-gap: 5px;
    /*row-gap: 5px;*/
    padding: 25px 0;
}
.overlay {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background-color: #4070F4;
    border-radius: 25px 25px 0 25px;
}
.overlay::before,
.overlay::after {
    content: '';
    position: absolute;
    right: 0;
    bottom: -40px;
    height: 40px;
    width: 40px;
    background-color: #4070F4;    
}
.overlay::after {
    border-radius: 0 25px 0 0;
    background-color: #FFF;
}
.card-image{
    position: relative;
    height: 150px;
    width: 150px;
    border-radius: 50%;
    background: #FFF;
    padding: 3px;
}
.card-image .card-img{
    height: 100%;
    width: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid #4070F4;
}
.name {
    font-size: 18px;
    font-weight: 500;
    color: #333;
}
.description {
    font-size: 14px;
    color: #707070;
    text-align: center;
}
.button {
    border: none;
    font-size: 16px;
    color: #FFF;
    padding: 8px 16px;
    background-color: #4070F4;
    border-radius: 6px;
    margin: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}
.button:hover {
        background: #265DF2;
}
.swiper-navBtn {
    color: #6E93f7;
    transition: color 0.3s ease;
}
.swiper-navBtn:hover {
    color: #4070F4;
}
.swiper-navBtn::before,
.swiper-navBtn::after {
    font-size: 40px;
}
.swiper-button-next {
    right:0;
}
.swiper-button-prev {
    left:0;
}
.swiper-pagination-bullet {
    background-color: #6E93f7;
    opacity:1;
}
.swiper-pagination-bullet-active {
    background-color: #4070F4;
}

@media screen and (max-width: 768px) {
    .slide-content1 {
        margin: 0 10px;
    }
    .swiper-navBtn {
        display: none;
    }
}
/*end slider*/
.naslovljeno {
    font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 46px;
    color: #0e0e45;
    /*color:#013457;*/
    text-shadow: 1px 1px #00121f;
    text-align: center;
}

/* contact */
.contact{background: #fff; padding:50px 0px; padding-bottom: 450px; padding-top: 0px;}
.contact-heading h3{
    /*text-transform: capitalize;*/
    text-align: center;
    font-size: 3em;
    font-weight: 600;
    color: #ffffff;
}
.contact-form {
    float:left;
    width: 40%;
    padding: 10px;
    margin-left: 50px;
    border: 2px solid #ededed;
    border-radius: 10px;
}
.map {
    float: right;
    width:50%;
    padding: 10px;
    margin-right: 50px;
    border: 2px solid #ededed;
    border-radius: 10px;
}

.contact-form input[type="text"],textarea{
    margin: 1em 0;
    padding: .6em 1em;
    font-size: 1.2em;
    width: 100%;
    background: #fff;
    border: 1px solid #ededed;
}
.contact-form input[type="email"], textarea {
    margin: 1em 0;
    padding: .6em 1em;
    font-size: 1.2em;
    width: 100%;
    background: #fff;
    border: 1px solid #ededed;
}
textarea{
    height:100px;
}
input.form-control:focus {
    box-shadow: none;
}
button.btn.btn-default:focus {
    outline: none;
}
::-webkit-input-placeholder{
    color:# !important;
}
.contact-form  input[type="submit"] {
    background: #ffb900;
    border: 2px solid #ffb900;
    padding: .3em 1em;
    /*text-transform: uppercase;*/
    color: #fff;
    font-size: 1.2em;
    font-family: 'Ropa Sans', sans-serif;
}
.contact-form  input[type="submit"]:hover{
    background:none;
    color:#FFFFFF;
}
iframe {
    border: none;
    width: 100%;
    height: 374px;
}
/* contact */

.footer{
    background: #14141c;
    padding-bottom: 8rem;
}

.footer .box-container{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
    gap:1.5rem;
}

.footer .box-container .box h3{
    font-size: 2.2rem;
    padding:1rem 0;
    color:#fff;
}

.footer .box-container .box a{
    display: block;
    font-size: 1.4rem;
    padding:1rem 0;
    color:#fff;
}

.footer .box-container .box a i{
    padding-right: .5rem;
    color:#fff;
}

.footer .box-container .box a:hover i{
    padding-right: 2rem;
}

.footer .credit{
    text-align: center;
    padding:1.5rem;
    padding-top: 2.5rem;
    margin-top: 2rem;
    border-top: #fff;
    font-size: 2rem;
    color:#fff;
}











@media (max-width:1180px) {
    .contact-form {
        float: left;
        width: 40%;
        padding: 10px;
        /*margin-left: 50px;*/
        border: 2px solid #ededed;
        border-radius: 10px;
    }
    #btnLogin {
        display: inline-block;
        margin-top: 1rem;
        padding: .6rem 1rem;
        background: #db3c0b;
        color: #fff;
        cursor: pointer;
        font-size: 1.2rem;
        border-radius: .2rem;
        font-weight: 500;
        text-align: center;
    }
    #btnLogout1 {
        display: inline-block;
        margin-top: 1rem;
        padding: .6rem 1rem;
        background: #db3c0b;
        color: #fff;
        cursor: pointer;
        font-size: 1.2rem;
        border-radius: .2rem;
        font-weight: 500;
        text-align: center;
    }

    .map {
        float: right;
        width: 40%;
        padding: 10px;
        /*margin-right: 50px;*/
        border: 2px solid #ededed;
        border-radius: 10px;
    }
    /*slides*/
    .owl-carousel {
    width: 100%;
    /*height: 670px;*/
    height: 100vh;
}

.slide {
    width: 100%;
    /*height: 670px;*/
    height: 100vh;
    position: relative;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    overflow: hidden;
}

.slide::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    /*height: 670px;*/
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
}
    /*end slides*/
    .semafor {
     margin-top: 160px;
    }
}




@media (max-width:991px){
     .contact-form {
    float: left;
    width: 35%;
    padding: 5px;
    /*margin-left: 50px;*/
    border: 2px solid #ededed;
    border-radius: 10px;
    margin-bottom: 20px;
}
    #btnLogin {
        display: inline-block;
        margin-top: 1rem;
        padding: .6rem 1rem;
        background: #db3c0b;
        color: #fff;
        cursor: pointer;
        font-size: 1.2rem;
        border-radius: .2rem;
        font-weight: 500;
        text-align: center;
    }
    #btnLogout1 {
        display: inline-block;
        margin-top: 1rem;
        padding: .6rem 1rem;
        background: #db3c0b;
        color: #fff;
        cursor: pointer;
        font-size: 1.2rem;
        border-radius: .2rem;
        font-weight: 500;
        text-align: center;
    }
    .map {
    float: right;
    width: 50%;
    padding: 5px;
    /*margin-right: 50px;*/
    border: 2px solid #ededed;
    border-radius: 10px;
}
      .glavni-naslov {
    font-family: 'Poppins', sans-serif;
    font-size: 32px;
    text-align: center;
    color:var(--yellow);
    margin:auto;
    text-shadow: 1px 1px #00121f;
    }
    .container1 {
    padding-top: 180px;
    }
    .naslovljeno {
    font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 32px;
    color:var(--yellow);
    /*color:#013457;*/
    text-shadow: 1px 1px #00121f;
    text-align: center;
    }
    /*slides*/
    .owl-carousel {
    width: 100%;
    /*height: 670px;*/
    height: 100vh;
}

.slide {
    width: 100%;
    /*height: 670px;*/
    height: 100vh;
    position: relative;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    overflow: hidden;
}

.slide::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    /*height: 670px;*/
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
}
    /*end slides*/
     .semafor {
     margin-top: 140px;
    }
    /*.semafor {
     margin-top: 120px;
    }*/
    html{
        font-size: 55%;
    }

    .header{
        padding:2rem;
    }

    .header.active{
        padding:2rem;
    }

    section{
        padding:2rem;
    }

}

@media (max-width:768px){
     .contact-form {
    float: right;
    width: 100%;
    padding: 10px;
    /*margin-left: 50px;*/
    border: 2px solid #ededed;
    border-radius: 10px;
    margin-bottom: 20px;
}
      .glavni-naslov {
    font-family: 'Poppins', sans-serif;
    font-size: 26px;
    text-align: center;
    color:var(--yellow);
    margin:auto;
    text-shadow: 1px 1px #00121f;
    }
    .container1 {
    padding-top: 180px;
    }
    .naslovljeno {
    font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 26px;
    color:var(--yellow);
    /*color:#013457;*/
    text-shadow: 1px 1px #00121f;
    text-align: center;
    }
    .map {
    float: left;
    width:100%;
    padding: 10px;
    /*margin-right: 50px;*/
    border: 2px solid #ededed;
    border-radius: 10px;
}
    /*slides*/
    .owl-carousel {
        width: 100%;
        height: 50vh;
    }

    .slide-content h1 {
        font-family: "Anton", serif;
        font-size: 24px;
       /* text-transform: uppercase;*/
        color: #060054;
        text-shadow: 1px 1px #fff;
    }

    .slide {
        width: 100%;
        height: 50vh;
        position: relative;
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center center;
        overflow: hidden;
    }

        .slide::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 50vh;
            background-color: rgba(0, 0, 0, 0.5);
        }

    /*end slides*/
     .semafor {
     margin-top: 240px;
    }
    #menu-btn{
        display: block;
    }

    #menu-btn.fa-times{
        transform:rotate(180deg);
    }

    #login-btn .btn{
        display: none;
    }

    #login-btn i{
        display: block;
    }

    .header .navbar{
        position: absolute;
        top:99%; left:0; right:0;
        background: #fff;
        border-top: var(--border);
        clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
    }

    .header .navbar.active{
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
    }

    .header .navbar a{
        margin:2rem;
        display: block;
        font-size: 2rem;
    }
    .footer{
        margin-top: 400px;
}

}

@media (max-width:450px){
       .contact-form {
    float: right;
    width: 100%;
    padding: 10px;
    /*margin-left: 50px;*/
    border: 2px solid #ededed;
    border-radius: 10px;
    margin-bottom: 20px;
}
    .map {
    float: left;
    width:100%;
    padding: 10px;
    /*margin-right: 50px;*/
    border: 2px solid #ededed;
    border-radius: 10px;
}
    /*slides*/
    .owl-carousel {
        width: 100%;
        /*height: 670px;*/
        height: 50vh;
    }

    .slide {
        width: 100%;
        /*height: 670px;*/
        height: 50vh;
        position: relative;
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center center;
        overflow: hidden;
    }

        .slide::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            /*height: 670px;*/
            height: 50vh;
            background-color: rgba(0, 0, 0, 0.5);
        }
     .glavni-naslov {
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    text-align: center;
    color:var(--yellow);
    margin:auto;
    text-shadow: 1px 1px #00121f;
    }
    .container1 {
    padding-top: 180px;
    }
    .naslovljeno {
    font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 20px;
    color:var(--yellow);
    /*color:#013457;*/
    text-shadow: 1px 1px #00121f;
    text-align: center;
    }

.slide {
    width: 100%;
    /*height: 670px;*/
    height: 50vh;
    position: relative;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    overflow: hidden;
}

.slide::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    /*height: 670px;*/
    height: 50vh;
    background-color: rgba(0, 0, 0, 0.5);
}
    /*end slides*/
     .semafor {
     margin-top: 180px;
    }
    html{
        font-size: 50%;
    }

    .heading{
        font-size: 3rem;
    }

    /*sledi semafor*/
    .box1 .thumb{
		float: none;
		margin: auto;
	}
	.box1 .text{
		padding: 0;
		margin: 15px;
	}

    /*semafor end*/

}