@font-face {
    font-family: FR;
    src: url(fonts/Montserrat.ttf);
  }
@font-face {
    font-family: FB;
    src: url(fonts/Montserrat-Bold.ttf);
  }

*{
    margin:0;
    padding:0;
    box-sizing: border-box;
    scroll-behavior:smooth;
}


.hamburger {
    display: none;
}

.mobile{
    display: none;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    background-color: white;
}

body::-webkit-scrollbar {
    width: 1em;
    background-color: #1f1f1f;
}
   
body::-webkit-scrollbar-thumb {
    background-color: #41bc05;
    border: 1px solid #1f1f1f;
}

button{
    cursor: pointer;
}

a.anchor {
    display: block;
    position: relative;
    top: 0rem;
    visibility: hidden;
}

a {
    text-decoration: none;
}

.hamb{
    display: none;
}


/*HEADER*/

header {
    padding: 2rem 10vw 1rem 10vw;
    display:flex;
    height: 8rem;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    background: linear-gradient(90deg, #1f1f1f 60%, #41bc05 60%);
}

#logo {
    height: 75px;
    margin-bottom: 1rem;
}


.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-menu {
    display: flex;
    justify-content: space-between;
    align-items: center;

}


.nav-link{
    font-family: FR;
    font-size: 1.1rem;
    font-weight: bold;
    color: white;
    padding: 15px 45px;
    margin-left: 2vw;
    border-radius: 6.5px;
    background-color: #1f1f1f;
}

header ul li{
    position: relative;
    list-style: none;
}

header ul li a{
    text-decoration: none;
}

.link{
    margin: 1vw 2vw 1vw 2vw;
    background-color: transparent;
    padding: 5px 0;
}

.link:hover{
    border-bottom: 2px solid white;
    border-radius: 0;
}


/*BANNER*/

#banner {
    background: linear-gradient(90deg, #1f1f1f 60%, #41bc05 60%);
    height: fit-content;
    max-width: 100vw;
    margin-top: -8rem;
    background-image: url("images/background.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

h1 {
    font-family: FB;
    font-size: 3rem;
    font-weight: bolder;
    color: white;
    padding-top: 25vh;
    margin-left: 10vw;
    width: 37%;
}

#banner p{
    font-family: FR;
    font-size: 1rem;
    color: white;
    margin-left: 10vw;
    padding-top: 7vh;
    line-height: 3rem;
    width: 30%;
}

#btnone {
    font-family: FR;
    font-size: 1rem;
    color: white;
    margin: 8vh 0 0 10vw;
    padding: 15px 50px;
    border: 2px solid #41bc05;
    background-color: #41bc05;
    border-radius: 6.5px;
}

#btntwo{
    font-family: FR;
    font-size: 1rem;
    color: white;
    background-color: transparent;
    border: none;
    padding-bottom: 2px;
    margin-left: 30px;
}

#btntwo:hover{
    border-bottom: 2px solid white;
}

#banner table {
    margin-left: 10%;
    margin-top: 10vh;
    padding-bottom: 10vh;
}

th{
    color: #41bc05;
    font-family: FB;
    font-size: 2rem;
    padding: 0 2rem 0 2rem;
}

td{
    color: white;
    font-family: FR;
    font-size: 1.2rem;
    text-align: center;
    line-height: 2rem;
}

#vanBanner{
    position: absolute;
    width: 55vw;
    bottom: 7vh;
    right: 5vw;
    visibility: hidden;
}

/*SLIDER*/

.slider{
    height: 150px;
    margin: auto;
    position: relative;
    width: 80%;
    display: grid;
    place-items: center;
    overflow: hidden;
}

.slide-track{
    width: calc(400px * 24);
    display: flex;
    animation: scroll 110s linear infinite;
}

.slide{
    height: 150px;
    width: 400px;
    display: flex;
    align-items: center;
    padding: 15px;
}

.slide img{
    width: 100%;
}

@keyframes scroll {
    0% {
        transform: translate(0);
    }
    100% {
        transform: translate(calc(-400px * 20 ));
    }
}

