/* 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: #002b58;
  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;
}
#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-primary {
  font-size: 17px;
  font-weight: 500;
  letter-spacing: 0.5px;
  border-radius: 3px;
  background: #0a73cd;
  border-color: #0a73cd;
  color: #fff;
  padding: 11px 20px;
}
#helloBar .btn-primary:hover {
  background: #2da7df;
  border-color: #2da7df;
}
.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 .hellobar-content {
    padding: 15px 40px 15px 20px;
  }
  #helloBar .close-btn {
    right: 15px;
    top: 0px;
  }      
  #helloBar .btn-primary {
    font-size: 15px;
    padding: 9px 15px;
  }
}
@media (max-width: 786px) {
  #helloBar {
    justify-content: left;
  }
  #helloBar .hellobar-content {
    padding: 0px 40px 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;
  }
}