#header-container {
  width: 100%;
  margin: 0 auto;
  padding: 0px 30px;
  position: fixed;
  top: 0;
  left: 0;
}

.with-header-offset {
  padding-top: 100px;
}

@media (max-width: 1200px) {
  .with-header-offset {
    padding-top: 190px;
  }
}

@media (max-width: 991px) {
  .with-header-offset {
    padding-top: 150px;
  }
}

@media (max-width: 768px) {
  .with-header-offset {
    padding-top: 120px;
  }
}

.header-container {
  margin: 0 auto;
  max-width: 1300px;
}

.col-header-top {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid gray;
  padding-bottom: 10px;
  padding-top: 10px;
}

.col-header-top .contacts-info {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
}

.contacts-info a,
.top-nav-links a,
.mobile-menu-nav a,
.mobile-contact-info a {
  text-decoration: none;
}

.contacts-info a span,
.top-nav-links a,
.mobile-menu-nav a,
.mobile-contact-info a {
  text-decoration: none;
  color: #555555;
}

.col-header-top .contacts-info a img,
.col-header-top .top-nav-links a img {
  width: 26px;
  height: 26px;
}

.col-header-top .top-nav-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
}

.col-header-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 15px;
  padding-bottom: 15px;
}

.col-header-bottom #menu-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
}

.col-header-bottom #menu-nav a {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  color: inherit;
  width: auto;
  font-family: Arial, sans-serif;
  cursor: pointer;
  transition: color 0.3s ease;
}

.col-header-bottom #menu-nav a:hover {
  color: #02ad10;
}

.col-header-bottom #menu-nav a img.icon {
  width: 24px;
  height: 24px;
}

.col-header-bottom #menu-nav a span {
  font-size: 13px;
  white-space: nowrap;
}

/* FORM POTO ISKELTI REIKES */
.data-input-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 20px auto;
  gap: 60px;
  width: 1070px;
  padding-bottom: 20px;
  flex-wrap: wrap;
}

.first-data-input-container {
  width: 300px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.first-data-input-container .data-input-country,
.first-data-input-container .data-input-transport {
  width: 100%;
}

.second-data-input-container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 350px;
  gap: 10px;
}

.second-data-input-container .data-input-dates {
  display: flex;
  flex-direction: row;
  gap: 10px;
  width: 100%;
}

.second-data-input-container .data-input-tour-types {
  width: 100%;
}

.third-data-input-container {
  width: 300px;
  display: flex;
  flex-direction: column;
  gap: 0px;
}

.third-data-input-container .data-input-submit {
  width: 100%;
}

#form-search {
  flex-direction: column;
  margin: 0 auto;
}

.desktop-search-wrapper {
  display: none;
}

/* Mobile header */
.mobile-header-wrapper {
  display: none;
}

.mobile-header {
  justify-content: space-between;
  align-items: center;
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
}

.mobile-header img {
  width: 32px;
  height: 32px;
}

.mobile-header .mobile-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  cursor: pointer;
}

.hamburger-open {
  width: 100%;
  background: #fff;
  padding: 10px 0;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  display: none;
}

.hamburger-open .mobile-menu-nav,
.question-open .mobile-contact-info {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  gap: 0;
}

.hamburger-open .mobile-menu-nav a,
.question-open .mobile-contact-info a {
  border-bottom: 1px solid rgb(224, 224, 224);
  padding: 5px 5px;
}

.hamburger-open .mobile-menu-nav a img,
.question-open .mobile-contact-info a img {
  width: 32px;
  height: 32px;
}

.search-open {
  display: none;
  width: 100%;
  background: #fff;
  padding: 10px 0;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.question-open {
  display: none;
}

@media (max-width: 1200px) {
  .data-input-container {
    flex-direction: row;
    width: 100%;
  }
}

@media (max-width: 1200px) {
  .data-input-container {
    width: 100%;
    flex-direction: column;
  }
  .data-input-container .first-data-input-container {
    width: 100%;
  }

  .mobile-header-wrapper {
    display: block;
  }

  .col-header-top,
  .col-header-bottom {
    display: none;
  }

  .hamburger-open,
  .search-open,
  .question-open {
    display: none;
    flex-direction: column;
    background: #fff;
    padding: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);

    position: fixed;
    top: 52px;
    left: 0;
    width: 100%;
    height: calc(100vh - 52px);
    overflow-y: auto;
    z-index: 9999;
  }
  .mobile-header {
    top: 0;
    left: 0;
    width: 100%;
    background: #fff;
    z-index: 10000;
    padding: 10px;
  }
  #header-container {
    padding: 0px 0px;
  }

  .second-data-input-container {
    width: 300px;
  }
  .data-input-date-from,
  .data-input-date-to {
    width: 100px;
  }
  .data-input-container .first-data-input-container {
    width: 170px;
  }
}

@media (max-width: 500px) {
  .logo span {
    font-size: 15px;
  }
  .mobile-header img {
    width: 24px;
    height: 24px;
  }
}
