* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #002130;
  font-family: Arial, sans-serif;
}

.header-container {
  width: 100%;
  display: flex;
  background-color: #002130;
  color: #c5c5c5;
}
.header-container .logo a {
  text-decoration: none;
  color: #c5c5c5;
}
.header-container .logo a:hover {
  text-decoration: underline;
}
.header-container .logo h1 {
  font-weight: 100;
  font-family: "Impact", sans-serif;
  font-size: 18px;
  line-height: 25px;
  cursor: pointer;
}
.header-container .logo h1:hover {
  text-decoration: underline;
}
.header-container .header-menu {
  list-style: none;
}
.header-container .header-menu li a {
  text-decoration: none;
  color: #c5c5c5;
  font-size: 18px;
  font-family: "Inter", sans-serif;
  transition: color 0.3s ease;
}
.header-container .header-menu li a:hover {
  color: #0077ac;
}
.header-container .header-menu .dropdown {
  position: relative;
}
.header-container .header-menu .dropdown .dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  transition: color 0.3s ease;
}
.header-container .header-menu .dropdown .dropdown-toggle .dropdown-link {
  text-decoration: none;
  color: #c5c5c5;
  font-size: 18px;
  font-family: "Inter", sans-serif;
  transition: color 0.3s ease;
}
.header-container .header-menu .dropdown .dropdown-toggle .arrow-down {
  height: auto;
  padding-left: 0;
  transition: filter 0.3s ease;
  transform-origin: center;
  width: 14px;
}
.header-container .header-menu .dropdown .dropdown-toggle:hover .dropdown-link {
  color: #0077ac;
}
.header-container .header-menu .dropdown .dropdown-toggle:hover .arrow-down {
  filter: brightness(0) saturate(100%) invert(31%) sepia(96%) saturate(2000%) hue-rotate(180deg) brightness(95%) contrast(100%);
}
.header-container .header-menu .dropdown .dropdown-menu {
  display: none;
  position: absolute;
  top: 25px;
  right: -50px;
  list-style: none;
  text-align: center;
}
.header-container .header-menu .dropdown .dropdown-menu li a {
  display: block;
  text-decoration: none;
  font-family: "Inter", sans-serif;
  transition: color 0.3s ease;
}
.header-container .header-menu .dropdown.active .dropdown-link {
  color: #0077ac;
}
.header-container .header-menu .dropdown.active .arrow-down {
  transform: rotate(180deg);
  filter: brightness(0) saturate(100%) invert(31%) sepia(96%) saturate(2000%) hue-rotate(180deg) brightness(95%) contrast(100%);
}
.header-container .header-menu .dropdown.active .dropdown-menu {
  display: block;
  opacity: 1;
  transform: translateY(0);
}
.header-container .team-link, .header-container .team-btn-desktop {
  font-size: 16px;
  border: none;
  font-family: "Inter", sans-serif;
  cursor: pointer;
}
.header-container .team-link:hover, .header-container .team-btn-desktop:hover {
  text-decoration: underline;
}
.header-container .team-btn-desktop {
  background-color: rgb(160, 160, 160);
  color: #c5c5c5;
  border-radius: 20px;
  padding: 10px 15px;
}

