.marquee {
  padding: 18px 0;
  width: 100%;
  color: var(--color3);
  word-spacing: 0.6px;
  overflow: hidden;
  white-space: nowrap;
  background-image: url("/new/assets/images/bgc-img.webp");
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center;
}

.marquee__content {
  display: inline-block;
  animation: marquee-animation 30s linear infinite;
}

.marquee__content span {
  margin-right: 55px;
  margin-left: 20px;
}

@keyframes marquee-animation {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.header {
  display: flex;
  align-items: center;
  height: 103px;
  position: relative;
  background-color: var(--color1);
  color: var(--color3);
}

.burger-menu {
  display: none;
}

.header-block>svg {
  display: none;
}

.header-block {
  display: flex;
  align-items: center;
}

.header-block__svg {
  width: 160px;
}

.header-block__svg a {
  display: block;
  width: 100%;
}

.header-block__svg svg {
  width: 100%;
}

.header-block__text {
  margin-left: 105px;
  max-width: 228px;
  text-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
}

.header-block__item {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-left: auto;
}

.header-block__item a {
  text-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  white-space: nowrap;
}

.navigation-block {
  position: relative;
  background-color: var(--color3);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  z-index: 3;
}

.menu {
  display: flex;
  justify-content: space-between;
}

.menu-item {
  display: flex;
  justify-content: center;
  padding: 17.5px 0 19.5px;
  color: var(--color1);
  cursor: pointer;
}

.menu-item>a {
  text-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  position: relative;
  text-align: center;
}

.menu-item__svg {
  padding: 0 5px;
}

.menu-item__svg>svg {
  max-width: 20px;
  width: 20px;
  height: 8px;
  transition: rotate 0.4s ease;
  display: inline-block;
}

.menu-item__svg>svg>path {
  stroke: var(--color1);
}

.menu-item.active>.menu-item__svg>svg {
  rotate: 180deg;
  transition: rotate 0.4s ease;
}

.menu-item>.menu-item__svg:last-child>svg {
  display: none;
}

.menu-item.active>a::after {
  content: '';
  position: absolute;
  right: calc(50% - 20px);
  top: calc(100% + 16px);
  width: 39px;
  height: 28px;
  background: url('/img/kalendari/nav-arrow.svg') no-repeat center;
  z-index: 15;
}

.submenu {
  background-color: rgba(255, 255, 255, 0.9);
  position: absolute;
  top: 100%;
  padding: 0;
  left: 0;
  width: 100%;
  z-index: 10;
  max-height: 0;
  opacity: 0;
  transition: max-height 0.3s ease, opacity 0.3s ease, padding 0.3s ease;
  cursor: auto;
}

.submenu-wrap {
  width: 100%;
  display: none;
  gap: 30px;
}

.submenu-column {
  width: 25%;
  vertical-align: top;
  display: flex;
}

.submenu-column ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.submenu-column a,
.submenu-column span {
  color: var(--color4);
  text-transform: none;
}

.submenu-column a {
  text-decoration: underline;
}

.submenu-column a.active {
  font-family: "Gotham Pro Medium", sans-serif;
}

.submenu-column a:hover {
  text-decoration: none;
}

.menu-item.active .submenu-wrap {
  display: flex;
}

.menu-item.active .submenu {
  display: flex;
  pointer-events: auto;
  max-height: none;
  opacity: 1;
  padding: 30px 0;
  transition: max-height 0.3s ease, opacity 0.3s ease, padding 0.3s ease;
}




@media (max-width: 1399px) {
  .marquee {
    padding: 18.5px 0;
  }

  .header {
    height: 94px;
  }

  .header-block__svg {
    width: 141px;
  }

  .header-block__text {
    max-width: 191px;
    margin-left: 65px;
  }
  .menu-item>a {
    width: min-content;
  }
}


@media (max-width: 1023px) {
  .header {
    height: 108px;
  }

  .header-block {
    justify-content: space-between;
  }

  .header-block__svg {
    width: 147px;
  }

  .header-block__text {
    margin-left: 0;
  }

  .header-block__item {
    flex-direction: column;
    gap: 10px;
    margin-left: 0;
  }

  .menu-item {
    padding: 15px 0;
  }
}

@media (max-width: 767px) {
  .marquee__content {
    animation-duration: 20s;
  }

  .header {
    height: 78px;
  }

  .header-block>svg.active {
    display: block;
  }

  .header-block__svg {
    width: 89px;
  }

  .header-block__item button {
    display: none;
  }

  .burger-menu {
    display: block;
    top: auto;
    background-color: var(--color3);
    width: 100%;
    height: calc(100vh - 78px - 53px);
    position: absolute;
    max-height: 0;
    overflow-y: auto;
    z-index: 20;
    font-family: "Gotham Pro Bold", sans-serif;
    color: var(--color1);
    text-transform: uppercase;
    text-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
    padding: 0 15px;
    transition: max-height 0.2s ease;
  }
  
  .burger-menu .menu {
    font-family: "Gotham Pro Medium", sans-serif;
  }

  .burger-menu .menu ul {
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding: 40px 0;
  }

  .burger-menu p {
    display: none;
    font-family: inherit;
    margin: 30px 0;
  }

  .burger-menu>a {
    display: none;
    margin-bottom: 30px;
  }

  .burger-menu.active {
    max-height: 100vh;
  }

  .navigation-block {
    display: none;
  }
}

@media (max-width: 600px) {
  .header-block__text {
    display: none;
  }

  .burger-menu p {
    display: block;
  }
}

@media (max-width: 360px) {
  .burger-menu p {
    max-width: 200px;
  }
}

@media (max-width: 330px) {
  .header-block__item a {
    display: none;
  }

  .burger-menu>a {
    display: block;
  }
}


/*# sourceMappingURL=main.css.map */