/**
 * Variables
 * Variables should follow the $component-state-property-size formula for
 * consistent naming. Examples:
 * $nav-link-disabled-color
 * $modal-content-box-shadow-xs 
 *
 * Customization:
 * To customize Bootstrap variables:
 * Copy the desired variable from node_modules/bootstrap/scss/_variables.scss
 * @see https://github.com/twbs/bootstrap/blob/main/scss/_variables.scss
 * Change the value and remove the !default flag.
 * Examples:
 * $body-bg: $yuvezzi-black;
 * $body-color: $gray-100;
 */
.page-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  background-color: transparent;
  padding: 15px 0;
}
.page-header .container {
  max-width: 1295px;
}
.page-header.sticky {
  transition: all 0.3s;
  background-color: #fff;
  border-bottom: 1px solid #dee2e6;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.page-header.sticky .page-header__logo-image {
  transition: all 0.3s ease;
}
.page-header__logo {
  display: flex;
  align-items: center;
}
.page-header__logo-image {
  height: 95px;
  width: auto;
}
.page-header__nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 2rem;
}
.page-header__navigation {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.page-header__nav-link {
  color: #2F415B;
  text-decoration: none;
  font-family: "Figtree", sans-serif;
  font-size: 16px;
  font-weight: 700;
  transition: color 0.3s ease;
}
.page-header__nav-link:hover {
  color: #b83d9e;
  text-decoration: none;
}
.page-header__cta-button {
  background-color: #ab0b7b;
  color: #fff;
  padding: 11px 16px;
  border-radius: 7px;
  line-height: 100%;
  text-decoration: none;
  font-family: "Figtree", sans-serif;
  font-size: 18px;
  font-weight: 700;
  transition: background-color 0.3s ease;
}
.page-header__cta-button:hover {
  background-color: #9a3485;
  color: #fff;
  text-decoration: none;
}
.page-header__menuText {
  text-align: center;
  margin-right: 10px !important;
  display: flex;
  flex-direction: column;
}
.page-header__menuText span {
  font-weight: 600;
  color: #394a60;
  color: #394a60;
  font-size: 16px;
}
.page-header__hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 5px;
  border: 0;
  background-color: transparent;
}
.page-header__hamburger span {
  width: 25px;
  height: 3px;
  background-color: #2F415B;
  margin: 2px 0;
  transition: 0.3s;
  display: block;
}
.page-header__hamburger.is-open span:nth-child(1) {
  -webkit-transform: rotate(-45deg) translate(-5px, 4px);
          transform: rotate(-45deg) translate(-5px, 4px);
}
.page-header__hamburger.is-open span:nth-child(2) {
  opacity: 0;
}
.page-header__hamburger.is-open span:nth-child(3) {
  -webkit-transform: rotate(45deg) translate(-5px, -6px);
          transform: rotate(45deg) translate(-5px, -6px);
}
@media (min-width: 768px) {
  .page-header__hamburger {
    display: none !important;
  }
}
.page-header__mobile-header {
  display: none;
}
@media (min-width: 768px) {
  .page-header__mobile-header {
    display: none !important;
  }
  .page-header #mobile-menu {
    display: none !important;
  }
}
@media (max-width: 767.98px) {
  .page-header .row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 40px;
  }
  .page-header .col-md-4 {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
  }
  .page-header .col-md-8 {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    height: 40px;
  }
  .page-header__logo-image {
    height: 60px;
  }
  .page-header__mobile-header {
    display: flex !important;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 40px;
    margin-left: 1rem;
  }
  .page-header__hamburger {
    display: flex !important;
    align-items: center;
    justify-content: center;
    height: 30px;
    background-color: transparent;
  }
  .page-header__nav {
    position: absolute;
    top: -100vh;
    right: 0;
    width: 100%;
    background-color: #eaecee;
    flex-direction: column;
    align-items: stretch;
    padding: 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    display: flex;
    z-index: 5;
    opacity: 0;
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
    transition: -webkit-transform 0.5s ease;
    transition: transform 0.5s ease;
    transition: transform 0.5s ease, -webkit-transform 0.5s ease;
  }
  .page-header__nav.is-open {
    top: 100%;
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  .page-header__navigation {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    width: 100%;
  }
  .page-header__nav-link {
    font-size: 16px;
    padding: 1rem 1.5rem;
    display: block;
    border-bottom: 1px solid #394a60;
    text-align: center;
  }
  .page-header__nav .page-header__cta-button {
    font-size: 18px;
    padding: 1rem;
    margin: 1rem 1.5rem 1.5rem;
    border-top: 1px solid #dee2e6;
    border-radius: 25px;
    text-align: center;
    display: block;
  }
}

.non-sticky-page-header {
  position: relative;
}

/*# sourceMappingURL=page-header.css.map*/