.slider::before,
.slider::after{
    background: linear-gradient(to right, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 100%);
    content: '';
    height: 100%;
    position: absolute;
    width: 10%;
    z-index: 2;
}

.slider::before{
    left: 0;
    top: 0;
}

.slider::after{
    right: -1px;
    top: 0;
    transform: rotateZ(180deg);
}


/*GALERIJA*/

#galerija{
    min-height: 100vh;
}

h2{
    font-family: FB;
    font-size: 3rem;
    line-height: 5rem;
    color: #1f1f1f;
    float: left;
    width: 40vw;
    margin-left: 10vw;
    padding: 10vh 0 10vh 0;
}

#galerijaText{
    font-family: FR;
    font-size: 1.4rem;
    line-height: 2.5rem;
    color: #1f1f1f;
    float: right;
    width: 30vw;
    margin-right: 12vw;
    padding-top: 10vh;
}

#btnForma{
    font-family: FB;
    font-size: 1rem;
    color: white;   
    background-color: #1f1f1f;
    border: 2px solid #1f1f1f;
    border-radius: 6.5px;
    padding: 20px 60px;
    margin-top: 5rem;
}


#btnGalerija{
    font-family: FB;
    font-size: 1rem;
    color: #1f1f1f;
    margin: 1rem 3rem;
    background-color: transparent;
    border: none;
    padding-bottom: 2px;
}

#btnGalerija:hover{
    border-bottom: 2px solid #1f1f1f;
}

section{
    clear: both;
    margin: 0 10vw;
    padding: 10vh 0 25vh 0;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
}

.icons{
    font-family: FR;
    font-size: 0.9rem;
    line-height: 1.6rem;
    color: #1f1f1f;
    vertical-align: top;
    width: 20%;
}

.icons img{
    width: 100px;
    margin: 25px 0 15px 0;
    border: 10px solid #41bc05;
    border-radius: 6.5px;
}

.icons h3{
    font-family: FB;
    font-size: 1.2rem;
    padding: 2rem 0;
}

.icons p{
    width: 90%;
}

.icons:first-child{
    padding-left: 0;
}

.icons:last-child{
    padding-right: 0;
}

/*O NAMA*/

#onama{
    background-color: #1f1f1f;
    display: inline-block;
    width: 100%;
}

.column{
    display: table-cell;
    min-height:80vh;
}

#wrapper1{
    background-image: url("images/van1.jpg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    width: 60%;
    float: left;
}

#wrapper2{
    background-image: url("images/van2.jpg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    width: 60%;
    float: right;
}

#wrapper3{
    background-image: url("images/van3.jpg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    width: 60%;
    float: left;
}


.onama{
    width: 100%;
    color: white;
}

.onama-mid{
    width: 100%;
    color: white;
}

.sub{
    width: 40%;
    float: right;
    clear: both;
    padding-right: 10vw;
    padding-left: 5%;
}

.sub-mid{
    width: 40%;
    float: left;
    clear: both;
    padding-left: 10vw;
    padding-right: 5%;
}

h4{
    font-family: FB;
    font-size: 2rem;
    line-height: 4rem;
    padding: 10vh 0 5vh 0;
}

.onama-mid h4{
    padding: 10vh 0 5vh 0 !important;
}

.onama p{
    font-family: FR;
    font-size: 1rem;
    line-height: 42px;
}

.onama-mid p{
    font-family: FR;
    font-size: 1rem;
    line-height: 42px;
}

.btnone{
    font-family: FR;
    color: white;
    font-size: 1rem;
    padding: 15px 65px;
    border: 2px solid #41bc05;
    border-radius: 6.5px;
    background-color: #41bc05;
    margin-right: 5px;
    margin-left: 0 !important;
}

#onama a{
    color: white;
}


.btntwo{
    font-family: FR;
    color: white;
    font-size: 1rem;
    margin: 1.5vh 2vw 1.5vh 6%;
    padding-bottom: 2px;
    border: none;
    background-color: transparent;
    margin-bottom: 5vh;
}

