*
{
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
        /* font-family: "Montserrat", sans-serif; */
        /* overflow-x: hidden; */
}
body
{
    background-image: url(IMG/bodyBg.avif);
    background-size: cover;
}
.title
{
    text-align: center;
    margin-bottom: 30px;
    font-size: 35px;
    font-weight: 700;
}
.title1
{
    text-align: center;
    margin-bottom: 30px;
    font-size: 35px;
    font-weight: 700;
    color: white;
}

#cursor-effect {
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
}

.outer-circle,
.inner-circle {
  position: absolute;
  border-radius: 50%;
  animation: pulse 1.5s infinite ease-in-out;
}

.outer-circle {
  width: 30px;
  height: 30px;
  background-color: #002B4B; /* crvena */
}

.inner-circle {
  width: 20px;
  height: 20px;
  background-color: #01365f; /* plava */
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.4;
  }
  100% {
    transform: scale(1);
    opacity: 0.8;
  }
}

/* newletter start */
.overlay1 {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
    z-index: 11111111111;
        backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px); /* za Safari */
}
.popup {
    background: white;
    padding: 50px 20px;
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.hidden {
    display: none;
}
.popup form
{
    max-width: 300px;
    width: 300px;
}
.popup form input
{
    width: 100%;
    text-align: center;
    padding: 2px 5px;
}
.popup form h3
{
    font-size: 14px;
}
#btn1
{
    padding: 5px 35px;
    display: block;
    margin: auto;
    border: 0px;
    outline: 0px;
    max-width: 200px;
    background-color: #01365f;
    color: white;
    font-weight: 600;
    margin-top: 20px;
}
#btn2
{
    background: none;
    color: #1a1a1a;
    outline: none;
    border: 0px;
    font-size: 12px;
}
/* newsletter end */

/* arrow start */
.arrowHolderO
{
    opacity: 0;
    z-index: 1000000000000000;
}
.arrowHolder img 
{
    position: fixed;
    top: 89vh;
    right: 2%;
    width: 32px;
    z-index: 1000000000000000;
}
/* arrow end */

/* aline start */
#aline
{
    padding: 8px 0px;
    background-color: whitesmoke;
    padding-right: 10px;
    display: none;
}
#aline a
{
    text-decoration: none;
    color: black;
}
.alineHolder
{
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 15px;
}

/* aline end */

/* navigation start */
#navigation
{
    background-color: rgba(255, 255, 255, 0.811);
    border-top: 5px solid #01365f;
    padding: 20px 0px;
    animation: navAnimation 0.3s ease-in-out;
}
@keyframes navAnimation
{
    0%
    {
        opacity: 0;
        transform: translateY(-50px);
    }
    100%
    {
        opacity: 1;
        transform: translateY(0px);
    }
}
.navbar-brand img
{
    width: 120px;
}
.navbar .navbar-nav .nav-item .nav-link
{
    color: black;
    font-size: 20px;
    font-weight: 600;
}
#navIcon
{
    width: 52px;
}
/* navigation end */

/* hero start */
#hero
{
    background-color: #01365f;
}
.heroHolder
{
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url(IMG/bgNew.avif);
    background-size: cover;
}
.heroHolderLeft
{
    width: 100%;
    max-width: 50%;
    position: relative;

}

.heroHolderLeftCon
{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    padding-left: 150px;

}
.heroHolderLeftCon h1
{
    color: white;
    font-size: 75px;
    font-weight: 700;
    animation: heroHolderLeftAnimation 0.5s ease-in-out;

}
.heroHolderLeftCon p
{
    font-size: 25px;
    color: white;
    margin-bottom: 30px;
    animation: heroHolderLeftAnimation 0.4s ease-in-out;

}
.borderBtn
{
    border: 2px solid white;
    padding: 10px 40px;
    background-color: transparent;
    text-decoration: none;
    text-align: center;
    font-size: 18px;
    color: white;
    max-width: 250px;
    width: 100%;
    font-weight: 600;
    animation: heroHolderLeftAnimation 0.6s ease-in-out;
    transition: 0.3s ease-in-out;
    margin-top: 50px;
}
@keyframes heroHolderLeftAnimation
{
    0%
    {
        opacity: 0;
    }
    75%
    {
        opacity: 1;
    }
    100%
    {
        opacity: 1;
    }
}
.borderBtn:hover
{   
    color: white;
    transform: scale(1.2);
}
.heroHolderRight
{
    width: 100%;
    max-width: 50%;
    overflow-x: hidden;

}
.heroHolderRight img
{
    width: 100%;
    display: block;
    margin: auto;
    max-width: 100%;
    height: auto;
}
.heroHolderLeftCon img
{
    /* max-width: 150%; */
    width: 350px;
    display: block;
    margin: auto;
}
/* hero end */

/* projekt start */
#projekt
{
    padding: 100px 0px;
    background-color: rgba(255, 255, 255, 0.811);
}
#projekt p
{
    text-align: center;
    font-size: 20px;
}
#projekt a
{
    padding: 10px 30px;
    background-color: #01365f;
    text-align: center;
    font-weight: 600;
    color: white;
    max-width: 250px;
    width: 100%;
    text-decoration: none;
    display: block;
    margin: auto;
    font-size: 20px;
}
/* projekt end */

/* services start */
#services
{
    padding: 50px 0px;
    background-color: whitesmoke;
}
#services a
{
    text-decoration: none;
}
#s1
{
    background-image: url(IMG/ser20.avif);
    background-size: cover;
    background-position: center;
}
#s2
{
    background-image: url(IMG/ser18.avif);
    background-size: cover;
    background-position: center;
}
#s3
{
    background-image: url(IMG/preuredjenje.avif);
    background-size: cover;
}

#s5
{
    background-image: url(IMG/ser16.avif);
    background-size: cover;
    background-position: center;
}
#s6
{
    background-image: url(IMG/ser17.avif);
    background-size: cover;
    background-position: center;
}
.servicesHolderItemLeft a
{   
    text-decoration: none;
}
.servicesHolder-overlay
{
    background-color: rgba(0, 0, 0, 0.5);
    padding: 200px 0px;
    cursor: pointer;
    transition: 0.3s ease-in-out;
    width: 100%;
    max-width: 100%;
    margin-left: 0px;
    margin-right: 0px;
    padding-left: 0px;
    padding-right: 0px;
}
.servicesHolder-overlay h3
{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-weight: 600;
    font-size: 35px;
}


.servicesHolderItemLeft
{
    width: 80%;
    padding: 20px 20px;
    background-color: #01365f;
    display: block;
    margin: auto;
    margin-top: -60px;
    z-index: 11111;
    position: relative;
}
.servicesHolderItemLeft h3
{
    color: white;
    font-size: 20px;
    font-weight: 600;
    text-align: center;
}
.servicesHolderItemLeft p
{
    text-align: center;
    color: white;
    font-size: 20px;
}
.servicesHolder {
  position: relative;
  overflow: hidden;
  max-width: 100%;
  width: 100%;
}

.s1 {
  position: relative; /* Mora imati position da ::after moÅ¾e biti absolute */
}

.s1 p {
  display: none; /* Sakrij originalni <p> */
}

.s1::after {
    content: "Wir übernehmen die komplette Tiefgaragensanierung – von der ersten Analyse und Planung bis zur fachgerechten Ausführung und Übergabe. Dabei garantieren wir höchste Qualität, Langlebigkeit und eine reibungslose Projektabwicklung.";

/* content: 'Wir führen Tiefbauarbeiten mit Fokus auf Infrastruktur, vorbereitende Erdarbeiten, Straßenbau und kommunale Ausstattung durch – unter Einhaltung aller fachlichen Standards und Termine.'; */
    position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
  background-color: rgba(0, 0, 0, 0.6);
  color: white;
  font-size: 1rem;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  pointer-events: none;
  box-sizing: border-box;
}
.s2::after {
    content: "Wir führen Rohbau- und Hochbauarbeiten mit Fokus auf Fundamentierung, Mauerwerk, Beton- und Stahlbau, die Erstellung der Tragstruktur sowie Wohn- und Gewerbebauten, Fassaden, Innenausbau und Dachkonstruktionen unter Einhaltung aller fachlichen Standards und Fristen durch.";
    position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
  background-color: rgba(0, 0, 0, 0.6);
  color: white;
  font-size: 1rem;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  pointer-events: none;
  box-sizing: border-box;
}
.s3::after {
content: "Wir bieten Umbau- und Sanierungsdienstleistungen für Wohn- und Geschäftsgebäude an, mit dem Ziel, Räume zu modernisieren, die Funktionalität zu erhöhen und Schäden sowie bauliche Mängel zu beseitigen.";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
  background-color: rgba(0, 0, 0, 0.6);
  color: white;
  font-size: 1rem;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  pointer-events: none;
  box-sizing: border-box;
}

.s5::after {
content: "Wir bieten schlüsselfertiges Bauen an, das alle Projektphasen umfasst – von der Konzeptentwicklung und Beschaffung der Unterlagen bis hin zur kompletten Ausführung und Fertigstellung, mit einem einzigen Ansprechpartner und voller Verantwortung für die Qualität.";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
  background-color: rgba(0, 0, 0, 0.6);
  color: white;
  font-size: 1rem;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  pointer-events: none;
  box-sizing: border-box;
}

.s6::after {
content: 'Wir führen Tiefbauarbeiten mit Fokus auf Infrastruktur, vorbereitende Erdarbeiten, Straßenbau und kommunale Ausstattung durch, unter Einhaltung aller fachlichen Standards und Fristen.';

position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
  background-color: rgba(0, 0, 0, 0.6);
  color: white;
  font-size: 1rem;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  pointer-events: none;
  box-sizing: border-box;
}



.servicesHolder:hover .servicesHolder-overlay::after {
  opacity: 1;
}
/* services end  */

/* where start */
#where
{
    padding: 50px 0px;
    background-color: rgba(255, 255, 255, 0.811);
}
#where p
{
    text-align: center;
    font-size: 20px;
}
#where a
{
    text-align: center;
    padding: 10px 30px;
    display: block;
    margin: auto;
    text-decoration: none;
    font-weight: 600;
    max-width: 350px;
    width: 100%;
    background-color: #01365f;
    color: white;
    font-size: 20px;
}
/* where end */

/* numbers start */
  #counter-section {
  background-color: rgba(245, 245, 245, 0.852);
  padding: 60px 20px;
  text-align: center;
}

