﻿#nav-header {
  display: none !important;
}

#header .group {
  position: relative;
}

/* PREMIUM NAV */

.ta-premium-nav {
  position: absolute;
  top: 50%;
  right: 40px;
  transform: translateY(-50%);
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 18px;
  width: max-content;
}

/* SHARED */

.ta-home,
.ta-nav-main {
  background: #000;
  color: #fff;
  box-shadow: 0 12px 28px rgba(0,0,0,.16);
}

/* HOME BUTTON */

.ta-home {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  position: relative;
  transition: all .22s ease;
}

.ta-home i {
  color: #fff;
  font-size: 22px;
  transition: all .22s ease;
}

/* CONNECTORS */

.ta-home:after,
.ta-cta:before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 26px;
  height: 7px;
  background: #000;
  border-radius: 999px;
}

.ta-home:after {
  right: -24px;
}

/* MAIN NAV */

.ta-nav-main {
  display: flex;
  align-items: center;
  background: #000;
  border-radius: 999px;
  padding: 6px;
  overflow: hidden;
}

/* NAV LINKS */

.ta-nav-main a {
  position: relative;
  display: flex;
  align-items: center;
  color: #fff;
  text-decoration: none;
  padding: 15px 24px;
  line-height: 1;
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
  border-radius: 999px;
  transition: background .22s ease, color .22s ease;
}

/* DIVIDERS */

.ta-nav-main a:not(:last-child):after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 18px;
  background: rgba(255,255,255,.14);
}

/* HOVER */

.ta-nav-main a:hover {
  background: #fff;
  color: #000;
}

.ta-nav-main a:hover:after {
  display: none;
}

/* PREMIUM CTA */

.ta-cta {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;

  padding: 16px 30px;

  border-radius: 999px;

  text-decoration: none;

  background: #d53841;
  color: #FFF;

  font-size: 14px;
  font-weight: 800;

  white-space: nowrap;

  box-shadow: 0 12px 28px rgba(0,0,0,.16);

  transition: background .22s ease, color .22s ease;
}

/* STAR ICON */

.ta-cta:after {
content: "\2605";
    font-size: 24px;
    color: #ffffff;
    order: -1;
}

/* CONNECTOR */

.ta-cta:before {
  left: -24px;
}

/* HOVER */

.ta-cta:hover {
    background: #fe4a54;
    color: #ffffff;
    border: solid 1px #ffffff;
box-sizing: border-box;

}

/* HOME HOVER */

.ta-home:hover {
  background: #fff;
}

.ta-home:hover i {
  color: #000;
}

/* MOBILE */

@media (max-width: 1200px) {

  .ta-premium-nav {
    position: relative;
    top: auto;
    right: auto;
    transform: none;
    margin: 20px auto;
    flex-wrap: wrap;
    justify-content: center;
  }

  .ta-home:after,
  .ta-cta:before {
    display: none;
  }

  .ta-nav-main {
    flex-wrap: wrap;
    justify-content: center;
    border-radius: 22px;
  }

@media (max-width: 768px) {
  #nav-header {
    display: block !important;
  }

  .ta-premium-nav {
    display: none !important;
  }


