/* Hello Bar Styling */
#helloBar {
  font-family: "Outfit", sans-serif !important;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  flex-direction: row;
  position: fixed;
  bottom: -100px;
  left: 0;
  width: 100%;
  background-color: #1a2174;
  color: #ffffff;
  text-align: center;
  opacity: 0;
  z-index: 1050;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.15);
  transition: bottom 0.6s ease, opacity 0.6s ease;
  padding: 0 20px;
  /*border-top: 3px solid #ffffff;*/
}
#helloBar.show {
  bottom: 0;
  opacity: 1;
}
#helloBar .hellobar-content {
  text-align: left;
  padding: 15px 60px 15px 0px;
}
#helloBar .content-line1 {
  color: #ffffff;
  font-size: 25px;
  line-height: 1.2;
  font-weight: 600;
  margin-bottom: 10px;
}
#helloBar .content-line2 {
  color: #4aa1e8;
  font-size: 18px;
  line-height: 1.2;
  font-weight: 400;
  margin-bottom: 0px;
}
#helloBar .btn-theme-primary {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-shadow: 2px 2px 0px rgba(0, 0, 0, 0.1);
  border-radius: 3px;
  color: #ffffff;
  background: #f66302;
  background: linear-gradient(90deg, var(--c1, #f66302), var(--c2, #ff901b) 51%, var(--c1, #f66302)) var(--x, 0) / 200%;
  transition:all 0.3s ease 0s;
  padding: 12px 20px;
}
#helloBar .btn-theme-primary:hover {
  --x: 100%;
}
.hellobar-btn i {
  font-size: 14px;
  margin-left: 10px;
}
#helloBar .close-btn {
  position: absolute;
  right: 35px;
  top: 30%;      
  padding: 0;
  font-size: 40px;
  color: #1060b3;
  opacity: 1;
  background: transparent;
  border: none;
  cursor: pointer;
  transition: color 0.3s;
}
#helloBar .close-btn:hover {
  color: #2da7df;
}

@media (max-width: 1400px) {
  #helloBar {
    padding: 20px;
  }
  .hellobar-img, .hellobar-logo {
    display: none;
  }
}
@media (max-width: 992px) {
  #helloBar {
    border-top: 2px solid #4aa1e8;
  }
  #helloBar .hellobar-content {
    padding: 15px 40px 15px 20px;
  }
  #helloBar .close-btn {
    right: 15px;
    top: 0px;
  }      
  #helloBar .btn-theme-primary {
    font-size: 15px;
    padding: 9px 15px;
  }
}
@media (max-width: 786px) {
  #helloBar {
    justify-content: left;
  }
  #helloBar .hellobar-content {
    padding: 0px 20px 0 0;
  }
  #helloBar .content-line1 {
    font-size: 20px;
  }
  #helloBar .content-line2 {
    font-size: 16px;
    margin-bottom: 1px;
  }
  .hellobar-btn {
    margin-top: 15px;
    margin-right: auto;
  }
}