@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,200;0,300;0,400;0,500;1,100;1,200;1,300;1,400;1,500&display=swap');

:root{
    --color:#000000;
}

*{
    font-family: 'Poppins', sans-serif;
    margin: 0; padding: 0;
    box-sizing: border-box;
    transition: all .2s linear;
    text-decoration: none;
}

html{
    font-size: 62.5%;
    scroll-behavior: smooth;
}

body{
    overflow-x: hidden;
    scroll-behavior: smooth;
    background-color: #face19;
}

.loader {
    z-index: 1000;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    transition: opacity 0.75s, visibility 0.75s;
  }
  
  .loader--hidden {
    opacity: 0;
    visibility: hidden;
  }
  
  .loader::after {
    content: "";
    width: 75px;
    height: 75px;
    border: 15px solid black;
    border-top-color: #face19;
    border-radius: 50%;
    animation: loading 0.75s ease infinite;
  }
  
  @keyframes loading {
    from {
      transform: rotate(0turn);
    }
    to {
      transform: rotate(1turn);
    }
  }

#myBtn {
    display: none;
    position: fixed;
    height: 60px;
    width: 60px;
    bottom: 15px;
    right: 10px;
    z-index: 99;
    font-size: 18px;
    border: 2px solid #000000;
    outline: none;
    background-color: #face19;
    color: #000000;
    cursor: pointer;
    padding: 15px;
    border-radius: 50%;
  }
  
  #myBtn:hover {
    background-color: #fff;
  }

.heading{
    text-align: center;
    margin: 2rem;
    padding-top: 6rem;
    display: inline-block;
    font-size: 3.5rem;
    color: var(--color);
    position: relative;
    letter-spacing: .2rem;
}

#text{
    display:none;
    }
#text1{
    display:none;
}
#text2{
    display:none;
    }
#text3{
    display:none;
}
#text4{
    display:none;
}
#text5{
    display:none;
}
#text6{
    display:none;
}
#text7{
    display:none;
}

button{
    user-select: none;
    -webkit-user-select:none;
    -moz-user-select:none;
    -ms-user-select:none;
}

.btn{
    outline: none;
    border: none;
    border-radius: 5rem;
    background: var(--color);
    color:#face19;
    cursor: pointer;
    height: 3.5rem;
    width: 15rem;
    font-size: 1.7rem;
    box-shadow: 0 .2rem .5rem rgba(0, 0, 0, .3);
    user-select: none;
    -webkit-user-select:none;
    -moz-user-select:none;
    -ms-user-select:none;
}

.btn:hover{
    letter-spacing: .1rem;
    opacity: .8;
}

.header{
    display: flex;
    align-items:center;
    justify-content: space-between;
    width: 100%;   
    padding-left: 10%;
    padding-right: 10%;
    top: 0; left: 0;
    z-index: 100;
    background-color: #000000;
}

.header .logo{
    font-size: 2rem;
    color: #ffffff;
    align-items: start;
    justify-content: start;
}

.header .navbar{
    list-style-type: none;
    display: flex;
    align-items: center;
    justify-content: space-around;
    z-index: 99;
}

.header .navbar a .dropdown{
    color: #000000;
    float: left;
    overflow: hidden;
    background-color: #000000;
    z-index: 99;
}

.dropdown .dropbtn {
    font-size: 16px;
    border: none;
    outline: none;
    color: white;
    padding: 14px 16px;
    background-color: inherit;
    font-family: inherit; /* Important for vertical align on mobile phones */
    margin: 0; /* Important for vertical align on mobile phones */
    cursor: pointer;
  }

.header .navbar a{
    margin: 0 1.5rem;
    font-weight: bold;
    text-transform: capitalize;
    font-size: 2rem;
    color: #ffffff;
}

.header .navbar a:hover, .dropbtn:hover{
    color: #face19;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: white;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
}

.dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

.dropdown.show .dropdown-content {
    display: block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #000000;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
  }
  
  /* Links inside the dropdown */
  .dropdown-content a {
    float: none;
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
  }

.header .fa-bars{
    color: #face19;
    cursor: pointer;
    font-size: 3rem;
    display: none;
}

.header .logo .i{
    padding:0.5rem;
    width: 10rem;
    height: 10rem;
}

.header img{
    vertical-align: middle;
    height: 5vh;
    object-fit: scale-down;
}