.counter-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 60px;
}

.counter-box {
  flex: 1 1 150px;
}

.counter {
  font-size: 48px;
  font-weight: bold;
  color: #1f1f1f;
}

.counter + p {
  margin-top: 10px;
  color: #191919;
  font-size: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
}
/* numbers end */

/* gallery start */
#gallery
{
    padding: 100px 0px;
    background-color: rgba(255, 255, 255, 0.711);
}
#gallery img
{
    margin: 5px 0px;
}
#galleryBtn
{
    padding: 10px 30px;
    background-color: #01365f;
    color: white;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    max-width: 250px;
    display: block;
    margin: auto;
    font-size: 20px;
}
/* gallery end */

/* why start */
#why
{
    padding: 50px 0px;
    background-color: whitesmoke;
}
.whyHolder
{
    padding: 50px 20px;
    background-color: #01365f;
    margin: 10px 0px;
    background-image: url(IMG/bgNew.avif);
    background-size: cover;
}
.whyHolder img
{
    display: block;
    margin: auto;
}
.whyHolder h3
{
    font-size: 22px;
    text-align: center;
    color: white;
    margin-top: 15px;
}
.whyHolder p
{
    text-align: center;
    font-size: 18px;
    color: white;
    font-weight: 500;
}
/* why end */

