@tailwind base;
@tailwind components;
@tailwind utilities;
html {
  scroll-behavior: smooth;
}

body {
  font-family: "Urbanist", sans-serif;
}

.mobile-nav {
  color: #5864ac;
  font-weight: 500;
}

.btn-blue {
  background-color: #5f6dbd;
}

.nav-pozadina {
  background-color: #5864ac;
}

.hero {
  background-image: url(./img/onama-3.png);
  background-size: cover;
  background-position: center;
}
.hero .header .nav p {
  color: #5864ac;
  text-transform: uppercase;
  font-weight: bold;
  transition: all 0.5s ease;
}
.hero .header .nav p:hover {
  color: white;
}
.hero .hero-section h1, .hero .hero-section .motive {
  color: #5864ac;
}
.hero .hero-section .btn-section button {
  background-color: #5864ac;
  color: white;
  text-transform: uppercase;
  transition: all 0.5s ease;
}
.hero .hero-section .btn-section button:hover {
  background-color: #4a59b0;
}

.usluge-cards {
  background-color: #5864ac;
}

.footer {
  background-color: #5864ac;
}

.contact-logo {
  width: 36px;
  height: auto;
}

.contact-card {
  border-right: 1px solid #5864ac;
}

.contact-card:nth-last-child(1) {
  border: none;
}

.hero-usluge {
  background-image: url(img/onama-3.png);
}
.btn-blue{
  background-color: #5864ac;
  transition: all 0.5s ease;
}
.btn-blue:hover{
  background-color: #4a59b0;
}

.hero-btns{
  display: flex;
  flex-direction: column;
  justify-items: center;
  align-items: center;
  gap:1rem;
}

.btn-invert{
  background-color: white;
  border: 2px solid #5864ac;
  color: #5864ac;
  transition: all 0.5s ease;
}

.btn-invert:hover{
  background-color: #ececec;
  color:#4a59b0;
}

#preloader {
  position: fixed;
  width: 100%;
  height: 100%;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.loader {
  border: 6px solid #f3f3f3;
  border-top: 6px solid #5864ac;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  animation: spin 1s linear infinite;
}

.politikaKvalitetaP{
  color:#5864ac;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@media (max-width: 1024px) {
  .contact-card:nth-child(2) {
    border: none;
  }
}
@media (max-width: 640px) {
  .contact-card {
    border: none;
  }
  .hero {
    background-position: 75%;
  }
}/*# sourceMappingURL=style.css.map */