.header span a{
    font-weight: bold;
}

.header span a:hover{
    color: #face19;
}

.home{
    min-height: 100vh;
    width: 100%;
    background: url(../pozadina1/background1.webp) 0 0 / cover;
    background-position: center;
    background-size: auto;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column;
    text-align: center;
    padding: 0 1rem;
    position: relative;
    overflow: hidden !important;
}
/* 2 */
.slider{
	position: relative;
    right: 0%;
	width: 100%;
	background: #2c3e50; /* darckblue */
    z-index: 1;
}
.myslide{
	height: 400px;
	display: none;
	overflow: hidden;
}

.myslide .slike{
    opacity: 0.5;
}

.prev, .next{
	position: absolute;
	top: 50%;
	transform: translate(0, -50%);
	font-size: 50px;
	padding: 15px;
	cursor: pointer;
	color: #fff;
	transition: 0.1s;
	user-select: none;
    z-index: 999;
}
.prev:hover, .next:hover{
	color: #face19; /* blue */
}
.next{
	right: 0;
}
.dotsbox{
	position: absolute;
	left: 50%;
	transform: translate(-50%);
	bottom: 20px;
	cursor: pointer;
}
.dot{
	display: inline-block;
	width: 15px;
	height: 15px;
	border: 3px solid #fff;
	border-radius: 50%;
	margin: 0 10px;
	cursor: pointer;
}
/* /2 */

/* javascript */
.active, .dot:hover{
	border-color: #face19; /* blue */
}
/* /javascript */

/* muslide add fade */
.fade {
  -webkit-animation-name: fade;
  -webkit-animation-duration: 1.5s;
  animation-name: fade;
  animation-duration: 1.5s;
}

@-webkit-keyframes fade {
  from {opacity: 0.8}
  to {opacity: 1}
}

@keyframes fade {
  from {opacity: 0.8}
  to {opacity: 1}
}
/* /muslide add fade */

/* 3 */
.txt{
    text-align: center;
	position: absolute;
	color: #fff;
	letter-spacing: 2px;
	line-height: 35px;
	top: 25%;
    width: 100%;
	-webkit-animation-name: posi;
  	-webkit-animation-duration: 2s;
  	animation-name: posi;
  	animation-duration: 2s;
	z-index: 998;
}

@-webkit-keyframes posi {
  from {top: 50%;opacity: 0;}
  to {top: 25%;opacity: 1;}
}


@keyframes posi {
    from {top: 50%;opacity: 0;}
    to {top: 25%;opacity: 1;}
}

.txt h1{
	color: white; /* blue */
	font-size: 32px;
	margin-bottom: 20px;
}
.txt p{
	font-weight: bold;
	font-size: 20px;
    padding: 0% 5% 0% 5%;
}

.txt .dugme{
    cursor:pointer;
    background: none;
    padding: 10px 20px 10px 20px;
    border: 3px solid #fff;
    border-radius: 2px;
    color: white;
    font-weight: 500;
}

.txt .dugme:hover{
    opacity: 0.8;
    background-color: #000000;
}
/* /3 */

/* 4 */
.slike{
	transform: scale(1.5, 1.5);
	-webkit-animation-name: zoomin;
  	-webkit-animation-duration: 40s;
  	animation-name: zoomin;
  	animation-duration: 40s;
    object-fit:cover;
}
@-webkit-keyframes zoomin {
  from {transform: scale(1, 1);}
  to {transform: scale(1.5, 1.5);}
}


@keyframes zoomin {
  from {transform: scale(1, 1);}
  to {transform: scale(1.5, 1.5);}
}
/* /4 */



/* 5 */
@media screen and (max-width: 800px){
	.myslide{
		height: 500px;
	}
	.txt{
		letter-spacing: 2px;
		line-height: 25px;
		top: 50%;
		left: 50%;
        width: 90%;
		transform: translate(-50%, -50%);
		-webkit-animation-name: posi2;
		-webkit-animation-duration: 2s;
		animation-name: posi2;
		animation-duration: 2s;
	}

    .txt .naslov{
        color: white; /* blue */
        font-size: 20px;
        margin-bottom: 20px;
        line-height: 50px;
    }

    .txt p{
        font-weight: bold;
        font-size: 15px;
        padding: 0% 5% 0% 5%;
    }
    
    .txt .dugme{
        cursor:pointer;
        background: none;
        padding: 10px 20px 10px 20px;
        border: 3px solid #fff;
        border-radius: 2px;
        color: white;
        font-weight: 500;
    }

	@-webkit-keyframes posi2 {
	  from {top: 35%;}
	  to {top: 50%;}
	}


	@keyframes posi2 {
	  from {top: 35%;}
	  to {top: 50%;}
	}

	.txt h1{
		font-size: 40px;
	}
	.txt p{
		font-size: 13px;
	}

}
/* /5 */