/* about start */
#about
{
    padding: 100px 0px 50px 0px;
    background-color: rgba(255, 255, 255, 0.821);
}
#about p
{
    text-align: center;
    font-size: 20px;
}
#about a
{
    padding: 10px 30px;
    background-color: #01365f;
    color: white;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    max-width: 250px;
    display: block;
    margin: auto;
    font-size: 20px;
    margin-top: 20px;
}
/* about end */

/* questions start*/
#questions
{
    padding: 50px 0px;
    background-color: rgb(248, 248, 248);
}
#faqAccordion .card-header {
    background-color: #f8f9fa;
    border: none;
}

#faqAccordion .btn-link {
    text-decoration: none;
    font-weight: bold;
    color: white;
    background-color: #01365f;
    width: 100%;
    max-width: 80%;
    display: block;
    margin: auto;
    border-radius: 0px;
}

#faqAccordion .btn-link:hover {
    color: white;
    text-align: center;
}

.card-body {
    background-color: #f1f1f1;
    padding: 15px;
    font-size: 20px;
    color: #333;
    text-align: center;
}
/* Aktivno stanje dugmadi */
.card-header .btn:focus {
    outline: none;
    box-shadow: none;
    text-align: center;
}
/*  */

/* location start */
#location
{
    padding: 50px 0px;
    background-color: rgba(255, 255, 255, 0.814);
}
/* location end */

