.header-mobile {
  display: flex;
  justify-content: space-between;
  position: fixed;
  top: 0;
  padding: 24px;
  width: 100%;
  transition: top 0.5s ease-in-out, background-color 0.5s ease-in-out;
  z-index: 1000;
}

.header-desktop {
  display: none;
}

.header-gray {
  background-color: #323232;
}

.header-transparent {
  background-color: transparent;
}

.header-mobile-hamburger {
  width: 22px;
  height: 22px;
}

.header-mobile-hamburger img {
  width: 100%;
}

.header-mobile-logo {
  width: 122px;
  height: 27px;
}

.progress-container {
  width: 100%;
  height: 4px;
  background: transparent;
  position: fixed;
  top: 0;
  z-index: 9999;
}

/* The progress bar (scroll indicator) */
.progress-bar {
  height: 4px;
  background: linear-gradient(
    to left,
    rgb(0, 163, 224) 0%,
    rgb(0, 163, 224) 10%,
    #84bd00 90%,
    #84bd00 100%
  );
  width: 0%;
}

.header-offcanvas {
  width: 100%;
  height: 100%;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  position: fixed;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  padding: 24px;
  justify-content: center;
  align-items: center;
  transition: opacity 0.5s ease-in-out;
  top: 0;
  bottom: 0;
  opacity: 0;
  visibility: hidden;
  overflow-y: auto;
}

.header-offcanvas-opened {
  opacity: 1;
}

.header-offcanvas-close-btn {
  top: 10px;
  right: 10px;
  position: absolute;
  width: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: transparent;
  border: none;
}

.header-offcanvas-close-btn img {
  width: 100%;
}

.header-offcanvas-body {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.header-offcanvas-body-text {
  color: #c0c0c0;
}

.header-offcanvas-body-item {
  display: flex;
  justify-content: space-between;
}

.arrow-right-offcanvas {
  width: 20px;
}

.header-mobile-pop-up-toggler {
  color: #fff;
  font-weight: normal;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
}

.header-offcanvas-body-background {
  display: flex;
  flex-direction: column;
  gap: 25px;
  padding: 24px;
  background-color: #ffffff;
  border-radius: 24px;
  align-items: center;
  justify-content: center;
}

.pop-up-form-title {
  font-size: 25px !important;
}

@media(min-width:576px) {
  .pop-up-form-title {
    font-size: 40px !important;
  }
}

@media (min-width: 992px) {
  .header-mobile {
    display: none;
  }
  .header-desktop {
    display: flex;
    justify-content: center;
    position: fixed;
    top: 0;
    padding: 24px;
    width: 100%;
    transition: top 0.5s ease-in-out, background-color 0.5s ease-in-out;
    z-index: 1000;
  }

  .header-desktop-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1270px;
  }

  .header-desktop-items {
    display: flex;
    align-items: center;
    gap: 16px;
  }
  .header-desktop-item {
    color: #fff;
    cursor: pointer;
  }
}
