/* globals */
@import url("https://fonts.googleapis.com/css2?family=Montserrat&family=Titillium+Web:wght@400;700&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-size: 16px;
}
@media (max-width: 1300px) {
  * {
    font-size: 14px;
  }
}
@media (max-width: 1000px) {
  * {
    font-size: 12px;
  }
}
@media (max-width: 900px) {
  * {
    font-size: 10px;
  }
}

body {
  font-family: Montserrat, sans-serif;
  font-size: 1rem;
  width: 75%;
  margin: 0 auto;
  background-color: rgba(226, 232, 255, 0.5333333333);
  transition: all 0.5s ease-in-out;
  scroll-behavior: smooth;
}
@media (max-width: 1300px) {
  body {
    width: 90%;
    font-size: 14px;
  }
}
@media (max-width: 1000px) {
  body {
    width: 100%;
    font-size: 12px;
  }
}

/* header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 75%;
  margin: 0 auto;
  height: 5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  z-index: 1;
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  background-color: rgba(168, 173, 203, 0.8);
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.3);
}
@media (max-width: 1300px) {
  .header {
    width: 90%;
  }
}
@media (max-width: 1000px) {
  .header {
    width: 100%;
  }
}
.header .header-logo-name {
  display: flex;
  align-items: center;
  justify-content: center;
}
.header .header-logo-name .hero-logo-img img {
  width: 3.5rem;
  height: 3.5rem;
  margin-right: 0.75rem;
  transition: all 0.5s ease-in-out;
}
@media (max-width: 460px) {
  .header .header-logo-name .hero-logo-img img {
    width: 1.5rem;
    height: 1.5rem;
  }
}
.header .header-logo-name a {
  text-decoration: none;
  color: #111111;
  font-size: 1.75rem;
  font-weight: 900;
}
@media (max-width: 460px) {
  .header .header-logo-name a {
    font-size: 1.25rem;
  }
}

.menu-items {
  list-style: none;
  display: flex;
  align-items: center;
  margin: 0;
}

.menu-items li a {
  font-size: 1rem;
  padding: 0.5rem 1rem;
  transition: background 0.3s ease-in-out, color 0.3s ease-in-out;
  text-decoration: none;
  font-weight: 700;
  border-radius: 1rem;
}
@media (max-width: 460px) {
  .menu-items li a {
    padding: 0.25rem 1rem;
  }
}

.menu-items li a:hover {
  background-color: #ccc7d3;
}

/* nav menu button */
.ment-btn {
  position: relative;
  display: none;
  justify-content: center;
  align-items: center;
  width: 1.5rem;
  height: 1.5rem;
  cursor: pointer;
  z-index: 1;
}

.menu-btn__lines,
.menu-btn__lines::before,
.menu-btn__lines::after {
  width: 1.5rem;
  height: 0.25rem;
  background-color: #555555;
  transition: all 0.5s ease-in-out;
}

.menu-btn__lines::before,
.menu-btn__lines::after {
  content: "";
  position: absolute;
}

.menu-btn__lines::before {
  transform: translateY(-0.5rem);
}

.menu-btn__lines::after {
  transform: translateY(0.5rem);
}

/* sections */
.section {
  position: relative;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* hero section */
.hero-section {
  background-color: #cfd9ff;
  background-image: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%239C92AC' fill-opacity='0.1'%3E%3Cpath d='M50 50c0-5.523 4.477-10 10-10s10 4.477 10 10-4.477 10-10 10c0 5.523-4.477 10-10 10s-10-4.477-10-10 4.477-10 10-10zM10 10c0-5.523 4.477-10 10-10s10 4.477 10 10-4.477 10-10 10c0 5.523-4.477 10-10 10S0 25.523 0 20s4.477-10 10-10zm10 8c4.418 0 8-3.582 8-8s-3.582-8-8-8-8 3.582-8 8 3.582 8 8 8zm40 40c4.418 0 8-3.582 8-8s-3.582-8-8-8-8 3.582-8 8 3.582 8 8 8z' /%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.section h1 {
  font-family: "Titillium Web", serif;
  font-size: clamp(6rem, 8vw, 20rem);
  font-weight: 700;
  line-height: 3vw;
  color: #999cbe;
  text-transform: uppercase;
}

.section h2 {
  font-size: clamp(1.8rem, 2.5vw, 6rem);
  color: #3944be;
  padding-left: 3rem;
  text-transform: uppercase;
  font-weight: 900;
  margin-bottom: 1rem;
}

.section h3 {
  font-size: 1.5rem;
  color: #192067;
  font-weight: 900;
  margin-bottom: 2rem;
}

.hero-section img {
  width: clamp(25rem, 30vw, 50rem);
  transform: scaleX(-1);
}

.tehnologije-section img {
  width: clamp(25rem, 30vw, 50rem);
  transform: scaleX(-1);
}

.custom-shape-divider {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  transform: rotate(180deg);
}

.custom-shape-divider2 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  transform: rotate(0deg);
}