/* newsletter start */
#newsletter
{
    padding: 80px 0px 80px 0px;
    background-color: rgba(255, 255, 255, 0.814);
}
#newsletter p
{
    font-size: 20px;
}
#newsletter form
{
    width: 90%;
    display: block;
    margin: auto;
}
#newsletter form input
{
    width: 100%;
    padding: 5px 7px;
    border-radius: 0px;
    outline: none;
    border: 1px solid rgb(129, 129, 129);
}
#newsletter form button
{
    padding: 10px 30px;
    background-color: #01365f;
    font-weight: 600;
    text-align: center;
    outline: none;
    border: none;
    color: white;
    margin-top: 10px;
}
/* newsletter end */

/* footer top start */
#footer
{
    background-color: rgb(187, 187, 187);
}
#footer-top
{ 
    padding: 15px 0px;
    background-color: #292b2c;
}
.footer-top-holder
{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.footer-top-item h3
{
    font-size: 20px;
    color: white;
}
.footer-top-item a
{
    padding: 5px 30px;
    font-weight: 600;
    color: white;
    /* background-color: #88A5A9; */
    font-size: 20px;
    border-radius: 0px;
}
#footerLogo
{
    width: 200px;
    display: block;
    margin: auto;
}
/* footer top end */

/* footer middle start */
#footer-middle
{
    background-color: #323435;
}
#footer-middle h3
{
    /* border-bottom: 2px solid #FE5416; */
    margin-bottom: 30px;
    font-size: 20px;
}
.footer-middle-holder
{
    display: flex;
    justify-content: space-between;
    /* align-items: center; */
}
.footer-middle-item
{
    color: white;
    padding: 15px 0px;
}
.footer-middle-item a
{
    color: white;
    text-decoration: none;
    text-align: left;
    transition: 0.2s ease-in-out;
    padding: 10px 0px;
}
.footer-middle-item a:hover
{
    color: rgb(167, 167, 167);
}
.footer-middle-item ul
{
    list-style: none;
}
.footer-middle-item ul li
{
    padding: 5px 0px;
}
#footerCon
{
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid white;
}
/* footer middle end */

#footer-bottom
{
    border-top: 1px solid black;
    background-color: #323435;

}
.footer-bottom-holder
{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0px;
    color: rgb(167, 167, 167);
}
#footer-bottom a
{
    text-decoration: none;
    color: white;
}
/* footer end */
#btn
{
    padding: 10px 30px;
    background-color: #01365f;
    color: white;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    max-width: 250px;
    display: block;
    margin: auto;
    font-size: 20px;
}

/* media query start */
@media only screen and (max-width: 1100px)
{
    .footer-top-item h5
    {
        font-size: 20px;
        color: white;
    }
    .footer-top-item a
    {
        padding: 5px 25px;
        font-weight: 600;
        background-color: white;
        color: #202122;
        font-size: 18px;
    }
    .footer-middle-item a
    {
        color: white;
        text-decoration: none;
        text-align: left;
        transition: 0.2s ease-in-out;
        font-size: 18px;
    }
    .footer-middle-item a:hover
    {
        color: rgb(167, 167, 167);
    }
    .footer-middle-item ul
    {
        list-style: none;
        font-size: 18px;
    }
    .footer-middle-item h5
    {
        font-size: 20px;
        color: white;
    }
}

@media only screen and (max-width: 992px)
{
    .footer-middle-item a:hover
    {
        color: rgb(167, 167, 167);
    }
    .footer-middle-item ul
    {
        list-style: none;
        font-size: 18px;
    }
    .footer-middle-item h5
    {
        font-size: 18px;
        color: white;
    }
}

@media only screen and (max-width: 768px)
{
        
    .footer-top-item h5
    {
        font-size: 18px;
        color: white;
    }
    .footer-top-item a
    {
        padding: 5px 25px;
        font-weight: 600;
        background-color: white;
        color: #202122;
        font-size: 18px;
    }
    .footer-middle-holder
    {
        display: block;
    }
    .footer-middle-item
    {
        width: 80%;
        display: block;
        margin: auto;
        padding: 25px 0px;
    }
    .footer-middle-item a
    {
        color: white;
        text-decoration: none;
        text-align: left;
        transition: 0.2s ease-in-out;
        font-size: 18px;
    }
    .footer-middle-item a:hover
    {
        color: rgb(167, 167, 167);
    }
    .footer-middle-item ul
    {
        list-style: none;
        font-size: 18px;
    }
    .footer-middle-item h5
    {
        font-size: 18px;
        color: white;
    }
    .footer-bottom-holder
    {
        display: block;
    }
    #footer-bottom p
    {
        text-align: center;
    }
    #footer-top-item a
    {
        display: none;
    }
    #footer-top-item h5
    {
        text-align: center;
    }
}
@media only screen and (max-width:576px)
{
    
    .title
    {
        text-align: center;
        margin-bottom: 30px;
        font-size: 32px;
        font-weight: 700;
    }
    .title1
    {
        text-align: center;
        margin-bottom: 30px;
        font-size: 32px;
        font-weight: 700;
        color: white;
    }
    #hero
    {
        padding: 0px 0px;
    }
    .heroHolder
    {
        display: flex;
        align-items: center;
        flex-direction: column;
    }
    .heroHolderLeft
    {
        order: 1;
        max-width: 100%;
        padding: 120px 0px;
    }
    .heroHolderRight
    {
        order: 0;
        max-width: 100%;
    }
    .heroHolderRight img
    {
        width: 100%;
        display: block;
        margin: auto;
        max-width: 100%;
        height: auto;

    }
    .heroHolderLeftCon
    {
        padding-left: 0px;
    }
    .heroHolderLeftCon h1
    {
        color: white;
        font-size: 35px;
        font-weight: 700;
        text-align: center;
    }
    .heroHolderLeftCon p
    {
        font-size: 20px;
        color: white;
        margin-bottom: 20px;
        text-align: center;
        max-width: 95%;
        display: block;
        margin: auto;
    }
    .heroHolderLeftCon
    {
        width: 100%;
    }
    .borderBtn
    {
        border: 2px solid white;
        padding: 10px 30px;
        background-color: transparent;
        text-decoration: none;
        text-align: center;
        font-size: 20px;
        color: white;
        display: block;
        margin: auto;
        max-width: 250px;
        font-weight: 600;
        margin-top: 10px;
    }
    #aline
    {
        padding: 5px 0px;
        background-color: whitesmoke;
        display: none;
    }

    .alineHolder a img
    {
        width: 16px;
    }
      #newsletter
    {
        padding: 100px 0px 50px 0px;
        background-color: rgba(255, 255, 255, 0.814);
    }
    #newsletter p
    {
        font-size: 20px;
        text-align: center;
    }
    #newsletter form
    {
        width: 90%;
        display: block;
        margin: auto;
    }
      #newsletter h3
    {
        text-align: center;
    }
    #newsletter form input
    {
        width: 100%;
        padding: 5px 7px;
        border-radius: 0px;
    }
    #newsletter form button
    {
        padding: 10px 30px;
        background-color: #01365f;
        font-weight: 600;
        text-align: center;
        outline: none;
        border: none;
        color: white;
        display: block;
        margin: auto;
        margin-top: 10px;
    }

    #faqAccordion .btn-link {
    text-decoration: none;
    font-weight: bold;
    color: white;
    background-color: #01365f;
    width: 100%;
    max-width: 100%;
    display: block;
    margin: auto;
    border-radius: 0px;
}
}