.btntwo:hover{
    border-bottom: 2px solid white;
    margin-bottom: -2px;
}

.onama .btnone{
    margin-top: 4rem;
    margin-left: 4rem;
}

.onama-mid .btnone{
    margin-top: 4rem;
}

/*PITANJA*/

#pitanja{
    float: left;
    width: 40%;
    margin-left: 10vw;
    padding-bottom: 20vh;
}

#pitanja h2{
    margin-left: 0 !important;
    padding-top: 22vh;
    padding-bottom: 5vh;
}

#pitanja p{
    font-family: FR;
    font-size: 1.2rem;
    line-height: 42px;
    color: #1f1f1f;
    clear: both;
    padding-bottom: 10vh;
}

#pitanja button{
    font-family: FB;
    font-size: 1rem;
    color: white;
    margin-bottom: 10vh;
}

#pitanja .btnone{
    clear: both;
}

#pitanja .btntwo{
    color: #1f1f1f;
}

#pitanja .btntwo:hover{
    border-bottom: 2px solid #1f1f1f;
}

#pitanja a{
    color: white;
}

#odgovori{
    float: right;
    width: 35%;
    margin-right: 10vw;
    padding-top: 25vh;
}

summary{
    font-family: FB;
    font-size: 1rem;
    padding-bottom: 2.5rem;
    color: #1f1f1f;
    cursor: pointer;
    list-style: none;
}


#odgovori p{
    font-family: FR;
    font-size: 1rem;
    padding-bottom: 4rem;
}

summary::after {
    content: "\276F" ;
    color: white;
    background-color: #676767;
    font-size: 0.6rem;
    border-radius: 100px;
    float: right;
    padding: 2px 6px 3px 7px;
}

details[open] > summary::after {
    transform: rotate(90deg);
    background-color: #1f1f1f;
}


/*FORMA*/

#info{
    background-color: #1f1f1f;
    float: left;
    clear: both;
    width: 40%;
    min-height: 75vh;
}

#info h3{
    font-family: FB;
    color: white;
    font-size: 1.6rem;
    padding: 10vh 0 0 10vw;
}

#info table{
    margin-top: 5vh;
    margin-left: 10vw;
}

#info td{
    font-family: FB;
    color: white;
    font-size: 1rem;
    padding: 2rem 0 2rem 3rem;
    text-align: left;
}

#info img{
    width: 3rem;
    margin-left: -3rem;
}

#forma{
    float: right;
    width: 60%;
    padding-left: 6rem;
    min-height: 75vh;
}

#forma h3{
    font-family: FB;
    font-size: 3.5rem;
    color: #41bc05;
    padding-top: 4vh;
}

#forma p{
    font-family: FR;
    font-size: 1.2rem;
    line-height: 2.4rem;
    color: #1f1f1f;
    width: 75%;
    padding: 3rem 0 1rem 0;
}

input {
	display: inline-block;
	background-color: #f5f5f5;
    padding: 1rem 1.5rem;
    margin: 2vh 2vw 2vh 0;
	border: none;
	text-align: left;
	color: #1f1f1f;
}

#ime, #email, #broj{
    width: 20vw;
}

#odakle, #gde{
    width: 9vw;
}

#poruka{
    width: 42.5vw;
    height: 10vh;
}

input[type="submit"] {
    font-family: FR;
    font-size: 1rem;
	background-color: #41bc05;
	color: white;
	cursor: pointer;
    padding: 1rem 3rem;
}

input[type="submit"]:hover {
	color: #1f1f1f;
}

input[type=text]:focus{
    outline: 2px solid #41bc05;
}

input[type=email]:focus{
    outline: 2px solid #41bc05;
}


/*FOOTER*/

#footer{
    clear: both;
    display: flex;
    background-color: #1f1f1f;
    direction: rtl;
}

#footer article{
    width: 50%;
    margin-right: 10%;
    display: table-cell;
}

#footer b{
    font-weight: normal;
}