.form-container {
  max-width: 100%;
  margin: 0 auto;
  position: relative;
}
.form-container h2 {
  font-weight: 100;
  font-family: "Impact", sans-serif;
}
.form-container h3 {
  font-weight: 100;
  font-family: "Impact", sans-serif;
  line-height: 1.5;
}
.form-container h3:hover {
  text-decoration: underline;
}
.form-container h4 {
  font-size: 20px;
  font-weight: 100;
  font-family: "Impact", sans-serif;
}
.form-container .intro-text {
  color: #c5c5c5;
  text-align: justify;
}
.form-container .document-grid {
  max-height: 755px;
  overflow-y: auto;
  width: 100%;
  margin: 0 auto 100px;
  padding-right: 0px;
  scrollbar-width: thin;
  scrollbar-color: rgb(160, 160, 160) transparent;
  /* Chrome, Edge, Safari */
}
.form-container .document-grid::-webkit-scrollbar {
  width: 10px;
}
.form-container .document-grid::-webkit-scrollbar-track {
  background: transparent;
}
.form-container .document-grid::-webkit-scrollbar-thumb {
  background-color: rgb(160, 160, 160);
  border-radius: 6px;
}
.form-container .document-grid::-webkit-scrollbar-thumb:hover {
  background-color: #555;
}
.form-container .document-grid .document-box {
  background-color: #003b56;
  display: flex;
  align-items: flex-start;
  cursor: pointer;
  height: 135px;
  position: relative;
}
.form-container .document-grid .document-box:hover {
  background-color: #38586b;
}
.form-container .document-grid .document-box img {
  height: 115px;
  width: 75px;
  margin: 10px;
}
.form-container .document-grid .document-box .text {
  padding: 15px 0px 20px 5px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.form-container .document-grid .document-box .text h4 {
  color: #c5c5c5;
}
.form-container .document-grid .document-box .text .details {
  position: absolute;
  bottom: 10px;
}
.form-container .document-grid .document-box .text .details span {
  font-size: 13px;
  color: #c5c5c5;
  font-family: Arial, sans-serif;
  line-height: 18px;
  display: block;
}
.form-container .document-grid .document-box .text .details .translated-link {
  color: #c5c5c5;
  cursor: pointer;
  display: inline-block;
  text-decoration: none;
}
.form-container .document-grid .document-box .text .details .translated-link:hover {
  text-decoration: underline;
}

.information-popup .info-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 998;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.information-popup .info-overlay.visible {
  opacity: 1;
  pointer-events: all;
}
.information-popup .info-overlay.hidden {
  opacity: 0;
  pointer-events: none;
}
.information-popup .info-popup {
  position: fixed;
  overflow: scroll;
  top: 0;
  bottom: 0;
  right: 0;
  width: 250px;
  background-color: rgb(32, 32, 32);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.4s ease, opacity 0.3s ease;
  z-index: 999;
  transform: translateX(100%);
  opacity: 0;
}
.information-popup .info-popup.visible {
  transform: translateX(0);
  opacity: 1;
}
.information-popup .info-popup.hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateX(100%);
}
.information-popup .info-popup .info-popup-content {
  padding: 0 25px 30px;
  position: absolute;
  top: 30px;
  width: 100%;
}
.information-popup .info-popup .info-popup-content .static-text {
  font-weight: 600;
}
.information-popup .info-popup .info-popup-content .popup-description {
  margin-bottom: 40px;
}
.information-popup .info-popup .info-popup-content p {
  text-align: left;
  font-family: Arial, sans-serif;
  color: #c5c5c5;
  font-size: 14px;
  line-height: 1.42;
}