@media only screen and (max-width: 470px)
{
    .footer-top-holder
    {
        display: block;
    }
    .footer-top-item h5
    {
        font-size: 18px;
        color: white;
        text-align: center;

    }
    .footer-top-item a
    {
        padding: 5px 25px;
        font-weight: 600;
        background-color: white;
        color: #202122;
        font-size: 18px;
        display: none;
    }

    .footer-top-item
    {
        width: 100%;
        max-width: 100%;
    }
}

@media only screen and (max-width: 415px)
{
    .footer-top-item h5
    {
        font-size: 18px;
        color: white;
        text-align: center;

    }
    .footer-top-item a
    {
        padding: 5px 20px;
        font-weight: 600;
        background-color: white;
        color: #202122;        
        font-size: 18px;
        display: none;
    }

}

@media only screen and (max-width: 370px)
{
    .footer-top-item h5
    {
        font-size: 18px;
        color: white;
        text-align: center;
    }
    .footer-top-item a
    {
        padding: 5px 20px;
        font-weight: 600;
        background-color: white;
        color: #202122;
        font-size: 18px;
        display: none;

    }
}
/* media query end */

/* contactHero start */

.page-overlay
{
    padding: 230px 0px;
    background-color: rgba(0, 0, 0, 0.5);
}
#contactHero
{
    color: white;
}
#contactHero p
{
    font-size: 22px;
    margin-top: -20px;
}
/* contactHero end */