iframe{
    width: 40%;
    display: table-cell;
    filter: grayscale(100%) invert(99%) contrast(95%);
}

#logofoot{
    margin-top: 5rem;
    width: 58%;
}

.iconsfoot{
    width: 50px;
    margin: 60px 20px;
}

#footer p{
    text-align: center;
    width: 62%;
    color: white;
    font-family: FR;
    font-size: 1rem;
    margin-left: 5%;
    margin-top: -15px;
}

#footer ul{
    list-style: none;
    width: 25%;
    float: right;
    padding-top: 9.8rem;
}

#footer a{
    color: white;
    font-family: FB;
    font-size: 1rem;
    line-height: 4.4rem;
    text-decoration: none;
}

/*RESPONZIVNOST*/

@media only screen and (max-width: 1480px) {
    #vanBanner{
        position: absolute;
        width: 60vw;
        bottom: 12vh;
        right: 3vw;
    }
    
    
}

@media only screen and (max-width: 1280px) {

    a.anchor {
        top: -85px;
    }

    .hamb{
        display: block;
    }

    .nav-menu {
        position: fixed;
        right: -100%;
        top: 85px;
        flex-direction: column;
        background-color: #41bc05;
        width: 100%;
        text-align: center;
        transition: 0.3s;
    }

    header{
        position: fixed;
        height: 85px;
        top: 0;
        background:#1F1F1F;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-item {
        margin: 2.5rem 0;
    }

    .hamburger {
        display: block;
        cursor: pointer;
    }
    .nav-link{
        color:#1f1f1f;
        margin: 1vw 2vw 1vw 2vw;
        background-color: transparent;
        padding: 5px 0;
    }    

    #banner{
        background: #1F1F1F;
        margin-top: 4rem;
    }

    h2{
        float: none;
        width: 80%;
        margin: 0 10%;
    }
    
    #galerijaText{
        float: none;
        width: 80%;
        margin: 0 10%;
        padding-top: 0;
    }

    .icons{
        width: 50%;
    }

    .icons p:nth-child(3){
        padding-bottom: 50px;
    }


    .column{
        display: block;
        min-height: auto;
    }

    #wrapper1, #wrapper2, #wrapper3{
        width: 100%;
        float: none;
        height: 800px;
    }

    .btnone{
        margin-bottom: 10vh;
    }

    .sub{
        width: 100%;
        float: none;
        padding-right: 10vw;
        padding-left: 10vw;
    }
    
    .sub-mid{
        width: 100%;
        float: none;
        padding-left: 10vw;
        padding-right: 10vw;
    }

    #pitanja{
        float: none;
        width: 80%;
        margin: 0 10vw;
        padding: 0 0 5vh 0;
    }

    #odgovori{
        float: none;
        width: 80%;
        margin: 0 10vw;
        padding: 0 0 15vh 0;
    }

    #footer ul{
        padding-top: 8rem;
    }

    h1 {
        font-size: 2.8rem;
        padding-top: 15vh;
        margin-left: 10%;
        margin-right: 10%;
        width: 80%;
    }

    #banner p{
        width: 80%;
        font-size: 1.2rem;
        line-height: 2rem;
    }

    #btnone {
        margin: 8vh 0 0 10vw;
        padding: 1rem 10%;
    }
    
    #btntwo{
        margin: 8vh 10vw 0 5%;
    }

    #vanBanner{
        visibility: visible;
        position: static;
        width: 80%;
        margin: 0 10%;
        padding-top: 10vh;
    }

    #banner table{
        margin-left: 10%;
        margin-right: 10%;
        width: 80%;
    }
    
    
}