/* 6 */
@media screen and (max-width: 520px){

    .myslide .slike{
        opacity: 0.3;
    }

    @-webkit-keyframes posi2 {
        from {top: 41%;}
        to {top: 50%;}
      }
  
  
      @keyframes posi2 {
        from {top: 41%;}
        to {top: 50%;}
      }

    .txt .naslov{
        color: white; /* blue */
        font-size: 20px;
        margin-bottom: 20px;
        line-height: 20px;
    }

    .txt p{
        font-weight:300;
        font-size: 10px;
        line-height: 15px;
        padding: 0% 10% 0% 10%;
    }

	.sign{
		margin-right: 20px;
	}
	.sign a{
		font-size: 12px;
	}
    .dot{
        display: none;
        width: 7px;
        height: 7px;
        border: 3px solid #fff;
        border-radius: 50%;
        margin: 0 10px;
        cursor: pointer;
    }
}
/* /6 */

.about{
    min-height: 110vh;
    width: 100vw;
    text-align: center;
    position: relative;
    overflow: hidden;
}

#more {display: none;}

.about .heading{
    color: #000000;
    padding-top: 5px;
}

.about .heading::before, .about .heading::after{
    border-color:#fff;
}

.about .heading::before{
    margin-top:4rem;
}

.about hr{
    background-color: #000000;
    margin-top: 6rem;
    margin-bottom: 0%;
    height: 5px;
    border: none;
    width: 10rem;
}

.about .row{
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 15rem;
}

.reveal{
    position: relative;
    transform: translateY(150px);
    opacity: 0;
    transition: all 2s ease;
}

.reveal.active{
    transform: translateY(0px);
    opacity: 1;
}

.about .row .accordion-container{
    width: 30%;
    text-align: left;
    margin-top: 2rem;
    margin-right: 2rem;
    padding: 3rem;
}

.about .row .accordion-container .fa{
    margin-bottom: 2rem;
    font-size: 50px;
}

.about .row .accordion-container .fa:hover{
    font-size: 70px;
    color: #6c5e41;
}

.about .row .accordion-container .slogan{
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    padding-bottom: 1rem;
}

.about .row .accordion-container .accordion-text{
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    padding-top: 1rem;
}

.counter{
    background-color: #000000;
    min-height: 60vh;
    width: 100vw;
    text-align: center;
    position: relative;
    overflow: hidden;
}

#more {display: none;}

.counter .heading{
    color: white;
    padding-top: 5px;
}

.counter .heading::before, .counter .heading::after{
    border-color:#fff;
}

.counter .heading::before{
    margin-top:4rem;
}

.counter hr{
    background-color: white;
    margin-top: 6rem;
    margin-bottom: 0%;
    height: 5px;
    border: none;
    width: 10rem;
}

.counter .row{
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 15rem;
}

.counter .row .accordion-container{
    width: 30%;
    text-align: left;
    margin-top: 2rem;
    margin-right: 2rem;
    padding: 3rem;
}

.counter .row .accordion-container .fa{
    margin-bottom: 2rem;
    font-size: 50px;
}

.counter .row .accordion-container .fa:hover{
    font-size: 70px;
    color: #6c5e41;
}

.counter .row .accordion-container #counter1{
    color: #face19;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    padding-bottom: 1rem;
}

.counter .row .accordion-container #counter2{
    color: #face19;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    padding-bottom: 1rem;
}

.counter .row .accordion-container #counter3{
    color: #face19;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    padding-bottom: 1rem;
}

.counter .row .accordion-container #counter4{
    color: #face19;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    padding-bottom: 1rem;
}

.counter .row .accordion-container .slogan{
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    padding-bottom: 1rem;
}

.contact{
    min-height: 100vh;
    width: 100vw;
    text-align: center;
    background-color: #fff;
}