/* kontakt start */
#contact
{
    padding: 50px 0px;
    background-color: white;
}
.contactTxt
{
    font-size: 22px;
    text-align: center;
}
#con p
{
    font-size: 22px;
}
#contact ul
{
    list-style: none;
    margin: 10px 0px;
    margin-left: -30px;
    font-size: 18px;
}
#contact ul li
{
    margin: 15px 0px;
}
#contact ul li a
{
    text-decoration: none;
    color: #1a1a1a;
}
#contact form
{
    background-color: rgb(251, 251, 251);
    padding: 30px 20px;
    border: 1px solid rgb(189, 189, 189);
}
#contact form input
{
    width: 100%;
    padding: 5px 7px;
    margin: 10px 0px;
    border-radius: 0px;
    outline: none;
    border: 1px solid rgb(189, 189, 189);
}
#contact form textarea
{
    width: 100%;
    padding: 5px 7px;
    margin: 10px 0px;
    border-radius: 0px;    
    outline: none;
    border: 1px solid rgb(189, 189, 189);
}
#contact form button
{

    max-width: 250px;
    width: 100%;
    font-weight: 600;
    display: block;
    margin: auto;
    font-size: 20px;
    background-color: #01365f;
}
#provera
{
    display: none;
}
/* kontakt end */

/* mapa start */
#mapa
{
    padding: 50px 0px 20px 0px;
    background-color: rgba(255, 255, 255, 0.811);
}
/* mapa end */


/* questions start */
#questions1
{
    padding: 50px 0px;
    background-color: #01365f;
    background-image: url(IMG/bgNew.avif);
    background-size: cover;
}
#questions1 h3
{
    color: white;
    text-align: center;
}
/* questions end */


/* job start */
#job
{
    padding: 100px 0px 50px 0px;
    background-color: rgba(255, 255, 255, 0.811);
}
#job p
{
    text-align: center;
    font-size: 20px;
}
#job form input
{
    max-width: 100%;
    width: 100%;
    padding: 5px 7px;
    margin: 10px 0px;
    border-radius: 0px;
    outline: none;
    border: 1px solid #707070;

}
#job form label
{
    margin-left: 0px;
}
#job form textarea
{
    max-width: 100%;
    width: 100%;
    display: block;
    margin: auto;
    padding: 5px 7px;
    margin: 10px 0px;
    border-radius: 0px;
    outline: none;
    border: 1px solid #707070

}
#job form select
{
    max-width: 100%;
    width: 100%;
    padding: 5px 7px;
    margin: 5px 0px;
    border-radius: 0px;
    outline: none;
    border: 1px solid #707070;
        display: block;
    margin: auto;
}
#job form button
{
    padding: 10px 30px;
    background-color: #01365f;
    text-align: center;
    font-weight: 600;
    color: white;
    max-width: 300px;
    width: 100%;
    text-decoration: none;
    display: block;
    margin: auto;
    font-size: 20px;
    outline: none;
    border: 0px;
}
/* job end */