.document-info-popup {
  position: fixed;
  inset: 0;
  z-index: 9999;
}
.document-info-popup.hidden {
  display: none;
}
.document-info-popup .overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.6);
}
.document-info-popup .popup-content {
  position: relative;
  z-index: 2;
  max-width: 1305px;
  background-color: rgb(32, 32, 32);
  color: #c5c5c5;
  display: flex;
  flex-direction: column;
  max-height: 92vh;
}
.document-info-popup .popup-content .popup-title,
.document-info-popup .popup-content .popup-source {
  line-height: 1.42;
}
.document-info-popup .popup-content .popup-title {
  font-size: 18px;
  color: #c5c5c5;
  font-family: "Impact", sans-serif;
}
.document-info-popup .popup-content .popup-source {
  font-size: 15px;
  color: #c5c5c5;
  font-family: Arial, sans-serif;
}
.document-info-popup .popup-content .popup-header {
  margin-bottom: 15px;
  line-height: 1.42;
}
.document-info-popup .popup-content .popup-header .popup-version {
  font-size: 15px;
  color: #c5c5c5;
  font-family: Arial, sans-serif;
}
.document-info-popup .popup-content .popup-header .popup-version a {
  color: #4a748c;
  text-decoration: underline;
}
.document-info-popup .popup-content .popup-body {
  align-items: start;
  position: relative;
}
.document-info-popup .popup-content .popup-body .popup-pdf {
  width: 100%;
  border: none;
  background-color: rgb(32, 32, 32);
  display: block;
}
.document-info-popup .popup-content .popup-body .popup-pdf::-webkit-scrollbar {
  display: none;
}
.document-info-popup .popup-content .popup-body .open-new-tab {
  color: #c5c5c5;
  text-decoration: none;
  background-color: transparent;
  font-size: 20px;
}
.document-info-popup .popup-content .popup-body .popup-context {
  overflow-y: auto;
  padding-right: 10px;
  position: relative;
  text-align: justify;
  scrollbar-width: thin;
  scrollbar-color: rgba(160, 160, 160, 0.6) transparent;
}
.document-info-popup .popup-content .popup-body .popup-context::-webkit-scrollbar {
  width: 6px;
}
.document-info-popup .popup-content .popup-body .popup-context::-webkit-scrollbar-thumb {
  background-color: rgba(160, 160, 160, 0.6);
  border-radius: 3px;
}
.document-info-popup .popup-content .popup-body .popup-context::-webkit-scrollbar-thumb:hover {
  background-color: rgba(200, 200, 200, 0.8);
}

.document-context.hidden {
  display: none;
}

body.document-popup-open {
  overflow: hidden;
  pointer-events: none;
}
body.document-popup-open .document-info-popup {
  pointer-events: all;
}

