/* ========== NAV DIFFERENT STYLE COLORS ========== */
.nav_style_home {
  background-color: var(--grass-green);
  color: black;
}

.nav_links_style_home a {
  color: black;
}

.nav_style_privacy-policy {
  background-color: var(--bold-blue);
  color: white;
}

.nav_style_privacy-policy a {
  color: white;
}

.nav_style_ge {
  background-color: var(--grass-green);
  color: black;
}

.nav_links_style_ge a {
  color: black;
}

.nav_style_about {
  background-color: var(--bold-blue);
  color: white;
}

.nav_links_style_about a {
  color: white;
}

.nav_style_marketing {
  background-color: var(--burgundy);
  color: white;
}

.nav_links_style_marketing a {
  color: white;
}

.nav_style_contact {
  background-color: var(--bold-blue);
  color: white;
}

.nav_links_style_contact a {
  color: white;
}

.nav_v1 {
  background-color: var(--bold-blue);
  color: white;
}
.nav_v1 a {
  color: white;
}

.nav_v2 {
  background-color: var(--bold-yellow);
  color: black;
}
.nav_v2 a {
  color: black;
}

.nav_v3 {
  background-color: var(--orange);
  color: black;
}
.nav_v3 a {
  color: black;
}

.nav_v4 {
  background-color: var(--burgundy);
  color: white;
}
.nav_v4 a {
  color: white;
}

.nav_v5 {
  background-color: var(--pink);
  color: black;
}
.nav_v5 a {
  color: black;
}

.nav_v6 {
  background-color: var(--grass-green);
  color: white;
}
.nav_v6 a {
  color: white;
}

/* ========== MAIN NAV WRAPPER ========== */
.nav_wrapper {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 100%;
  box-shadow: none;
  transition: all 0.3s ease;
  z-index: 999;
  overflow: hidden;
  transition: width 0.4s linear, margin 0.1s ease, border-radius 0.6s ease,
    padding 0.9s ease;
}

.nav_wrapper.shrink {
  width: 55%;
  top: 0;
  margin: 20px auto;
  border-radius: 100px;
  padding: 0px 25px;
  transition: width 0.4s linear, margin 0.1s ease, border-radius 0.6s ease,
    padding 0.2s ease;
}

.nav_wrapper.shrink.nav_open {
  border-radius: 30px;
}

.nav_wrapper.nav_open {
  width: calc(100% - 15px);
  border-radius: 0px;
  border-bottom-left-radius: 30px;
  border-bottom-right-radius: 30px;
}

.nav_wrapper.shrink .desktop_nav {
  height: 60px;
}

.nav_wrapper.shrink .container {
  padding: 0px !important;
}

/* ========== INNER NAVIGATION ========== */
.desktop_nav {
  height: 66px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav_logo_en {
  width: 252px;
  transition: height 0.3s linear;
  padding-top: 5px;
}

.nav_wrapper.shrink .nav_logo_en {
  width: 191px;
}

.nav_links.desk {
  display: flex;
  align-items: center;
  column-gap: 30px;
}

.nav_links.desk ul {
  display: flex;
  column-gap: 15px;
}

.links_search_wrapper {
  display: flex;
  align-items: center;
  column-gap: 20px;
}

.navlink_en {
  font-family: "EngFontSubHeader";
  font-size: 21px;
}

.navlink_ka {
  font-family: "GeoFontSubHeader";
  font-size: 18px;
}

.nav_search i {
  font-size: 17px;
}

.lang_switch.ka {
  font-size: 25px;
  font-family: "EngFontText";
}

.lang_switch.en {
  font-size: 17px;
  font-family: "GeoFontSubHeader";
}

/* ========== MOBILE NAV MENU (Inside nav_wrapper) ========== */
.mobile_nav_links {
  display: none;
  padding: 30px 20px;
  animation: fadeSlide 0.3s ease-out;
}

.mobile_nav_links.scrolled {
  padding: 30px 0px;
}

.mobile_nav_links li {
  margin-bottom: 20px;
}

.mobile_nav_links.ge a {
  color: black;
}

.mobile_nav_links.home a {
  color: black;
}

.mobile_nav_links.marketing a {
  color: white;
}

.mobile_nav_links.about a {
  color: white;
}

.mobile_nav_links.contact a {
  color: white;
}
/* ========== BURGER & MOBILE ONLY ICONS ========== */
.burger {
  display: none;
  font-size: 22px;
  cursor: pointer;
}

.mobile_burger.home {
  color: black;
}

.mobile_only {
  display: none;
}

.mobile_burger {
  display: flex;
  align-items: center;
  column-gap: 14px;
}

/* ========== ANIMATION ========== */
@keyframes fadeSlide {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ========== RESPONSIVE ========== */
@media screen and (max-width: 1300px) {
  .nav_wrapper.shrink {
    width: calc(100% - 300px);
    padding: 0px 25px;
  }
}

@media screen and (max-width: 991px) {
  .nav_links.desk {
    display: none !important;
  }

  .burger,
  .mobile_only {
    display: block;
  }

  .mobile_nav_links {
    display: none;
  }
}

@media screen and (max-width: 700px) {
  .nav_wrapper.shrink {
    width: calc(100% - 50px);
    padding: 0px 15px;
  }

  .nav_logo_en {
    width: 170px;
  }

  .nav_wrapper.shrink .nav_logo_en {
    width: 150px;
  }

  .nav_wrapper.shrink .mobile_burger {
    column-gap: 10px;
  }

  .desktop_nav {
    height: 65px;
  }
}

@media screen and (min-width: 992px) {
  .burger,
  .mobile_only,
  .mobile_nav_links {
    display: none !important;
  }
}
