/* HEADER STYLES */
@media screen and (min-width: 1153px) {

  .nav-trigger {
    display: none;
  }

  .header {
    padding: 20px 0 0;
  }

  .header-inner {
    margin-bottom: 20px;
  }

  .header nav {
    border: 1px solid #1b1b1b;
    ;
    border-left: 0;
    border-right: 0;
  }
}

@media screen and (max-width: 1152px) {
  .header {
    position: relative;
    z-index: 999;
  }

  .navigation .primary {
    left: -10px;
    top: 0;
  }

  .header-inner {
    flex-wrap: wrap;
    margin: auto;
    max-width: initial;
    width: 100%;
    padding: 0;
  }

  .header .logo {
    flex-grow: 1;
    text-align: center;
    margin-bottom: 10px;
  }

  .header .logo a {
    display: inline-block;
  }

  .search {
    order: 2;
    padding: 0;
  }
}

@media screen and (max-width: 640px) {
  .search {
    top: calc(100% + 45px);
  }
}

.navigation .button {
  display: none;
}

.nav-trigger {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  position: relative;
  padding: 5px;
}

.nav-trigger .icon {
  display: inline-block;
  height: 20px;
  width: 29px;
  position: relative;
}


.nav-trigger .icon .ico-bar {
  background: #fff;
  height: 4px;
  width: 100%;
  position: absolute;
  -webkit-transition: 0.1s ease-in-out;
  transition: 0.1s ease-in-out;
  left: 0;
}

.nav-trigger .icon .ico-bar:first-child {
  top: 0;
}

.nav-trigger .icon .ico-bar:nth-child(2) {
  top: 8px;
}

.nav-trigger .icon .ico-bar:nth-child(3) {
  top: 16px;
}

.nav-trigger.active .icon .ico-bar {
  background: #276fdb;
  left: 4px;
}

.nav-trigger.active .icon .ico-bar:first-child {
  top: -2px;
  -webkit-transform: rotate(45deg) translate(5px, 9px);
  transform: rotate(45deg) translate(5px, 9px);
}

.nav-trigger.active .icon .ico-bar:nth-child(2) {
  opacity: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  filter: alpha(opacity=0);
}

.nav-trigger.active .icon .ico-bar:nth-child(3) {
  top: 14px;
  -webkit-transform: rotate(-45deg) translate(2px, -6px);
  transform: rotate(-45deg) translate(2px, -6px);
}



/* HEADER LINKS START */
.header-links {
  display: none;
  align-items: center;
  width: 100%;
  margin: 0 0 10px;
  background: #000;
  height: 38px;
  cursor: pointer;
}

@media screen and (max-width: 1152px) {
  .header-links {
    display: flex;
    order: 1;
  }
}

.header-links a {
  flex: 1;
  width: 100%;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  background-color: rgb(15 15 15);
  font-size: 16px;
  line-height: 36px;
  border-radius: 2% / 35%;
  border: 2px solid;
}

.header-links a:hover {
  color: #fff;
}


.header-links a:last-child {
  background-color: rgba(219, 39, 202, .5);
}

@media screen and (min-width: 1025px) {
  .header-links a:hover {
    color: #db27ca;
  }
}

.top-links {
  display: none;
}

@media screen and (max-width: 480px) {
  .header {
    position: fixed;
    z-index: 999;
  }

  .container>.content {
    padding-top: 165px;
  }

  .header nav {
    position: absolute;
    width: 100%;
    left: 0;
    top: 70px;
  }

  .navigation .primary {
    left: 0;
    top: -1px;
  }
}

/* HEADER LINKS END */