@media (min-width: 1100px) {
  .header-container {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10;
    justify-content: space-between;
    padding: 20px;
    align-items: center;
  }
  .header-container .hamburger,
  .header-container .team-link,
  .header-container .hr-mobile {
    display: none;
  }
  .header-container .logo h1 {
    text-align: center;
  }
  .header-container .header-menu {
    display: flex;
    list-style: none;
    gap: 220px;
  }
  .header-container .header-menu li a {
    color: #c5c5c5;
  }
  .header-container .header-menu li a:hover {
    color: #0077ac;
  }
  .header-container .header-menu .dropdown .dropdown-menu {
    padding: 10px 0;
    border-radius: 3px;
    z-index: 100;
    opacity: 0;
    transform: translateY(-5px);
    transition: filter 0.3s ease;
    background: #fff;
  }
  .header-container .header-menu .dropdown .dropdown-menu li a {
    padding: 5px 12px;
    color: #002130;
    font-size: 13px;
  }
  .form-container h2 {
    font-size: 60px;
    line-height: 1.5;
  }
  .form-container h3 {
    font-size: 30px;
  }
  .form-container .intro-text {
    font-size: 18px;
    line-height: 28px;
    margin-bottom: 50px;
  }
  .form-container .document-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    padding: 0 45px;
  }
  .document-info-popup .popup-content {
    margin: 30px auto;
    padding: 20px 30px;
  }
  .document-info-popup .popup-content .popup-close-mobile {
    display: none;
  }
  .document-info-popup .popup-content .popup-body {
    display: grid;
    grid-template-columns: 1fr 25px 293px;
    gap: 20px;
    margin: 0;
  }
  .document-info-popup .popup-content .popup-body .popup-pdf {
    height: 73vh;
  }
  .document-info-popup .popup-content .popup-body .open-new-tab {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    top: 0;
  }
  .document-info-popup .popup-content .popup-body .open-new-tab .icon {
    display: inline-block;
  }
  .document-info-popup .popup-content .popup-body .popup-context {
    height: 540px;
    max-height: none;
  }
}
@media (max-width: 1099px) {
  .header-container {
    position: relative;
    flex-direction: column;
    padding: 15px 20px;
    z-index: 200;
  }
  .header-container .team-btn-desktop {
    display: none;
  }
  .header-container .hamburger {
    position: absolute;
    top: 22px;
    right: 20px;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 300;
  }
  .header-container .hamburger .menu-icon {
    display: block;
    width: 26px;
    height: 26px;
  }
  .header-container .hamburger .close-icon {
    display: none;
    width: 30px;
    height: 30px;
  }
  .header-container .hamburger.active .menu-icon {
    display: none;
  }
  .header-container .hamburger.active .close-icon {
    display: block;
  }
  .header-container .header-menu {
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    width: 100%;
    background-color: #002130;
    padding: 20px;
    position: absolute;
    top: 0;
    left: 0;
    text-align: center;
    z-index: 250;
  }
  .header-container .header-menu li {
    width: 100%;
  }
  .header-container .header-menu li a {
    display: block;
    padding: 10px 0;
  }
  .header-container .header-menu li a:hover {
    background-color: rgb(0, 171.9273255814, 248.5);
    color: #0077ac;
  }
  .header-container .header-menu .dropdown {
    width: 100%;
  }
  .header-container .header-menu .dropdown .dropdown-toggle {
    justify-content: center;
  }
  .header-container .header-menu .dropdown .dropdown-menu {
    position: static;
    padding: 0;
    transform: none;
  }
  .header-container .header-menu .dropdown .dropdown-menu li a {
    color: #c5c5c5;
    font-size: 16px;
    padding: 5px 0;
  }
  .header-container .header-menu .dropdown.active .dropdown-menu {
    display: block;
  }
  .header-container .header-menu .team-link {
    margin-top: 10px;
  }
  .header-container .header-menu .team-link a {
    background-color: #0077ac;
    color: #c5c5c5;
    border-radius: 6px;
    padding: 10px 25px;
  }
  .header-container.menu-open .header-menu {
    display: flex;
    animation: fadeIn 0.3s ease forwards;
  }
  @keyframes fadeIn {
    from {
      opacity: 0;
      transform: translateY(-10px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  .form-container h2 {
    font-size: 33px;
    line-height: 1.2;
  }
  .form-container h3 {
    font-size: 25px;
  }
  .form-container .intro-text {
    font-size: 16px;
    line-height: 23px;
    margin-bottom: 40px;
  }
  .form-container .document-grid {
    padding: 0 20px;
  }
  .form-container .document-grid .document-box {
    margin-bottom: 20px;
  }
  .document-info-popup .popup-content {
    margin: 20px;
    padding: 40px 20px;
    max-height: 95vh;
    overflow-y: scroll;
  }
  .document-info-popup .popup-content .popup-close-mobile {
    width: 30px;
    height: auto;
    right: 10px;
    top: 10px;
    position: absolute;
    background: none;
    color: #c5c5c5;
    border: none;
    cursor: pointer;
    z-index: 20;
  }
  .document-info-popup .popup-content .popup-body {
    display: block;
  }
  .document-info-popup .popup-content .popup-body .popup-pdf {
    height: 55vh;
    margin-bottom: 20px;
  }
  .document-info-popup .popup-content .popup-body .open-new-tab {
    position: absolute;
    right: 0;
    top: -40px;
  }
  .document-info-popup .popup-content .popup-body .popup-context {
    height: auto;
    max-height: 35vh;
  }
}
.form-container p {
  font-family: Arial, sans-serif;
  font-size: 17px;
  line-height: 24px;
  text-align: justify;
}
.form-container .information-image {
  width: 100%;
  object-fit: cover;
  display: block;
}
.form-container .vukovar-image-size {
  object-position: bottom;
}
.form-container .store-image-size {
  object-position: inherit;
}
.form-container .store-image-size-second {
  object-fit: cover;
  position: relative;
  top: 4px;
}
.form-container .info-section {
  position: relative;
}
.form-container .info-section .background-circle, .form-container .info-section .info-icon {
  position: absolute;
  height: 35px;
  width: 35px;
  bottom: 15px;
  right: 15px;
  border-radius: 100%;
}
.form-container .info-section .background-circle:hover, .form-container .info-section .info-icon:hover {
  background-color: #38586b;
  border: 1px solid #38586b;
}
.form-container .info-section .background-circle {
  background-color: #002231;
  border: 1px solid #002231;
}
.form-container .info-text {
  color: #c5c5c5;
}
.form-container .map-section {
  width: 100%;
}
.form-container .map-section .map-frame iframe {
  width: 100%;
  border: none;
  display: block;
}
.form-container .map-section .text-section {
  background-color: #989898;
  align-items: center;
  justify-content: center;
}
.form-container .map-section .text-section p {
  color: #002231;
}
.form-container .blue-background {
  color: #c5c5c5;
}
.form-container .grey-background {
  color: #002231;
  background-color: #989898;
}
.form-container h5 {
  color: #c5c5c5;
  font-family: "Impact", sans-serif;
  font-weight: 100;
  text-align: center;
}
.form-container .themes-small-title {
  margin-right: 20px;
  overflow-y: scroll;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.form-container .themes-small-title:hover {
  text-decoration: underline;
}
.form-container .themes-small-title::-webkit-scrollbar {
  width: 0;
  display: none;
}

@media (min-width: 1100px) {
  .form-container .main-title {
    position: absolute;
    top: 90px;
    right: 450px;
    color: #002231;
  }
  .form-container .vukovar-image-size {
    height: 470px;
  }
  .form-container .store-image-size {
    height: 600px;
  }
  .form-container .store-image-size-second {
    height: 650px;
  }
  .form-container .info-text {
    padding: 45px;
  }
  .form-container .map-section {
    display: flex;
    max-height: 456px;
  }
  .form-container .map-section .map-frame {
    flex: 1;
  }
  .form-container .map-section .map-frame iframe {
    height: 465px;
  }
  .form-container .map-section .text-section {
    flex: 1;
    height: 465px;
  }
  .form-container .map-section .text-section p {
    padding: 40px 45px 20px;
  }
  .form-container .map-section .text-section p:last-child {
    padding: 0px 45px 40px;
  }
  .form-container .split-text {
    display: flex;
    padding: 20px 45px;
    gap: 40px;
  }
  .form-container .grey-background p {
    width: 50%;
  }
  .form-container h5 {
    font-size: 35px;
    margin: 60px 0 40px;
  }
  .form-container .themes-small-title {
    height: 50px;
  }
}
@media (max-width: 1099px) {
  .form-container .main-title {
    color: #c5c5c5;
    margin-bottom: 30px;
    text-align: center;
  }
  .form-container .vukovar-image-size {
    height: 250px;
  }
  .form-container .store-image-size {
    height: 300px;
  }
  .form-container .store-image-size-second {
    height: 300px;
  }
  .form-container .info-text {
    padding: 40px 20px;
  }
  .form-container .map-section {
    height: auto;
  }
  .form-container .map-section .map-frame iframe {
    height: 350px;
  }
  .form-container .map-section .text-section p {
    padding: 40px 20px 20px;
  }
  .form-container .map-section .text-section p:last-child {
    padding: 0px 20px 40px;
  }
  .form-container .split-text {
    padding: 40px 20px;
  }
  .form-container .split-text p {
    margin-bottom: 20px;
  }
  .form-container .split-text p:last-child {
    margin-bottom: 0;
  }
  .form-container h5 {
    font-size: 33px;
    margin: 50px 0 30px;
  }
  .form-container .themes-small-title {
    font-size: 18px;
    height: 48px;
  }
}