.custom-shape-divider svg {
  position: relative;
  display: block;
  width: calc(144% + 1.3px);
  height: 10rem;
}

#home {
  position: relative;
  height: 100vh;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  text-align: right;
}
@media (max-width: 767px) {
  #home {
    flex-direction: column;
  }
}
#home .custom-shape-divider .shape-fill {
  fill: #f0f2ff;
}
#home.hero-section {
  background-color: #cfd9ff;
  background-image: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%239C92AC' fill-opacity='0.1'%3E%3Cpath d='M50 50c0-5.523 4.477-10 10-10s10 4.477 10 10-4.477 10-10 10c0 5.523-4.477 10-10 10s-10-4.477-10-10 4.477-10 10-10zM10 10c0-5.523 4.477-10 10-10s10 4.477 10 10-4.477 10-10 10c0 5.523-4.477 10-10 10S0 25.523 0 20s4.477-10 10-10zm10 8c4.418 0 8-3.582 8-8s-3.582-8-8-8-8 3.582-8 8 3.582 8 8 8zm40 40c4.418 0 8-3.582 8-8s-3.582-8-8-8-8 3.582-8 8 3.582 8 8 8z' /%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
#home.hero-section .hero-col {
  text-align: right;
  padding: clamp(1rem, 8vw, 5rem);
  max-width: 50%;
}
@media (max-width: 1750px) {
  #home.hero-section .hero-col {
    padding-left: 0;
    padding-right: 0;
  }
}
@media (max-width: 1360px) {
  #home.hero-section .hero-col {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
@media (max-width: 767px) {
  #home.hero-section .hero-col {
    text-align: center;
    max-width: 80%;
    padding-left: 0;
    padding-right: 0;
  }
}
#home.hero-section .hero-col .logo-name {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
#home.hero-section .hero-col .logo-name .logo-img img {
  width: 18rem;
  opacity: 0.25;
}
@media (max-width: 1920px) {
  #home.hero-section .hero-col .logo-name .logo-img img {
    width: 15rem;
  }
}
@media (max-width: 1640px) {
  #home.hero-section .hero-col .logo-name .logo-img img {
    width: 13rem;
  }
}
@media (max-width: 1360px) {
  #home.hero-section .hero-col .logo-name .logo-img img {
    width: 11rem;
  }
}
@media (max-width: 767px) {
  #home.hero-section .hero-col .logo-name .logo-img img {
    width: 9rem;
  }
}
#home.hero-section .hero-col .logo-name .naziv-cmpl {
  display: flex;
  flex-direction: column;
}
#home.hero-section .hero-col .logo-name .naziv-cmpl h1 {
  font-family: "Titillium Web", serif;
  font-size: clamp(6rem, 8vw, 20rem);
  font-weight: 700;
  line-height: 3vw;
  color: #999cbe;
  text-transform: uppercase;
}
#home.hero-section .hero-col .logo-name .naziv-cmpl h2 {
  font-size: clamp(1.8rem, 2.5vw, 6rem);
  color: #3944be;
  padding-left: 3rem;
  text-transform: uppercase;
  font-weight: 900;
  margin-bottom: 1rem;
}
#home.hero-section .hero-col h3 {
  font-size: 1.5rem;
  color: #192067;
  font-weight: 900;
  margin-bottom: 2rem;
}
#home.hero-section .hero-col .section-paragraph p {
  width: 70%;
  font-size: 1.75rem;
  font-weight: 500;
  color: #5a4d70;
  padding-right: 1rem;
  padding-bottom: 0.5rem;
  font-weight: 700;
  text-align: right;
  width: 100%;
}
@media (max-width: 767px) {
  #home.hero-section .hero-col .section-paragraph p {
    text-align: center;
    padding-right: 0;
    margin: 0 auto;
    width: 80%;
  }
}
#home.hero-section .hero-col .hero-img {
  text-align: left;
  padding: 0;
  margin: 0;
}
#home.hero-section .hero-col .hero-img img {
  width: clamp(25rem, 30vw, 80rem);
  transform: scaleX(-1);
}
@media (max-width: 767px) {
  #home.hero-section .hero-col .hero-img img {
    width: clamp(15rem, 30vw, 80rem);
  }
}
#home.hero-section .hero-col .another-col {
  font-weight: 500;
  text-align: left;
  width: 100%;
}

