/* Elevate Banner */
.secondary-menu-active .header-banner {
  margin-top: 55px;
}
.header-banner {
  position: relative;
  display: none;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-height: 72px;
  padding: 10px;
  font-size: 18px;
  font-weight: 200;
  line-height: 24px;
  color: rgb(255, 255, 255);
  background: rgba(0, 0, 0, 0) linear-gradient(269.84deg, rgb(123, 122, 225) -4.01%, rgb(6, 10, 59) 23.71%, rgb(189, 17, 104) 50.42%, rgb(80, 206, 227) 92.75%) repeat scroll 0% 0%;
  z-index: 10;
}
.banner-content {
  display: flex;
  justify-content: center;
  align-items: center;
}
.banner-content_text b {
  font-weight: 700;
}

.banner-content_btn {
  margin-left: 24px;
  min-width: 190px;
}
@media (min-width: 1001px) {
  .banner-content_btn {
    display: flex;
  }
}
@media (min-width: 501px) and (max-width:  1000px) {
  .banner-content_btn {
    display: inline-flex;
    justify-content: center;
    flex-direction: column;
  }
}

.banner-content_btn a {
  position: relative;
  border-radius: 100px;
  cursor: pointer;
  font-weight: 300;
  color: rgb(51, 51, 51);
  font-size: 14px;
  padding: 7px 40px 9px 24px;
  background: linear-gradient(265.73deg, #FC9618 0.75%, #FFCC00 101.64%);
  transition: background-color 300ms ease;
  vertical-align: -webkit-baseline-middle;
}
.banner-content_btn a:hover {
  text-decoration: none;
}
.banner-content_btn a svg {
  position: absolute;
  top: 35%;
  right: 20px;
  width: 12px;
  transition: all 0.2s;
}
.banner-content_btn a:hover svg {
  right: 15px;
}
.header-banner .close-banner {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 14px;
  height: 14px;
  line-height: 0;
  cursor: pointer;
}
.header-banner .mobile {
  display: none;
}

@media (max-width: 500px) {
  .header-banner {
    padding: 10px 10px 5px 10px;
  }
  .header-banner .desktop {
    display: none;
  }
  .header-banner .mobile {
    display: block;
  }
  .banner-content {
    display: flex;
    flex-direction: column;
    padding: 10px 5%;
  }
  .banner-content_btn {
    margin-left: 0;
    margin-top: 0;
    margin-bottom: 10px;
    text-align: center;
  }
  .header-banner .close-banner svg {
    width: 11px;
  }
  .header-banner .close-banner {
    top: 5px;
    right: 5px;
    width: 12px;
  }
  .banner-content_text {
    text-align: center;
    font-size: 14px;
  }
  .banner-content_text b {
    font-weight: 500;
  }
  .banner-content {
    padding: 0 5%;
  }
  .banner-content_btn a {
    border-radius: 0;
    font-weight: 200;
    color: rgb(255, 255, 255);
    font-size: 14px;
    background: none;
    transition: none;
    padding: 4px 11px 3px 0;
    border-bottom: 1px #fff solid;
  }
  .banner-content_btn a svg {
    right: 0;
    width: 8px;
  }
  .banner-content_btn a svg path {
    fill: #fff;
  }
  .banner-content_btn a:hover svg {
    right: 0;
  }
}
/* End Elevate Banner */