/* about page start */
#aboutS
{
    padding: 50px 0px;
    background-color: white;
}
#aboutS h3
{
    text-align: center;
    margin-bottom: 30px;
}
#aboutS p
{
    font-size: 20px;
    text-align: center;
}
#aboutS img
{
    display: block;
    margin: auto;
    width: 80%;
}
/* about page end */

/* test start */
#test
{
    background-image: url(IMG/s2.avif);
    background-size: cover;
    background-position: center;
}
.test-overlay
{
    padding: 250px 0px;
    background-color: rgba(0, 0, 0, 0.7);
    position: relative;
}
.testCon
{
    position: absolute;
    top:50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.testCon h2
{
    color: white;
    text-align: center;
    font-size: 45px;
    margin-bottom: 20px;
}
.testCon a
{
    display: block;
    margin: auto;
    max-width: 250px;
    width: 100%;
    background-color: #01365f;
    padding: 10px 30px;
    text-align: center;
    text-decoration: none;
    color: white;
    font-size: 20px;
}
.testCon a:hover
{
    color: white;
}
/* test end */

/* bline start */
#bline
{
    padding: 10px 0px;
    background-color: #01365f;
}
#bline h3
{
    text-align: center;
    color: white;
    font-size: 22px;
    font-weight: 500;
}
/* bline end */

/* ser start */
#ser
{
    padding: 50px 0px 0px 0px;
    background-color: rgba(255, 255, 255, 0.811);
}
#ser h2
{
    margin-bottom: 20px;
    font-size: 35px;
}
#ser p
{
    font-size: 20px;
}
#ser a
{
    text-decoration: none;
    color: #01365f;
    font-size: 18px;
}
/* ser end */


/* test start */
#test1
{
    background-image: url(IMG/ser16.avif);
    background-size: cover;
    position: relative;
    background-position: center;
    max-width: 100%;
    width: 100%;
    background-attachment: fixed;
}
.test-overlay1
{
    padding: 300px 0px;
    background-color: rgba(0, 0, 0, 0.2);
}
.testHolder1
{
    position: absolute;
    padding: 30px 50px;
    width: 80%;
    /* background-color: #01365f; */
    background-image: url(IMG/bgNew.avif);
    background-size: cover;
    bottom: -40px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.testHolder1 h3
{
    color: white;
}
.testItem1 a
{
    color: white;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    margin-top: -10px;
    text-align: center;
    border: 2px solid white;
    padding: 10px 30px;
    display: block;
    margin: auto;
    width: 100%;
    max-width: 220px;
    transition: 0.3s ease-in-out;
}
.testItem1 a:hover
{
    color: white;
    background-color: rgba(245, 245, 245, 0.355);
}
/* test end */

@media only screen and (max-width:576px)
{
    .heroHolderLeftCon img
    {
        /* max-width: 150%; */
        width: 220px;
        display: block;
        margin: auto;
    }
    #test
    {
        background-image: url(IMG/testSmall.avif);
        background-size: cover;
        background-position: center;
    }
    .page-overlay
    {
        padding: 180px 0px;
        background-color: rgba(0, 0, 0, 0.5);
    }
    #job
    {
        padding: 50px 0px;
    }

    #ser h2
    {
        margin-bottom: 20px;
        margin-top: 10px;
        font-size: 35px;
        text-align: center;
    }
    #ser img
    {
        object-fit: cover;
        height: 300px;
    }
    #ser p
    {
        font-size: 20px;
        text-align: justify;
    }
    #ser a
    {
        text-decoration: none;
        color: #01365f;
        font-size: 18px;
        text-align: center;
        display: block;
        margin: auto;
    }
    .servicesHolder-overlay
    {
        background-color: rgba(0, 0, 0, 0.4);
        padding: 150px 0px;
    }
        .testHolder1
    {
        position: absolute;
        padding: 30px 50px;
        width: 93.8%;
        background-color: #01365f;
        bottom: -40px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .testItem1 h3
    {
        text-align: center;
    }
        #test1
    {
        background-attachment: scroll;
    }
    .page-overlay
    {
        padding: 180px 0px;
        background-color: rgba(0, 0, 0, 0.2);
        background-position: left;
    }
}
#mapa
{
    background-color: whitesmoke;
}


#inspiracija
{
    padding: 50px 0px;
    background-color: whitesmoke;
}
/* inspiracija end */
#inspiracija a
{
    text-decoration: none;
    font-size: 20px;
    color: #121212;
}

 #klizac {
    scroll-behavior: smooth;
    padding-bottom: 10px;
  
  /* sakrij horizontalni scrollbar */
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none;  /* IE i Edge */
}

#klizac::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Opera */
}

  .klizac-item {
    flex: 0 0 auto;
    width: 100%;
    max-width: 480px;
  }

  .strelica-levo,
  .strelica-desno {
    position: absolute;
    top: 35%;
    transform: translateY(-35%);
    /* color: white; */
    font-weight: 500;
    font-size: 20px;
    width: 100px;
    height: 100px;
    background-color: transparent;
    /* border: 1px solid #ccc; */
    z-index: 10;
    color: #121212;
  }
  .button
  {
    border: none;
    outline: none;
  }

  .strelica-levo {
    left: -50px;
        font-size: 100px;
            border: none;
    outline: none;

  }

  .strelica-desno {
    right: -50px;
            font-size: 100px;
                border: none;
    outline: none;

  }

  @media (max-width: 768px) {
    .klizac-item {
      max-width: 90%;
    }

    .strelica-levo,
    .strelica-desno {
      display: none !important;
    }
  }


  .hero-video video {
    width: auto;
    height: 600px;
    display: block; /* uklanja neželjeni razmak ispod videa */
    object-fit: cover; /* video se prilagođava containeru i može se rezati */
        animation: heroHolderLeftAnimation 0.6s ease-in-out;

}

/* klijenti start */
#klijenti
{
    padding: 50px 0px;
    background-color: rgba(255, 255, 255, 0.711);
}
#klijenti p
{
    font-size: 20px;
    text-align: center;
}
#klijenti form input, textarea, select
{
    width: 100%;
    padding: 5px 7px;
    margin: 5px 0px;
    outline: none;
}
#klijenti form button
{
        display: block;
    margin: auto;
    max-width: 250px;
    width: 100%;
    background-color: #01365f;
    padding: 10px 30px;
    text-align: center;
    text-decoration: none;
    color: white;
    font-size: 20px;
    outline: none;
    border: none;
}

#aboutS a
{
          display: block;
    margin: auto;
    max-width: 250px;
    width: 100%;
    background-color: #01365f;
    padding: 10px 30px;
    text-align: center;
    text-decoration: none;
    color: white;
    font-size: 20px;
    outline: none;
    border: none;  
    font-weight: 600;
}
/* klijenti end */

@media (max-width: 576px) 
  {
    #projekt
    {
        padding: 50px 0px;
    }
#hero
{
    overflow-x: hidden;
}
  .hero-video video {
    width: auto;
    height: 300px;
    display: block; /* uklanja neželjeni razmak ispod videa */
    object-fit: cover; /* video se prilagođava containeru i može se rezati */

}


    .slikaHolder::before {
    content: "";
    position: absolute;
    top: 20px;       /* pomera se nadole */
    left: 70px;    
    width: 100%;
    max-width: 80%;
    height: 100%;
    background-color: #58442c1c;
    z-index: 0;      /* iza slike */
        display: block;
    margin: auto;
    }
    .slikaHolder img {
  position: relative;
  z-index: 1;      /* slika ide preko pozadine */
  display: block;
  width: 100%;
  max-width: 90%;
  display: block;
  margin: auto;
}
  }

  /* izdvaja start */
#izdvaja
{
    padding: 50px 0px;
    background-color: rgba(255, 255, 255, 0.711);
}
#izdvaja p
{
    font-size: 20px;
}
#izdvaja ul li
{
    font-size: 20px;
    padding: 3px 0px;
}
#izdvaja a
{
    text-align: center;
    padding: 10px 30px;
    background-color: #01365f;
    display: block;
    margin: auto;
    width: 100%;
    max-width: 250px;
    text-decoration: none;
    color: white;
    font-weight: 600;
}
/* izdvaja end */