#usluge {
  position: relative;
  height: 100vh;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  text-align: left;
}
@media (max-width: 767px) {
  #usluge {
    flex-direction: column;
  }
}
#usluge .hero-col {
  text-align: left;
  padding: clamp(1rem, 8vw, 5rem);
  max-width: 50%;
}
@media (max-width: 1360px) {
  #usluge .hero-col {
    padding-left: 3rem;
    padding-right: 3rem;
  }
}
@media (max-width: 767px) {
  #usluge .hero-col {
    text-align: center;
    max-width: 80%;
    padding-top: 0;
    padding-bottom: 10rem;
  }
}
#usluge .hero-col h2 {
  text-align: left;
}
@media (max-width: 767px) {
  #usluge .hero-col h2 {
    text-align: center;
  }
}
#usluge .hero-col.hero-img {
  text-align: left;
  padding: 0;
  margin: 0;
}
@media (max-width: 767px) {
  #usluge .hero-col.hero-img {
    text-align: center;
    max-width: 80%;
    padding-top: 0;
    padding-bottom: 10rem;
  }
}
#usluge .hero-col.hero-img img {
  width: clamp(25rem, 30vw, 80rem);
  transform: scaleX(1);
}
#usluge .hero-col .second-section-paragraph p {
  font-size: 1.25rem;
  font-weight: 500;
  text-align: left;
  width: 100%;
  display: list-item;
}
@media (max-width: 767px) {
  #usluge .hero-col .second-section-paragraph p {
    padding-right: 0;
    margin: 0 auto;
    width: 80%;
  }
}

#tehnologije {
  position: relative;
  height: 100vh;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  text-align: left;
  flex-direction: row;
  background-color: #cfd9ff;
  background-image: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%239C92AC' fill-opacity='0.1'%3E%3Cpath d='M50 50c0-5.523 4.477-10 10-10s10 4.477 10 10-4.477 10-10 10c0 5.523-4.477 10-10 10s-10-4.477-10-10 4.477-10 10-10zM10 10c0-5.523 4.477-10 10-10s10 4.477 10 10-4.477 10-10 10c0 5.523-4.477 10-10 10S0 25.523 0 20s4.477-10 10-10zm10 8c4.418 0 8-3.582 8-8s-3.582-8-8-8-8 3.582-8 8 3.582 8 8 8zm40 40c4.418 0 8-3.582 8-8s-3.582-8-8-8-8 3.582-8 8 3.582 8 8 8z' /%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
@media (max-width: 767px) {
  #tehnologije {
    flex-direction: column;
    text-align: center;
  }
}
#tehnologije .custom-shape-divider-start {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  transform: rotate(0deg);
}
#tehnologije .custom-shape-divider-start .shape-fill {
  fill: #f0f2ff;
}
#tehnologije .custom-shape-divider-start svg {
  position: relative;
  display: block;
  width: calc(144% + 1.3px);
  height: 10rem;
}
#tehnologije .custom-shape-divider-end {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  transform: rotate(180deg);
}
#tehnologije .custom-shape-divider-end svg {
  position: relative;
  display: block;
  width: calc(144% + 1.3px);
  height: 10rem;
}
#tehnologije .custom-shape-divider-end .shape-fill {
  fill: #b1b7db;
}
#tehnologije .hero-col {
  text-align: right;
  padding: clamp(1rem, 8vw, 5rem);
  max-width: 50%;
}
@media (max-width: 1360px) {
  #tehnologije .hero-col {
    padding-left: 3rem;
    padding-right: 3rem;
  }
}
@media (max-width: 767px) {
  #tehnologije .hero-col {
    text-align: center;
    max-width: 80%;
  }
}
#tehnologije .hero-col h1 {
  margin-top: 2rem;
}
@media (max-width: 767px) {
  #tehnologije .hero-col h1 {
    margin-top: 15rem;
  }
}
#tehnologije .hero-col h2 {
  text-align: right;
  margin: 0;
  padding: 0;
  font-weight: 900;
}
@media (max-width: 767px) {
  #tehnologije .hero-col h2 {
    text-align: center;
  }
}
#tehnologije .hero-col h3 {
  text-align: right;
  margin: 1.5rem 0;
  padding: 0;
}
@media (max-width: 767px) {
  #tehnologije .hero-col h3 {
    text-align: center;
  }
}
#tehnologije .hero-col h4 {
  font-size: 1.25rem;
  font-weight: 900;
  text-align: right;
  margin: 1.5rem 0;
  padding: 0;
}
@media (max-width: 767px) {
  #tehnologije .hero-col h4 {
    text-align: center;
  }
}
#tehnologije .hero-col.hero-img {
  text-align: left;
}
@media (max-width: 767px) {
  #tehnologije .hero-col.hero-img {
    text-align: center;
    padding-top: 0;
    padding-bottom: 10rem;
  }
}
#tehnologije .hero-col.hero-img img {
  width: clamp(25rem, 30vw, 80rem);
  transform: scaleX(-1);
}
#tehnologije .hero-col .section-paragraph {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: auto;
  margin-top: 2.5rem;
}
#tehnologije .hero-col .section-paragraph p {
  margin: 0;
  padding: 0.2rem 0;
  font-size: 1.1rem;
  font-weight: 900;
  text-align: right;
  text-transform: uppercase;
  font-style: italic;
  width: 100%;
}
@media (max-width: 767px) {
  #tehnologije .hero-col .section-paragraph p {
    text-align: center;
  }
}
#tehnologije .hero-col .section-paragraph img {
  width: clamp(25rem, 30vw, 80rem);
  transform: scaleX(-1);
}

