@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
header {
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  width: 100%;
  height: auto;
}
.logo {
  background-image: url(./logo-zlatanovbreg-teget.png);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  height: 50px;
  margin: 1rem 0;
  width: 200px;
}
nav {
  width: 100%;
  /* max-width: 1200px; */
  display: flex;
  justify-content: space-around;
  align-items: center;
  min-height: 8vh;
  background-color: #fafcff;
  position: fixed;
  font-family: "Roboto", sans-serif;
  top: 0;
  left: 0;
  right: 0;
  z-index: 5;
  transition: background-color 1s ease, box-shadow 1s ease;
}
.nav-opacity {
  background-color: #fff;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  transition: background-color 3s ease, box-shadow 3s ease;
}
.menu-icon {
  display: none;
}

.nav-links li {
  list-style: none;
}
.nav-links a {
  text-decoration: none;
  font-size: 1rem;
  letter-spacing: 1.2px;
  color: #003049;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  padding-right: 1rem;
}
.nav-links a:hover {
  color: #6f9ab9;
}
.dropdown {
  position: relative;
  display: inline-block;
}
.dropdown-content {
  margin-top: 15px;
  display: none;
  position: absolute;
  background-color: #ffffffed;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 1;
}
.dropdown-content a {
  padding: 14px;
  text-decoration: none;
  display: block;
}
.dropdown-content a:hover {
  background-color: #b77d53cc;
  color: #fff;
}
.dropdown:hover .dropdown-content {
  display: block;
}
.dropdown:hover .dropbtn {
  color: #b77d53;
}
.n-link {
  padding: 15px 0;
}
@media screen and (max-width: 992px) {
  nav {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
  }
  .logo-menu {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
  }

  nav .logo {
    color: #003049;
  }
  .menu-icon {
    display: block;
    padding-right: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .menu-icon i {
    font-size: 2.4rem;
    margin: 0;
  }

  .nav-links {
    flex-direction: column;
    width: 100%;
    text-align: center;
    display: none;
  }
  .nav-links div,
  .nav-links li {
    width: 100%;
  }

  .dropdown-content {
    width: 100%;
    text-align: center;
  }
  .active {
    display: block;
    background-color: #fff;
  }
}

@media screen and (min-width: 992px) {
  .nav-links {
    justify-content: space-around;
    display: flex;
  }
}

@media screen and (min-width: 1200px) {
  .nav-links {
    display: flex;
    justify-content: space-around;
    width: fit-content;
  }
}

.page-title {
  height: auto;
  padding-top: 15vh;
  /* height: 35vh; */
  position: relative;
  overflow: hidden;
  background-color: #003049;
  background-repeat: no-repeat;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.page-title-container {
  color: #ffffff;
  z-index: 2;
  text-align: center;
  font-size: 2.8rem;
  margin-bottom: 2rem;
}
.page-title-container p {
  font-size: 2rem;
}
.page-t {
  font-weight: 400;
  letter-spacing: 3px;
}
.page-title-container p span {
  font-weight: 400;
}

@media screen and (max-width: 1200px) {
  .page-title-container {
    font-size: 2.6rem;
  }
}

@media screen and (max-width: 992px) {
  .page-title-container {
    font-size: 2.2rem;
  }
}

@media screen and (max-width: 768px) {
  .page-title-container {
    padding: 0.3rem;
    padding-top: 2.6rem;
    font-size: 1.6rem;
  }
}

.content {
  height: 150vh;
  width: 100%;
  background-color: rgb(247, 247, 247);
}