.contact .slogan{
    font-size: 2rem;
    font-weight: 300;
}

.contact .slogan .mejlovi{
    color:#face19;
    font-weight: 500;
    text-shadow: 1px 1px 1px #000000;
}

.contact .slogan .mejlovi:hover{
    color:#000000;
    font-size: 23px;
    text-shadow:none;
}

.contact .row{
    padding-top: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact .row .form-container{
    width: 60%;
    text-align: left;
    padding: 0 5rem;
}

.contact .row .form-container .text-red-400{
    color: red;
    font-size: 1.5rem;
}

.contact .row .form-container input, textarea{
    outline: none;
    border: none;
    height: 4rem;
    background: none;
    border-radius: .5rem;
    box-shadow: .2rem .2rem .5rem rgba(0, 0, 0, .2);
    padding: 0 1rem;
    margin: 1rem 0;
    font-size: 1.6rem;
}

.contact .row .form-container .inputBox{
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.contact .row .form-container .inputBox .kolona{
    width: 100%;
    display: flex;
    flex-flow: column;
}

.contact .row .form-container .inputBox input[type="text"]{
    width: 99%;
}

.contact .row .form-container input[type="email"]{
    width: 99%;
}

.contact .row .form-container textarea{
    width: 99%;
    height: 20rem;
    padding: 1rem;
    resize: none;
}

.contact .row .form-container .unos{
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact .row .form-container .potvrda{
    margin-top: 2.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact .row .form-container input[type="submit"]{
   background-color: #face19;
   color: var(--color);
   cursor: pointer;
   height:4rem;
   width: 15rem;    
   text-transform: capitalize;
}

.contact .row .form-container input[type="submit"]:hover{
    opacity: .8;
    letter-spacing: .1rem;
}

.invalid-feedback,
.empty-feedback {
  display: none;
}

.was-validated :placeholder-shown:invalid ~ .empty-feedback {
  display: block;
}

.was-validated :not(:placeholder-shown):invalid ~ .invalid-feedback {
  display: block;
}

.is-invalid,
.was-validated :invalid {
  border-color: #dc3545;
}

.footer{
    min-height: 55vh;
    width: 100%;
    right: 0%;
    background-color: #000000;
}

.footer .row{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 5rem;
    background-color: #000000;
}

.footer .row .box-con{
    flex-flow: column;
    width:23%;
}

.footer .row .box-con .director0{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column;
    margin-bottom: 5rem;
    margin-top: 5rem;
}

.footer .row .box-con .director0 h1{
    letter-spacing: .2em;
} 

.footer .row .box-con .director0 #office{
    text-transform: lowercase;
} 

.footer .row .box-con .director1 #office{
    text-transform: lowercase;
} 

.footer .row .box-con .director0 hr{
    width: 80%;
}

.footer .row .box-con .director1{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column;
    margin-bottom: 5rem;
}

.footer .row .box-con .director1 h1{
    letter-spacing: .2em;
} 

.footer .row .box-con .director1 hr{
    width: 80%;
}

.footer .row .maps{
    width:99%;
    padding-left: 7rem;
}

iframe{
    width: 70vw;
    height: 60vh;
}

.footer h1{
    color: #face19;
    letter-spacing: .1rem;
    font-weight: 400;
    text-transform: capitalize;
}

.footer .icons a{
    color: #face19;
    font-size: 1.8rem;
    padding: 0 1rem;
}

.tagovi{
    display: none;
}

/* media queries */
@media (max-width:1024px) {

    .header .navbar a{
        margin-left: 10px;
        margin-right: 10px;
        font-size: 1.5rem;
    }

    @keyframes scroll1{
        0%{
            transform: translateX(0);
        }
        100%{
            transform: translateX(calc(-13.4vw * 26));
        }
    }

    .contact .slogan{
        font-size: 1.5rem;
    }

    .contact .row .form-container input, textarea{
        font-size: 1rem;
    }

    .about{
        padding: 0 0 2rem;
    }

    .about .row{
        padding: 0 1rem;
        flex-flow: column;
    }

    .about .row .accordion-container{
        width: 100%;
        margin-right: 0rem;
    }

    .footer .row .box-con .director2 h1{
        letter-spacing: .2em;
    } 

    .footer .row .box-con{
        width:23%;
    }

    .footer .row .box-con .director0{
        align-items: center;
        justify-content: center;
        text-align: center;
        width: 100%;
    }

    .footer .row .box-con .director1{
        align-items: center;
        justify-content: center;
        text-align: center;
        width: 100%;
    }

    .footer .row .box-con .director2{
        align-items: center;
        justify-content: center;
        text-align: center;
        width: 100%;
    }

    .footer .row .box-con{
        padding-left: 2rem;
    }
    
    .footer .row .maps{
        width:99%;
        padding-left: 9rem;
    }

    iframe{
        width: 63vw;
        height: 75vh;
    }
}

@media (max-width:768px){
    html{
        font-size: 50%;
    }

    #myBtn:hover {
        background-color: #face19;
    }

    .header{
        padding-right: 1rem;
    }

    .header .fa-bars{
        display: block;
    }

    .header .navbar{
        position: fixed;
        top: -125%; left: 0;
        height: auto;
        width: 100%;
        background-color: #000000;
        z-index: 100;
        border-top: .1rem solid rgb(0,0,0,.3);
        display: flex;
        flex-direction: column; /* Stack the links vertically */
    }

    .header .navbar a{
        color:#ffffff;
        font-size: 2rem;
        padding: 8px;
    }

    .header .navbar .dropbtn{
        margin:0%;
        margin-top: 30px;
        margin-bottom: 30px;
    }

    .header .fa-times{
        transform: rotate(180deg);
    }

    .header .nav-toggle{
        top: 9rem;
    }

    .header img{
        vertical-align: middle;
        height: 5vh;
        object-fit: scale-down;
    }

    .home .banner{
        font-size: 3.5rem;
    }

    .home .slogan{
        font-size: 1.7rem;
    }

    @keyframes scroll1{
        0%{
            transform: translateX(0);
        }
        100%{
            transform: translateX(calc(-10.1vw * 46));
        }
    }

    .home .row .slider{ 
        bottom: -.5rem;
    }

    .about .row{
        flex-flow: column-reverse;
        padding: 0 2rem;
    }
    
    .about .row .image img{
        width: 100vw;
    }

    .service .row{
        flex-flow: column-reverse;
    }

    .service .row:nth-child(even){
        flex-flow: column;
    }

    .service .row .image img{
        width: 100vw;
        object-fit: scale-down;
    }

    .service .row .content{
        padding: 0;
    }

    .team .row .slider{
        height: 60vh;
        margin: 5rem;
        overflow: hidden;
        position: relative;
        width: auto;
    }
    
    @keyframes scroll{
        0%{
            transform: translateX(0);
        }
        100%{
            transform: translateX(calc(-30vw * 58));
        }
    }
    
    .team .row .slider .slide-track{
        animation: scroll 60s linear infinite;
        display: flex;
        width: calc(30vw * 28);
    }
    
    .team .row .slider .slide-track .slide img{
        height: 60vh;
        width: 60vw;
        object-fit: scale-down;
    }
    
    .contact .row{
        flex-flow: column nowrap;
    }

    .contact .row .form-container{
        width: 100%;
        padding: 0 1.5rem;
    }
    
    .contact .row .form-container .success{
        font-size: 3rem;
        color: green;
    }

    .contact .slogan{
        font-size: 1.5rem;
        font-weight:400;
    }

    .contact .row .form-container input, textarea{
        font-size: 1.5rem;
    }

    .about{
        padding: 0 0 2rem;
    }

    .about .row{
        padding: 0 1rem;
        flex-flow: column;
    }

    .about .row .accordion-container{
        width: 100%;
        margin-right: 0rem;
    }

    .footer .row{
        flex-flow: column;
    }

    .footer .row .box-con{
        display: flex;
        flex-flow: row;
        margin-top: 2rem;
        width: 100%;
        padding-left: 2rem;
    }

    .footer .row .box-con .director0{
        align-items: center;
        justify-content: center;
        text-align: center;
        width: 49%;
    }

    .footer .row .box-con .director1{
        align-items: center;
        justify-content: center;
        text-align: center;
        width: 49%;
    }

    .footer .row .box-con .director2{
        align-items: center;
        justify-content: center;
        text-align: center;
        margin-bottom: 5rem;
        width: 49%;
    }

    .footer .row .maps{
        width:99%;
        padding-left: 1rem;
    }
    
    iframe{
        width: 100%;
        height: 45vh;
    }
    
}

@media (max-width:550px) {

    .myslide{
        height: 350px;
    }

    .about .heading{
        font-size: 2.5rem;
    }
    
    @keyframes scroll1{
        0%{
            transform: translateX(0);
        }
        100%{
            transform: translateX(calc(-10.2vw * 82));
        }
    }

    .home .row .slider{ 
        bottom: -.5rem;
    }

    .counter .row{
        display: flex;
        align-items: center;
        justify-content:center;
        flex-flow: column;
        width: 100%;
    }

    .counter .heading{
        font-size: 23px;
    }

    .contact .row .form-container .inputBox{
        width: 100%;
        text-align: left;
        flex-flow: column;
        display: flex;
        justify-content:center;
    }

    .contact .row .form-container .inputBox input[type="text"]{
        width: 100%;
    }
    
    .contact .row .form-container .inputBox input[type="email"]{
        width: 100%;
    }
    
    .contact .row .form-container .success{
        font-size: 2.5rem;
        color: green;
    }

    .about .row .accordion-container .accordion .accordion-header .odgovornost{
        display: inline;
        color: #face19;
        font-weight: 400;
        padding-left: .5rem;
        font-size: 1.1rem;
    }
    
    .about .row .accordion-container .accordion .accordion-header h3{
        display: inline;
        color: #face19;
        font-weight: 400;
        padding-left: .5rem;
        font-size: 1.3rem;
    }

    .footer{
        flex-flow: column;
    }
    
    .footer .row .box-con{
        display: flex;
        align-items: center;
        justify-content:center;
        flex-flow: column;
        width: 100%;
        padding-left: 1rem;
    }

    .footer .row .box-con .director1{
        margin-top: 0;
    }

    .footer .row .box-con .director0{
        align-items: center;
        justify-content: center;
        text-align: center;
        width: 100%;
    }

    .footer .row .box-con .director1{
        align-items: center;
        justify-content: center;
        text-align: center;
        width: 100%;
    }

    .footer .row .box-con .director2{
        align-items: center;
        justify-content: center;
        text-align: center;
        margin-bottom: 5rem;
        width: 100%;
    }

    .footer h1{
        text-align: center;
        text-transform: capitalize;
    }

    .footer .icons{
        padding: 2rem 0;
    }

    .footer .row .maps{
        margin-top: 3rem;
    }

}

@media (max-width:380px) {

    .myslide{
        height: 300px;
    }

    .header{
      padding-left: 0;
    }

    .home .banner{
        font-size: 3.5rem;
    }

    .home .slogan{
        font-size: 1.5rem;
        text-shadow: none;
        font-weight: 500;
    }
    
    @keyframes scroll1{
        0%{
            transform: translateX(0);
        }
        100%{
            transform: translateX(calc(-13vw * 86));
        }
    }

    .contact .slogan{
        font-size: 1.7rem;
    }

    .contact .row .form-container .inputBox{
        width: 100%;
        text-align: left;
        flex-flow: column;
        display: flex;
        justify-content:center;
    }

    .contact .row .form-container .inputBox input[type="text"]{
        width: 100%;
    }
    
    .contact .row .form-container .inputBox input[type="email"]{
        width: 100%;
    }
    
    .contact .row .form-container .success{
        font-size: 2.5rem;
        color: green;
    }

    .about .row .accordion-container .accordion .accordion-header .odgovornost{
        display: inline;
        color: #face19;
        font-weight: 400;
        padding-left: .5rem;
        font-size: 1.1rem;
    }
    
    .about .row .accordion-container .accordion .accordion-header h3{
        display: inline;
        color: #face19;
        font-weight: 400;
        padding-left: .5rem;
        font-size: 1.3rem;
    }

    .footer{
        flex-flow: column;
    }
    
    .footer .row .box-con{
        display: flex;
        align-items: center;
        justify-content:center;
        flex-flow: column;
        width: 100%;
        padding-left: 1rem;
    }

    .footer .row .box-con .director1{
        margin-top: 0;
    }

    .footer h1{
        text-align: center;
        text-transform: capitalize;
    }

    .footer .icons{
        padding: 2rem 0;
        text-align: center;
    }

    .footer .row .maps{
        margin-top: 3rem;
    }

}