#kontakt {
  position: relative;
  height: 40vh;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #b1b7db;
}
@media (max-width: 1360px) {
  #kontakt {
    height: 30vh;
  }
}
@media (max-width: 900px) {
  #kontakt {
    height: 25vh;
  }
}
@media (max-width: 500px) {
  #kontakt {
    height: 20vh;
  }
}
#kontakt .hero-col {
  margin-top: 50px;
  text-align: center;
  padding: clamp(1rem, 8vw, 5rem);
  max-width: 70%;
}
#kontakt .hero-col .hero-logo-img img {
  width: 7.5rem;
  height: 7.5rem;
  margin-bottom: 1rem;
  transition: all 0.5s ease-in-out;
}
@media (max-width: 460px) {
  #kontakt .hero-col .hero-logo-img img {
    width: 3.5rem;
    height: 3.5rem;
  }
}
#kontakt .hero-col h1 {
  font-size: clamp(4rem, 4.5vw, 15rem);
  color: white;
}
#kontakt .hero-col h2 {
  font-size: clamp(1.2rem, 2vw, 6rem);
  text-align: center;
  padding: 0;
}
#kontakt .hero-col h3 {
  text-align: center;
  margin: 0;
  padding: 0;
  font-size: 1.5rem;
}
@media (max-width: 1360px) {
  #kontakt .hero-col h3 {
    font-size: 1.25rem;
  }
}
@media (max-width: 900px) {
  #kontakt .hero-col h3 {
    font-size: 1rem;
  }
}
#kontakt .hero-col h4 {
  font-size: 1.25rem;
  font-weight: 900;
  text-align: center;
  margin: 10px 0;
  padding: 0;
}
#kontakt .hero-col h5 {
  font-size: 1.25rem;
  font-weight: 900;
  text-align: center;
  margin: 0;
  padding: 0;
}
#kontakt .hero-col h5.contact-message {
  font-size: 1.2rem;
  font-weight: 900;
  text-align: center;
  margin: 0;
  margin-top: 2.5rem;
  padding: 0;
}
@media (max-width: 1360px) {
  #kontakt .hero-col h5.contact-message {
    font-size: 1.15rem;
  }
}
@media (max-width: 900px) {
  #kontakt .hero-col h5.contact-message {
    font-size: 1rem;
  }
}
@media (max-width: 500px) {
  #kontakt .hero-col h5.contact-message {
    font-size: 0.9rem;
  }
}
#kontakt .hero-col h5.contact-mail {
  font-size: 1.5rem;
  font-weight: 900;
  text-align: center;
  margin: 0.5rem;
  margin-bottom: 4rem;
  padding: 0;
  color: white;
}
@media (max-width: 1360px) {
  #kontakt .hero-col h5.contact-mail {
    font-size: 1.25rem;
  }
}
@media (max-width: 900px) {
  #kontakt .hero-col h5.contact-mail {
    font-size: 1.1rem;
  }
}
@media (max-width: 500px) {
  #kontakt .hero-col h5.contact-mail {
    font-size: 1rem;
  }
}
#kontakt .hero-col.hero-img {
  text-align: left;
  padding: 0;
  margin: 0;
  transform: scaleX(-1);
}
#kontakt .hero-col .section-paragraph {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: auto;
  margin-top: 50px;
  background-color: #f0f2ff;
}
#kontakt .hero-col .section-paragraph p {
  padding: 3px 0;
  font-size: 1.1rem;
  font-weight: 900;
  text-align: right;
  width: 100%;
}/*# sourceMappingURL=style.css.map */