@media only screen and (max-width: 1050px) {

    #footer{
        display: inline-block;
    }

    #footer article{
        width: 80%;
        display: block;
        margin: 0 10%;
        padding-bottom: 125px;
        height: min-content;
    }
    
    iframe{
        width: 100%;
        display: block;
        height: 400px;
    }

    #logofoot{
        width: 100%;
    }
    
    .iconsfoot{
        width: 50px;
        margin: 40px 10vw;
    }
    
    #footer p{
        width: 40%;
        float: left;
    }

    #footer b{
        position: relative;
        bottom: -50px;
        left: 50%;
    }
    
    #footer ul{
        width: 40%;
        padding-top: 0;
    }
    

    #info{
        float: none;
        width: 100%;
        min-height: 80px;
        padding-bottom: 80px;
    }

    #forma{
        float: none;
        width: 100%;
        padding-left: 10vw;
        padding-right: 10vw;
        padding-top: 10vh;
        padding-bottom: 10vh;
    }

    #info td{
        padding: 0.5rem 0 0.5rem 2rem;
    }

    #info img{
        margin-left: -1.7rem;
    }

    
    #ime, #email, #broj{
        width: 49%;
        margin-right: 0;
    }
    
    #odakle, #gde{
        width: 24.5%;
        margin-right: 0;
    }
    
    #poruka{
        width: 99%;
        height: 10vh;
    }
    
    
}

@media only screen and (max-width: 880px) {
    #wrapper1, #wrapper2, #wrapper3{
        height: 500px;
    }

    .icons{
        width: 100%;
    }

    #galerija h2{
        font-size: 2.2rem;
        line-height: 3.6rem;
    }

    #pitanja h2{
        font-size: 2.2rem;
        line-height: 3.6rem;
        padding-top: 15vh;
    }

}

@media only screen and (max-width: 580px) {
    #wrapper1, #wrapper2, #wrapper3{
        height: 300px;
    }

    #btnone{
        padding: 15px 35px;
        font-size: 0.75rem;
    }

    #btntwo{
        font-size: 0.75rem;
    }

    #banner h1{
        font-size: 1.8rem;
        padding-top: 75px;
    }

    #banner p{
        font-size: 0.8rem;
    }

    #galerija h2{
        font-size: 1.6rem;
        padding: 50px 0;
        line-height: 2.4rem;
    }

    #galerija p{
        font-size: 0.8rem;
        line-height: 1.6rem;
    }

    #btnForma{
        padding: 15px 30px;
        font-size: 0.75rem;
    }

    #btnGalerija{
        font-size: 0.8rem;
        margin-left: 20px;
    }

    #galerija section{
        padding-bottom: 100px;
    }

    #logo{
        height: 60px;
    }

    .btnone{
        font-size: 0.8rem;
        margin-bottom: 75px;
    }

    .btntwo{
        font-size: 0.8rem;
    }

    #pitanja h2{
        font-size: 1.4rem;
        line-height: 2.5rem;
    }

    #pitanja p{
        font-size: 0.8rem;
        line-height: 1.6rem;
    }

    #pitanja button{
        font-size: 0.75rem;
    }

    #pitanja > .btnone{
        padding: 10px 35px;
    }

    summary{
       font-size: 0.8rem;
    }

    #odgovori p{
        font-size: 0.8rem;
    }


    #ime, #email, #broj{
        width: 99%;
    }
    
    #odakle, #gde{
        width: 49%;
    }

    input[type="submit"] {
        padding: 1rem 3rem;
        width: 100%;
        text-align: center;
    }

    table{
        margin-left: 10%;
        margin-right: 10%;
        width: 80%;
    }

    th{
        font-size: 1.6rem;
        padding: 0 1rem 0 1rem;
    }
    
    td{
        font-size: 1rem;
        line-height: 1.6rem;
    }
    
    #logofoot{
        width: 80%;
    }

    #info table{
        max-width: 80%;
    }

    #footer{
        direction: ltr;
    }

    #forma h3{
        font-size: 2rem;
    }

    #forma p{
        font-size: 1rem;
        line-height: 1.8rem;
    }

    .iconsfoot{
        width: 50px;
        margin: 40px 20px;
    }

    .mobile{
        display: block;
    }

    #onama h4{
        font-size: 1.5rem;
        line-height: 2.2rem;
    }

    #onama p{
        font-size: 0.8rem;
        line-height: 1.6rem;
    }

}




